]> git.stg.codes - stg.git/blob - stglibs/srvconf.lib/parser.cpp
Factored out user's parser.
[stg.git] / stglibs / srvconf.lib / parser.cpp
1 /*
2  *    This program is free software; you can redistribute it and/or modify
3  *    it under the terms of the GNU General Public License as published by
4  *    the Free Software Foundation; either version 2 of the License, or
5  *    (at your option) any later version.
6  *
7  *    This program is distributed in the hope that it will be useful,
8  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
9  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  *    GNU General Public License for more details.
11  *
12  *    You should have received a copy of the GNU General Public License
13  *    along with this program; if not, write to the Free Software
14  *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
15  */
16
17 /*
18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  */
20
21  /*
22  $Revision: 1.18 $
23  $Date: 2010/08/04 00:40:00 $
24  $Author: faust $
25  */
26
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <sys/types.h>
31 #include <sys/socket.h>
32 #include <netinet/in.h>
33 #include <arpa/inet.h>
34 #include <string>
35
36 #include "stg/common.h"
37 #include "stg/const.h"
38 #include "stg/servconf.h"
39
40 using namespace std;
41
42 //-----------------------------------------------------------------------------
43 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
45 PARSER_GET_USERS::PARSER_GET_USERS()
46     : RecvUserDataCb(NULL),
47       userDataCb(NULL),
48       user(),
49       depth(0),
50       error(false)
51 {
52 }
53 //-----------------------------------------------------------------------------
54 int PARSER_GET_USERS::ParseStart(const char *el, const char **attr)
55 {
56 depth++;
57 if (depth == 1)
58     {
59     ParseUsers(el, attr);
60     }
61
62 if (depth == 2)
63     {
64     ParseUser(el, attr);
65     }
66
67 if (depth == 3)
68     {
69     ParseUserParams(el, attr);
70     }
71 return 0;
72 }
73 //-----------------------------------------------------------------------------
74 void PARSER_GET_USERS::ParseEnd(const char *)
75 {
76 depth--;
77 if (depth == 1)
78     {
79     if (RecvUserDataCb)
80         {
81         RecvUserDataCb(&user, userDataCb);
82         }
83     }
84 }
85 //-----------------------------------------------------------------------------
86 void PARSER_GET_USERS::ParseUsers(const char * el, const char ** attr)
87 {
88 if (strcasecmp(el, "users") == 0)
89     {
90     if (*attr != NULL)
91         return;
92     return;
93     }
94 }
95 //-----------------------------------------------------------------------------
96 void PARSER_GET_USERS::ParseUser(const char * el, const char ** attr)
97 {
98 if (el && attr[0])
99     {
100     if (strcasecmp(el, "user") != 0)
101         {
102         return;
103         }
104
105     if (strcasecmp(attr[0], "login") != 0)
106         {
107         return;
108         }
109     user.login = attr[1];
110     }
111 }
112 //-----------------------------------------------------------------------------
113 void PARSER_GET_USERS::ParseUserParams(const char * el, const char ** attr)
114 {
115 if (strcasecmp(el, "cash") == 0)
116     {
117     if (strtodouble2(attr[1], user.cash) < 0)
118         {
119         return;
120         }
121     }
122
123 /*if (strcasecmp(el, "LastCash") == 0)
124     {
125     if (strtodouble2(attr[1], user.lastCash) < 0)
126         {
127         MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
128         return 0;
129         }
130     }*/
131
132 /*if (strcasecmp(el, "LastActivityTime") == 0)
133     {
134     if (strtol(attr[1], user.lastActivityTime) < 0)
135         {
136         MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
137         return 0;
138         }
139     }*/
140
141
142 /*if (strcasecmp(el, "LastTimeCash") == 0)
143     {
144     if (strtol(attr[1], user.lastTimeCash) < 0)
145         {
146         MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
147         return 0;
148         }
149     }*/
150
151 /*if (strcasecmp(el, "CashExpire") == 0)
152     {
153     if (strtol(attr[1], user.cashExpire) < 0)
154         {
155         MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
156         return 0;
157         }
158     }*/
159
160 if (strcasecmp(el, "credit") == 0)
161     {
162     if (strtodouble2(attr[1], user.credit) < 0)
163         {
164         return;
165         }
166     }
167
168 if (strcasecmp(el, "creditExpire") == 0)
169     {
170     if (str2x(attr[1], user.creditExpire) < 0)
171         {
172         return;
173         }
174     }
175
176 /*if (strcasecmp(el, "freemb") == 0)
177     {
178     if (strtodouble2(attr[1], user.freeMb) < 0)
179         {
180         MessageDlg("Error in answer", mtError, TMsgDlgButtons() << mbOK, 0);
181         return 0;
182         }
183     }*/
184
185 if (strcasecmp(el, "down") == 0)
186     {
187     if (str2x(attr[1], user.down) < 0)
188         {
189         return;
190         }
191     }
192
193 if (strcasecmp(el, "passive") == 0)
194     {
195     if (str2x(attr[1], user.passive) < 0)
196         {
197         return;
198         }
199     }
200
201 if (strcasecmp(el, "disableDetailStat") == 0)
202     {
203     if (str2x(attr[1], user.disableDetailStat) < 0)
204         {
205         return;
206         }
207     }
208
209
210 if (strcasecmp(el, "status") == 0)
211     {
212     if (str2x(attr[1], user.connected) < 0)
213         {
214         return;
215         }
216     }
217
218 if (strcasecmp(el, "aonline") == 0)
219     {
220     if (str2x(attr[1], user.alwaysOnline) < 0)
221         {
222         return;
223         }
224     }
225
226 if (strcasecmp(el, "currip") == 0)
227     {
228     user.ip = inet_addr(attr[1]);
229     }
230
231 if (strcasecmp(el, "ip") == 0)
232     {
233     user.ips = attr[1];
234     }
235
236
237 if (strcasecmp(el, "tariff") == 0)
238     {
239     //KOIToWin(user.tariff, *(attr+1), TARIFF_LEN);
240     user.tariff = attr[1];
241     return;
242     }
243
244 if (strcasecmp(el, "password") == 0)
245     {
246     user.password = *(attr+1);
247     return;
248     }
249
250 if (strcasecmp(el, "iface") == 0)
251     {
252     user.iface = attr[1];
253     return;
254     }
255
256 /*if (strcasecmp(el, "name") == 0)
257     {
258     / *char nameEnc[REALNM_LEN * 2 + 1];
259     char name[REALNM_LEN];
260     strncpy(nameEnc, attr[1], REALNM_LEN * 2 + 1);
261     Decode21(name, nameEnc);
262     KOIToWin(user.realName, name, REALNM_LEN);* /
263     Decode21str(user.realName, attr[1]);
264     return;
265     }*/
266
267 if (strcasecmp(el, "address") == 0)
268     {
269     /*char addressEnc[ADDR_LEN * 2 + 1];
270     char address[ADDR_LEN];
271     strncpy(addressEnc, attr[1], ADDR_LEN * 2 + 1);
272     Decode21(address, addressEnc);
273     KOIToWin(user.address, address, ADDR_LEN);*/
274     Decode21str(user.address, attr[1]);
275     return;
276     }
277
278 if (strcasecmp(el, "phone") == 0)
279     {
280     /*char phoneEnc[PHONE_LEN * 2 + 1];
281     char phone[PHONE_LEN];
282     strncpy(phoneEnc, attr[1], PHONE_LEN * 2 + 1);
283     Decode21(phone, phoneEnc);
284     KOIToWin(user.phone, phone, PHONE_LEN);*/
285     Decode21str(user.phone, attr[1]);
286     return;
287     }
288
289 if (strcasecmp(el, "note") == 0)
290     {
291     /*char noteEnc[NOTE_LEN * 2 + 1];
292     char note[NOTE_LEN];
293     strncpy(noteEnc, attr[1], NOTE_LEN * 2 + 1);*/
294     //KOIToWin(user.note, note, NOTE_LEN);
295     //user.note = note;
296     Decode21str(user.note, attr[1]);
297     return;
298     }
299
300 if (strcasecmp(el, "email") == 0)
301     {
302     /*char emailEnc[EMAIL_LEN * 2 + 1];
303     char email[EMAIL_LEN];
304     strncpy(emailEnc, attr[1], EMAIL_LEN * 2 + 1);
305     Decode21(email, emailEnc);
306     //KOIToWin(user.email, email, EMAIL_LEN);
307     user.email = email;*/
308     Decode21str(user.email, attr[1]);
309     return;
310     }
311
312 if (strcasecmp(el, "group") == 0)
313     {
314     /*char groupEnc[GROUP_LEN * 2 + 1];
315     char group[GROUP_LEN];
316     strncpy(groupEnc, attr[1], GROUP_LEN * 2 + 1);
317     Decode21(group, groupEnc);
318     //KOIToWin(user.group, group, GROUP_LEN);
319     user.group = group;*/
320     Decode21str(user.group, attr[1]);
321     return;
322     }
323
324 if (strcasecmp(el, "traff") == 0)
325     {
326     ParseUserLoadStat(el, attr);
327     return;
328     }
329
330 }
331 //-----------------------------------------------------------------------------
332 void PARSER_GET_USERS::ParseUserLoadStat(const char *, const char ** attr)
333 {
334 int i = 0;
335 char dir[6];
336 while (attr[i])
337     {
338     for (int j = 0; j < DIR_NUM; j++)
339         {
340         sprintf(dir, "MU%d", j);
341         if (strcasecmp(dir, attr[i]) == 0)
342             {
343             str2x(attr[i+1], user.stat.mu[j]);
344             break;
345             }
346         }
347     for (int j = 0; j < DIR_NUM; j++)
348         {
349         sprintf(dir, "MD%d", j);
350         if (strcasecmp(dir, attr[i]) == 0)
351             {
352             str2x(attr[i+1], user.stat.md[j]);
353             break;
354             }
355         }
356     for (int j = 0; j < DIR_NUM; j++)
357         {
358         sprintf(dir, "SU%d", j);
359         if (strcasecmp(dir, attr[i]) == 0)
360             {
361             str2x(attr[i+1], user.stat.su[j]);
362             break;
363             }
364         }
365     for (int j = 0; j < DIR_NUM; j++)
366         {
367         sprintf(dir, "SD%d", j);
368         if (strcasecmp(dir, attr[i]) == 0)
369             {
370             str2x(attr[i+1], user.stat.sd[j]);
371             break;
372             }
373         }
374     i+=2;
375     }
376 return;
377 }
378 //-----------------------------------------------------------------------------
379 void PARSER_GET_USERS::SetUserDataRecvCb(RecvUserDataCb_t f, void * data)
380 {
381 RecvUserDataCb = f;
382 userDataCb = data;
383 }
384 //-----------------------------------------------------------------------------
385 //-----------------------------------------------------------------------------
386 //-----------------------------------------------------------------------------
387 PARSER_CHG_USER::PARSER_CHG_USER()
388     : RecvChgUserCb(NULL),
389       chgUserCbData(NULL),
390       depth(0),
391       error(false)
392 {
393 }
394 //-----------------------------------------------------------------------------
395 int PARSER_CHG_USER::ParseStart(const char *el, const char **attr)
396 {
397 depth++;
398 if (depth == 1)
399     {
400     if (strcasecmp(el, "SetUser") == 0)
401         {
402         ParseAnswer(el, attr);
403         }
404     else if (strcasecmp(el, "DelUser") == 0)
405         {
406         ParseAnswer(el, attr);
407         }
408     else if (strcasecmp(el, "AddUser") == 0)
409         {
410         ParseAnswer(el, attr);
411         }
412     }
413 return 0;
414 }
415 //-----------------------------------------------------------------------------
416 void PARSER_CHG_USER::ParseEnd(const char *)
417 {
418 depth--;
419 }
420 //-----------------------------------------------------------------------------
421 void PARSER_CHG_USER::ParseAnswer(const char *, const char **attr)
422 {
423 if (RecvChgUserCb)
424     {
425     RecvChgUserCb(attr[1], chgUserCbData);
426     }
427 }
428 //-----------------------------------------------------------------------------
429 void PARSER_CHG_USER::SetChgUserRecvCb(RecvChgUserCb_t f, void * data)
430 {
431 RecvChgUserCb = f;
432 chgUserCbData = data;
433 }
434 //-----------------------------------------------------------------------------
435 //-----------------------------------------------------------------------------
436 //-----------------------------------------------------------------------------
437 PARSER_SEND_MESSAGE::PARSER_SEND_MESSAGE()
438     : RecvSendMessageCb(NULL),
439       sendMessageCbData(NULL),
440       depth(0),
441       error(false)
442 {
443 }
444 //-----------------------------------------------------------------------------
445 int  PARSER_SEND_MESSAGE::ParseStart(const char *el, const char **attr)
446 {
447 depth++;
448 if (depth == 1)
449     {
450     if (strcasecmp(el, "SendMessageResult") == 0)
451         {
452         ParseAnswer(el, attr);
453         }
454     }
455 return 0;
456 }
457 //-----------------------------------------------------------------------------
458 void PARSER_SEND_MESSAGE::ParseEnd(const char *)
459 {
460 depth--;
461 }
462 //-----------------------------------------------------------------------------
463 void PARSER_SEND_MESSAGE::ParseAnswer(const char *, const char **attr)
464 {
465 if (RecvSendMessageCb)
466     RecvSendMessageCb(attr[1], sendMessageCbData);
467 }
468 //-----------------------------------------------------------------------------
469 void PARSER_SEND_MESSAGE::SetSendMessageRecvCb(RecvSendMessageCb_t f, void * data)
470 {
471 RecvSendMessageCb = f;
472 sendMessageCbData = data;
473 }
474 //-----------------------------------------------------------------------------