-
Notifications
You must be signed in to change notification settings - Fork 9
/
basis.cpp
1637 lines (1460 loc) · 42.6 KB
/
basis.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
//
// 主な制御を行なうクラス CBasis
// written by umeici. 2004
//
#if defined(WIN32) || defined(_WIN32_WCE)
# include "stdafx.h"
#endif
#include <string.h>
#include <iostream>
#include <string>
#include <vector>
#include <stack>
//#include <filesystem>
#include "fix_unistd.h"
#if defined(POSIX)
# include <dirent.h>
# include <sys/stat.h>
#endif
/*
# include <cstdlib>
# include <sys/types.h>
*/
#include "basis.h"
#include "aya5.h"
#include "ccct.h"
#include "comment.h"
#include "file.h"
#include "function.h"
#include "lib.h"
#include "log.h"
#include "logexcode.h"
#include "messages.h"
#include "misc.h"
#include "parser0.h"
#if defined(POSIX)
# include "posix_utils.h"
#endif
#include "globaldef.h"
#include "wsex.h"
#include "ayavm.h"
#include "dir_enum.h"
//////////DEBUG/////////////////////////
#ifdef _WINDOWS
#ifdef _DEBUG
#include <crtdbg.h>
#define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
#endif
#endif
////////////////////////////////////////
//for compatibility only
#define MSGLANG_JAPANESE 0
#define MSGLANG_ENGLISH 1
/* -----------------------------------------------------------------------
* CBasisコンストラクタ
* -----------------------------------------------------------------------
*/
CBasis::CBasis(CAyaVM &vmr) : vm(vmr)
{
ResetSuppress();
checkparser = 0;
iolog = 1;
msglang_for_compat = MSGLANG_JAPANESE;
dic_charset = CHARSET_SJIS;
setting_charset = CHARSET_SJIS;
output_charset = CHARSET_UTF8;
file_charset = CHARSET_SJIS;
save_charset = CHARSET_UTF8;
save_old_charset = CHARSET_SJIS;
extension_charset = CHARSET_SJIS;
log_charset = CHARSET_UTF8;
encode_savefile = false;
auto_save = true;
#if defined(WIN32)
hlogrcvWnd = NULL;
#endif
run = 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SetModuleHandle
* 機能概要: モジュールハンドルを取得します
*
* ついでにモジュールの主ファイル名取得も行います
* -----------------------------------------------------------------------
*/
void CBasis::SetModuleName(const yaya::string_t &s,const yaya::char_t *trailer,const yaya::char_t *mode)
{
modulename = s;
modename = mode;
if ( trailer ) {
config_file_name_trailer = trailer;
}
else {
config_file_name_trailer.erase(config_file_name_trailer.begin(), config_file_name_trailer.end());
}
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SetPath
* 機能概要: HGLOBALに格納されたファイルパスを取得します HGLOBALは開放しません
* -----------------------------------------------------------------------
*/
#if defined(WIN32) || defined(_WIN32_WCE)
void CBasis::SetPath(yaya::global_t h, int len)
{
// 取得と領域開放
std::string mbpath;
mbpath.assign((char *)h, 0, len);
//GlobalFree(h); //load側で開放
h = NULL;
// 文字コードをUCS-2へ変換(ここでのマルチバイト文字コードはOSデフォルト)
Ccct::MbcsToUcs2Buf(base_path, mbpath, CHARSET_DEFAULT);
//最後が\でも/でもなければ足す
if (base_path.length() == 0 || ( (base_path[base_path.length()-1] != L'/') && (base_path[base_path.length()-1] != L'\\') ) ) {
base_path += L"\\";
}
load_path = base_path;
}
#elif defined(POSIX)
void CBasis::SetPath(yaya::global_t h, int len)
{
// 取得と領域開放
base_path = widen(std::string(h, static_cast<std::string::size_type>(len)));
//free(h); //load側で開放
h = NULL;
// スラッシュで終わってなければ付ける。
if (base_path.length() == 0 || base_path[base_path.length() - 1] != L'/') {
base_path += L'/';
}
// モジュールハンドルの取得は出来ないので、力技で位置を知る。
// このディレクトリにある全ての*.dll(case insensitive)を探し、
// 中身にyaya.dllという文字列を含んでいたら、それを選ぶ。
// ただし対応する*.txtが無ければdllの中身は見ずに次へ行く。
modulename = L"yaya";
DIR* dh = opendir(narrow(base_path).c_str());
if (dh == NULL) {
std::cerr << narrow(base_path) << "is not a directory!" << std::endl;
exit(1);
}
while (true) {
struct dirent* ent = readdir(dh);
if (ent == NULL) {
break; // もう無い
}
std::string fname(ent->d_name, strlen(ent->d_name)/*ent->d_namlen*/); // by umeici. 2005/1/16 5.6.0.232
if (lc(get_extension(fname)) == "dll") {
std::string txt_file = narrow(base_path) + change_extension(fname, "txt");
struct stat sb;
if (::stat(txt_file.c_str(), &sb) == 0) {
// txtファイルがあるので、中身を見てみる。
if (file_content_search(narrow(base_path) + fname, "yaya.dll") != std::string::npos) {
// これはYAYAのDLLである。
modulename = widen(drop_extension(fname));
break;
}
}
}
}
closedir(dh);
load_path = base_path;
}
#endif
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SetLogRcvWnd
* 機能概要: チェックツールから渡されたhWndを保持します
* -----------------------------------------------------------------------
*/
#if defined(WIN32)
void CBasis::SetLogRcvWnd(long hwnd)
{
hlogrcvWnd = (HWND)hwnd;
vm.logger().Start(logpath, log_charset, hlogrcvWnd, iolog);
}
#endif
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SetLogger
* 機能概要: ログ機能を初期化 / 再設定します
* -----------------------------------------------------------------------
*/
void CBasis::SetLogger(void)
{
vm.logger().Start(logpath, log_charset, hlogrcvWnd, iolog);
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::Configure
* 機能概要: load時に行う初期設定処理
* -----------------------------------------------------------------------
*/
void CBasis::Configure(void)
{
// 基礎設定ファイル(例えばaya.txt)を読み取り
std::vector<CDic1> dics;
LoadBaseConfigureFile(dics);
// 基礎設定ファイル読み取りで重篤なエラーが発生した場合はここで終了
if (suppress)
return;
// ロギングを開始
SetLogger();
// 辞書読み込みと構文解析
if (vm.parser0().Parse(dic_charset, dics))
SetSuppress();
{
CLogExCode logex(vm);
if (checkparser)
logex.OutExecutionCodeForCheck();
// 前回終了時に保存した変数を復元
RestoreVariable();
if (checkparser)
logex.OutVariableInfoForCheck();
}
// ここまでの処理で重篤なエラーが発生した場合はここで終了
if (suppress)
return;
// 外部ライブラリとファイルの文字コードを初期化
vm.libs().SetCharset(extension_charset);
vm.files().SetCharset(file_charset);
run = 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::Termination
* 機能概要: unload時に行う終了処理
* -----------------------------------------------------------------------
*/
void CBasis::Termination(void)
{
// 動作抑止されていなければ終了時の処理を実行
if (!suppress) {
// unload
ExecuteUnload();
// ロードしているすべてのライブラリをunload
vm.libs().DeleteAll();
// 開いているすべてのファイルを閉じる
vm.files().DeleteAll();
// 変数の保存
if ( auto_save ) {
SaveVariable();
}
}
// ロギングを終了
vm.logger().Termination();
//
loadindex.Init();
unloadindex.Init();
requestindex.Init();
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::IsSuppress
* 機能概要: 現在の自律抑止状態を返します
*
* 返値 : 0/1=非抑止/抑止
*
* 基礎設定ファイルの読み取りや辞書ファイルの解析中に、動作継続困難なエラーが発生すると
* SetSuppress()によって抑止設定されます。抑止設定されると、load/request/unloadでの動作が
* すべてマスクされます。この時、requestの返値は常に空文字列になります。(HGLOBAL=NULL、
* len=0で応答します)
* -----------------------------------------------------------------------
*/
char CBasis::IsSuppress(void)
{
return suppress;
}
/* -----------------------------------------------------------------------
* 関数名 : CSystemFunction::ToFullPath
* 機能概要: 渡された文字列が相対パス表記なら絶対パスに書き換えます
* -----------------------------------------------------------------------
*/
#if defined(WIN32)
yaya::string_t CBasis::ToFullPath(const yaya::string_t& str)
{
yaya::char_t drive[_MAX_DRIVE], dir[_MAX_DIR], fname[_MAX_FNAME], ext[_MAX_EXT];
_wsplitpath(str.c_str(), drive, dir, fname, ext);
yaya::string_t aret = str;
if (!::wcslen(drive))
aret = vm.basis().base_path + str;
yaya::ws_replace(aret,L"/",L"\\");
size_t index;
while((index = aret.find(L"\\\\")) != yaya::string_t::npos)
aret.replace(index,2,L"\\");
return aret;
}
#elif defined(POSIX)
yaya::string_t CBasis::ToFullPath(const yaya::string_t& str)
{
yaya::string_t aret = str;
if (!(str.length() > 0 && str[0] == L'/')) {
aret = vm.basis().base_path + str;
}
yaya::ws_replace(aret, L"/", L"\\");
size_t index;
while ((index = aret.find(L"\\\\")) != yaya::string_t::npos)
aret.replace(index, 2, L"\\");
return aret;
}
#endif
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SetSuppress
* 機能概要: 自律動作抑止を設定します
* -----------------------------------------------------------------------
*/
void CBasis::SetSuppress(void)
{
suppress = 1;
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::ResetSuppress
* 機能概要: 自律動作抑止機能をリセットします
* -----------------------------------------------------------------------
*/
void CBasis::ResetSuppress(void)
{
suppress = 0;
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::LoadBaseConfigureFile
* 機能概要: 基礎設定ファイルを読み取り、各種パラメータをセットします
*
* 基礎設定ファイルはDLLと同階層に存在する名前が"DLL主ファイル名.txt"のファイルです。
*
* 辞書ファイルの文字コードはShift_JIS以外にもUTF-8とOSデフォルトのコードに対応できますが、
* この基礎設定ファイルはOSデフォルトのコードで読み取られることに注意してください。
* 国際化に関して考慮する場合は、このファイル内の記述にマルチバイト文字を使用するべきでは
* ありません(文字コード0x7F以下のASCII文字のみで記述すべきです)。
* -----------------------------------------------------------------------
*/
void CBasis::LoadBaseConfigureFile(std::vector<CDic1> &dics)
{
// 設定ファイル("name".txt)読み取り
// ファイルを開く
yaya::string_t filename = load_path + modulename + config_file_name_trailer + L".txt";
// 読み込み当初は文字コードが定義されていないので、CHARSET_UNDEFにする
LoadBaseConfigureFile_Base(filename,dics,CHARSET_UNDEF);
if ( yayamsg::IsEmpty() ) { //エラーメッセージテーブルが読めていない
SetParameter(L"messagetxt",msglang_for_compat == MSGLANG_JAPANESE ? L"messagetxt/japanese.txt" : L"messagetxt/english.txt");
}
}
void CBasis::LoadBaseConfigureFile_Base(yaya::string_t filename,std::vector<CDic1> &dics,char cset)
{
// ファイルを開く
FILE *fp = yaya::w_fopen(filename.c_str(), L"r");
if (fp == NULL) {
vm.logger().Error(E_E, 5, filename);
SetSuppress();
return;
}
// 読み取り処理
CComment comment;
yaya::string_t cmd, param;
size_t line=0;
yaya::string_t readline;
readline.reserve(1000);
char cset_real;
std::string buf;
buf.reserve(1000);
while ( true ) {
line += 1;
// 1行読み込み
cset_real = cset;
if ( cset == CHARSET_UNDEF ) {
//後の設定で変更されている可能性があるので、毎回上書きすること
//always overwrite cset_real because setting_charset may be modified in SetParameter function
cset_real = setting_charset;
}
if (yaya::ws_fgets(buf, readline, fp, cset_real, 0, line) == yaya::WS_EOF) {
// ファイルを閉じる
fclose(fp);
break;
}
// 改行は消去
CutCrLf(readline);
// コメントアウト処理
comment.Process_Top(readline);
comment.Process(readline);
comment.Process_Tail(readline);
// 空行、もしくは全体がコメント行だった場合は次の行へ
if (readline.size() == 0) {
continue;
}
// パラメータを設定
if (Split(readline, cmd, param, L",")) {
SetParameter(cmd, param, &dics);
}
else {
vm.logger().Error(E_W, 0, filename, line);
}
}
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SetParameter
* 機能概要: LoadBaseConfigureFileから呼ばれます。各種パラメータを設定します
* -----------------------------------------------------------------------
*/
bool CBasis::SetParameter(const yaya::string_t &cmd, const yaya::string_t ¶m, std::vector<CDic1> *dics)
{
//include
if ( cmd == L"include" ) {
yaya::string_t param1, param2;
Split(param, param1, param2, L",");
yaya::string_t filename = load_path + param1;
char cset = setting_charset;
if ( param2.size() ) {
char cx = Ccct::CharsetTextToID(param2.c_str());
if ( cx != CHARSET_DEFAULT ) {
cset = cx;
}
}
LoadBaseConfigureFile_Base(filename,*dics,cset);
return true;
}
//includeEX
else if ( cmd == L"includeEX" ) {
yaya::string_t param1, param2;
Split(param, param1, param2, L",");
yaya::string_t filename = load_path + param1;
char cset = setting_charset;
if ( param2.size() ) {
char cx = Ccct::CharsetTextToID(param2.c_str());
if ( cx != CHARSET_DEFAULT ) {
cset = cx;
}
}
//posixではnposはunsignedな-1でバカでかい数になるのでその対策
yaya::string_t load_path_bak = load_path;
auto s_pos = filename.rfind('/');
s_pos = (s_pos == yaya::string_t::npos) ? (0) : (s_pos);
auto bs_pos = filename.rfind('\\');
bs_pos = (bs_pos == yaya::string_t::npos) ? (0) : (bs_pos);
load_path = filename.substr(0,std::max(s_pos,bs_pos))+L'/';
yaya::string_t base_path_bak = base_path;
base_path = load_path;
LoadBaseConfigureFile_Base(filename,*dics,cset);
load_path = load_path_bak;
base_path = base_path_bak;
return true;
}
// dic
else if ( (cmd == L"dic" || cmd == L"dicif") && dics) {
yaya::string_t param1,param2;
Split(param, param1, param2, L",");
yaya::string_t filename = base_path + param1;
#ifdef POSIX
fix_filepath(filename);
#endif
char cset = dic_charset;
if ( param2.size() ) {
char cx = Ccct::CharsetTextToID(param2.c_str());
if ( cx != CHARSET_DEFAULT ) {
cset = cx;
}
}
if ( cmd == L"dicif" ) {
FILE *fp = yaya::w_fopen(filename.c_str(), L"rb");
if ( !fp ) {
return true; //skip loading if file not exist
}
fclose(fp);
}
dics->emplace_back(CDic1(filename,cset));
return true;
}
// dicdir
else if ( cmd == L"dicdir" && dics) {
yaya::string_t param1,param2;
Split(param, param1, param2, L",");
//if the target folder has _loading_order.txt & not has param2 in this line, then includeEX this file
if(param2.empty()) {
yaya::string_t file = param1 + L"/_loading_order_override.txt";
yaya::string_t filename = load_path + file;
FILE *fp = yaya::w_fopen(filename.c_str(), L"rb");
if ( ! fp ) {
file = param1 + L"/_loading_order.txt";
filename = load_path + file;
fp = yaya::w_fopen(filename.c_str(), L"rb");
}
//_waccess is not use as it does not support mixed forward and back slashes
if ( fp ) {
fclose(fp);
return SetParameter(L"includeEX", file, dics);
}
}
//else (loading_order not exist | param2 exist) include this folder
{
yaya::string_t dirname = base_path + param1;
CDirEnum ef(dirname);
CDirEnumEntry entry;
bool aret = true;
while(ef.next(entry)) {
//If the file suffix is bak or tmp, skip it.
size_t extbegpos=entry.name.rfind('.');
if(extbegpos!=entry.name.npos) {
yaya::string_t ext=entry.name.substr(extbegpos+1);
if(ext==L"bak" || ext==L"tmp") {
continue;
}
}
yaya::string_t relpath_and_cs = param1 + L"\\" + entry.name + L',' + param2;
if(entry.isdir) {
aret &= SetParameter(L"dicdir", relpath_and_cs, dics);
}
else {
aret &= SetParameter(L"dic", relpath_and_cs, dics);
}
}
return aret;
}
}
// messagetxt
else if ( cmd == L"messagetxt" ) { //多言語化
yaya::string_t param1,param2;
Split(param, param1, param2, L",");
char cset = CHARSET_UTF8; //UTF8固定
if ( param2.size() ) {
char cx = Ccct::CharsetTextToID(param2.c_str());
if ( cx != CHARSET_DEFAULT ) {
cset = cx;
}
}
if ( yayamsg::LoadMessageFromTxt(load_path,param1,cset) ) {
messagetxt_path = load_path + param1;
}
return true;
}
// msglang(for compatibility)
else if ( cmd == L"msglang" ) {
if (param == L"english") {
msglang_for_compat = MSGLANG_ENGLISH;
}
else {
msglang_for_compat = MSGLANG_JAPANESE;
}
return true;
}
// log
else if ( cmd == L"log" ) {
if ( param.empty() ) {
logpath.erase();
}
else {
logpath = base_path + param;
}
return true;
}
// basepath
else if ( cmd == L"basepath" ) {
CDirEnum dirCheck(param);
CDirEnumEntry dirCheckTmp;
if ( dirCheck.next(dirCheckTmp) ) { //something exist in directory
#if defined(WIN32) || defined(_WIN32_WCE)
if(param[1]==L':')
#elif defined(POSIX)
if(param[0]==L'/')
#endif
base_path = param;
else
base_path += param;
//最後が\でも/でもなければ足す
if (base_path.length() == 0 || ( (base_path[base_path.length()-1] != L'/') && (base_path[base_path.length()-1] != L'\\') ) ) {
#if defined(WIN32) || defined(_WIN32_WCE)
base_path += L"\\";
#elif defined(POSIX)
base_path += L'/';
#endif
}
return true;
}
else{
return false;
}
}
// iolog
else if ( cmd == L"iolog" ) {
iolog = param != L"off";
return true;
}
// セーブデータ暗号化
else if ( cmd == L"save.encode" ) {
encode_savefile = param == L"on";
return true;
}
// 自動セーブ
else if ( cmd == L"save.auto" ) {
auto_save = param != L"off";
return true;
}
// charset
else if ( cmd == L"charset" ) {
dic_charset = Ccct::CharsetTextToID(param.c_str());
setting_charset = dic_charset;
output_charset = dic_charset;
file_charset = dic_charset;
save_charset = dic_charset;
save_old_charset = dic_charset;
extension_charset = dic_charset;
log_charset = dic_charset;
return true;
}
// charset
else if ( cmd == L"charset.dic" ) {
dic_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.setting" ) {
setting_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.output" ) {
output_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.file" ) {
file_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.save" ) {
save_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.save.old" ) {
save_old_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.extension" ) {
extension_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
else if ( cmd == L"charset.log" ) {
log_charset = Ccct::CharsetTextToID(param.c_str());
return true;
}
// fncdepth
else if ( cmd == L"fncdepth" ) {
size_t f_depth = (size_t)yaya::ws_atoll(param, 10);
vm.call_limit().SetMaxDepth((f_depth < 2 && f_depth != 0) ? 2 : f_depth);
return true;
}
else if ( cmd == L"looplimit" ) {
size_t loop_max = (size_t)yaya::ws_atoll(param, 10);
vm.call_limit().SetMaxLoop(loop_max);
return true;
}
else if ( cmd == L"maxlognum" ) {
size_t maxlognum = (size_t)yaya::ws_atoll(param, 10);
vm.logger().SetMaxLogNum(maxlognum);
return true;
}
// checkparser closed function
else if ( cmd == L"checkparser" ) {
checkparser = param == L"on";
return true;
}
// iolog.filter.keyword
else if ( cmd == L"iolog.filter.keyword" ){
vm.logger().AddIologFilterKeyword(param);
return true;
}
// old syntax : ignoreiolog
else if ( cmd == L"ignoreiolog" ){
//Remove "ID:" and possible spaces from the param variable
yaya::string_t::size_type pos = param.find(L"ID");
if(pos == std::wstring::npos || pos != 0)
return false;
pos = param.find_first_not_of(L" \t", pos+2);
if(pos == std::wstring::npos || param[pos] != L':')
return false;
pos = param.find_first_not_of(L" \t", pos+1);
if(pos == std::wstring::npos)
return false;
vm.logger().AddIologFilterKeyword(param.substr(pos));
return true;
}
// iolog.filter.keyword.regex
else if ( cmd == L"iolog.filter.keyword.regex" ){
vm.logger().AddIologFilterKeywordRegex(param);
return true;
}
// iolog.filter.keyword.delete (for SETSETTING)
else if ( cmd == L"iolog.filter.keyword.delete" ){
vm.logger().DeleteIologFilterKeyword(param);
return true;
}
// iolog.filter.keyword.regex.delete (for SETSETTING)
else if ( cmd == L"iolog.filter.keyword.regex.delete" ){
vm.logger().DeleteIologFilterKeywordRegex(param);
return true;
}
// iolog.filter.mode
else if ( cmd == L"iolog.filter.mode" ){
vm.logger().SetIologFilterMode(
(param.find(L"white") != yaya::string_t::npos) || (param.find(L"allow") != yaya::string_t::npos)
);
return true;
}
return false;
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::GetParameter
* 機能概要: 各種パラメータを文字列で返します
* -----------------------------------------------------------------------
*/
static void CBasis_ConvertStringArray(const std::vector<yaya::string_t> &array,CValue &var)
{
var.array().clear();
std::vector<yaya::string_t>::const_iterator itr = array.begin();
while ( itr != array.end() ) {
var.array().emplace_back(CValueSub(*itr));
++itr;
}
}
CValue CBasis::GetParameter(const yaya::string_t &cmd)
{
// log
if ( cmd == L"log" ) {
return logpath;
}
// iolog
else if ( cmd == L"iolog" ) {
return yaya::string_t(iolog ? L"on" : L"off");
}
// save.encode
else if ( cmd == L"save.encode" ) {
return yaya::string_t(encode_savefile ? L"on" : L"off");
}
// save.auto
else if ( cmd == L"save.auto" ) {
return yaya::string_t(auto_save ? L"on" : L"off");
}
// msglang
else if ( cmd == L"msglang" ) { //obsolete, for compatibility
return yaya::string_t(msglang_for_compat == MSGLANG_ENGLISH ? L"english" : L"japanese");
}
// messagetxt
else if ( cmd == L"messagetxt" ) {
return messagetxt_path;
}
// charset
else if ( cmd == L"charset" ) {
return Ccct::CharsetIDToTextW(dic_charset);
}
// charset
else if ( cmd == L"charset.dic" ) {
return Ccct::CharsetIDToTextW(dic_charset);
}
else if ( cmd == L"charset.setting" ) {
return Ccct::CharsetIDToTextW(setting_charset);
}
else if ( cmd == L"charset.output" ) {
return Ccct::CharsetIDToTextW(output_charset);
}
else if ( cmd == L"charset.file" ) {
return Ccct::CharsetIDToTextW(file_charset);
}
else if ( cmd == L"charset.save" ) {
return Ccct::CharsetIDToTextW(save_charset);
}
else if ( cmd == L"charset.save.old" ) {
return Ccct::CharsetIDToTextW(save_old_charset);
}
else if ( cmd == L"charset.extension" ) {
return Ccct::CharsetIDToTextW(extension_charset);
}
else if ( cmd == L"charset.log" ) {
return Ccct::CharsetIDToTextW(log_charset);
}
// fncdepth
else if ( cmd == L"fncdepth" ) {
return CValue((yaya::int_t)vm.call_limit().GetMaxDepth());
}
// looplimit
else if ( cmd == L"looplimit" ) {
return CValue((yaya::int_t)vm.call_limit().GetMaxLoop());
}
// maxlognum
else if ( cmd == L"maxlognum" ) {
return CValue((yaya::int_t)vm.logger().GetMaxLogNum());
}
// checkparser closed function
else if ( cmd == L"checkparser" ) {
return checkparser ? L"on" : L"off";
}
// iolog.filter.keyword (old syntax : ignoreiolog)
else if ( cmd == L"iolog.filter.keyword" || cmd == L"ignoreiolog" ){
CValue value(F_TAG_ARRAY, 0/*dmy*/);
CBasis_ConvertStringArray(vm.logger().GetIologFilterKeyword(),value);
return value;
}
// iolog.filter.keyword.regex
else if ( cmd == L"iolog.filter.keyword.regex" ){
CValue value(F_TAG_ARRAY, 0/*dmy*/);
CBasis_ConvertStringArray(vm.logger().GetIologFilterKeywordRegex(),value);
return value;
}
// iolog.filter.keyword.delete (for SETSETTING only)
else if(cmd == L"iolog.filter.keyword.delete"){
return yaya::string_t(); //NOOP
}
// iolog.filter.keyword.regex.delete (for SETSETTING only)
else if(cmd == L"iolog.filter.keyword.regex.delete"){
return yaya::string_t(); //NOOP
}
// iolog.filter.mode
else if ( cmd == L"iolog.filter.mode" ){
return vm.logger().GetIologFilterMode() ? L"allowlist" : L"denylist";
}
return yaya::string_t();
}
/* -----------------------------------------------------------------------
* 関数名 : CBasis::SaveVariable
* 機能概要: 変数値をファイルに保存します
*
* ファイル名は"DLL主ファイル名_variable.cfg"です。
* ファイルフォーマットは1行1変数、デリミタ半角カンマで、
*
* 変数名,内容,デリミタ
*
* の形式で保存されます。内容は整数/実数の場合はそのまま、文字列ではダブルクォートされます。
* 配列の場合は各要素間がコロンで分割されます。以下に要素数3、デリミタ"@"での例を示します。
*
* var,1:"TEST":0.3,@
*
* デリミタはダブルクォートされません。
*
* 基礎設定ファイルで設定した文字コードで保存されます。
* -----------------------------------------------------------------------
*/
void CBasis::SaveVariable(const yaya::char_t* pName)
{
// 変数の保存
std::string old_locale = yaya::get_safe_str(setlocale(LC_NUMERIC,NULL));
setlocale(LC_NUMERIC,"English"); //小数点問題回避
bool ayc = encode_savefile;
// ファイルを開く
yaya::string_t filename;
if ( ! pName || ! *pName ) {
filename = GetSavefilePath();
}
else {
filename = base_path + pName;
}
if ( ayc ) {
char *s_filestr = Ccct::Ucs2ToMbcs(filename,CHARSET_DEFAULT);
#if defined(WIN32)
DeleteFileA(s_filestr);
#else
std::remove(s_filestr);
#endif
free(s_filestr);
s_filestr=0;
filename += L".ays"; //aycだとかぶるので…
}
else {
filename += L".ays"; //aycだとかぶるので…
char *s_filestr = Ccct::Ucs2ToMbcs(filename,CHARSET_DEFAULT);
#if defined(WIN32)
DeleteFileA(s_filestr);
#else
std::remove(s_filestr);
#endif
free(s_filestr);
s_filestr=0;
filename.erase(filename.size()-4,4);
}
vm.logger().Message(7);
vm.logger().Filename(filename);
FILE *fp = yaya::w_fopen(filename.c_str(), L"w");
if (fp == NULL) {
vm.logger().Error(E_E, 57, filename);
return;
}
/*
#if defined(WIN32)
// UTF-8の場合は先頭にBOMを保存
if (charset == CHARSET_UTF8)
write_utf8bom(fp);
#endif
// UTF-8なのにBOMを付けるのはやめた方が宜しいかと…
// トラブルの原因になるので。
// 了解です。外してしまいます。
// メモ
// UTF-8にはバイトオーダーによるバリエーションが存在しないのでBOMは必要ない。
// 付与することは出来る。しかし対応していないソフトで読めなくなるので付けないほうが
// 良い。
*/
// 文字コード
yaya::string_t str;
yaya::string_t wstr;
str.reserve(1000);
str = L"//savefile_charset,";
str += Ccct::CharsetIDToTextW(save_charset);
str += L"\n";
yaya::ws_fputs(str,fp,save_charset,ayc);
// 順次保存
size_t var_num = vm.variable().GetNumber();
for(size_t i = 0; i < var_num; i++) {
CVariable *var = vm.variable().GetPtr(i);