-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMvxSckResponseBuilder.cs
More file actions
119 lines (107 loc) · 3.21 KB
/
Copy pathMvxSckResponseBuilder.cs
File metadata and controls
119 lines (107 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
*
* MvxLib, an open source C# library used for communication with Intentia Movex.
* http://mvxlib.sourceforge.net
*
* Copyright (C) 2005 - 2007 Mattias Bengtsson
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
using System;
using System.Collections;
namespace MvxLib
{
/// <summary>
/// This class will help you format response-strings.
/// </summary>
public class MvxSckResponseBuilder
{
private string _response;
private ArrayList _response_values;
private int _cur_pos;
/// <summary>
/// Gets the response-values as a string-array.
/// </summary>
public string[] ResponseValues
{
get { return (string[]) _response_values.ToArray(typeof(string)); }
}
/// <summary>
/// Gets the remaining commandstring that is not parsed.
/// </summary>
public string RemainingResponse
{
get { return _response.Substring(_cur_pos); }
}
/// <summary>
/// Creates an instance.
/// </summary>
/// <param name="response">The response-string Movex returned.</param>
public MvxSckResponseBuilder(string response)
{
_response = response;
_response_values = new ArrayList();
_cur_pos = 0;
}
/// <summary>
/// Parses the next value of the response.
/// </summary>
/// <param name="length">The expected length of the value.</param>
/// <returns>The parsed value.</returns>
public string GetString(int length)
{
string ret = _response.Substring(_cur_pos, length).Trim();
_cur_pos += length;
_response_values.Add(ret);
return ret;
}
/// <summary>
/// Parses the next value of the response.
/// </summary>
/// <param name="length">The expected length of the value.</param>
/// <returns>The parsed value.</returns>
public double GetDouble(int length)
{
string ret = GetString(length);
if (ret == "")
return 0;
return Convert.ToDouble(ret, System.Globalization.CultureInfo.InvariantCulture);
}
/// <summary>
/// Parses the next value of the response.
/// </summary>
/// <returns>The parsed value.</returns>
public bool GetBool()
{
if (GetString(1) == "1")
return true;
else
return false;
}
/// <summary>
/// Parses the next value of the response.
/// </summary>
/// <param name="length">The expected length of the value.</param>
/// <returns>The parsed value.</returns>
public int GetInt(int length)
{
string ret = GetString(length);
if (ret == "")
return 0;
return Convert.ToInt32(ret);
}
}
}