-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsgl.y
825 lines (655 loc) · 23.8 KB
/
csgl.y
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
%{
#include "csgl.hpp"
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
//the following are UBUNTU/LINUX ONLY terminal color codes.
#define RESET "\033[0m"
#define BLACK "\033[30m" /* Black */
#define RED "\033[31m" /* Red */
#define GREEN "\033[32m" /* Green */
#define YELLOW "\033[33m" /* Yellow */
#define BLUE "\033[34m" /* Blue */
#define MAGENTA "\033[35m" /* Magenta */
#define CYAN "\033[36m" /* Cyan */
#define WHITE "\033[37m" /* White */
#define BOLDBLACK "\033[1m\033[30m" /* Bold Black */
#define BOLDRED "\033[1m\033[31m" /* Bold Red */
#define BOLDGREEN "\033[1m\033[32m" /* Bold Green */
#define BOLDYELLOW "\033[1m\033[33m" /* Bold Yellow */
#define BOLDBLUE "\033[1m\033[34m" /* Bold Blue */
#define BOLDMAGENTA "\033[1m\033[35m" /* Bold Magenta */
#define BOLDCYAN "\033[1m\033[36m" /* Bold Cyan */
#define BOLDWHITE "\033[1m\033[37m" /* Bold White */
using namespace std;
void csgInfo(std::string type,std::string s);
std::string toStr(int);
extern FILE *yyin;
extern FILE *yyout;
ofstream ofs;
ofstream ofscpp;
// headfile content
CSGStream headDefStream;
CSGStream endDefStream;
CSGStream headIncludeStream;
CSGStream headfileContentStream;
//cppfile content
CSGStream cppContentStream;
//output info stream
CSGStream outputInfo;
//interface content
CSGStream headInterfaceStream;
CSGStream cppInterfaceStream;
bool globalError=false;
std::vector<std::string> structVec;
%}
// ifndef token
%token TOKEN_IFNDEF TOKEN_IFNDEF_END TOKEN_IFDEF TOKEN_IFDEF_END
%token <t_string> TOKEN_IFNDEF_FILE TOKEN_IFDEF_FILE TOKEN_ENDIF
//comment token
%token TOKEN_COMMENT_START TOKEN_COMMENT_END TOKEN_COMMENT_EX_START TOKEN_COMMENT_EX_END
%token <t_string> TOKEN_COMMENT_FILE TOKEN_COMMENT_EX_FILE
//include token
%token TOKEN_INCLUDE_START TOKEN_INCLUDE_END TOKEN_INCLUDE_SIGN
%token <t_string> TOKEN_INCLUDE_FILE
//enum
%token <t_string>TOKEN_ENUM_START
%token <te_list>TOKEN_ENUM_CONTENT;
//struct
%token TOKEN_STRUCT_START TOKEN_STRUCT_END
%token <t_string> TOKEN_STRUCT_NAME
%token <tstruct_list> TOKEN_STRUCT_CONTENT
//id
%token TOKEN_ID_START TOKEN_ID_END
%token <id> TOKEN_ID_NUM
//interface
%token TOKEN_INTERFACE_END TOKEN_INTERFACE_ID_START TOKEN_INTERFACE_ID_NUM TOKEN_INTERFACE_ID_END
%token <t_string> TOKEN_INTERFACE_NAME
%token <tinterface_list> TOKEN_INTERFACE_CONTENT
%token <tmpInterfaceKey.funcName> TOKEN_INTERFACE_FUNCTION_NAME
%%
program : program statement|statement{};
statement : define_line | comment |include | enum |struct |interface{};
interface : TOKEN_INTERFACE_NAME TOKEN_INTERFACE_CONTENT {
//classNameDef
std::string interfaceName=$1;
std::vector<CSGInterface> interfaceList=$2;
bool isFirstOutParam=true;
bool isFirstParam=true;
outputInfo<<"yacc match interface:"<<interfaceName<<"\n";
//classNameDef
std::string interfaceClassName=interfaceName;
std::string srvCBprefix="CSrv_"+interfaceClassName+"_";
std::string cliCBprefix="CCli_"+interfaceClassName+"_";
std::string mNamespace="Message";
std::string proxyNamespace="csg_proxy";
//======================Server callBack start==============
CSGStream callBackDef;
CSGStream cppCallBack;
callBackDef<<"namespace "<<mNamespace<<"\n"
<<"{\n";
for(int i=0;i<interfaceList.size();i++){
CSGInterface tmp=interfaceList[i];
std::string functionName=tmp.funcName;
//class def
std::string srvCB=srvCBprefix+functionName;
std::string srvCBPtr=srvCB+"_Ptr";
std::string cliCB=cliCBprefix+functionName;
std::string cliCBPtr=cliCB+"_Ptr";
callBackDef<<" class "<<srvCB<<":public virtual CRMIObjectCallBackObject\n"
<<" {\n"
<<" public:\n"
<<" virtual void response(";
cppCallBack<<"void Message::"<<srvCB<<"::response(";
CSGStream cppCallBackWrite;
isFirstOutParam=true;
isFirstParam=true;
for(int j=0;j<tmp.paramList.size();j++){
CSGInterfaceParam param=tmp.paramList[j];
bool isOut=param.isOut;
std::string type=param.type;
std::string identify=param.identify;
if(isOut){
if(isFirstOutParam){
callBackDef<<param.type<<" "<<param.identify;
cppCallBack<<param.type<<" "<<param.identify;
isFirstOutParam=false;
}else{
callBackDef<<","<<param.type<<" "<<param.identify;
cppCallBack<<","<<param.type<<" "<<param.identify;
}
cppCallBackWrite<<" __os->write("<<param.identify<<");\n";
}
}
callBackDef<<");\n"
<<" };\n"
<<" typedef CSmartPointShare<"<<srvCB<<"> "<<srvCBPtr<<";\n\n";
cppCallBack<<")\n"
<<"{\n"
<<" CAutoSerializeStream __os(CSerializeStreamPool::instance()->newObject());\n"
<<" SRMIReturn rmiReturn;\n"
<<" rmiReturn.dispatchStatus = ERMIDispatchResultOk;\n"
<<" rmiReturn.messageId = _rmiCall.messageId;\n\n"
<<" CRpcHelper::prepareToReturn(_session,__os,rmiReturn);\n\n"
<<" __os->setUseBitMark(true);\n\n"
<<cppCallBackWrite.content<<"\n"
<<" CRpcHelper::toReturn(_session,__os);\n\n"
<<"}\n\n";
}
callBackDef<<"}\n\n"<<"\n";
headInterfaceStream<<callBackDef.content<<"\n";
cppInterfaceStream<<cppCallBack.content;
//*************************Server callBack end******************************
//======================Server interface class struct and onCall Def start==============
CSGStream cppClassStruct;
CSGStream cppClassOncall;
cppClassStruct<<"Message::"<<interfaceClassName<<"::"<<interfaceClassName<<"()\n"
<<"{\n"
<<" SRMIInfo rmiInfo;\n"
<<" rmiInfo.identify=\""<<interfaceClassName<<"\";\n\n";
cppClassOncall<<"csg::ERMIDispatchResult Message::"<<interfaceClassName<<"::__onCall(const CSessionPtr& session,const SRMICall& rmiCall,CSerializeStream& __is)\n"
<<"{\n"
<<" switch(rmiCall.rpcId)\n"
<<" {\n";
for(int i=0;i<interfaceList.size();i++){
CSGInterface tmp=interfaceList[i];
std::string functionName=tmp.funcName;
outputInfo<<"functionName:"<<tmp.funcName<<",rpcid:"<<toStr(tmp.rpcId)<<"\n";
//class def
std::string srvCB=srvCBprefix+functionName;
std::string srvCBPtr=srvCB+"_Ptr";
std::string cliCB=cliCBprefix+functionName;
std::string cliCBPtr=cliCB+"_Ptr";
CSGStream cppProxyCallBackRead;
CSGStream cppProxyCallBackParam;
CSGStream cppProxyReturnParam;
CSGStream cppProxyFunction;
CSGStream cppProxyCallWrite;
cppClassStruct<<" rmiInfo.operation=\""<<functionName<<"\";\n"
<<" addRMIInfo("<<toStr(tmp.rpcId)<<",rmiInfo);\n"
<<" addRpcId("<<toStr(tmp.rpcId)<<");\n\n";
cppClassOncall<<" case "<<toStr(tmp.rpcId)<<":\n"
<<" {\n"
<<" return __"<<functionName<<"_async(session,rmiCall,__is);\n"
<<" }\n"
<<" break;\n";
}
cppClassStruct<<"}\n\n";
cppClassOncall<<" default:\n"
<<" break;\n"
<<" }\n\n"
<<" return ERMIDispatchObjectNotExist;\n\n"
<<"}\n\n";
cppInterfaceStream<<cppClassStruct.content;
cppInterfaceStream<<cppClassOncall.content;
//*********************Server interface class struct and onCall Def end*************
//======================Server interface class start==============
CSGStream classDef;
CSGStream cppClassInterface;
classDef<<"namespace "<<mNamespace<<"\n"
<<"{\n"
<<" class "<<interfaceClassName<<":public virtual CRMIObject\n"
<<" {\n"
<<" public:\n"
<<" "<<interfaceClassName<<"();\n\n"
<<" virtual ERMIDispatchResult __onCall(const CSessionPtr&,const SRMICall&,CSerializeStream&);\n\n";
for(int i=0;i<interfaceList.size();i++){
CSGInterface tmp=interfaceList[i];
std::string functionName=tmp.funcName;
//class def
std::string srvCB=srvCBprefix+functionName;
std::string srvCBPtr=srvCB+"_Ptr";
std::string cliCB=cliCBprefix+functionName;
std::string cliCBPtr=cliCB+"_Ptr";
CSGStream functionDefStream;
CSGStream cppClassProxyParam;
functionDefStream<<" ERMIDispatchResult __"<<functionName<<"_async("<<"const CSessionPtr&,const SRMICall&,CSerializeStream&);\n\n";
functionDefStream<<" virtual void "<<functionName<<"_async(const CSessionPtr& ,"<<mNamespace<<"::"<<srvCBPtr<<"&";
cppClassInterface<<"csg::ERMIDispatchResult Message::"<<interfaceName<<"::__"<<functionName<<"_async(const CSessionPtr& session,const SRMICall& rmiCall,CSerializeStream& __is)\n"
<<"{\n";
isFirstOutParam=true;
isFirstParam=true;
for(int j=0;j<tmp.paramList.size();j++){
CSGInterfaceParam param=tmp.paramList[j];
bool isOut=param.isOut;
std::string type=param.type;
std::string identify=param.identify;
if(!isOut){
functionDefStream<<","<<type;
cppClassInterface<<" "<<param.type<<" "<<param.identify<<";\n"
<<" __is.read("<<param.identify<<");\n";
cppClassProxyParam<<","<<param.identify;
}
}
functionDefStream<<")=0;\n\n";
classDef<<functionDefStream.content;
cppClassInterface<<" "<<srvCBPtr<<" cb=new "<<srvCB<<"();\n"
<<" cb->setSession(session,rmiCall);\n"
<<" "<<functionName<<"_async(session,cb"<<cppClassProxyParam.content<<");\n\n"
<<" return ERMIDispatchResultOk;\n\n"
<<"}\n\n";
}
classDef<<" };\n"
<<"}\n";
headInterfaceStream<<classDef.content<<"\n";
cppInterfaceStream<<cppClassInterface.content;
//*************************SServer interface class end******************************
//======================proxy callBack start==============
CSGStream proxyCallBackDef;
CSGStream cppProxyCallBack;
proxyCallBackDef<<"namespace "<<proxyNamespace<<"\n"
<<"{\n";
for(int i=0;i<interfaceList.size();i++){
CSGInterface tmp=interfaceList[i];
std::string functionName=tmp.funcName;
//class def
std::string srvCB=srvCBprefix+functionName;
std::string srvCBPtr=srvCB+"_Ptr";
std::string cliCB=cliCBprefix+functionName;
std::string cliCBPtr=cliCB+"_Ptr";
CSGStream cppProxyCallBackParam;
CSGStream cppProxyReturnParam;
proxyCallBackDef<<" class "<<cliCB<<":public virtual CRMIProxyCallBackObject\n"
<<" {\n"
<<" public:\n"
<<" virtual void response(";
cppProxyCallBack<<"void csg_proxy::"<<cliCB<<"::__response(CSerializeStream& __is)\n"
<<"{\n";
isFirstOutParam=true;
isFirstParam=true;
for(int j=0;j<tmp.paramList.size();j++){
CSGInterfaceParam tmpParam=tmp.paramList[j];
if(tmpParam.isOut){
if(isFirstOutParam){
proxyCallBackDef<<tmpParam.type<<" "<<tmpParam.identify;
cppProxyReturnParam<<tmpParam.identify;
isFirstOutParam=false;
}else{
proxyCallBackDef<<","<<tmpParam.type<<" "<<tmpParam.identify;
cppProxyReturnParam<<","<<tmpParam.identify;
}
cppProxyCallBackParam<<" "<<tmpParam.type<<" "<<tmpParam.identify<<";\n"
<<" __is.read("<<tmpParam.identify<<");\n";
}
}
proxyCallBackDef<<")=0;\n"
<<" protected:\n"
<<" virtual void __response(CSerializeStream& __is);\n"
<<" };\n"
<<" typedef CSmartPointShare<"<<cliCB<<"> "<<cliCBPtr<<";\n\n";
cppProxyCallBack<<cppProxyCallBackParam.content
<<"\n"
<<" response("<<cppProxyReturnParam.content<<");\n\n"
<<"}\n\n";
}
proxyCallBackDef<<"}\n";
headInterfaceStream<<proxyCallBackDef.content<<"\n";
cppInterfaceStream<<cppProxyCallBack.content;
//*************************proxy callBack end******************************
//======================proxy class start==============
CSGStream proxyClassDef;
CSGStream cppProxyClass;
CSGStream cppProxyFunction;
proxyClassDef<<"namespace "<<proxyNamespace<<"\n"
<<"{\n"
<<" class "<<interfaceClassName<<":public virtual CRMIProxyObject\n"
<<" {\n"
<<" public:\n"
<<" "<<interfaceClassName<<"();\n";
cppProxyClass<<"csg_proxy::"<<interfaceClassName<<"::"<<interfaceClassName<<"()\n"
<<"{\n"
<<"}\n\n";
for(int i=0;i<interfaceList.size();i++){
CSGInterface tmp=interfaceList[i];
std::string functionName=tmp.funcName;
//class def
std::string srvCB=srvCBprefix+functionName;
std::string srvCBPtr=srvCB+"_Ptr";
std::string cliCB=cliCBprefix+functionName;
std::string cliCBPtr=cliCB+"_Ptr";
CSGStream cppProxyCallWrite;
//proxy headfile code
proxyClassDef<<" void "<<functionName<<"_async(const CSessionPtr&,const "<<cliCBPtr<<"&";
cppProxyFunction<<"void csg_proxy::"<<interfaceName<<"::"<<functionName<<"_async(const CSessionPtr& session,const "<<cliCBPtr<<"& cb";
isFirstOutParam=true;
isFirstParam=true;
for(int j=0;j<tmp.paramList.size();j++){
CSGInterfaceParam tmpParam=tmp.paramList[j];
if(!tmpParam.isOut){
proxyClassDef<<","<<tmpParam.type;
cppProxyFunction<<","<<tmpParam.type<<" "<<tmpParam.identify;
cppProxyCallWrite<<" __os->write("<<tmpParam.identify<<");\n";
}
}
proxyClassDef<<");\n\n";
cppProxyFunction<<")\n"
<<"{\n"
<<" csg::SRMICall call;\n"
<<" call.rpcId="<<toStr(tmp.rpcId)<<";\n\n"
<<" CAutoSerializeStream __os(CSerializeStreamPool::instance()->newObject());\n"
<<" CRMIObjectBindPtr objectBind=NULL;\n"
<<" CRpcHelper::prepareToCall(session,__os,call,cb,objectBind);\n\n"
<<" __os->setUseBitMark(true);\n"
<<cppProxyCallWrite.content<<"\n"
<<" CRpcHelper::toCall(session,__os,objectBind"<<");\n\n"
<<"}\n\n";
}
proxyClassDef<<" };\n"
<<"}\n";
headInterfaceStream<<proxyClassDef.content<<"\n";
cppInterfaceStream<<cppProxyClass.content;
cppInterfaceStream<<cppProxyFunction.content;
//**********************proxy class start end******************************
};
define_line: TOKEN_IFNDEF TOKEN_IFNDEF_FILE TOKEN_IFNDEF_END {
headDefStream<<"#ifndef "<<$2<<"\n";
}|TOKEN_IFDEF TOKEN_IFDEF_FILE TOKEN_IFDEF_END {
headDefStream<<"#define "<<$2<<"\n";
}|TOKEN_ENDIF {
endDefStream<<$1<<"\n";
};
comment: TOKEN_COMMENT_START TOKEN_COMMENT_FILE TOKEN_COMMENT_END {
outputInfo<<"yacc match comment:"<<BOLDGREEN<<"//"<<$2<<"\r"<<RESET<<"\n";
}|TOKEN_COMMENT_EX_START TOKEN_COMMENT_EX_FILE TOKEN_COMMENT_EX_END {
outputInfo<<"yacc match commentex:"<<BOLDGREEN<<"/**"<<$2<<"\r"<<RESET<<"\n";
}
;
include: TOKEN_INCLUDE_START TOKEN_INCLUDE_SIGN TOKEN_INCLUDE_FILE TOKEN_INCLUDE_END {
headIncludeStream<<"#include \""+$3+"\"\n";
};
enum : TOKEN_ENUM_START TOKEN_ENUM_CONTENT {
std::string enumName=$1;
int minEnumValue=999999;
int maxEnumValue=-99999;
int lastValue=-1;
//generated enum code
CSGStream enumHeadfileStream;
enumHeadfileStream<<" enum "+enumName+" {\n";
for(int i=0;i<$2.size();i++){
CSGEnum tmp=$2[i];
enumHeadfileStream<<" "<<tmp.identify;
if(0!=tmp.value){
enumHeadfileStream<<" = "<<toStr(tmp.value);
if(lastValue>=tmp.value){
std::cerr<<"error enum value,less than last one,enum name:"<<enumName<<",identify:"<<tmp.identify<<std::endl;
globalError=true;
}
lastValue=tmp.value;
}else{
lastValue++;
}
enumHeadfileStream<<",\n";
minEnumValue=minEnumValue<lastValue?minEnumValue:lastValue;
maxEnumValue=maxEnumValue>lastValue?maxEnumValue:lastValue;
}
enumHeadfileStream<<" };\n\n";
//generated serialize code
enumHeadfileStream<<" void _csg_write(CSerializeStream& __os,"<<enumName<<" __enumType);\n";
enumHeadfileStream<<" void _csg_read(CSerializeStream& __is,"<<enumName<<"& __enumType);\n";
enumHeadfileStream<<"\n\n";
headfileContentStream<<enumHeadfileStream.content;
//generated cpp serialize code
std::string typeName=maxEnumValue>255?"int":"byte_t";
CSGStream enumCppStream;
enumCppStream<<"void Message::_csg_write(CSerializeStream& __os,"<<enumName<<" __enumType){\n"
<<" __os.write(static_cast<"<<typeName<<">(__enumType));\n}\n\n";
enumCppStream<<"void Message::_csg_read(CSerializeStream& __is,"<<enumName<<"& __enumType){\n"
<<" "<<typeName<<" value;\n"
<<" __is.read(value);\n"
<<" __enumType=static_cast<"<<enumName<<">(value);\n"
<<" if(__enumType>"<<toStr(maxEnumValue)<<"||__enumType<"<<toStr(minEnumValue)<<")\n"
<<" {\n"
<<" throw CException(\"ExceptionCodeSerialize\",ExceptionCodeSerialize);\n"
<<" }\n"
<<"}\n\n";
cppContentStream<<enumCppStream.content;
};
struct: TOKEN_ID_START TOKEN_ID_NUM TOKEN_ID_END TOKEN_STRUCT_START TOKEN_STRUCT_NAME TOKEN_STRUCT_CONTENT {
std::string structName=$5;
structVec.push_back(structName);
int idNum=$2;
CSGStream structHeadfileStream;
structHeadfileStream<<" class "<<structName<<"\n"
<<" :public virtual csg::IMsgBase {\n"
<<" public:\n";
std::string initDef=" ";
std::string readDef;
std::string writeDef;
std::string operatorEq=" ";
std::string operatorEqEq;
std::string operatorless;
for(int i=0;i<$6.size();i++){
CSGStruct tmp=$6[i];
std::string valueType;
if("int"==tmp.type){
initDef+=tmp.identify+"=0;\n ";
}else if("double"==tmp.type){
initDef+=tmp.identify+"=0.0;\n ";
}else if("float"==tmp.type){
initDef+=tmp.identify+"=0.0f;\n ";
}else if("bool"==tmp.type){
initDef+=tmp.identify+"=false;\n ";
}else if("long"==tmp.type){
initDef+=tmp.identify+"=0;\n ";
valueType="long64_t";
}else if("string"==tmp.type){
initDef+=tmp.identify+"=\"\";\n ";
valueType="std::string";
}else{
initDef+=tmp.identify+".clear();\n ";
valueType="std::"+tmp.type;
};
if(""==valueType){
valueType=tmp.type;
}
structHeadfileStream<<" "<<valueType<<" "<<tmp.identify<<";\n";
readDef+=" __is.read("+tmp.identify+");\n";
writeDef+=" __os.write("+tmp.identify+");\n";
operatorEq+=tmp.identify+" = "+"__other."+tmp.identify+";\n ";
operatorEqEq+=" if("+tmp.identify+" !="+" __other."+tmp.identify+")\n"
+" {\n"+" return true;\n }\n";
operatorless+=" if("+tmp.identify+" <"+" __other."+tmp.identify+")\n"
+" {\n"+" return true;\n }\n";
}
structHeadfileStream<<"\n";
structHeadfileStream<<" public:\n"
<<" "<<structName<<"();\n"
<<" "<<structName<<"(const "<<structName<<" &);\n"
<<" "<<structName<<"& operator=(const "<<structName<<" &);\n";
structHeadfileStream<<"\n";
structHeadfileStream<<" public:\n";
structHeadfileStream<<" bool operator==(const "<<structName<<" &)const;\n"
<<" bool operator!=(const "<<structName<<" &)const;\n"
<<" bool operator<(const "<<structName<<" &)const;\n\n"
<<" void _csg_init();\n"
<<" void _csg_read(CSerializeStream&);\n"
<<" void _csg_write(CSerializeStream&)const;\n\n"
<<" virtual IMsgBase* clone();\n"
<<" virtual int getType()const;\n";
structHeadfileStream<<" private:\n"
<<" static const int _msgType = "<<toStr(idNum)<<";\n";
structHeadfileStream<<" };\n\n";
structHeadfileStream<<" typedef csg::CSmartPointShare<"<<structName<<"> "<<structName<<"_Ptr;\n\n";
headfileContentStream<<structHeadfileStream.content;
//generated cpp code
CSGStream structCppStream;
std::string constructioncpp="";
//construcion
structCppStream<<"Message::"<<structName<<"::"<<structName<<"()\n"
<<"{\n"
<<" _csg_init();\n"
<<"}\n\n";
structCppStream<<"Message::"<<structName<<"::"<<structName<<"(const "<<structName<<"& __other)\n"
<<"{\n"
<<" if(this==&__other)\n"
<<" {\n"
<<" return;\n"
<<" }\n"
<<" *this=__other;\n"
<<"}\n\n";
structCppStream<<"Message::"<<structName<<"& Message::"<<structName<<"::operator=(const "<<structName<<"& __other)\n"
<<"{\n"
<<" if(this==&__other)\n"
<<" {\n"
<<" return *this;\n"
<<" }\n"
<<" IMsgBase::operator=(__other);\n"
<<operatorEq
<<"return *this;\n"
<<"}\n\n";
structCppStream<<"int Message::"<<structName<<"::getType()const{\n"
<<" return _msgType;\n"
<<"}\n\n";
structCppStream<<"csg::IMsgBase* Message::"<<structName<<"::clone()\n"
<<"{\n"
<<" return new "<<structName<<"(*this);\n"
<<"}\n\n";
structCppStream<<"bool Message::"<<structName<<"::operator==(const "<<structName<<"& __other)const\n"
<<"{\n"
<<" return !operator!=(__other);\n"
<<"}\n\n";
structCppStream<<"bool Message::"<<structName<<"::operator!=(const "<<structName<<"& __other)const\n"
<<"{\n"
<<" if(this==&__other)\n"
<<" {\n"
<<" return false;\n"
<<" }\n"
<<operatorEqEq
<<" return false;\n"
<<"}\n\n";
structCppStream<<"bool Message::"<<structName<<"::operator<(const "<<structName<<"& __other)const\n"
<<"{\n"
<<" if(this==&__other)\n"
<<" {\n"
<<" return false;\n"
<<" }\n"
<<operatorless
<<" return false;\n"
<<"}\n\n";
structCppStream<<"void Message::"<<structName<<"::_csg_init(){\n"
<<initDef<<"\n};\n\n";
structCppStream<<"void Message::"<<structName<<"::_csg_read(CSerializeStream& __is){\n"
<<readDef<<"};\n\n";
structCppStream<<"void Message::"<<structName<<"::_csg_write(CSerializeStream& __os)const{\n"
<<writeDef<<"};\n\n";
cppContentStream<<structCppStream.content;
};
%%
std::string toStr(int i){
std::stringstream ss;
ss<<i;
return ss.str();
};
void csgInfo(std::string type,std::string s){
bool defineType=false;
if(type=="ifndef"){
//defineType=true ;
}
bool unknowB=false;
if("table"==type)
unknowB=true;
if("newline"==type)
unknowB=true;
if("blank"==type)
unknowB=true;
if("unknow"==type)
unknowB=true;
if(unknowB){
//return ;
}
if(defineType){
//return ;
}
outputInfo<<YELLOW<<"csgl:"<<type<<","<<BOLDYELLOW<<"["<<s<<"]"<<RESET<<RESET<<"\n";
}
void csgOutputCppHead(std::string fileName){
ofscpp<<"#include "<<"\""<<fileName+"\.h\"\n";
ofscpp<<"#include \"engine/rpc/rpcHelper.h\"\n";
ofscpp<<"using namespace csg;\n";
ofscpp<<"using namespace Message;\n\n";
}
void csgOutputHead(){
ofs<<csgDefStr<<"\n";
ofs<<headDefStream.content<<"\n";
ofs<<includeCsgFile<<"\n";
ofs<<headIncludeStream.content<<"\n";
ofs<<"using namespace csg;"<<"\n\n";
ofs<<"namespace Message {"<<"\n\n";
}
void csgOutputEnd(std::string fileName){
//regist struct
std::string registClass="C"+fileName;
ofs<<" class "<<registClass<<"{\n"
<<" public:\n"
<<" static void regist();\n"
<<" };\n";
ofs<<"\n}\n\n";//namespace
//interface
ofs<<headInterfaceStream.content<<"\n";
ofs<<endDefStream.content<<"\n";
CSGStream cppregistStream;
cppregistStream<<"void Message::"<<registClass<<"::regist()\n"
<<"{\n";
for(int i=0;i<structVec.size();i++){
cppregistStream<<" csg::CMsgManager::instance()->regist(new "<<structVec[i]<<"());\n";
}
cppregistStream<<"}\n";
cppContentStream<<cppregistStream.content;
}
void yyerror(const char* s){
std::cerr<<"\033[31m"<<"get error:["<<s<<"]\033[0m"<<std::endl;
}
int main(int argc,char **argv){
//get csl file
if(argc<4){
std::cerr<<RED<<"no enough param,first is csgl file ,next is outfile dir"<<RESET<<std::endl;
}
std::string inputfile(*(argv+3));
std::string inputfileName=inputfile+".csgl";
std::string inputDir(*(argv+1));
std::string outputDir(*(argv+2));
std::string inputfileCsg=inputDir+inputfileName;
std::string outputHeadFileName=outputDir+inputfile+".h";
std::string outputCppFileName=outputDir+inputfile+".cpp";
std::cout<<"input file is "<<YELLOW<<inputfileCsg<<RESET<<std::endl;
std::cout<<"output dir is "<<YELLOW<<outputDir<<RESET<<std::endl;
std::cout<<"output headfile is "<<GREEN<<outputHeadFileName<<RESET<<std::endl;
std::cout<<"output cppfile is "<<GREEN<<outputCppFileName<<RESET<<std::endl;
FILE *fp=fopen(inputfileCsg.c_str(),"r");
if(NULL==fp){
std::cerr<<RED<<"can't open file "<<inputfileCsg<<RESET<<std::endl;
return 0;
}
ofs.open(outputHeadFileName);
ofscpp.open(outputCppFileName);
if(!ofs.is_open()){
std::cerr<<RED<<"can't open file "<<outputHeadFileName<<RESET<<std::endl;
return 0;
}
if(!ofscpp.is_open()){
std::cerr<<RED<<"can't open file "<<outputCppFileName<<RESET<<std::endl;
return 0;
}
yyin=fp;
yyparse();
fclose(fp);
if(globalError){
return 0;
}
std::cout<<GREEN<<"start generated head file "<<inputfileName<<RESET<<std::endl;
//generated headfile
csgOutputHead();
ofs<<headfileContentStream.content<<std::endl;
csgOutputEnd(inputfile);
std::cout<<GREEN<<"start generated cpp file "<<inputfileName<<RESET<<std::endl;
//generated cppfile
csgOutputCppHead(inputfile);
ofscpp<<cppContentStream.content<<std::endl;
ofscpp<<cppInterfaceStream.content<<"\n";
std::cout<<BOLDGREEN<<"build csgl file success!"<<RESET<<std::endl;
ofs.close();
ofscpp.close();
return 0;
}