-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathServer_Protocol_DCOM.pas
290 lines (241 loc) · 6.86 KB
/
Server_Protocol_DCOM.pas
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
unit Server_Protocol_DCOM;
//------------------------------------------------------------------------------
interface
//------------------------------------------------------------------------------
uses
Server_Devices,
cport,
sysutils,
Windows,
SyncObjs,
Classes,
ComCtrls,
Contnrs,
Server_UDP,
XMLIntf,
msxmldom;
type
t7053item = class(TDevItem)
dbid: integer;
constructor create(padress: integer; pname: string; phandle: integer;
pvalue: variant; miswrite: boolean; mdbid: integer);
end;
type
TDcom = class(TRealDev)
port: TComPort; // !!! Ïåðåîïðåäåëåíèÿ ðîäèòåëÿ
lock: TCriticalSection;
procedure draw(inlist: tlistview); override;
constructor Create(xmlfile: IXMLNode); overload;
procedure Read(port: TComPort); override;
procedure Write(port: TComPort); override;
procedure WriteParams(szname: Integer; const Value: Variant); override;
end;
//------------------------------------------------------------------------------
implementation
//------------------------------------------------------------------------------
uses TLevelUnit;
procedure TDcom.draw(inlist: tlistview);
var
i: integer;
tmpitem: TListItem;
begin
inlist.clear;
for i := 0 to itemlist.Count - 1 do
begin
tmpitem := inlist.Items.Add();
if t7053item(t7053item(itemlist.Items[i])).iswrite then
begin
tmpitem.ImageIndex := 1;
tmpitem.Caption := 'out.' + t7053item(itemlist.Items[i]).name;
end
else
begin
tmpitem.ImageIndex := 0;
tmpitem.Caption := 'in.' + t7053item(itemlist.Items[i]).name;
end;
tmpitem.Caption := t7053item(itemlist.Items[i]).name;
tmpitem.SubItems.Add(BoolToStr(t7053item(itemlist.Items[i]).Value, true));
tmpitem.SubItems.Add(inttostr(timer));
end;
end;
procedure TDcom.WriteParams(szname: Integer; const Value: Variant);
var
i: Smallint;
strbit : string;
strval : string;
bit : Integer;
begin
strbit := '00';
strval := '00';
for i := 0 to itemlist.Count - 1 do
begin
if t7053item(itemlist.Items[i]).handle = szname then
begin
bit := t7053item(itemlist.Items[i]).adress;
if (bit >= 0) and (bit < 8) then
strbit := 'A' + IntToStr(bit);
if (bit >= 8) and (bit < 16) then
strbit := 'B' + IntToStr(bit - 8);
if Boolean(Value) then
strval := '01';
Break;
end;
end;
cmdQueue.Enqueue('#' + adress + strbit + strval);
end;
procedure TDcom.Write(port: TComPort);
var
s: string;
event: TEvent;
count: integer;
Events: TComEvents;
cmdString: string[20];
begin
// Öèêë çàïèñè
while not cmdQueue.isEmpty do
begin
PurgeComm(port.Handle, PURGE_RXABORT or PURGE_RXCLEAR or PURGE_TXABORT or PURGE_TXCLEAR);
Event := TEvent.Create(nil, True, False, '');
Events := [evRxChar];
cmdString := cmdQueue.Dequeue;
port.WriteStr(cmdString + #13);
s := #0#0#0#0#0#0#0#0#0;
Port.WaitForEvent(Events, Event.Handle, 50);
count := port.InputCount;
port.Readstr(s, count);
if (Length(s) > 0) then
if s[1] <> '>' then
log.error('Write error, port #' + IntToStr(Self.dport) + '. Data: ' + cmdString);
if log.GetLevel = TLevelUnit.DEBUG then
log.debug('Write to port #' + IntToStr(dport) + '. Data: ' + cmdString);
Event.Free;
sleep(25);
end;
end;
procedure TDcom.Read(port: TComPort);
var
s: string;
val, val1: byte;
tmpitm: Tservitem;
tmpdevitem: t7053item;
event: TEvent;
count: integer;
Events: TComEvents;
i: Integer;
cmdString: string[20];
begin
// Öèêë ÷òåíèå
PurgeComm(port.Handle, PURGE_RXABORT or PURGE_RXCLEAR or PURGE_TXABORT or PURGE_TXCLEAR);
Event := TEvent.Create(nil, True, False, '');
Events := [evRxChar];
port.WriteStr('@' + adress + #13);
s := '';
//Sleep(200);
Port.WaitForEvent(Events, Event.Handle, 50);
if port.InputCount = 6 then
port.ReadStr(s, port.InputCount);
if s <> '' then
begin
HexToBin(@s[4], @val, 1);
HexToBin(@s[2], @val1, 1);
for i := 0 to itemlist.Count - 1 do
begin
tmpdevitem := t7053item(itemlist.items[i]);
tmpitm := Tservitem(serv.items[tmpdevitem.handle]);
if (i >= 0) and (i <= 7) then
begin
if tmpdevitem.value <> boolean(val and (1 shl i)) then
begin
tmpitm.Value := boolean(val and (1 shl i));
tmpdevitem.value := boolean(val and (1 shl i));
tmpitm.updated := now;
tmpitm.Quality := OPC_QUALITY_GOOD;
end;
end;
if (i >= 8) and (i <= 15) then
begin
if tmpdevitem.value <> boolean(val1 and (1 shl (i - 8))) then
begin
tmpitm.Value := boolean(val1 and (1 shl (i - 8)));
tmpdevitem.value := boolean(val1 and (1 shl (i - 8)));
tmpitm.updated := now;
tmpitm.Quality := OPC_QUALITY_GOOD;
end;
end;
end;
end
else
begin
for i := 0 to itemlist.Count - 1 do
begin
tmpdevitem := t7053item(itemlist.items[i]);
tmpitm := Tservitem(serv.items[tmpdevitem.handle]);
if (i >= 0) and (i <= 7) then
begin
if tmpdevitem.value <> boolean(val and (1 shl i)) then
begin
tmpitm.updated := now;
tmpitm.Quality := OPC_QUALITY_BAD;
end;
end;
if (i >= 8) and (i <= 15) then
begin
if tmpdevitem.value <> boolean(val1 and (1 shl (i - 8))) then
begin
tmpitm.updated := now;
tmpitm.Quality := OPC_QUALITY_BAD;
end;
end;
end;
end;
sleep(15);
Event.Free;
end;
{ t7053item }
constructor t7053item.create(padress: integer; pname: string;
phandle: integer; pvalue: variant; miswrite: boolean; mdbid: integer);
begin
inherited Create;
_address := padress;
_name := pname;
_handle := phandle;
_value := pvalue;
_iswrite := miswrite;
Self.dbid := mdbid;
end;
constructor TDcom.Create(xmlfile: IXMLNode);
var
i: integer;
tmpitm: TServItem;
handle: integer;
itemname: string;
nodeTeg: IXMLNode;
tagIsWrite: Boolean;
begin
self.adress := Trim(xmlfile.Attributes['address']);
if Length(Self.adress) < 2 then
Self.adress := '0'+Self.adress;
inherited Create(xmlfile.Attributes['name'], strtoint(xmlfile.Attributes['portnum']));
tagIsWrite := False;
if xmlfile.HasAttribute('write') then
if xmlfile.Attributes['write'] = 'true' then
tagIsWrite := True;
itemlist := TObjectList.Create;
for i := 0 to xmlfile.ChildNodes.Count - 1 do
begin
nodeTeg := xmlfile.ChildNodes[i];
itemname := nodeTeg.Text;
handle := AddItem(itemname, 1, strtoint(nodeTeg.Attributes['idopc']), tagIsWrite);
itemlist.Add(t7053item.create(
strtoint(nodeTeg.Attributes['bit']),
itemname,
handle,
false,
false,
0
));
tmpitm := TServItem(serv.items[handle]);
tmpitm.Value := false;
end;
end;
end.