forked from tomsoftware/EOS-Formats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clJobFileLib.cs
220 lines (172 loc) · 6.94 KB
/
clJobFileLib.cs
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
using System.Runtime.InteropServices;
using System;
namespace Demo
{
class clJobFileLib
{
private const string LIB_DLL_NAME = "eos-format.dll";
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_initLib();
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern void jf_freeLib(int jobI);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_readFromFile(int jobI, byte [] fileName);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_printXML(int jobI);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr jf_getKeyName(int jobI, int keyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_getFirstKeyChild(int jobI, int keyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_getNextKeyChild(int jobI, int keyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_getFirstProperty(int jobI, int propertyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern Int32 jf_getNextProperty(int jobI, int propertyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr jf_getPropertyName(int jobI, int propertyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr jf_getPropertyValue(int jobI, int propertyIndex);
[DllImport(LIB_DLL_NAME, CallingConvention = CallingConvention.Cdecl)]
private static extern IntPtr jf_getPropertyComment(int jobI, int propertyIndex);
private int m_lib = 0;
//---------------------------------------------------//
public clJobFileLib()
{
try
{
m_lib = jf_initLib();
}
catch (Exception e)
{
System.Windows.Forms.MessageBox.Show("jf_initLib Error: " + e.Message);
}
}
//---------------------------------------------------//
~clJobFileLib()
{
try
{
jf_freeLib(m_lib);
}
catch (Exception e)
{
System.Windows.Forms.MessageBox.Show("jf_initLib Error: " + e.Message);
}
}
//---------------------------------------------------//
public bool readFromFile(string filename)
{
try
{
int ret = jf_readFromFile(m_lib, Str2CChr(filename));
if (ret > 0) return true;
System.Windows.Forms.MessageBox.Show("jf_readFromFile Error: " + ret);
}
catch (Exception e)
{
System.Windows.Forms.MessageBox.Show("jf_initLib Error: " + e.Message);
}
return false;
}
//---------------------------------------------------//
public int getFirstKeyChild(int KeyID = 0)
{
try
{
return jf_getFirstKeyChild(m_lib, KeyID);
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine(e.Message);
return 0;
}
}
//---------------------------------------------------//
public int getNextKeyChild(int KeyID = 0)
{
try
{
return jf_getNextKeyChild(m_lib, KeyID);
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine(e.Message);
return 0;
}
}
//---------------------------------------------------//
public int getFirstProperty(int KeyID = 0)
{
try
{
return jf_getFirstProperty(m_lib, KeyID);
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine(e.Message);
return 0;
}
}
//---------------------------------------------------//
public int getNextProperty(int PropID = 0)
{
try
{
return jf_getNextProperty(m_lib, PropID);
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine(e.Message);
return 0;
}
}
//---------------------------------------------------//
public string getKeyName(int KeyID = 0)
{
IntPtr ptr = jf_getKeyName(m_lib, KeyID);
if (ptr == IntPtr.Zero) return "";
return ptr2String(ptr);
}
//---------------------------------------------------//
public string getPropertyName(int PropID = 0)
{
IntPtr ptr = jf_getPropertyName(m_lib, PropID);
if (ptr == IntPtr.Zero) return "";
return ptr2String(ptr);
}
//---------------------------------------------------//
public string getPropertyValue(int PropID = 0)
{
IntPtr ptr = jf_getPropertyValue(m_lib, PropID);
if (ptr == IntPtr.Zero) return "";
return ptr2String(ptr);
}
//---------------------------------------------------//
public string getPropertyComment(int PropID = 0)
{
IntPtr ptr = jf_getPropertyComment(m_lib, PropID);
if (ptr == IntPtr.Zero) return "";
return ptr2String(ptr);
}
//---------------------------------------------------//
private string ptr2String(IntPtr ptr)
{
int len=0;
while (System.Runtime.InteropServices.Marshal.ReadByte(ptr, len) != 0) len++;
if (len == 0) return "";
byte[] array = new byte[len];
System.Runtime.InteropServices.Marshal.Copy(ptr, array, 0, len);
return System.Text.Encoding.Default.GetString(array);
}
//---------------------------------------------------//
private byte[] Str2CChr(string strData="")
{
//- C# uses UNICODE for char-type so 2Byte!
byte[] bytes = System.Text.Encoding.ASCII.GetBytes(strData);
Array.Resize(ref bytes, bytes.Length + 1);
bytes[bytes.Length - 1] = 0;
return bytes;
}
}
}