-
Notifications
You must be signed in to change notification settings - Fork 9
/
parser0.cpp
2510 lines (2284 loc) · 71.2 KB
/
parser0.cpp
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
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// AYA version 5
//
// 構文解析/中間コードの生成を行うクラス CParser0
// written by umeici. 2004
//
#if defined(WIN32) || defined(_WIN32_WCE)
# include "stdafx.h"
#endif
#include <string>
#include <vector>
#include "parser0.h"
#include "ayavm.h"
#include "value.h"
#include "variable.h"
#include "basis.h"
#include "comment.h"
#include "function.h"
#include "log.h"
#include "messages.h"
#include "misc.h"
#include "parser1.h"
#if defined(POSIX)
# include "posix_utils.h"
#endif
#include "globaldef.h"
#include "sysfunc.h"
#include "wsex.h"
//////////DEBUG/////////////////////////
#ifdef _WINDOWS
#ifdef _DEBUG
#include <crtdbg.h>
#define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
#endif
#endif
////////////////////////////////////////
/* -----------------------------------------------------------------------
* 関数名 : CParser0::Parse
* 機能概要: 指定された辞書ファイル群を読み取り、実行可能な関数群を作成します
*
* 返値 : 0/1=正常/エラー
* -----------------------------------------------------------------------
*/
char CParser0::Parse(int charset, const std::vector<CDic1>& dics)
{
// 読み取り、構文解析、中間コードの生成
vm.logger().Message(3);
std::vector<CDefine> &gdefines =vm.gdefines();
size_t errcount = 0;
// すべて一旦読み込んでから…
for(std::vector<CDic1>::const_iterator it = dics.begin(); it != dics.end(); it++) {
vm.logger().Write(L"// ");
vm.logger().Filename(it->path);
if ( IsDicFileAlreadyExist(it->path) ) {
vm.logger().Error(E_E, 95, it->path);
continue; //skip it
}
char err = LoadDictionary1(it->path, gdefines, it->charset);
if ( err == 2 ) {
; //NOOP skip it
}
else if ( err != 0 ) {
errcount += 1;
}
}
// チェックコードを仕掛ける (関数がないエラー対策)
vm.logger().Message(8);
vm.logger().Message(9);
for(std::vector<CDic1>::const_iterator it = dics.begin(); it != dics.end(); it++) {
errcount += ParseAfterLoad(it->path);
}
vm.logger().Message(8);
return bool(errcount != 0);
}
bool CParser0::ParseAfterLoad(const yaya::string_t &dicfilename)
{
int aret=0;
aret += AddSimpleIfBrace(dicfilename);
aret += SetCellType(dicfilename);
aret += MakeCompleteFormula(dicfilename);
// 中間コード生成の後処理と検査
aret += vm.parser1().CheckExecutionCode(dicfilename);
return aret != 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::ParseEmbedString
* 機能概要: 文字列を演算可能な数式に変換します
*
* 返値 : 0/1=正常/エラー
* -----------------------------------------------------------------------
*/
char CParser0::ParseEmbedString(yaya::string_t& str, CStatement& st, const yaya::string_t& dicfilename, ptrdiff_t linecount)
{
// 文字列を数式に成形
if (!StructFormula(str, st.cell(), dicfilename, linecount))
return 1;
// 数式の項の種類を判定
if ( st.cell_size() ) { //高速化用
for(std::vector<CCell>::iterator it = st.cell().begin(); it != st.cell().end(); it++) {
if (it->value_GetType() != F_TAG_NOP)
continue;
if (SetCellType1(*it, 0, dicfilename, linecount))
return 1;
}
}
// ()、[]の正当性判定
if (CheckDepth1(st, dicfilename))
return 1;
// 埋め込み要素の分解
if (ParseEmbeddedFactor1(st, dicfilename))
return 1;
// シングルクォート文字列を通常文字列へ置換
ConvertPlainString1(st, dicfilename);
// 演算順序決定
if (CheckDepthAndSerialize1(st, dicfilename))
return 1;
// 後処理と検査
if (vm.parser1().CheckExecutionCode1(st, dicfilename))
return 1;
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::DynamicLoadDictionary
* 機能概要: DICLOADの実装本体
*
* 返値 : 0=正常 1=文法エラー 5=ファイルなし 95=重複
* -----------------------------------------------------------------------
*/
int CParser0::DynamicLoadDictionary(const yaya::string_t& dicfilename, int charset)
{
if ( IsDicFileAlreadyExist(dicfilename) ) {
vm.logger().Error(E_E, 95, dicfilename);
return 95;
}
vm.func_parse_new();
std::vector<CDefine> old_define = vm.gdefines();
char t = LoadDictionary1(dicfilename,vm.gdefines(),charset);
if ( t == 2 ) {
vm.func_parse_destruct();
vm.gdefines() = old_define;
return 5;
}
if ( t == 0 ) {
t += ParseAfterLoad(dicfilename);
}
if ( t == 0 ) { //success
vm.func_parse_to_exec();
}
else { //error
vm.func_parse_destruct();
vm.gdefines() = old_define;
}
return t != 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::DynamicAppendRuntimeDictionary
* 機能概要: APPEND_RUNTIME_DICの実装本体
*
* 返値 : 0=正常 1=文法エラー
* -----------------------------------------------------------------------
*/
int CParser0::DynamicAppendRuntimeDictionary(const yaya::string_t& codes)
{
vm.func_parse_new();
bool isnoterror = 1;
{
std::vector<yaya::string_t> factors;
size_t depth = 0;
ptrdiff_t targetfunction = -1;
// {、}、;で分割
yaya::string_t line(codes);
SeparateFactor(factors, line);
// 分割された文字列を解析して関数を作成し、内部のステートメントを蓄積していく
if(DefineFunctions(factors, L"_RUNTIME_DIC_", 0, depth, targetfunction)) {
isnoterror = 0;
}
if( depth != 0 ) {
vm.logger().Error(E_E, 94, L"APPEND_RUNTIME_DIC", -1);
isnoterror = 0;
}
}
if(isnoterror) {
isnoterror &= !ParseAfterLoad(L"_RUNTIME_DIC_");
}
if(isnoterror) { //success
vm.func_parse_to_exec();
}
else { //error
vm.func_parse_destruct();
}
return !isnoterror;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::DynamicUnloadDictionary
* 機能概要: 特定のファイル名に関係する関数とdefineを削除します
*
* 返値 : 0=正常 71=関数行方不明 96=ファイルなし
* -----------------------------------------------------------------------
*/
int CParser0::DynamicUnloadDictionary(yaya::string_t dicfilename)
{
dicfilename = vm.basis().ToFullPath(dicfilename);
if ( ! IsDicFileAlreadyExist(dicfilename) ) {
vm.logger().Error(E_E, 96, dicfilename);
return 96;
}
vm.func_parse_new();
std::vector<CFunction> &functions = vm.function_parse().func;
std::vector<CFunction>::iterator itf = functions.begin();
//remove function
while (itf != functions.end()) {
if ( itf->dicfilename_fullpath == dicfilename ) {
itf = functions.erase(itf);
}
else {
++itf;
}
}
vm.function_parse().RebuildFunctionMap();
int error = 0;
itf = functions.begin();
while (itf != functions.end()) {
error += itf->ReindexUserFunctions();
++itf;
}
if ( error ) {
vm.func_parse_destruct();
return 71; //function not found
}
//remove globaldefine
std::vector<CDefine> &gdefines = vm.gdefines();
std::vector<CDefine>::iterator itg = gdefines.begin();
while (itg != gdefines.end()) {
if ( itg->dicfilename_fullpath == dicfilename ) {
itg = gdefines.erase(itg);
}
else {
++itg;
}
}
vm.func_parse_to_exec();
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::DynamicUndefFunc
* 機能概要: 特定の関数を削除します
*
* 返値 : 0=正常 1=対象関数なし 71=関数行方不明
* -----------------------------------------------------------------------
*/
int CParser0::DynamicUndefFunc(const yaya::string_t& funcname)
{
vm.func_parse_new();
std::vector<CFunction> &functions = vm.function_parse().func;
std::vector<CFunction>::iterator itf = functions.begin();
//remove function
int count = 0;
while (itf != functions.end()) {
if ( itf->name == funcname ) {
itf = functions.erase(itf);
count += 1;
}
else {
++itf;
}
}
if ( count == 0 ) {
vm.logger().Error(E_E, 1, funcname);
vm.func_parse_destruct();
return 1; //function not found
}
vm.function_parse().RebuildFunctionMap();
int error = 0;
itf = functions.begin();
while (itf != functions.end()) {
error += itf->ReindexUserFunctions();
++itf;
}
if ( error ) {
vm.func_parse_destruct();
return 71; //function not found
}
vm.func_parse_to_exec();
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::IsDicFileAlreadyExist
* 機能概要: すでに当該辞書が読み込まれているかの判定
*
* 返値 : 0/1=ない/あった
* -----------------------------------------------------------------------
*/
char CParser0::IsDicFileAlreadyExist(yaya::string_t dicfilename)
{
dicfilename = vm.basis().ToFullPath(dicfilename);
std::vector<CFunction> &functions = vm.function_parse().func;
std::vector<CFunction>::iterator itf = functions.begin();
while (itf != functions.end()) {
if ( itf->dicfilename_fullpath == dicfilename ) {
return 1;
}
++itf;
}
std::vector<CDefine> &gdefines = vm.gdefines();
std::vector<CDefine>::iterator itg = gdefines.begin();
while (itg != gdefines.end()) {
if ( itg->dicfilename_fullpath == dicfilename ) {
return 1;
}
++itg;
}
return 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::LoadDictionary1
* 機能概要: 一つの辞書ファイルを読み取り、大雑把に構文を解釈して蓄積していきます
*
* 返値 : 2/1/0=ファイルがないエラー/エラー/正常
* -----------------------------------------------------------------------
*/
char CParser0::LoadDictionary1(const yaya::string_t& filename, std::vector<CDefine>& gdefines, int charset)
{
yaya::string_t file = filename;
#if defined(POSIX)
fix_filepath(file);
#endif
// ファイルを開く
FILE *fp = yaya::w_fopen(file.c_str(), L"r");
if (fp == NULL) {
vm.logger().Error(E_E, 5, file);
return 2;
}
// 読み取り
CComment comment;
char ciphered = IsCipheredDic(file);
size_t depth = 0;
ptrdiff_t targetfunction = -1;
std::vector<CDefine> defines;
char errcount = 0;
int isInHereDocument = 0; //2 = ダブルクオート 1 = シングルクオート
bool isHereDocumentFirstLine = true;
yaya::string_t readline;
readline.reserve(1000);
yaya::string_t linebuffer;
linebuffer.reserve(2000);
std::vector<yaya::string_t> factors;
int ret;
std::string buf;
buf.reserve(1000);
for (size_t i = 1; ; i++) {
// 1行読み込み 暗号化ファイルの場合は復号も行なう
ret = yaya::ws_fgets(buf, readline, fp, charset, ciphered, i);
if (ret == yaya::WS_EOF)
break;
// 終端の改行を消す
CutCrLf(readline);
if ( ! isInHereDocument ) {
// 不要な空白(インデント等)を消す
CutSpace(readline);
// コメント処理
comment.Process_Top(readline);
comment.Process(readline);
// 空行(もしくは全体がコメント行だった)なら次へ
if (readline.size() == 0)
continue;
}
else {
// 不要な空白(インデント等)を消す
CutStartSpace(readline);
}
/*--------------------------------------------------------
ヒアドキュメントのエスケープ
\xFFFF\x0001 -> 改行
\xFFFF\x0002 -> "
\xFFFF\x0003 -> '
\xFFFFはUnicodeとして不適切、現れることはない…たぶん
--------------------------------------------------------*/
// 読み取り済バッファへ結合
if ( isInHereDocument ) {
//ヒアドキュメント解除部
if ( isInHereDocument == 1 ) {
if (readline.compare(0,3,L"'>>") == 0) {
readline.erase(1,3);
isInHereDocument = 0;
if ( isHereDocumentFirstLine ) {
linebuffer.append(L"'' ");
vm.logger().Error(E_W, 21, filename, i);
}
linebuffer.append(readline);
}
}
else {
if (readline.compare(0,3,L"\">>") == 0) {
readline.erase(1,3);
isInHereDocument = 0;
if ( isHereDocumentFirstLine ) {
linebuffer.append(L"'' ");
vm.logger().Error(E_W, 21, filename, i);
}
linebuffer.append(readline);
}
}
//解除されていない(ヒアドキュメント内=テキストをそのまんま結合)
if ( isInHereDocument ) {
if ( isHereDocumentFirstLine ) {
isHereDocumentFirstLine = false;
}
else {
linebuffer.append(L"\xFFFF\x0001");
}
yaya::string_t::size_type it1 = find_last_str(readline,L"<<'");
yaya::string_t::size_type it2 = find_last_str(readline,L"<<\"");
if ( (it1 != yaya::string_t::npos) || (it2 != yaya::string_t::npos) ) {
yaya::string_t::size_type it = it1;
if ( it == yaya::string_t::npos ) {
it = it2;
}
else {
if ( (it2 != yaya::string_t::npos) && (it1 < it2) ) {
it = it2;
}
}
it += 3;
bool is_not_space = false;
yaya::string_t::size_type itend = readline.size();
while ( it < itend ) {
if ( ! IsSpace(readline[it]) ) {
is_not_space = true;
break;
}
it += 1;
}
if ( ! is_not_space ) {
vm.logger().Error(E_W, 22, filename, i);
}
}
if ( isInHereDocument == 1 ) {
yaya::ws_replace(readline, L"\'", L"\xFFFF\x0003");
}
else {
yaya::ws_replace(readline, L"\"", L"\xFFFF\x0002");
}
linebuffer.append(readline);
continue;
}
}
else {
linebuffer.append(readline);
// 終端が"/"なら結合なので"/"を消して次を読む
if (readline[readline.size() - 1] == L'/') {
linebuffer.erase(linebuffer.end() - 1);
continue;
}
//ヒアドキュメント開始判定
else if ( readline.size() >= 3 ) {
if ( readline.compare(readline.size()-3,3,L"<<'") == 0 ) {
isInHereDocument = 1;
isHereDocumentFirstLine = true;
linebuffer.erase(linebuffer.size() - 3,2);
continue;
}
else if ( readline.compare(readline.size()-3,3,L"<<\"") == 0 ) {
isInHereDocument = 2;
isHereDocumentFirstLine = true;
linebuffer.erase(linebuffer.size() - 3,2);
continue;
}
}
}
// プリプロセッサの場合は取得
int pp = GetPreProcess(linebuffer, defines, gdefines, file, i);
// プリプロセッサであったらこの行の処理は終わり、次へ
// 異常なプリプロセス行はエラー
if (pp == 1)
continue;
else if (pp == 2) {
errcount = 1;
continue;
}
// プリプロセッサ#define、#globaldefine処理
ExecDefinePreProcess(linebuffer, defines); // #define
ExecDefinePreProcess(linebuffer, gdefines); // #globaldefine
ExecInternalPreProcess(linebuffer,file,i);
// コメント処理(2)
comment.Process_Tail(linebuffer);
// {、}、;で分割
factors.clear();
SeparateFactor(factors, linebuffer);
// 分割された文字列を解析して関数を作成し、内部のステートメントを蓄積していく
if (DefineFunctions(factors, file, i, depth, targetfunction)) {
errcount = 1;
}
}
// ファイルを閉じる
::fclose(fp);
if ( depth != 0 ) {
vm.logger().Error(E_E, 94, filename, -1);
errcount = 1;
}
return errcount != 0 ? 1 : 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::GetPreProcess
* 機能概要: 入力が#define/#globaldefineプリプロセッサであった場合、情報を取得します
*
* 返値 : 0/1/2=プリプロセスではない/プリプロセス/エラー
* -----------------------------------------------------------------------
*/
char CParser0::GetPreProcess(yaya::string_t &str, std::vector<CDefine>& defines, std::vector<CDefine>& gdefines, const yaya::string_t& dicfilename,
ptrdiff_t linecount)
{
#if !defined(POSIX) && !defined(__MINGW32__)
static const yaya::string_t space_delim(L" \t ");
#else
static const yaya::string_t space_delim(L" \t\u3000");
#endif
// 先頭1バイトが"#"であるかを確認
// (この関数に来るまでに空文字列は除外されているので、いきなり[0]を参照しても問題ない)
if (str[0] != L'#')
return 0;
// デリミタである空白もしくはタブを探す
ptrdiff_t sep_pos = str.find_first_of(space_delim);
if (sep_pos == -1) {
vm.logger().Error(E_E, 74, dicfilename, linecount);
return 2;
}
ptrdiff_t sep_pos_end = sep_pos + 1;
while (IsSpace(str[sep_pos_end])) { ++sep_pos_end; }
// こっちは名前と値の区切り
ptrdiff_t rep_pos = str.find_first_of(space_delim,sep_pos_end);
if (rep_pos == -1) {
vm.logger().Error(E_E, 75, dicfilename, linecount);
return 2;
}
ptrdiff_t rep_pos_end = rep_pos + 1;
while (IsSpace(str[rep_pos_end])) { ++rep_pos_end; }
// プリプロセス名称、変換前文字列、変換後文字列を取得
// 取得できなければエラー
yaya::string_t pname, bef, aft;
pname.assign(str, 0, sep_pos);
CutSpace(pname);
bef.assign(str, sep_pos_end, rep_pos - sep_pos_end);
CutSpace(bef);
aft.assign(str, rep_pos_end, str.size() - rep_pos_end);
CutSpace(aft);
//aftはカラでもよい
if (!pname.size() || !bef.size()) {
vm.logger().Error(E_E, 75, dicfilename, linecount);
return 2;
}
str.erase(); //行全体が前処理対象だったので消す
// 種別の判定と情報の保持
if (pname == L"#define") {
defines.emplace_back(CDefine(vm, bef, aft, dicfilename));
}
else if (pname == L"#globaldefine") {
gdefines.emplace_back(CDefine(vm, bef, aft, dicfilename));
}
else {
vm.logger().Error(E_E, 76, pname, dicfilename, linecount);
return 2;
}
return 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::ExecDefinePreProcess
* 機能概要: #define/#globaldefine処理。文字列を置換します
* -----------------------------------------------------------------------
*/
void CParser0::ExecDefinePreProcess(yaya::string_t &str, const std::vector<CDefine>& defines)
{
for(std::vector<CDefine>::const_iterator it = defines.begin(); it != defines.end(); it++) {
if (str.size() >= it->before.size()) {
yaya::ws_replace(str, it->before.c_str(), it->after.c_str());
}
}
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::ExecInternalPreProcess
* 機能概要: 組み込み定義文字列を置換します。
* -----------------------------------------------------------------------
*/
void CParser0::ExecInternalPreProcess(yaya::string_t &str,const yaya::string_t &file, ptrdiff_t line)
{
if ( str.find_first_of(L"__AYA_SYSTEM_FILE__") != yaya::string_t::npos ) {
yaya::string_t file_str = file;
yaya::ws_replace(file_str,vm.basis().GetRootPath().c_str(),L"");
yaya::ws_replace(file_str,L"\\",L"/");
yaya::ws_replace(str, L"__AYA_SYSTEM_FILE__", file_str.c_str());
}
if ( str.find_first_of(L"__AYA_SYSTEM_LINE__") != yaya::string_t::npos ) {
yaya::char_t line_str[32];
yaya::snprintf(line_str,31,L"%d",line);
yaya::ws_replace(str, L"__AYA_SYSTEM_LINE__", line_str);
}
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::IsCipheredDic
* 機能概要: ファイルが暗号化ファイルかをファイル拡張子を見て判断します
*
* 返値 : 1/0=拡張子は.aycである/.aycではない
* -----------------------------------------------------------------------
*/
char CParser0::IsCipheredDic(const yaya::string_t& filename)
{
size_t len = filename.size();
if (len < 5)
return 0;
return ((filename[len - 3] == L'a' || filename[len - 3] == L'A') &&
(filename[len - 2] == L'y' || filename[len - 2] == L'Y') &&
(filename[len - 1] == L'c' || filename[len - 1] == L'C'))
? 1 : 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::SeparateFactor
* 機能概要: 与えられた文字列を"{"、"}"、";"の位置で分割します。";"は以降不要なので消し込みます
* -----------------------------------------------------------------------
*/
void CParser0::SeparateFactor(std::vector<yaya::string_t> &s, yaya::string_t &line)
{
yaya::string_t::size_type separatepoint = 0;
yaya::string_t::size_type apoint = 0;
yaya::string_t::size_type len = line.size();
yaya::string_t::size_type nextdq = 0;
char executeflg = 0;
for( ; ; ) {
// { } ; 発見
yaya::string_t::size_type newseparatepoint = line.find_first_of(L"{};",separatepoint);
// 何も見つからなければ終わり
if (newseparatepoint == yaya::string_t::npos)
break;
// 発見位置がダブルクォート内なら無視して先へ進む
nextdq = IsInDQ(line, separatepoint, newseparatepoint);
if ( nextdq < IsInDQ_npos) {
separatepoint = nextdq;
continue;
}
//クオートが閉じてない=これ以上はみつからない
if ( nextdq == IsInDQ_runaway ) {
break;
}
// 発見位置の手前の文字列を取得
if (newseparatepoint > apoint) {
yaya::string_t tmpstr;
tmpstr.assign(line, apoint, newseparatepoint - apoint);
CutSpace(tmpstr);
s.emplace_back(tmpstr);
}
// 発見したのが"{"もしくは"}"ならこれも取得
yaya::char_t c = line[newseparatepoint];
if (c == L'{') {
s.emplace_back(L"{");
}
else if (c == L'}') {
s.emplace_back(L"}");
}
// 検索開始位置を更新
apoint = separatepoint = newseparatepoint + 1;
if (separatepoint >= len) {
executeflg = 1;
break;
}
}
// まだ文字列が残っているならそれも追加
if (executeflg == 0) {
yaya::string_t tmpstr;
tmpstr.assign(line, apoint, len - apoint);
CutSpace(tmpstr);
s.emplace_back(tmpstr);
}
// 元の文字列はクリアする
line.erase();
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::DefineFunctions
* 機能概要: 文字列群を解析して関数の原型を定義する
*
* 返値 : 1/0=エラー/正常
* -----------------------------------------------------------------------
*/
char CParser0::DefineFunctions(std::vector<yaya::string_t>& s, const yaya::string_t& dicfilename, ptrdiff_t linecount, size_t& depth, ptrdiff_t& targetfunction)
{
char retcode = 0;
for(std::vector<yaya::string_t>::iterator it = s.begin(); it != s.end(); it++) {
// 空行はスキップ
if (!(it->size()))
continue;
// {}入れ子の深さを見て関数名を検索する
// 深さが0なら{}の外なので関数名を取得すべき位置である
if (!depth) {
// 関数の作成
if (targetfunction == -1) {
// 関数名と重複回避オプションを取得
yaya::string_t d0, d1;
if (!Split(*it, d0, d1, L":"))
d0 = *it;
// 関数名の正当性検査
if (IsLegalFunctionName(d0)) {
if (!it->compare(L"{"))
vm.logger().Error(E_E, 1, L"{", dicfilename, linecount);
else if (!it->compare(L"}"))
vm.logger().Error(E_E, 2, dicfilename, linecount);
else
vm.logger().Error(E_E, 3, d0, dicfilename, linecount);
return 1;
}
// 重複回避オプションの判定
choicetype_t chtype = CHOICETYPE_RANDOM;
if (d1.size()) {
chtype = CSelecter::StringToChoiceType(d1, vm, dicfilename, linecount);
}
// 作成
targetfunction = MakeFunction(d0, chtype, dicfilename, linecount);
if (targetfunction == -1) {
vm.logger().Error(E_E, 13, *it, dicfilename, linecount);
return 1;
}
continue;
}
// 関数名の次のステートメント これは"{"でなければならない
else {
if (it->compare(L"{")) {
vm.logger().Error(E_E, 4, dicfilename, linecount);
return 1;
}
// 入れ子の深さを加算
depth++;
}
}
else {
if ((*it)[it->size()-1]==L':' && *(it+1)==L"{"){
*(it+1)=L"";
*it+=L"{";
}
// 関数内のステートメントの定義 {}入れ子の計算もここで行う
if (!StoreInternalStatement(targetfunction, *it, depth, dicfilename, linecount))
retcode = 1;
// 入れ子深さが0になったらこの関数定義から脱出する
if (!depth)
targetfunction = -1;
}
}
return retcode;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::MakeFunction
* 機能概要: 名前を指定して関数を作成します
*
* 返値 : 作成された位置を返します
* 指定された名前の関数が既に作成済の場合はエラーで、-1を返します
* -----------------------------------------------------------------------
*/
ptrdiff_t CParser0::MakeFunction(const yaya::string_t& name, choicetype_t chtype, const yaya::string_t& dicfilename, ptrdiff_t linecount)
{
ptrdiff_t i = vm.function_parse().GetFunctionIndexFromName(name);
if(i != -1)
return -1;
/* for(std::vector<CFunction>::iterator it = vm.function_parse().func.begin(); it != vm.function_parse().func.end(); it++)
if (name == it->name)
return -1;
*/
vm.function_parse().func.emplace_back(CFunction(vm, name, dicfilename, linecount));
size_t index = vm.function_parse().func.size()-1;
vm.function_parse().AddFunctionIndex(name, index);
CFunction& targetfunction = vm.function_parse().func[index];
targetfunction.statement.emplace_back( CStatement(ST_OPEN, linecount, std_make_shared<CDuplEvInfo>(chtype)) );
m_BlockhHeaderOfProcessingIndexStack.clear();
m_BlockhHeaderOfProcessingIndexStack.emplace_back(0);
m_defaultBlockChoicetypeStack.clear();
m_defaultBlockChoicetypeStack.emplace_back(CSelecter::GetDefaultBlockChoicetype(chtype));
return index;
}
/* -----------------------------------------------------------------------
* 関数名 : CParser0::StoreInternalStatement
* 機能概要: 関数内のステートメントを種類を判定して蓄積します
*
* 返値 : 0/1=エラー/正常
* -----------------------------------------------------------------------
*/
char CParser0::StoreInternalStatement(size_t targetfunc, yaya::string_t &str, size_t& depth, const yaya::string_t& dicfilename, ptrdiff_t linecount)
{
// パラメータのないステートメント
CFunction& targetfunction = vm.function_parse().func[targetfunc];
if(!str.size())
return 1;
// {
if(str[str.length()-1] == L'{') {
// blockと重複回避オプションを取得
choicetype_t chtype = CSelecter::GetDefaultBlockChoicetype(m_defaultBlockChoicetypeStack.back());
yaya::string_t d0, d1;
if (Split(str, d0, d1, L":")){
chtype = CSelecter::StringToChoiceType(d0, vm, dicfilename, linecount);
}
m_defaultBlockChoicetypeStack.emplace_back(chtype);
depth++;
targetfunction.statement.emplace_back(CStatement(ST_OPEN, linecount, std_make_shared<CDuplEvInfo>(chtype)));
m_BlockhHeaderOfProcessingIndexStack.emplace_back(targetfunction.statement.size()-1);
return 1;
}
// }
else if (str == L"}") {
m_BlockhHeaderOfProcessingIndexStack.pop_back();
m_defaultBlockChoicetypeStack.pop_back();
depth--;
targetfunction.statement.emplace_back(CStatement(ST_CLOSE, linecount));
return 1;
}
// others elseへ書き換えてしまう
else if (str == L"others") {
targetfunction.statement.emplace_back(CStatement(ST_ELSE, linecount));
return 1;
}
// else
else if (str == L"else") {
targetfunction.statement.emplace_back(CStatement(ST_ELSE, linecount));
return 1;
}
// break
else if (str == L"break") {
targetfunction.statement.emplace_back(CStatement(ST_BREAK, linecount));
return 1;
}
// continue
else if (str == L"continue") {
targetfunction.statement.emplace_back(CStatement(ST_CONTINUE, linecount));
return 1;
}
// return
else if (str == L"return") {
targetfunction.statement.emplace_back(CStatement(ST_RETURN, linecount));
return 1;
}
// --
else if (str == L"--") {
targetfunction.statement[m_BlockhHeaderOfProcessingIndexStack.back()].ismutiarea = true;
targetfunction.statement.emplace_back(CStatement(ST_COMBINE, linecount));
return 1;
}
// パラメータのあるステートメント(制御文)
yaya::string_t st, par;
if (!Split(str, st, par, L" "))
st = str;
yaya::string_t t_st, t_par;
if (!Split(str, t_st, t_par, L"\t"))
t_st = str;
if (st.size() > t_st.size()) {
st = t_st;
par = t_par;
}
// if
if (st == L"if") {
str = par;
return MakeStatement(ST_IF, targetfunc, str, dicfilename, linecount);
}
// elseif
else if (st == L"elseif") {
str = par;
return MakeStatement(ST_ELSEIF, targetfunc, str, dicfilename, linecount);
}
// while
else if (st == L"while") {
str = par;
return MakeStatement(ST_WHILE, targetfunc, str, dicfilename, linecount);
}