1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Text; |
4 |
|
5 |
using gr2lib.core.typedefs; |
6 |
using gr2lib.core.exceptions; |
7 |
using gr2lib.core.interfaces; |
8 |
using System.ComponentModel; |
9 |
|
10 |
namespace gr2lib.core.apiversion |
11 |
{ |
12 |
#region public class VersionType |
13 |
public interface Iversiontype |
14 |
{ |
15 |
int major { get; set; } |
16 |
int minor { get; set; } |
17 |
int customization { get; set; } |
18 |
int build { get; set; } |
19 |
//string version { get; } |
20 |
} |
21 |
|
22 |
public class versiontype : Iversiontype |
23 |
{ |
24 |
/// <summary> |
25 |
/// default versiontype construction: 0.0.0.0 |
26 |
/// </summary> |
27 |
public versiontype() |
28 |
{ |
29 |
this.major = 0; |
30 |
this.minor = 0; |
31 |
this.customization = 0; |
32 |
this.build = 0; |
33 |
} |
34 |
/// <summary> |
35 |
/// versiontype construction: major.minor.customization.build |
36 |
/// </summary> |
37 |
public versiontype(int major, int minor, int customization, int build) |
38 |
{ |
39 |
this.major = major; |
40 |
this.minor = minor; |
41 |
this.customization = customization; |
42 |
this.build = build; |
43 |
} |
44 |
/// <summary> |
45 |
/// versiontype construction: major.minor.customization.build (via string: "0.0.0.0") |
46 |
/// </summary> |
47 |
public versiontype(string version) |
48 |
{ |
49 |
string[] _version = version.Split('.'); |
50 |
|
51 |
this.major = Convert.ToInt32(_version[0]); |
52 |
this.minor = Convert.ToInt32(_version[1]); |
53 |
this.customization = Convert.ToInt32(_version[2]); |
54 |
this.build = Convert.ToInt32(_version[3]); |
55 |
} |
56 |
/// <summary> |
57 |
/// Gets this version in format: major.minor.customization.build |
58 |
/// </summary> |
59 |
/// <returns></returns> |
60 |
public override string ToString() |
61 |
{ |
62 |
return this.version; |
63 |
} |
64 |
|
65 |
#region IVersionType Members |
66 |
/// <summary> |
67 |
/// Returns a string representation of the Granny2 API Version in format (major.minor.customization.build) |
68 |
/// </summary> |
69 |
private string version { get { return string.Format("{0}.{1}.{2}.{3}", major, minor, customization, build); } } |
70 |
private int _major; |
71 |
[RefreshPropertiesAttribute(RefreshProperties.All)] |
72 |
/// <summary> |
73 |
/// Returns the Major of the Granny2 API Version (X.0.0.0) |
74 |
/// </summary> |
75 |
public int major { get { return _major; } set { _major = value; } } |
76 |
|
77 |
private int _minor; |
78 |
[RefreshPropertiesAttribute(RefreshProperties.All)] |
79 |
/// <summary> |
80 |
/// Returns the Minor of the Granny2 API Version (0.X.0.0) |
81 |
/// </summary> |
82 |
public int minor { get { return _minor; } set { _minor = value; } } |
83 |
|
84 |
private int _customization; |
85 |
[RefreshPropertiesAttribute(RefreshProperties.All)] |
86 |
/// <summary> |
87 |
/// Returns the Customization of the Granny2 API Version - Customization (0.0.X.0) |
88 |
/// </summary> |
89 |
public int customization { get { return _customization; } set { _customization = value; } } |
90 |
|
91 |
private int _build; |
92 |
[RefreshPropertiesAttribute(RefreshProperties.All)] |
93 |
/// <summary> |
94 |
/// Returns the Build of the Granny2 API Version (0.0.0.X) |
95 |
/// </summary> |
96 |
public int build { get { return _build; } set { _build = value; } } |
97 |
#endregion |
98 |
} |
99 |
#endregion |
100 |
|
101 |
#region public class Granny2APIVersion |
102 |
/// <summary> |
103 |
/// Handle's the checking of the Loaded Granny2 API Version |
104 |
/// </summary> |
105 |
public class granny2apiversion : igranny2apiversion |
106 |
{ |
107 |
/// <summary> |
108 |
/// Default granny2apiversion Constructor: Expect Granny2 API -> 2.7.0.30 |
109 |
/// </summary> |
110 |
public granny2apiversion() |
111 |
{ |
112 |
this._expectedapiversion = new versiontype( |
113 |
apiversiontype.GrannyProductMajorVersion, |
114 |
apiversiontype.GrannyProductMinorVersion, |
115 |
apiversiontype.GrannyProductCustomization, |
116 |
apiversiontype.GrannyProductBuildNumber); |
117 |
|
118 |
granny2apiloader _loader = new granny2apiloader(true); |
119 |
this._apiversion = new versiontype(); |
120 |
this._apiversionsmatch = this.GrannyVersionsMatch(); |
121 |
this.GetGrannyVersion(); |
122 |
|
123 |
} |
124 |
/// <summary> |
125 |
/// Default granny2apiversion Constructor: Expect Granny2 API -> 2.7.0.30 (allow disable looking for granny api) |
126 |
/// </summary> |
127 |
public granny2apiversion(bool checkforgrannyapi) |
128 |
{ |
129 |
if (checkforgrannyapi) |
130 |
{ |
131 |
this._expectedapiversion = new versiontype( |
132 |
apiversiontype.GrannyProductMajorVersion, |
133 |
apiversiontype.GrannyProductMinorVersion, |
134 |
apiversiontype.GrannyProductCustomization, |
135 |
apiversiontype.GrannyProductBuildNumber); |
136 |
|
137 |
granny2apiloader _loader = new granny2apiloader(checkforgrannyapi); |
138 |
this._apiversion = new versiontype(); |
139 |
this._apiversionsmatch = this.GrannyVersionsMatch(); |
140 |
this.GetGrannyVersion(); |
141 |
} |
142 |
|
143 |
} |
144 |
/// <summary> |
145 |
/// granny2apiversion Constructor: set Granny2 API -> major.minor.customization.build |
146 |
/// </summary> |
147 |
public granny2apiversion(granny_int32x ExpectedMajorVersion, granny_int32x ExpectedMinorVersion, granny_int32x ExpectedCustomization, granny_int32x ExpectedBuildNumber) |
148 |
{ |
149 |
this._expectedapiversion = new versiontype( |
150 |
ExpectedMajorVersion, |
151 |
ExpectedMinorVersion, |
152 |
ExpectedCustomization, |
153 |
ExpectedBuildNumber); |
154 |
|
155 |
granny2apiloader _loader = new granny2apiloader(true); |
156 |
this._apiversion = new versiontype(); |
157 |
this._apiversionsmatch = this.GrannyVersionsMatch(); |
158 |
this.GetGrannyVersion(); |
159 |
} |
160 |
/// <summary> |
161 |
/// granny2apiversion Constructor: set Granny2 API -> major.minor.customization.build |
162 |
/// </summary> |
163 |
public granny2apiversion(bool checkforgrannyapi, granny_int32x ExpectedMajorVersion, granny_int32x ExpectedMinorVersion, granny_int32x ExpectedCustomization, granny_int32x ExpectedBuildNumber) |
164 |
{ |
165 |
if (checkforgrannyapi) |
166 |
{ |
167 |
this._expectedapiversion = new versiontype( |
168 |
ExpectedMajorVersion, |
169 |
ExpectedMinorVersion, |
170 |
ExpectedCustomization, |
171 |
ExpectedBuildNumber); |
172 |
|
173 |
granny2apiloader _loader = new granny2apiloader(checkforgrannyapi); |
174 |
this._apiversion = new versiontype(); |
175 |
this._apiversionsmatch = this.GrannyVersionsMatch(); |
176 |
this.GetGrannyVersion(); |
177 |
} |
178 |
} |
179 |
/// <summary> |
180 |
/// granny2apiversion Constructor: set Granny2 API -> major.minor.customization.build (via string: "0.0.0.0") |
181 |
/// </summary> |
182 |
public granny2apiversion(string ExceptedVersion) |
183 |
{ |
184 |
this._expectedapiversion = new versiontype(ExceptedVersion); |
185 |
|
186 |
granny2apiloader _loader = new granny2apiloader(true); |
187 |
this._apiversion = new versiontype(); |
188 |
this._apiversionsmatch = this.GrannyVersionsMatch(); |
189 |
this.GetGrannyVersion(); |
190 |
} |
191 |
/// <summary> |
192 |
/// granny2apiversion Constructor: set Granny2 API -> major.minor.customization.build (via string: "0.0.0.0") |
193 |
/// </summary> |
194 |
public granny2apiversion(bool checkforgrannyapi,string ExceptedVersion) |
195 |
{ |
196 |
if (checkforgrannyapi) |
197 |
{ |
198 |
this._expectedapiversion = new versiontype(ExceptedVersion); |
199 |
|
200 |
granny2apiloader _loader = new granny2apiloader(checkforgrannyapi); |
201 |
this._apiversion = new versiontype(); |
202 |
this._apiversionsmatch = this.GrannyVersionsMatch(); |
203 |
this.GetGrannyVersion(); |
204 |
} |
205 |
} |
206 |
|
207 |
#region APIVersion Support |
208 |
private class apiversiontype |
209 |
{ |
210 |
public static string GrannyProductVersion = "2.7.0.30"; |
211 |
public static granny_int32x GrannyProductMajorVersion = 2; |
212 |
public static granny_int32x GrannyProductMinorVersion = 7; |
213 |
public static granny_int32x GrannyProductCustomization = 0; |
214 |
public static granny_int32x GrannyProductBuildNumber = 30; |
215 |
public static string GrannyProductReleaseName = "release"; |
216 |
}; |
217 |
|
218 |
private bool GrannyVersionsMatch() |
219 |
{ |
220 |
return gr2lib.core.coreapi.GrannyVersionsMatch( |
221 |
this._expectedapiversion.major, |
222 |
this._expectedapiversion.minor, |
223 |
this._expectedapiversion.customization, |
224 |
this._expectedapiversion.build); |
225 |
} |
226 |
private void GetGrannyVersion() |
227 |
{ |
228 |
granny_int32x major = 0; |
229 |
granny_int32x minor = 0; |
230 |
granny_int32x customization = 0; |
231 |
granny_int32x build = 0; |
232 |
|
233 |
gr2lib.core.coreapi.GrannyGetVersion( |
234 |
ref major, |
235 |
ref minor, |
236 |
ref customization, |
237 |
ref build); |
238 |
|
239 |
this._apiversion = new versiontype(major, minor, customization, build); |
240 |
|
241 |
} |
242 |
private string GrannyGetVersionString() |
243 |
{ |
244 |
return gr2lib.core.coreapi.GrannyGetVersionString(); |
245 |
} |
246 |
#endregion |
247 |
|
248 |
#region IGranny2APIVersion Members |
249 |
private bool _apiversionsmatch = false; |
250 |
/// <summary> |
251 |
/// Indicates that the Loaded Granny2 API Version matches the version that the core library was built against |
252 |
/// </summary> |
253 |
public bool apiversionsmatch { get { return _apiversionsmatch; } } |
254 |
private versiontype _apiversion; |
255 |
/// <summary> |
256 |
/// Gets the Loaded Granny2 API Version |
257 |
/// </summary> |
258 |
public versiontype apiversion { get { return _apiversion; } } |
259 |
private versiontype _expectedapiversion; |
260 |
/// <summary> |
261 |
/// Gets the Expected Granny2 API Version |
262 |
/// </summary> |
263 |
public versiontype expectedapiversion { get { return _expectedapiversion; } } |
264 |
#endregion |
265 |
} |
266 |
#endregion |
267 |
} |