-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Dictionary.cpp
702 lines (613 loc) · 21.7 KB
/
Dictionary.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
//////////////////////////////////////////////////////////////////////////////
// Dictionary.cpp --- XWord Giver (Japanese Crossword Generator)
// Copyright (C) 2012-2020 Katayama Hirofumi MZ. All Rights Reserved.
// (Japanese, UTF-8)
#include "XWordGiver.hpp"
// 辞書データ。
std::vector<XG_WordData> xg_dict_1, xg_dict_2;
// タグ付けデータ。
std::unordered_map<XGStringW, std::unordered_set<XGStringW> > xg_word_to_tags_map;
// タグのヒストグラム。
std::unordered_map<XGStringW, size_t> xg_tag_histgram;
// 優先タグ。
std::unordered_set<XGStringW> xg_priority_tags;
// 除外タグ。
std::unordered_set<XGStringW> xg_forbidden_tags;
// テーマ文字列。
XGStringW xg_strTheme;
// 既定のテーマ文字列。
XGStringW xg_strDefaultTheme;
// テーマが変更されたか?
bool xg_bThemeModified = false;
// 単語の長さのヒストグラム。
std::unordered_map<size_t, size_t> xg_word_length_histgram;
// 配置できる最大単語長。
int xg_nDictMaxWordLen = 7;
// 配置できる最小単語長。
int xg_nDictMinWordLen = 2;
//////////////////////////////////////////////////////////////////////////////
// 辞書データのファイル処理。
// テーマ文字列をパースする。
void XgParseTheme(std::unordered_set<XGStringW>& priority,
std::unordered_set<XGStringW>& forbidden,
const XGStringW& strTheme)
{
priority.clear();
forbidden.clear();
std::vector<XGStringW> strs;
mstr_split(strs, strTheme, L",");
for (const auto& str : strs) {
XGStringW item = str;
if (item.empty())
continue;
bool minus = false;
if (item[0] == L'-') {
minus = true;
item = item.substr(1);
}
if (item[0] == L'+') {
item = item.substr(1);
}
if (minus) {
forbidden.emplace(item);
} else {
priority.emplace(item);
}
}
}
// テーマを設定する。
void XgSetThemeString(const XGStringW& strTheme)
{
XgParseTheme(xg_priority_tags, xg_forbidden_tags, strTheme);
xg_strTheme = strTheme;
std::unordered_set<XGStringW> priority, forbidden;
XgParseTheme(priority, forbidden, xg_strDefaultTheme);
xg_bThemeModified = (priority != xg_priority_tags || forbidden != xg_forbidden_tags);
}
// テーマをリセットする。
void __fastcall XgResetTheme(HWND hwnd)
{
XgSetThemeString(xg_strDefaultTheme);
xg_bThemeModified = false;
}
// Unicodeを一行読み込む。
void XgReadUnicodeLine(LPWSTR pchLine)
{
XG_WordData entry;
WCHAR szWord[64];
// コメント行を無視する。
if (*pchLine == L'#') {
// ただし、コメント内に"DEFAULT:"がある場合は例外として既定のテーマを読み取る。
pchLine = wcsstr(pchLine, L"DEFAULT:");
if (pchLine) {
pchLine += wcslen(L"DEFAULT:");
xg_strDefaultTheme = pchLine;
mstr_trim(xg_strDefaultTheme, L" \t\r\n");
}
return;
}
// 空行を無視する。
if (*pchLine == L'\0') {
return;
}
// ヒントをさがす。
LPWSTR pchHint = wcschr(pchLine, L'\t');
if (pchHint) {
*pchHint = 0;
pchHint++;
} else {
pchHint = nullptr;
}
// 第3フィールドはタグ群。
LPWSTR pchTags = nullptr;
if (pchHint) {
pchTags = wcschr(pchHint, L'\t');
if (pchTags) {
*pchTags = 0;
++pchTags;
}
}
// 単語文字列を全角・カタカナ・大文字にする。
LCMapStringW(XG_JPN_LOCALE,
LCMAP_FULLWIDTH | LCMAP_KATAKANA | LCMAP_UPPERCASE,
pchLine, static_cast<int>(wcslen(pchLine) + 1), szWord, 64);
// 文字列の前後の空白を取り除く。
entry.m_word = szWord;
xg_str_trim(entry.m_word);
auto word = entry.m_word;
// 小さな字を大きな字にする。
for (auto& ch : entry.m_word) {
auto it = xg_small2large.find(ch);
if (it != xg_small2large.end())
ch = it->second;
}
// ハイフン、アポストロフィ、ピリオド、カンマを取り除く。
XGStringW tmp;
for (auto ch : entry.m_word) {
if (ch == L'-' || ch == 0xFF0D)
continue;
if (ch == L'\'' || ch == 0xFF07)
continue;
if (ch == L'.' || ch == 0xFF0E)
continue;
if (ch == L',' || ch == 0xFF0C)
continue;
tmp += ch;
}
entry.m_word = std::move(tmp);
// 単語とヒントを登録する。一字以下の単語は登録しない。
if (entry.m_word.size() > 1) {
if (pchHint) {
entry.m_hint = pchHint;
xg_str_trim(entry.m_hint);
}
else
entry.m_hint.clear();
xg_dict_1.emplace_back(std::move(entry));
}
// タグがあれば、単語のタグ付けを行う。
if (pchTags) {
XGStringW strTags = pchTags;
xg_str_replace_all(strTags, L",", L"\t");
xg_str_replace_all(strTags, L" ", L" ");
std::unordered_set<XGStringW> tags;
mstr_split_insert(tags, strTags, L"\t");
for (auto tag : tags) {
xg_str_trim(tag);
if (tag.empty())
continue;
xg_word_to_tags_map[word].insert(tag);
xg_tag_histgram[tag] += 1;
}
}
}
// Unicodeのファイルの中身を読み込む。
bool XgReadUnicodeFile(LPWSTR pszData, size_t cchData)
{
// 最初の一行を取り出す。
LPWSTR pchLine = wcstok(pszData, L"\r\n");
if (pchLine == nullptr)
return false;
// 一行ずつ処理する。
do {
XgReadUnicodeLine(pchLine);
pchLine = wcstok(nullptr, L"\r\n");
} while (pchLine);
return true;
}
// 辞書ファイルを読み込む。
bool __fastcall XgLoadDictFile(LPCWSTR pszFile)
{
// 初期化する。
xg_dict_1.clear();
xg_dict_2.clear();
xg_word_to_tags_map.clear();
xg_tag_histgram.clear();
xg_strDefaultTheme.clear();
xg_word_length_histgram.clear();
xg_nDictMaxWordLen = 255;
xg_nDictMinWordLen = 2;
try {
// ファイルを開く。
XGStringW strText;
if (!XgReadTextFileAll(pszFile, strText))
return false;
if (!XgReadUnicodeFile(&strText[0], strText.size()))
return false;
// テーマが変更されたか?
if (!xg_bThemeModified) {
// テーマを設定する。
XgSetThemeString(xg_strDefaultTheme);
} else {
// テーマを設定する。
XgSetThemeString(xg_strTheme);
}
// xg_forbidden_tags のタグが付いた単語は除外する(erase-remove idiom)。
auto it = std::remove_if(xg_dict_1.begin(), xg_dict_1.end(), [](const XG_WordData& data) {
auto found = xg_word_to_tags_map.find(data.m_word);
if (found != xg_word_to_tags_map.end()) {
auto& tags2 = found->second;
for (auto& tag2 : tags2) {
for (auto& tag1 : xg_forbidden_tags) {
if (tag1 == tag2) {
return true;
}
}
}
}
return false;
});
xg_dict_1.erase(it, xg_dict_1.end());
// xg_priority_tagsのタグのついてない単語をxg_dict_2に振り分ける。
std::vector<XG_WordData> tmp;
for (auto& data : xg_dict_1) {
auto it2 = xg_word_to_tags_map.find(data.m_word);
if (it2 == xg_word_to_tags_map.end()) {
xg_dict_2.push_back(data);
} else {
auto& tags2 = it2->second;
for (auto& tag2 : tags2) {
bool found = false;
for (auto& tag1 : xg_priority_tags) {
if (tag1 == tag2) {
found = true;
break;
}
}
if (found) {
tmp.push_back(data);
} else {
xg_dict_2.push_back(data);
}
}
}
}
xg_dict_1 = std::move(tmp);
// xg_dict_1が空のときは交換する。
if (xg_dict_1.empty()) {
std::swap(xg_dict_1, xg_dict_2);
}
// 二分探索のために、並び替えておく。
std::sort(xg_dict_1.begin(), xg_dict_1.end(), xg_word_less());
std::sort(xg_dict_2.begin(), xg_dict_2.end(), xg_word_less());
// 一意化する。
xg_dict_1.erase(std::unique(xg_dict_1.begin(), xg_dict_1.end(), [](auto& a, auto& b) {
return a.m_word == b.m_word;
}), xg_dict_1.end());
xg_dict_2.erase(std::unique(xg_dict_2.begin(), xg_dict_2.end(), [](auto& a, auto& b) {
return a.m_word == b.m_word;
}), xg_dict_2.end());
// 単語の長さのヒストグラムを構築する。
for (auto& worddata : xg_dict_1) {
const auto len = worddata.m_word.size();
xg_word_length_histgram[len]++;
}
for (auto& worddata : xg_dict_2) {
const auto len = worddata.m_word.size();
xg_word_length_histgram[len]++;
}
// 最長、最短を更新。
if (xg_word_length_histgram.size()) {
xg_nDictMaxWordLen = 2;
xg_nDictMinWordLen = 255;
for (auto& pair : xg_word_length_histgram) {
if (xg_nDictMaxWordLen < static_cast<int>(pair.first))
xg_nDictMaxWordLen = static_cast<int>(pair.first);
if (xg_nDictMinWordLen > static_cast<int>(pair.first))
xg_nDictMinWordLen = static_cast<int>(pair.first);
}
}
return true; // 成功。
} catch (...) {
// 例外が発生した。
assert(0);
}
return false; // 失敗。
}
// 辞書データをソートし、一意的にする。
void __fastcall XgSortAndUniqueDictData(std::vector<XG_WordData>& data)
{
std::sort(data.begin(), data.end(), xg_word_less());
auto it = std::unique(data.begin(), data.end(), XG_WordData_Equal());
data.erase(it, data.end());
}
// ミニ辞書を作成する。
std::vector<XG_WordData> XgCreateMiniDict(void)
{
std::vector<XG_WordData> ret;
for (const auto& hint : xg_vecVertHints)
{
ret.emplace_back(hint.m_strWord, hint.m_strHint);
}
for (const auto& hint : xg_vecHorzHints)
{
ret.emplace_back(hint.m_strWord, hint.m_strHint);
}
std::sort(ret.begin(), ret.end(),
[](const XG_WordData& a, const XG_WordData& b) noexcept {
return a.m_word < b.m_word;
}
);
return ret;
}
XGStringW XgLoadTitleFromDict(LPCWSTR pszPath)
{
XGStringW ret = pszPath;
if (FILE *fp = _wfopen(pszPath, L"rb"))
{
char buf[256];
WCHAR szText[256];
const BOOL bJapanese = XgIsUserJapanese();
int nLineCount = 0;
auto name_jpn = L"# NAME-JPN:";
auto name_eng = L"# NAME-ENG:";
while (fgets(buf, _countof(buf), fp))
{
if (nLineCount++ >= 8)
break;
MultiByteToWideChar(CP_UTF8, 0, buf, -1, szText, _countof(szText));
const auto len1 = lstrlenW(name_jpn);
if (memcmp(szText, name_jpn, len1 * sizeof(WCHAR)) == 0)
{
if (bJapanese)
{
XGStringW str = &szText[len1];
xg_str_trim(str);
ret = str;
break;
}
}
const auto len2 = lstrlenW(name_eng);
if (memcmp(szText, name_eng, len2 * sizeof(WCHAR)) == 0)
{
XGStringW str = &szText[len2];
xg_str_trim(str);
ret = str;
if (!bJapanese)
break;
}
}
fclose(fp);
}
return ret;
}
// フォルダから辞書群を読み込む。
BOOL XgLoadDictsFromDir(LPCWSTR pszDir)
{
WCHAR szPath[MAX_PATH];
WIN32_FIND_DATAW find;
HANDLE hFind;
// ファイル *.dic を列挙する。
StringCchCopy(szPath, _countof(szPath), pszDir);
PathAppend(szPath, L"*.dic");
hFind = FindFirstFileW(szPath, &find);
if (hFind != INVALID_HANDLE_VALUE)
{
do
{
StringCchCopy(szPath, _countof(szPath), pszDir);
PathAppend(szPath, find.cFileName);
auto path = szPath;
auto title = XgLoadTitleFromDict(szPath);
xg_dicts.emplace_back(path, title);
} while (FindNextFile(hFind, &find));
FindClose(hFind);
}
// ファイル *.tsv を列挙する。
StringCchCopy(szPath, _countof(szPath), pszDir);
PathAppend(szPath, L"*.tsv");
hFind = FindFirstFileW(szPath, &find);
if (hFind != INVALID_HANDLE_VALUE)
{
do
{
StringCchCopy(szPath, _countof(szPath), pszDir);
PathAppend(szPath, find.cFileName);
auto path = szPath;
auto title = XgLoadTitleFromDict(szPath);
xg_dicts.emplace_back(path, title);
} while (FindNextFile(hFind, &find));
FindClose(hFind);
}
// ファイル *.dic も列挙する。
StringCchCopy(szPath, _countof(szPath), pszDir);
PathAppend(szPath, L"*.dic");
hFind = FindFirstFileW(szPath, &find);
if (hFind != INVALID_HANDLE_VALUE)
{
do
{
StringCchCopy(szPath, _countof(szPath), pszDir);
PathAppend(szPath, find.cFileName);
auto path = szPath;
auto title = XgLoadTitleFromDict(szPath);
xg_dicts.emplace_back(path, title);
} while (FindNextFile(hFind, &find));
FindClose(hFind);
}
return !xg_dicts.empty();
}
// 辞書ファイルをすべて読み込む。
BOOL XgLoadDictsAll(void)
{
xg_dicts.clear();
// 実行ファイルのパスを取得。
WCHAR sz[MAX_PATH];
::GetModuleFileNameW(nullptr, sz, _countof(sz));
// 実行ファイルの近くにある.dic/.tsvファイルを列挙する。
PathRemoveFileSpec(sz);
PathAppend(sz, L"DICT");
if (!XgLoadDictsFromDir(sz))
{
PathRemoveFileSpec(sz);
PathRemoveFileSpec(sz);
PathAppend(sz, L"DICT");
if (!XgLoadDictsFromDir(sz))
{
PathRemoveFileSpec(sz);
PathRemoveFileSpec(sz);
PathAppend(sz, L"DICT");
XgLoadDictsFromDir(sz);
}
}
// 読み込んだ中から見つかるか?
bool bFound = false;
for (auto& entry : xg_dicts)
{
const auto& file = entry.m_filename;
if (lstrcmpiW(file.c_str(), xg_dict_name.c_str()) == 0)
{
bFound = true;
break;
}
}
if (xg_dict_name.empty() || !bFound)
{
LPCWSTR pszNormal = XgLoadStringDx1(IDS_NORMAL_DICT);
LPCWSTR pszBasicDict = XgLoadStringDx2(IDS_BASICDICTDATA);
for (auto& entry : xg_dicts)
{
const auto& file = entry.m_filename;
if (file.find(pszBasicDict) != XGStringW::npos &&
file.find(pszNormal) != XGStringW::npos &&
PathFileExistsW(file.c_str()))
{
xg_dict_name = file;
break;
}
}
if (xg_dict_name.empty() && xg_dicts.size())
{
xg_dict_name = xg_dicts[0].m_filename;
}
}
// ファイルが実際に存在するかチェックし、存在しない項目は消す。
for (size_t i = 0; i < xg_dicts.size(); ++i) {
auto& entry = xg_dicts[i];
const auto& file = entry.m_filename;
if (!PathFileExistsW(file.c_str())) {
xg_dicts.erase(xg_dicts.begin() + i);
--i;
}
}
return !xg_dicts.empty();
}
// 辞書名をセットする。
void XgSetDict(const XGStringW& strFile)
{
// 辞書名を格納。
xg_dict_name = strFile;
// 辞書として追加、ソート、一意にする。
if (xg_dicts.size() < XG_MAX_DICTS)
{
auto title = XgLoadTitleFromDict(strFile.c_str());
xg_dicts.emplace_back(strFile, title);
std::sort(xg_dicts.begin(), xg_dicts.end(),
[](const XG_DICT& e1, const XG_DICT& e2) noexcept {
return e1.m_filename < e2.m_filename;
}
);
auto last = std::unique(xg_dicts.begin(), xg_dicts.end(),
[](const XG_DICT& e1, const XG_DICT& e2) noexcept {
return e1.m_filename == e2.m_filename;
}
);
xg_dicts.erase(last, xg_dicts.end());
}
}
// 辞書を切り替える。
void XgSelectDict(HWND hwnd, size_t iDict)
{
// 範囲外は無視。
if (iDict >= xg_dicts.size())
return;
// 辞書を読み込み、セットする。
auto& entry = xg_dicts[iDict];
const auto& file = entry.m_filename;
if (XgLoadDictFile(file.c_str()))
{
XgSetDict(file.c_str());
XgSetInputModeFromDict(hwnd);
}
// 二重マス単語の候補をクリアする。
xg_vMarkedCands.clear();
xg_iMarkedCand = -1;
}
// カギを使って辞書を更新する。
BOOL XgUpdateDictionaryUsingClues(HWND hwnd, const XGStringW& dict_name)
{
WCHAR szText[MAX_PATH];
// カギがなければ失敗。
if (!xg_bSolved || xg_vecHorzHints.empty() || xg_vecVertHints.empty()) {
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_NOCHANGE),
XgLoadStringDx2(IDS_APPNAME), MB_ICONINFORMATION);
return FALSE;
}
// 単語からヒントへの写像を作成する。
std::map<XGStringW, XGStringW> word_to_hint_map;
for (auto& hint : xg_vecHorzHints) {
word_to_hint_map[XgNormalizeString(hint.m_strWord)] = hint.m_strHint;
}
for (auto& hint : xg_vecVertHints) {
word_to_hint_map[XgNormalizeString(hint.m_strWord)] = hint.m_strHint;
}
// 辞書ファイルをすべて読み込む。
XGStringW str;
if (dict_name.empty() || !XgReadTextFileAll(dict_name.c_str(), str)) {
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_NODICTSELECTED), NULL, MB_ICONERROR);
return FALSE;
}
// 改行コードを正規化。
xg_str_replace_all(str, L"\r\n", L"\n");
// 行で分割する。
std::vector<XGStringW> lines;
mstr_split(lines, str, L"\n");
// 一行ずつ処理する。
BOOL bNoChange = TRUE;
for (auto& line : lines) {
if (line[0] == L'#')
continue;
// タブで分割する。
std::vector<XGStringW> fields;
mstr_split(fields, line, L"\t");
if (fields.empty())
continue;
// 単語を正規化する。
auto strWord = XgNormalizeString(fields[0]);
auto strNormalized = XgNormalizeString(strWord);
// 正規化された単語が見つかったか?
auto it = word_to_hint_map.find(strNormalized);
if (it != word_to_hint_map.end()) {
// 見つかったら、フィールドを更新。
if (fields.size() >= 2)
fields[1] = it->second;
else
fields.push_back(it->second);
// 写像から削除。
word_to_hint_map.erase(it);
// 必要なら変更する。
auto strNew = mstr_join(fields, L"\t");
if (line != strNew) {
line = strNew;
bNoChange = FALSE;
}
}
}
// 辞書になかった単語を追記する。
for (auto& pair : word_to_hint_map) {
XGStringW line = XgNormalizeStringEx(pair.first, TRUE, TRUE);
line += L'\t';
line += pair.second;
line += L'\n';
lines.push_back(line);
bNoChange = FALSE;
}
if (bNoChange) { // 変更なし。
XgCenterMessageBoxW(hwnd, XgLoadStringDx1(IDS_NOCHANGE),
XgLoadStringDx2(IDS_APPNAME), MB_ICONINFORMATION);
return FALSE;
}
// 辞書ファイルに書き込む。
FILE *fp = _wfopen(dict_name.c_str(), L"w");
if (!fp) {
// 失敗メッセージ。
StringCchPrintfW(szText, _countof(szText), XgLoadStringDx1(IDS_UPDATEDICTFAIL),
PathFindFileNameW(xg_dict_name.c_str()));
XgCenterMessageBoxW(hwnd, szText, nullptr, MB_ICONERROR);
return FALSE;
}
fprintf(fp, "\xEF\xBB\xBF"); // UTF-8 BOM
// 一行ずつ書き込む。
for (auto& line : lines) {
auto psz = XgUnicodeToUtf8(line).c_str();
if (!*psz)
continue;
fprintf(fp, "%s\n", psz);
}
fclose(fp); // ちゃんとファイルを閉じようね。
// 成功メッセージ。
StringCchPrintfW(szText, _countof(szText), XgLoadStringDx1(IDS_UPDATEDICTOK),
PathFindFileNameW(xg_dict_name.c_str()));
XgCenterMessageBoxW(hwnd, szText, XgLoadStringDx2(IDS_APPNAME), MB_ICONINFORMATION);
return TRUE;
}