XTPSyntaxEditLexClass.cpp
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:88k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // XTPSyntaxEditLexClass.cpp : implementation file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME SYNTAX EDIT LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. //////////////////////////////////////////////////////////////////////
  20. #include "stdafx.h"
  21. // common includes
  22. #include "Common/XTPColorManager.h"
  23. #include "Common/XTPNotifyConnection.h"
  24. #include "Common/XTPSmartPtrInternalT.h"
  25. #include "Common/XTPVC80Helpers.h"
  26. #include "Common/XTPVC50Helpers.h"
  27. // syntax editor includes
  28. #include "XTPSyntaxEditDefines.h"
  29. #include "XTPSyntaxEditStruct.h"
  30. #include "XTPSyntaxEditLexPtrs.h"
  31. #include "XTPSyntaxEditLexClassSubObjT.h"
  32. #include "XTPSyntaxEditTextIterator.h"
  33. #include "XTPSyntaxEditSectionManager.h"
  34. #include "XTPSyntaxEditLexCfgFileReader.h"
  35. #include "XTPSyntaxEditLexClassSubObjDef.h"
  36. #include "XTPSyntaxEditLexClass.h"
  37. #include "XTPSyntaxEditLexParser.h"
  38. #include "XTPSyntaxEditTextIterator.h"
  39. #ifdef _DEBUG
  40. #define new DEBUG_NEW
  41. #undef THIS_FILE
  42. static char THIS_FILE[] = __FILE__;
  43. #endif
  44. //#define TRACE_ASSERT ASSERT
  45. #define TRACE_ASSERT(x)
  46. //#define TRACE_MEMORY_LEX_AUTOMAT_MEM_MAN
  47. ////////////////////////////////////////////////////////////////////////////
  48. const int c_nPrevClassDepth_default = 1;
  49. using namespace XTPSyntaxEditLexAnalyser;
  50. namespace XTPSyntaxEditLexAnalyser
  51. {
  52. CXTPSyntaxEditLexAutomatMemMan* XTPGetLexAutomatMemMan()
  53. {
  54. static CXTPSyntaxEditLexAutomatMemMan s_LexAutomatMemMan;
  55. return &s_LexAutomatMemMan;
  56. }
  57. ////////////////////////////////////////////////////////////////////////////
  58. static const LPCTSTR cszSpecs = _T("~`!@#$%^&*()_-+=\|{}[];:'",.<>/?");
  59. //---------------------------------------------------------------------------
  60. const TCHAR* g_arKnownLexClassAttribs[] =
  61. {
  62. XTPLEX_ATTR_TXT_COLORFG,
  63. XTPLEX_ATTR_TXT_COLORBK,
  64. XTPLEX_ATTR_TXT_COLORSELFG,
  65. XTPLEX_ATTR_TXT_COLORSELBK,
  66. XTPLEX_ATTR_TXT_BOLD,
  67. XTPLEX_ATTR_TXT_ITALIC,
  68. XTPLEX_ATTR_TXT_UNDERLINE,
  69. XTPLEX_ATTR_CASESENSITIVE,
  70. XTPLEX_ATTR_COLLAPSABLE,
  71. XTPLEX_ATTR_COLLAPSEDTEXT,
  72. XTPLEX_ATTR_PARSEONSCREEN,
  73. XTPLEX_ATTR_RESTARTRUNLOOP,
  74. XTPLEX_ATTR_ENDCLASSPARENT,
  75. XTPLEX_ATTR_RECURRENCEDEPTH,
  76. XTPLEX_ATTR_DISPLAYNAME,
  77. // Global attributes
  78. XTPLEX_ATTRG_FIRSTPARSEINSEPARATETHREAD,
  79. XTPLEX_ATTRG_EDITREPARCEINSEPARATETHREAD,
  80. XTPLEX_ATTRG_CONFIGCHANGEDREPARCEINSEPARATETHREAD,
  81. XTPLEX_ATTRG_EDITREPARCETIMEOUT_MS,
  82. XTPLEX_ATTRG_MAXBACKPARSEOFFSET,
  83. XTPLEX_ATTRG_ONSCREENSCHCACHELIFETIME_SEC,
  84. XTPLEX_ATTRG_PARSERTHREADIDLELIFETIME_SEC,
  85. };
  86. extern int FindStr(const CStringArray& rarData, LPCTSTR pcszStr, BOOL bCase = FALSE);
  87. extern int Find_noCase(CStringArray& rarData, LPCTSTR strData);
  88. //===========================================================================
  89. BOOL SplitStr(LPCTSTR pcszStr, TCHAR chSplitter, CStringArray& rArProps)
  90. {
  91. rArProps.RemoveAll();
  92. CString str0(pcszStr);
  93. CString strSplitter(chSplitter);
  94. CString str;
  95. do {
  96. str = str0.SpanExcluding(strSplitter);
  97. int nLen = str.GetLength();
  98. int nLenMax = str0.GetLength();
  99. if (nLen)
  100. {
  101. DELETE_S(str0, 0, min(nLen+1, nLenMax));
  102. rArProps.Add(str);
  103. }
  104. }
  105. while (!str.IsEmpty());
  106. return TRUE;
  107. }
  108. //---------------------------------------------------------------------------
  109. BOOL PropPathSplit(LPCTSTR pcszPropPath, CStringArray& rArProps)
  110. {
  111. return SplitStr(pcszPropPath, _T(':'), rArProps);
  112. }
  113. //---------------------------------------------------------------------------
  114. CString MakeStr(const CStringArray& rArProps, LPCTSTR strSplitter)
  115. {
  116. CString strResult;
  117. int nCount = (int)rArProps.GetSize();
  118. for (int i = 0; i < nCount; i++)
  119. {
  120. if (i)
  121. {
  122. strResult += strSplitter;
  123. }
  124. CString strI = rArProps[i];
  125. strResult += strI;
  126. }
  127. return strResult;
  128. }
  129. //---------------------------------------------------------------------------
  130. CString PropPathFirstRemove(CString& rStrPropPath)
  131. {
  132. CString strProp;
  133. strProp = rStrPropPath.SpanExcluding(_T(":"));
  134. int nLen = strProp.GetLength();
  135. int nLenMax = rStrPropPath.GetLength();
  136. if (nLen)
  137. {
  138. DELETE_S(rStrPropPath, 0, min(nLen+1, nLenMax));
  139. }
  140. return strProp;
  141. }
  142. //---------------------------------------------------------------------------
  143. int PropPathCount(LPCTSTR pcszPropPath)
  144. {
  145. CString strPP(pcszPropPath);
  146. int nCount = 1;
  147. int nLenMax = strPP.GetLength();
  148. for (int nFIndex = 0; nFIndex >= 0 && nFIndex < nLenMax;)
  149. {
  150. nFIndex = FIND_S(strPP, _T(':'), nFIndex);
  151. if (nFIndex >= 0)
  152. {
  153. nFIndex++;
  154. nCount++;
  155. }
  156. }
  157. return nCount;
  158. }
  159. //---------------------------------------------------------------------------
  160. void AddIfNeed(CXTPSyntaxEditLexVariantPtrArray* pArDest, CXTPSyntaxEditLexVariant* pLVar)
  161. {
  162. if (!pArDest || !pLVar)
  163. {
  164. ASSERT(FALSE);
  165. return;
  166. }
  167. int nCount = (int)pArDest->GetSize();
  168. for (int i = 0; i < nCount; i++)
  169. {
  170. CXTPSyntaxEditLexVariant* pLV_i = pArDest->GetAt(i, FALSE);
  171. ASSERT(pLV_i);
  172. if (pLV_i && *pLV_i == *pLVar)
  173. {
  174. return;
  175. }
  176. }
  177. //-----------
  178. CXTPSyntaxEditLexVariantPtr ptrLV(pLVar, TRUE);
  179. pArDest->Add(ptrLV);
  180. }
  181. //---------------------------------------------------------------------------
  182. void ConcatenateLVArrays(CXTPSyntaxEditLexVariantPtrArray* pArDest,
  183.  CXTPSyntaxEditLexVariantPtrArray* pAr2, int nMaxCount = INT_MAX)
  184. {
  185. if (!pArDest || !pAr2)
  186. {
  187. ASSERT(FALSE);
  188. return;
  189. }
  190. int nCount = min(nMaxCount, (int)pAr2->GetSize());
  191. for (int i = 0; i < nCount; i++)
  192. {
  193. CXTPSyntaxEditLexVariant* pLVar = pAr2->GetAt(i, FALSE);
  194. AddIfNeed(pArDest, pLVar);
  195. }
  196. }
  197. //---------------------------------------------------------------------------
  198. int FindStr(CXTPSyntaxEditLexVariantPtrArray* pAr, LPCTSTR pcszStr, BOOL bCase = FALSE, int* pnStrIdx = NULL)
  199. {
  200. if (!pAr || !pcszStr)
  201. {
  202. ASSERT(FALSE);
  203. return -1;
  204. }
  205. int nCount = (int)pAr->GetSize();
  206. for (int i = 0; i < nCount; i++)
  207. {
  208. CXTPSyntaxEditLexVariant* pLV_i = pAr->GetAt(i, FALSE);
  209. ASSERT(pLV_i && pLV_i->IsStrType());
  210. if (pLV_i && pLV_i->IsStrType())
  211. {
  212. int nIdx2 = FindStr(pLV_i->m_arStrVals, pcszStr, bCase);
  213. if (nIdx2 >= 0)
  214. {
  215. if (pnStrIdx)
  216. {
  217. *pnStrIdx = nIdx2;
  218. }
  219. return i;
  220. }
  221. }
  222. }
  223. return -1;
  224. }
  225. AFX_INLINE int StrCmp_sort(const CString& rStr1, const CString& rStr2,
  226. BOOL bAscending, BOOL bNoCase)
  227. {
  228. int nCmpRes = 0;
  229. if (bNoCase)
  230. {
  231. nCmpRes = rStr1.CompareNoCase(rStr2);
  232. }
  233. else
  234. {
  235. nCmpRes = rStr1.Compare(rStr2);
  236. }
  237. if (!bAscending)
  238. {
  239. nCmpRes *= -1;
  240. }
  241. return nCmpRes;
  242. }
  243. void SortArray(CStringArray& rarData, BOOL bAscending, BOOL bNoCase)
  244. {
  245. CString strTmp;
  246. int nCount = (int)rarData.GetSize();
  247. for (int i = 0; i < nCount; i++)
  248. {
  249. for (int j = i + 1; j < nCount; j++)
  250. {
  251. int nCmpRes = StrCmp_sort(rarData[i], rarData[j], bAscending, bNoCase);
  252. if (nCmpRes > 0)
  253. {
  254. strTmp = rarData[i];
  255. rarData[i] = rarData[j];
  256. rarData[j] = strTmp;
  257. }
  258. }
  259. }
  260. }
  261. int _cdecl StrCmp_qsort_AnC(const void* p1, const void* p2)
  262. {
  263. return StrCmp_sort(*((CString*)p1), *((CString*)p2), TRUE, TRUE);
  264. }
  265. int _cdecl StrCmp_qsort_AC(const void* p1, const void* p2)
  266. {
  267. return StrCmp_sort(*((CString*)p1), *((CString*)p2), TRUE, FALSE);
  268. }
  269. int _cdecl StrCmp_qsort_DnC(const void* p1, const void* p2)
  270. {
  271. return StrCmp_sort(*((CString*)p1), *((CString*)p2), FALSE, TRUE);
  272. }
  273. int _cdecl StrCmp_qsort_DC(const void* p1, const void* p2)
  274. {
  275. return StrCmp_sort(*((CString*)p1), *((CString*)p2), FALSE, FALSE);
  276. }
  277. void QSortArray(CStringArray& rarData, BOOL bAscending, BOOL bNoCase)
  278. {
  279. int nCount = (int)rarData.GetSize();
  280. if (nCount <= 0)
  281. {
  282. return;
  283. }
  284. //--------------------------------------------------------------------
  285. typedef int (_cdecl* TPFNStrCmp)(const void* p1, const void* p2);
  286. TPFNStrCmp pfnStrCmp = NULL;
  287. if (bAscending && bNoCase)
  288. {
  289. pfnStrCmp = StrCmp_qsort_AnC;
  290. }
  291. else if (bAscending && !bNoCase)
  292. {
  293. pfnStrCmp = StrCmp_qsort_AC;
  294. }
  295. else if (!bAscending && bNoCase)
  296. {
  297. pfnStrCmp = StrCmp_qsort_DnC;
  298. }
  299. else if (!bAscending && !bNoCase)
  300. {
  301. pfnStrCmp = StrCmp_qsort_DC;
  302. }
  303. //--------------------------------------------------------------------
  304. void* pArray = (void*)&rarData[0];
  305. int nDataSize = sizeof(CString*);
  306. qsort(pArray, nCount, nDataSize, pfnStrCmp);
  307. }
  308. BOOL SortTagsInLexVarArray(CXTPSyntaxEditLexVariantPtrArray& rarTags,
  309. BOOL bAscending, BOOL bNoCase)
  310. {
  311. CXTPSyntaxEditLexVariantPtrArray arData;
  312. CXTPSyntaxEditLexVariant lvStrs;
  313. int nCount0 = (int)rarTags.GetSize();
  314. for (int i = 0; i < nCount0; i++)
  315. {
  316. CXTPSyntaxEditLexVariant* pLV = rarTags.GetAt(i, FALSE);
  317. ASSERT(pLV);
  318. if (pLV)
  319. {
  320. if (!(pLV->m_nObjType == xtpEditLVT_valStr || pLV->m_nObjType == xtpEditLVT_valVar))
  321. {
  322. TRACE(_T("ERROR! Tag should be string or variable. n"));
  323. }
  324. if (pLV->m_nObjType == xtpEditLVT_valStr)
  325. {
  326. lvStrs.m_nObjType = xtpEditLVT_valStr;
  327. lvStrs.m_arStrVals.Append(pLV->m_arStrVals);
  328. }
  329. else
  330. {
  331. CXTPSyntaxEditLexVariant* pClone = pLV->Clone();
  332. if (pClone)
  333. {
  334. arData.AddPtr(pClone, FALSE);
  335. }
  336. else
  337. {
  338. return FALSE;
  339. }
  340. }
  341. }
  342. }
  343. //------------------------------------------------------------------------
  344. if (lvStrs.m_nObjType == xtpEditLVT_valStr)
  345. {
  346. QSortArray(lvStrs.m_arStrVals, bAscending, bNoCase);
  347. CXTPSyntaxEditLexVariantPtr ptrClone = lvStrs.Clone();
  348. if (ptrClone)
  349. {
  350. arData.InsertAt(0, ptrClone);
  351. }
  352. else
  353. {
  354. return FALSE;
  355. }
  356. }
  357. //====================================================================
  358. rarTags.RemoveAll();
  359. rarTags.Append(arData);
  360. return TRUE;
  361. }
  362. }
  363. ////////////////////////////////////////////////////////////////////////////
  364. //struct LA_CHAR_NODE
  365. LA_CHAR_NODE::LA_CHAR_NODE()
  366. {
  367. wChar = 0;
  368. wFlags = 0;
  369. pNextMap = NULL;
  370. pNextNode = NULL;
  371. }
  372. LA_CHAR_NODE::~LA_CHAR_NODE()
  373. {
  374. //  if (pNextMap
  375. //      pNextMap->InternalRelease();
  376. //  }
  377. }
  378. void LA_CHAR_NODE::Clear()
  379. {
  380. wChar = 0;
  381. wFlags = 0;
  382. pNextNode = NULL;
  383. if (pNextMap)
  384. {
  385. pNextMap->InternalRelease();
  386. pNextMap = NULL;
  387. }
  388. }
  389. const LA_CHAR_NODE& LA_CHAR_NODE::operator=(const LA_CHAR_NODE& rSrc)
  390. {
  391. if (rSrc.pNextMap)
  392. {
  393. rSrc.pNextMap->InternalAddRef();
  394. }
  395. if (pNextMap)
  396. {
  397. pNextMap->InternalRelease();
  398. }
  399. wChar = rSrc.wChar;
  400. wFlags = rSrc.wFlags;
  401. pNextMap = rSrc.pNextMap;
  402. pNextNode = rSrc.pNextNode;
  403. return *this;
  404. }
  405. ////////////////////////////////////////////////////////////////////////////
  406. CXTPSyntaxEditLexAutomatMemMan::CXTPSyntaxEditLexAutomatMemMan()
  407. {
  408. m_lLockCount = 0;
  409. m_pFreeMaps = NULL;
  410. m_pFreeNodes = NULL;
  411. m_pFreeTables = NULL;
  412. m_uAllocatedMaps = 0;
  413. m_uUsedMaps = 0;
  414. m_uAllocatedNodes = 0;
  415. m_uUsedNodes = 0;
  416. m_uAllocatedTables = 0;
  417. m_uUsedTables = 0;
  418. m_uAllocatedTablesBytes = 0;
  419. m_uUsedTablesBytes = 0;
  420. }
  421. CXTPSyntaxEditLexAutomatMemMan::~CXTPSyntaxEditLexAutomatMemMan()
  422. {
  423. FreeAll();
  424. }
  425. DWORD CXTPSyntaxEditLexAutomatMemMan::Lock()
  426. {
  427. return ::InterlockedIncrement(&m_lLockCount);
  428. }
  429. DWORD CXTPSyntaxEditLexAutomatMemMan::Unlok()
  430. {
  431. if (m_lLockCount <=0)
  432. {
  433. ASSERT(FALSE);
  434. return 0;
  435. }
  436. LONG lResult = ::InterlockedDecrement(&m_lLockCount);
  437. if (0 == lResult)
  438. {
  439. FreeAll();
  440. return 0;
  441. }
  442. return (DWORD)lResult;
  443. }
  444. void CXTPSyntaxEditLexAutomatMemMan::FreeAll()
  445. {
  446. ASSERT(m_lLockCount == 0);
  447. POSITION pos;
  448. //- 1 -----------------------------------------------
  449. pos = m_allocatedNodes.GetHeadPosition();
  450. while (pos)
  451. {
  452. delete[] m_allocatedNodes.GetNext(pos);
  453. }
  454. m_allocatedNodes.RemoveAll();
  455. //- 2 -----------------------------------------------
  456. pos = m_allocatedMaps.GetHeadPosition();
  457. while (pos)
  458. {
  459. delete[] m_allocatedMaps.GetNext(pos);
  460. }
  461. m_allocatedMaps.RemoveAll();
  462. //- 3 -----------------------------------------------
  463. pos = m_allocatedTables.GetHeadPosition();
  464. while (pos)
  465. {
  466. delete m_allocatedTables.GetNext(pos);
  467. }
  468. m_allocatedTables.RemoveAll();
  469. m_pFreeMaps = NULL;
  470. m_pFreeNodes = NULL;
  471. m_pFreeTables = NULL;
  472. m_uAllocatedMaps = 0;
  473. m_uUsedMaps = 0;
  474. m_uAllocatedNodes = 0;
  475. m_uUsedNodes = 0;
  476. m_uAllocatedTables = 0;
  477. m_uUsedTables = 0;
  478. m_uAllocatedTablesBytes = 0;
  479. m_uUsedTablesBytes = 0;
  480. }
  481. CXTPSyntaxEditLexAutomatWordsMap* CXTPSyntaxEditLexAutomatMemMan::NewMap(UINT uHashTableSize)
  482. {
  483. if (m_pFreeMaps)
  484. {
  485. m_uUsedMaps += 1;
  486. CXTPSyntaxEditLexAutomatWordsMap* pMap = m_pFreeMaps;
  487. m_pFreeMaps = m_pFreeMaps->pNextFreeObj;
  488. pMap->pNextFreeObj = NULL;
  489. pMap->InitMap(uHashTableSize);
  490. return pMap;
  491. }
  492. int nObjCount = 1024/sizeof(CXTPSyntaxEditLexAutomatWordsMap);
  493. m_pFreeMaps = new CXTPSyntaxEditLexAutomatWordsMap[nObjCount];
  494. if (!m_pFreeMaps)
  495. {
  496. return NULL;
  497. }
  498. m_allocatedMaps.AddTail(m_pFreeMaps);
  499. m_uAllocatedMaps += nObjCount;
  500. for (int i = 1; i < nObjCount; i++)
  501. {
  502. m_pFreeMaps[i-1].pNextFreeObj = &m_pFreeMaps[i];
  503. }
  504. return NewMap(uHashTableSize);
  505. }
  506. LA_CHAR_NODE* CXTPSyntaxEditLexAutomatMemMan::NewNode()
  507. {
  508. if (m_pFreeNodes)
  509. {
  510. m_uUsedNodes += 1;
  511. LA_CHAR_NODE* pObj = m_pFreeNodes;
  512. m_pFreeNodes = m_pFreeNodes->pNextNode;
  513. pObj->pNextNode = NULL;
  514. return pObj;
  515. }
  516. int nObjCount = 1024/sizeof(LA_CHAR_NODE);
  517. m_pFreeNodes = new LA_CHAR_NODE[nObjCount];
  518. if (!m_pFreeNodes)
  519. {
  520. return NULL;
  521. }
  522. m_allocatedNodes.AddTail(m_pFreeNodes);
  523. m_uAllocatedNodes += nObjCount;
  524. for (int i = 1; i < nObjCount; i++)
  525. {
  526. m_pFreeNodes[i-1].pNextNode = &m_pFreeNodes[i];
  527. }
  528. return NewNode();
  529. }
  530. PLA_CHAR_NODE* CXTPSyntaxEditLexAutomatMemMan::NewHashTable(UINT uSize)
  531. {
  532. ASSERT(uSize >= 1);
  533. if (m_pFreeTables)
  534. {
  535. // try find object with the same size
  536. LA_HASH_TABLE** ppHTabPrev = &m_pFreeTables;
  537. LA_HASH_TABLE* pHTab = m_pFreeTables;
  538. while (pHTab)
  539. {
  540. if (pHTab->uSize == uSize)
  541. {
  542. *ppHTabPrev = pHTab->pNextFreeObj;
  543. pHTab->pNextFreeObj = NULL;
  544. m_uUsedTables += 1;
  545. m_uUsedTablesBytes += uSize * sizeof(PLA_CHAR_NODE) + LA_HASH_TABLE::GetHeaderSizeB();
  546. return pHTab->GetData();
  547. }
  548. ppHTabPrev = &(pHTab->pNextFreeObj);
  549. ASSERT(pHTab != pHTab->pNextFreeObj);
  550. pHTab = pHTab->pNextFreeObj;
  551. }
  552. // try find bigger object and cut it
  553. ppHTabPrev = &m_pFreeTables;
  554. pHTab = m_pFreeTables;
  555. UINT uHeaderSize = LA_HASH_TABLE::GetHeaderSize();
  556. while (pHTab)
  557. {
  558. if (pHTab->uSize >= uSize)
  559. {
  560. if (pHTab->uSize - uSize > uHeaderSize)
  561. {
  562. LA_HASH_TABLE* pHTabNext = (LA_HASH_TABLE*) (pHTab->GetData()+ uSize);
  563. pHTabNext->uSize = pHTab->uSize - uSize - uHeaderSize;
  564. pHTab->uSize = uSize;
  565. ASSERT(pHTabNext->uSize > 0);
  566. ASSERT(pHTab != pHTab->pNextFreeObj);
  567. pHTabNext->pNextFreeObj = pHTab->pNextFreeObj;
  568. *ppHTabPrev = pHTabNext;
  569. pHTab->pNextFreeObj = NULL;
  570. m_uAllocatedTables += 1;
  571. }
  572. else
  573. {
  574. ASSERT(pHTab != pHTab->pNextFreeObj);
  575. *ppHTabPrev = pHTab->pNextFreeObj;
  576. pHTab->pNextFreeObj = NULL;
  577. }
  578. m_uUsedTables += 1;
  579. m_uUsedTablesBytes += uSize * sizeof(PLA_CHAR_NODE) + LA_HASH_TABLE::GetHeaderSizeB();
  580. return pHTab->GetData();
  581. }
  582. ppHTabPrev = &pHTab->pNextFreeObj;
  583. ASSERT(pHTab != pHTab->pNextFreeObj);
  584. pHTab = pHTab->pNextFreeObj;
  585. }
  586. }
  587. //=== Allocate new block ===
  588. UINT uDataSize = 1024 * uSize;
  589. LA_HASH_TABLE*  pNewTable = (LA_HASH_TABLE*) new PLA_CHAR_NODE[uDataSize];
  590. if (!pNewTable)
  591. {
  592. return NULL;
  593. }
  594. memset(pNewTable, 0, uDataSize * sizeof(PLA_CHAR_NODE));
  595. pNewTable->uSize = uDataSize - LA_HASH_TABLE::GetHeaderSize();
  596. pNewTable->pNextFreeObj = m_pFreeTables;
  597. m_pFreeTables = pNewTable;
  598. ASSERT(m_pFreeTables != m_pFreeTables->pNextFreeObj);
  599. m_allocatedTables.AddTail((PLA_CHAR_NODE*)pNewTable);
  600. m_uAllocatedTables += 1;
  601. m_uAllocatedTablesBytes += uDataSize * sizeof(PLA_CHAR_NODE);
  602. return NewHashTable(uSize);
  603. }
  604. void CXTPSyntaxEditLexAutomatMemMan::FreeObject(CXTPSyntaxEditLexAutomatWordsMap* pObj)
  605. {
  606. pObj->Clear();
  607. pObj->pNextFreeObj = m_pFreeMaps;
  608. m_pFreeMaps = pObj;
  609. m_uUsedMaps --;
  610. }
  611. void CXTPSyntaxEditLexAutomatMemMan::FreeObject(LA_CHAR_NODE* pObj)
  612. {
  613. pObj->Clear();
  614. pObj->pNextNode = m_pFreeNodes;
  615. m_pFreeNodes = pObj;
  616. m_uUsedNodes--;
  617. }
  618. void CXTPSyntaxEditLexAutomatMemMan::FreeObject(PLA_CHAR_NODE* pObj)
  619. {
  620. LA_HASH_TABLE* pHTab = LA_HASH_TABLE::GetHeader(pObj);
  621. pHTab->Clear();
  622. pHTab->pNextFreeObj = m_pFreeTables;
  623. ASSERT(pHTab != pHTab->pNextFreeObj);
  624. m_pFreeTables = pHTab;
  625. m_uUsedTables--;
  626. m_uUsedTablesBytes -= pHTab->uSize * sizeof(PLA_CHAR_NODE) + LA_HASH_TABLE::GetHeaderSizeB();
  627. }
  628. #ifdef _DEBUG
  629. void CXTPSyntaxEditLexAutomatMemMan::Dump(CDumpContext& dc) const
  630. {
  631. UNREFERENCED_PARAMETER(dc);
  632. #ifdef TRACE_MEMORY_LEX_AUTOMAT_MEM_MAN
  633. UINT uAllocatedTotal = (m_uAllocatedMaps*sizeof(CXTPSyntaxEditLexAutomatWordsMap) +
  634. m_uAllocatedNodes*sizeof(LA_CHAR_NODE) +
  635. m_uAllocatedTablesBytes) / 1024;
  636. UINT uUsedTotal = (m_uUsedMaps*sizeof(CXTPSyntaxEditLexAutomatWordsMap) +
  637. m_uUsedNodes*sizeof(LA_CHAR_NODE) +
  638. m_uUsedTablesBytes) / 1024;
  639. dc  << _T("*** Lex-Automat Mem Man ***   n ")
  640. << _T("n")
  641. << _T("AllocatedMaps=") << (int)m_uAllocatedMaps << _T(" (") << (int)(m_uAllocatedMaps * sizeof(CXTPSyntaxEditLexAutomatWordsMap) / 1024) << _T(" KB)  n")
  642. << _T("UsedMaps=") << (int)m_uUsedMaps << _T(" (") << (int)(m_uUsedMaps * sizeof(CXTPSyntaxEditLexAutomatWordsMap) / 1024) << _T(" KB) n")
  643. << _T("n")
  644. << _T("AllocatedNodes=") << (int)m_uAllocatedNodes << _T(" (") << (int)(m_uAllocatedNodes*sizeof(LA_CHAR_NODE) / 1024) << _T(" KB) n")
  645. << _T(" UsedNodes=") << (int)m_uUsedNodes << _T(" (") << (int)(m_uUsedNodes*sizeof(LA_CHAR_NODE) / 1024) << _T(" KB) n")
  646. << _T("n")
  647. << _T("AllocatedTables=") << (int)m_uAllocatedTables << _T(" (") << (int)(m_uAllocatedTablesBytes / 1024) << _T(" KB) n")
  648. << _T("UsedTables=") << (int)m_uUsedTables << _T(" (") << (int)(m_uUsedTablesBytes / 1024) << _T(" KB) n")
  649. << _T("n ")
  650. << _T("= AllocatedTotal= ") << (int)uAllocatedTotal << _T(" KB, UsedTotal= ") << (int)uUsedTotal << _T(" KB, [Free= ") << ((int)uAllocatedTotal - (int)uUsedTotal) << _T(" KB] nn ");
  651. #endif
  652. }
  653. #endif
  654. ////////////////////////////////////////////////////////////////////////////
  655. //class CXTPSyntaxEditLexAutomatWordsMap : public CCmdTarget
  656. CXTPSyntaxEditLexAutomatWordsMap::CXTPSyntaxEditLexAutomatWordsMap(UINT uHashTableSize)
  657. {
  658. m_pHashTable = NULL;
  659. ASSERT(uHashTableSize >= 1);
  660. m_uHashTableSize = max(1, uHashTableSize);
  661. pNextFreeObj = NULL;
  662. }
  663. CXTPSyntaxEditLexAutomatWordsMap::~CXTPSyntaxEditLexAutomatWordsMap()
  664. {
  665. //RemoveAll();
  666. }
  667. void CXTPSyntaxEditLexAutomatWordsMap::InitMap(UINT uHashTableSize)
  668. {
  669. if (m_pHashTable)
  670. {
  671. XTPGetLexAutomatMemMan()->FreeObject(m_pHashTable);
  672. m_pHashTable = NULL;
  673. }
  674. ASSERT(uHashTableSize >= 1);
  675. m_uHashTableSize = uHashTableSize;
  676. }
  677. UINT CXTPSyntaxEditLexAutomatWordsMap::GetHashTableSize()
  678. {
  679. return m_uHashTableSize;
  680. }
  681. void CXTPSyntaxEditLexAutomatWordsMap::OnFinalRelease()
  682. {
  683. RemoveAll() ;
  684. XTPGetLexAutomatMemMan()->FreeObject(this);
  685. }
  686. void CXTPSyntaxEditLexAutomatWordsMap::RemoveAll()
  687. {
  688. if (m_pHashTable)
  689. {
  690. for (UINT i = 0; i < m_uHashTableSize; i++)
  691. {
  692. LA_CHAR_NODE* pNode = m_pHashTable[i];
  693. while (pNode)
  694. {
  695. LA_CHAR_NODE* pNode2 = pNode;
  696. pNode = pNode->pNextNode;
  697. XTPGetLexAutomatMemMan()->FreeObject(pNode2);
  698. }
  699. }
  700. XTPGetLexAutomatMemMan()->FreeObject(m_pHashTable);
  701. m_pHashTable = NULL;
  702. }
  703. }
  704. UINT CXTPSyntaxEditLexAutomatWordsMap::PrimeAdjustU_50(UINT uNumber)
  705. {
  706. ASSERT(uNumber <= 50);
  707. static UINT s_arPrimes_50[] = {1, 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53};
  708. static CUIntArray s_arMap_50;
  709. if (s_arMap_50.GetSize() == 0)
  710. {
  711. int nPrimeIdx = 0;
  712. for (UINT i = 0; i < 50; i++)
  713. {
  714. if (i > s_arPrimes_50[nPrimeIdx] && nPrimeIdx < _countof(s_arPrimes_50))
  715. {
  716. nPrimeIdx++;
  717. ASSERT(i <= s_arPrimes_50[nPrimeIdx]);
  718. }
  719. s_arMap_50.SetAtGrow(i, s_arPrimes_50[nPrimeIdx]);
  720. }
  721. }
  722. if (uNumber < 50)
  723. {
  724. UINT uPrameNum = s_arMap_50[uNumber];
  725. return uPrameNum;
  726. }
  727. return uNumber;
  728. }
  729. UINT CXTPSyntaxEditLexAutomatWordsMap::DivideHTSize(UINT uHashTableSize, UINT uMin)
  730. {
  731. UINT uDiv = 2;
  732. if (uHashTableSize <= 10)
  733. {
  734. uDiv = 2;
  735. }
  736. else if (uHashTableSize <= 20)
  737. {
  738. uDiv = 3;
  739. }
  740. else
  741. {
  742. uDiv = 4;
  743. }
  744. UINT uNewSize = max(uHashTableSize/uDiv, uMin);
  745. uNewSize = PrimeAdjustU_50(uNewSize);
  746. return uNewSize;
  747. }
  748. WORD CXTPSyntaxEditLexAutomatWordsMap::_GetChar(LPCTSTR pcszStr, int& rnCharLen) const
  749. {
  750. WORD wChar = 0;
  751. LPCTSTR p2 = _tcsinc(pcszStr);
  752. rnCharLen = int(p2 - pcszStr);
  753. if (rnCharLen == 1)
  754. {
  755. wChar = *((BYTE*)pcszStr);
  756. }
  757. else if (rnCharLen == 2)
  758. {
  759. wChar = *((WORD*)pcszStr);
  760. }
  761. else
  762. {
  763. ASSERT(FALSE);
  764. rnCharLen = 0;
  765. }
  766. return wChar;
  767. }
  768. WORD CXTPSyntaxEditLexAutomatWordsMap::_ChangeCase(WORD wChar) const
  769. {
  770. WORD dwChar0[2] = {wChar, 0 };
  771. if (_istlower(wChar))
  772. {
  773. STRUPR_S((LPTSTR)&dwChar0, 2);
  774. }
  775. else if (_istupper(wChar))
  776. {
  777. TCSLWR_S((LPTSTR)&dwChar0, 2);
  778. }
  779. return dwChar0[0];
  780. }
  781. WORD CXTPSyntaxEditLexAutomatWordsMap::_MakeLower(WORD wChar) const
  782. {
  783. if (_istupper(wChar))
  784. {
  785. WORD dwChar0[2] = {wChar, 0 };
  786. TCSLWR_S((LPTSTR)&dwChar0, 2);
  787. return dwChar0[0];
  788. }
  789. return wChar;
  790. }
  791. const LA_CHAR_NODE* CXTPSyntaxEditLexAutomatWordsMap::Lookup(WORD wChar) const
  792. {
  793. if (m_pHashTable)
  794. {
  795. UINT uIndex = wChar % m_uHashTableSize;
  796. LA_CHAR_NODE* pNode = m_pHashTable[uIndex];
  797. while (pNode)
  798. {
  799. if (pNode->wChar == wChar)
  800. {
  801. return pNode;
  802. }
  803. pNode = pNode->pNextNode;
  804. }
  805. }
  806. return NULL;
  807. }
  808. const LA_CHAR_NODE* CXTPSyntaxEditLexAutomatWordsMap::SetAt(const LA_CHAR_NODE& newNode)
  809. {
  810. if (!m_pHashTable)
  811. {
  812. ASSERT(m_uHashTableSize >= 1);
  813. m_pHashTable = XTPGetLexAutomatMemMan()->NewHashTable(m_uHashTableSize);
  814. if (!m_pHashTable)
  815. {
  816. return NULL;
  817. }
  818. }
  819. LA_CHAR_NODE* pNode2 = (LA_CHAR_NODE*)Lookup(newNode.wChar);
  820. if (!pNode2)
  821. {
  822. UINT uIndex = newNode.wChar % m_uHashTableSize;
  823. LA_CHAR_NODE* pNode0 = m_pHashTable[uIndex];
  824. pNode2 = XTPGetLexAutomatMemMan()->NewNode();
  825. *pNode2 = newNode;
  826. pNode2->pNextNode = pNode0;
  827. m_pHashTable[uIndex] = pNode2;
  828. }
  829. else
  830. {
  831. ASSERT(pNode2->wChar == newNode.wChar);
  832. *pNode2 = newNode;
  833. }
  834. return pNode2;
  835. }
  836. void CXTPSyntaxEditLexAutomatWordsMap::AddWord(CString strWord, UINT uHashTableSize )
  837. {
  838. int nCharLen = 0;
  839. WORD wChar1 = _GetChar(strWord, nCharLen);
  840. DELETE_S(strWord, 0, nCharLen);
  841. BOOL bWordEnded = strWord.GetLength() <= 0;
  842. LA_CHAR_NODE* pWordData = (LA_CHAR_NODE*)Lookup(wChar1);
  843. if (!pWordData)
  844. {
  845. LA_CHAR_NODE wordData2;
  846. wordData2.wChar = wChar1;
  847. pWordData = (LA_CHAR_NODE*)SetAt(wordData2);
  848. if (!pWordData)
  849. {
  850. return;
  851. }
  852. }
  853. if (!bWordEnded && !pWordData->pNextMap)
  854. {
  855. pWordData->pNextMap = XTPGetLexAutomatMemMan()->NewMap(uHashTableSize); //new CXTPSyntaxEditLexAutomatWordsMap;
  856. if (!pWordData->pNextMap)
  857. {
  858. return;
  859. }
  860. }
  861. if (bWordEnded)
  862. {
  863. pWordData->wFlags |= LA_CHAR_NODE::nfSubWordEnd;
  864. }
  865. else
  866. {
  867. pWordData->pNextMap->AddWord(strWord, DivideHTSize(uHashTableSize, 1));
  868. }
  869. }
  870. BOOL CXTPSyntaxEditLexAutomatWordsMap::_FindWord(LPCTSTR pcszBuffer, CString& rstrWord, int nBufSize,
  871. WORD wEndFlags, BOOL bConvertToLowerCase,
  872. BOOL bTryToChangeCaseDyn, BOOL bChangeCase) const
  873. {
  874. ASSERT((bConvertToLowerCase && bTryToChangeCaseDyn) == FALSE);
  875. int nCharLen = 0;
  876. WORD wChar1 = _GetChar(pcszBuffer, nCharLen);
  877. if (bConvertToLowerCase)
  878. {
  879. wChar1 = _MakeLower(wChar1);
  880. }
  881. else if (bChangeCase)
  882. {
  883. wChar1 = _ChangeCase(wChar1);
  884. if (wChar1 == 0)
  885. {
  886. return FALSE;
  887. }
  888. }
  889. LA_CHAR_NODE* pWordData = (LA_CHAR_NODE*)Lookup(wChar1);
  890. if (!pWordData)
  891. {
  892. return FALSE;
  893. }
  894. DWORD dwChar2 = wChar1;
  895. rstrWord += (LPCTSTR)&dwChar2;
  896. if (!pWordData->pNextMap || (pWordData->wFlags & wEndFlags) )
  897. {
  898. return TRUE;
  899. }
  900. if (nBufSize < nCharLen)
  901. {
  902. return FALSE;
  903. }
  904. pcszBuffer += nCharLen;
  905. nBufSize -= nCharLen;
  906. BOOL bRes = pWordData->pNextMap->_FindWord(pcszBuffer, rstrWord, nBufSize,
  907. wEndFlags, bConvertToLowerCase, bTryToChangeCaseDyn, FALSE);
  908. if (!bRes && bTryToChangeCaseDyn)
  909. {
  910. bRes = pWordData->pNextMap->_FindWord(pcszBuffer, rstrWord, nBufSize,
  911. wEndFlags, bConvertToLowerCase, bTryToChangeCaseDyn, TRUE);
  912. }
  913. if (!bRes && (pWordData->wFlags & LA_CHAR_NODE::nfSubWordEnd) )
  914. {
  915. return TRUE;
  916. }
  917. return bRes;
  918. }
  919. BOOL CXTPSyntaxEditLexAutomatWordsMap::FindWord(BOOL bMinWord, LPCTSTR pcszBuffer, CString& rstrWord, int nBufSize,
  920.  BOOL bConvertToLowerCase, BOOL bIgnoreCaseDyn) const
  921. {
  922. BOOL bRes = _FindWord(pcszBuffer, rstrWord, nBufSize,
  923. (WORD)(bMinWord ? LA_CHAR_NODE::nfSubWordEnd : 0),
  924. bConvertToLowerCase, bIgnoreCaseDyn, FALSE);
  925. if (!bRes && bIgnoreCaseDyn)
  926. {
  927. bRes = _FindWord(pcszBuffer, rstrWord, nBufSize,
  928. (WORD)(bMinWord ? LA_CHAR_NODE::nfSubWordEnd : 0),
  929. bConvertToLowerCase, bIgnoreCaseDyn, TRUE);
  930. }
  931. return bRes;
  932. }
  933. ////////////////////////////////////////////////////////////////////////////
  934. CXTPSyntaxEditLexTagsAutomat::CXTPSyntaxEditLexTagsAutomat()
  935. {
  936. }
  937. CXTPSyntaxEditLexTagsAutomat::~CXTPSyntaxEditLexTagsAutomat()
  938. {
  939. }
  940. void CXTPSyntaxEditLexTagsAutomat::CopyFrom(const CXTPSyntaxEditLexTagsAutomat& rSrc)
  941. {
  942. m_ptrWordsMap = rSrc.m_ptrWordsMap;
  943. m_ptrWordsMap_not = rSrc.m_ptrWordsMap_not;
  944. }
  945. void CXTPSyntaxEditLexTagsAutomat::RemoveAll()
  946. {
  947. m_ptrWordsMap = NULL;
  948. m_ptrWordsMap_not = NULL;
  949. }
  950. UINT CXTPSyntaxEditLexTagsAutomat::_CalcHashTableSize(int nCount)
  951. {
  952. if (!nCount)
  953. {
  954. return 1;
  955. }
  956. UINT uHashTableSize = 29;
  957. if (nCount <= 10)
  958. {         uHashTableSize = 3;
  959. } else if (nCount <= 30) {  uHashTableSize = 7;
  960. } else if (nCount <= 60) {  uHashTableSize = 11;
  961. } else if (nCount <= 100) { uHashTableSize = 17;
  962. } else if (nCount <= 200) { uHashTableSize = 23; }
  963. return uHashTableSize;
  964. }
  965. void CXTPSyntaxEditLexTagsAutomat::_AddWords(CXTPSyntaxEditLexAutomatWordsMapPtr& rPtrMap, CStringArray& arTags,
  966.   BOOL bConvertToLowerCase)
  967. {
  968. int nCount = (int)arTags.GetSize();
  969. if (!nCount)
  970. {
  971. return;
  972. }
  973. if (!rPtrMap)
  974. {
  975. UINT uHashTableSize0 = _CalcHashTableSize(nCount);
  976. rPtrMap = XTPGetLexAutomatMemMan()->NewMap(uHashTableSize0);
  977. if (!rPtrMap)
  978. {
  979. return;
  980. }
  981. }
  982. UINT uHashTableSize = rPtrMap->GetHashTableSize();
  983. for (int i = 0; i < nCount; i++)
  984. {
  985. CString strTag = arTags[i];
  986. if (bConvertToLowerCase)
  987. {
  988. strTag.MakeLower();
  989. }
  990. rPtrMap->AddWord(strTag, CXTPSyntaxEditLexAutomatWordsMap::DivideHTSize(uHashTableSize, 3));
  991. }
  992. }
  993. void CXTPSyntaxEditLexTagsAutomat::AddTagsList(CXTPSyntaxEditLexVariantPtrArray* pArTags, BOOL bConvertToLowerCase)
  994. {
  995. if (!pArTags)
  996. {
  997. ASSERT(FALSE);
  998. return;
  999. }
  1000. CStringArray arTags, arTags_not;
  1001. int nCount = (int)pArTags->GetSize();
  1002. for (int i = 0; i < nCount; i++)
  1003. {
  1004. CXTPSyntaxEditLexVariant* pLV = pArTags->GetAt(i, FALSE);
  1005. if (!pLV)
  1006. {
  1007. ASSERT(FALSE);
  1008. continue;
  1009. }
  1010. ASSERT(pLV->m_nObjType == xtpEditLVT_valStr || pLV->m_nObjType == xtpEditLVT_valVar);
  1011. if (pLV->m_nObjType == xtpEditLVT_valStr)
  1012. {
  1013. arTags.Append(pLV->m_arStrVals);
  1014. }
  1015. else if (pLV->m_nObjType == xtpEditLVT_valVar)
  1016. {
  1017. CStringArray arVarData;
  1018. pLV->m_Variable.GetVariableData(pLV->m_Variable.m_nVarID, arVarData);
  1019. if (pLV->m_Variable.m_nVarFlags & CXTPSyntaxEditLexVariable::xtpEditVarfNot)
  1020. {
  1021. arTags_not.Append(arVarData);
  1022. }
  1023. else
  1024. {
  1025. arTags.Append(arVarData);
  1026. }
  1027. }
  1028. }
  1029. _AddWords(m_ptrWordsMap, arTags, bConvertToLowerCase);
  1030. _AddWords(m_ptrWordsMap_not, arTags_not, bConvertToLowerCase);
  1031. }
  1032. BOOL CXTPSyntaxEditLexTagsAutomat::_FindWord(BOOL bMinWord, LPCTSTR pcszBuffer, CString& rstrWord, int nBufSize,
  1033.  BOOL bConvertToLowerCase, BOOL bIgnoreCaseDyn)
  1034. {
  1035. rstrWord.Empty();
  1036. if (m_ptrWordsMap)
  1037. {
  1038. if (m_ptrWordsMap->FindWord(bMinWord, pcszBuffer, rstrWord, nBufSize, bConvertToLowerCase, bIgnoreCaseDyn))
  1039. {
  1040. return TRUE;
  1041. }
  1042. }
  1043. if (m_ptrWordsMap_not)
  1044. {
  1045. //if (!m_ptrWordsMap->FindWord(bMinWord, pcszBuffer, rstrWord, nBufSize, bConvertToLowerCase, bIgnoreCaseDyn))
  1046. if (!m_ptrWordsMap_not->FindWord(bMinWord, pcszBuffer, rstrWord, nBufSize, bConvertToLowerCase, bIgnoreCaseDyn))
  1047. {
  1048. DWORD dwChar2 = 0;
  1049. TCSNCCPY_S((LPTSTR)&dwChar2, 2, pcszBuffer, 1);
  1050. rstrWord += (LPCTSTR)&dwChar2;
  1051. return TRUE;
  1052. }
  1053. }
  1054. return FALSE;
  1055. }
  1056. BOOL CXTPSyntaxEditLexTagsAutomat::FindMinWord(LPCTSTR pcszBuffer, CString& rstrWord, int nBufSize,
  1057.  BOOL bConvertToLowerCase, BOOL bIgnoreCaseDyn)
  1058. {
  1059. return _FindWord(TRUE, pcszBuffer, rstrWord, nBufSize, bConvertToLowerCase, bIgnoreCaseDyn);
  1060. }
  1061. BOOL CXTPSyntaxEditLexTagsAutomat::FindMaxWord(LPCTSTR pcszBuffer, CString& rstrWord, int nBufSize,
  1062.  BOOL bConvertToLowerCase, BOOL bIgnoreCaseDyn)
  1063. {
  1064. return _FindWord(FALSE, pcszBuffer, rstrWord, nBufSize, bConvertToLowerCase, bIgnoreCaseDyn);
  1065. }
  1066. BOOL CXTPSyntaxEditLexTagsAutomat::IsEmpty()
  1067. {
  1068. return m_ptrWordsMap == NULL && m_ptrWordsMap_not == NULL;
  1069. }
  1070. ////////////////////////////////////////////////////////////////////////////
  1071. CMapStringToPtr CXTPSyntaxEditLexVariable::s_mapVar2ID;
  1072. BOOL CXTPSyntaxEditLexVariable::s_bVarMapInitialized = FALSE;
  1073. //////////////////////////////////////////////////////
  1074. class CXTPSyntaxEditLexVariable_initializer : public CXTPSyntaxEditLexVariable
  1075. {
  1076. public:
  1077. CXTPSyntaxEditLexVariable_initializer() {
  1078. InitStandartVarsIfNeed();
  1079. };
  1080. } s_LVarIniter;
  1081. //////////////////////////////////////////////////////
  1082. void CXTPSyntaxEditLexVariable::InitStandartVarsIfNeed()
  1083. {
  1084. if (s_bVarMapInitialized)
  1085. {
  1086. return;
  1087. }
  1088. s_bVarMapInitialized = TRUE;
  1089. s_mapVar2ID[_T("@alpha")]   = (void*)xtpEditVarID_alpha;
  1090. s_mapVar2ID[_T("@digit")]   = (void*)xtpEditVarID_digit;
  1091. s_mapVar2ID[_T("@hexdigit")] = (void*)xtpEditVarID_HexDigit;
  1092. s_mapVar2ID[_T("@specs")]   = (void*)xtpEditVarID_specs;
  1093. s_mapVar2ID[_T("@eol")]     = (void*)xtpEditVarID_EOL;
  1094. }
  1095. CXTPSyntaxEditLexVariable::CXTPSyntaxEditLexVariable()
  1096. {
  1097. m_nVarFlags = 0;
  1098. m_nVarID = 0;
  1099. }
  1100. CXTPSyntaxEditLexVariable::~CXTPSyntaxEditLexVariable()
  1101. {
  1102. }
  1103. const CXTPSyntaxEditLexVariable& CXTPSyntaxEditLexVariable::operator=(const CXTPSyntaxEditLexVariable& rSrc)
  1104. {
  1105. m_strVar = rSrc.m_strVar;
  1106. m_nVarFlags = rSrc.m_nVarFlags;
  1107. m_nVarID = rSrc.m_nVarID;
  1108. return *this;
  1109. }
  1110. BOOL CXTPSyntaxEditLexVariable::SetVariable(LPCTSTR pcszVarName)
  1111. {
  1112. m_nVarFlags = 0;
  1113. m_nVarID = xtpEditVarID_Unknown;
  1114. m_strVar = pcszVarName;
  1115. //==================================
  1116. CStringArray arVar;
  1117. if (!SplitStr(pcszVarName, _T(':'), arVar) || arVar.GetSize() < 1)
  1118. {
  1119. //TRACE
  1120. ASSERT(FALSE);
  1121. return FALSE;
  1122. }
  1123. //----------------------------------
  1124. CString strVar = arVar[0];
  1125. //----------------------------------
  1126. int nVarSize = (int)arVar.GetSize();
  1127. if (nVarSize > 1)
  1128. {
  1129. CString strOp = arVar[1];
  1130. if (strOp.CompareNoCase(_T("not")) == 0)
  1131. {
  1132. m_nVarFlags |= xtpEditVarfNot;
  1133. }
  1134. }
  1135. //==================================
  1136. m_nVarID = GetVarID(strVar);
  1137. ASSERT(m_nVarID != xtpEditVarID_Unknown);
  1138. return m_nVarID != xtpEditVarID_Unknown;
  1139. }
  1140. int CXTPSyntaxEditLexVariable::GetVarID(LPCTSTR pcszVarName)
  1141. {
  1142. void* pVarID = 0;
  1143. CString strVar = pcszVarName;
  1144. strVar.MakeLower();
  1145. if (s_mapVar2ID.Lookup(strVar, pVarID))
  1146. {
  1147. return (int)(INT_PTR)pVarID;
  1148. }
  1149. return xtpEditVarID_Unknown;
  1150. }
  1151. BOOL CXTPSyntaxEditLexVariable::operator == (const CXTPSyntaxEditLexVariable& rSrc) const
  1152. {
  1153. return m_nVarID == rSrc.m_nVarID && m_nVarFlags == rSrc.m_nVarFlags;
  1154. }
  1155. BOOL CXTPSyntaxEditLexVariable::GetVariableData(int nVarID, CStringArray& rarVarData)
  1156. {
  1157. CUIntArray arFrom, arTo;
  1158. int i;
  1159. if (nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_alpha)
  1160. {
  1161. arFrom.Add(_T('a'));    arTo.Add(_T('z'));
  1162. arFrom.Add(_T('A'));    arTo.Add(_T('Z'));
  1163. }
  1164. else if (nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_digit)
  1165. {
  1166. arFrom.Add(_T('0'));    arTo.Add(_T('9'));
  1167. }
  1168. else if (nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_HexDigit)
  1169. {
  1170. arFrom.Add(_T('0'));    arTo.Add(_T('9'));
  1171. arFrom.Add(_T('a'));    arTo.Add(_T('f'));
  1172. arFrom.Add(_T('A'));    arTo.Add(_T('F'));
  1173. }
  1174. for (i = 0; i < arFrom.GetSize(); i++)
  1175. {
  1176. for (UINT c = arFrom[i]; c <= arTo[i]; c++)
  1177. {
  1178. CString strChar((TCHAR)c);
  1179. rarVarData.Add(strChar);
  1180. }
  1181. }
  1182. if (arFrom.GetSize())
  1183. {
  1184. return TRUE;
  1185. }
  1186. //------------------------------------------------------------------------
  1187. if (nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_specs)
  1188. {
  1189. LPCTSTR pChar = cszSpecs;
  1190. int nCountC = (int)_tcsclen(cszSpecs);
  1191. for (i = 0; i < nCountC; i++)
  1192. {
  1193. CString strChar((TCHAR)(*pChar));
  1194. rarVarData.Add(strChar);
  1195. pChar = _tcsinc(pChar);
  1196. }
  1197. }
  1198. else if (nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_EOL)
  1199. {
  1200. rarVarData.Add(_T("r"));
  1201. rarVarData.Add(_T("n"));
  1202. }
  1203. else
  1204. {
  1205. ASSERT(FALSE);
  1206. return FALSE;
  1207. }
  1208. return TRUE;
  1209. }
  1210. //===========================================================================
  1211. CXTPSyntaxEditLexVariant::~CXTPSyntaxEditLexVariant()
  1212. {
  1213. }
  1214. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant()
  1215. {
  1216. m_nObjType = xtpEditLVT_Unknown;
  1217. m_nValue = 0;
  1218. m_ptrLVArrayPtr = NULL;
  1219. }
  1220. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(const CXTPSyntaxEditLexVariant& rSrc)
  1221. {
  1222. *this = rSrc;
  1223. }
  1224. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(CXTPSyntaxEditLexClass* pClass):
  1225. m_ptrClass(pClass, TRUE)
  1226. {
  1227. m_nObjType = xtpEditLVT_classPtr;
  1228. m_nValue = 0;
  1229. m_ptrLVArrayPtr = NULL;
  1230. }
  1231. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(CXTPSyntaxEditLexVariantPtrArray* pLVArray)
  1232. {
  1233. m_nObjType = xtpEditLVT_LVArrayPtr;
  1234. m_nValue = 0;
  1235. m_ptrLVArrayPtr = pLVArray;
  1236. }
  1237. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(const CXTPSyntaxEditLexVariable& rSrcVar)
  1238. {
  1239. m_nObjType = xtpEditLVT_valVar;
  1240. m_Variable = rSrcVar;
  1241. m_nValue = 0;
  1242. m_ptrLVArrayPtr = NULL;
  1243. }
  1244. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(LPCTSTR pcszStr, int eType)
  1245. {
  1246. ASSERT( eType == xtpEditLVT_valStr || eType == xtpEditLVT_className);
  1247. m_nObjType = eType;
  1248. m_nValue = 0;
  1249. m_ptrLVArrayPtr = NULL;
  1250. m_arStrVals.SetAtGrow(0, pcszStr);
  1251. }
  1252. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(const CStringArray* pArStrVals)
  1253. {
  1254. m_nObjType = xtpEditLVT_valStr;
  1255. m_nValue = 0;
  1256. m_ptrLVArrayPtr = NULL;
  1257. if (pArStrVals)
  1258. {
  1259. m_arStrVals.Append(*pArStrVals);
  1260. }
  1261. }
  1262. CXTPSyntaxEditLexVariant::CXTPSyntaxEditLexVariant(int nValue)
  1263. {
  1264. m_nObjType = xtpEditLVT_valInt;
  1265. m_nValue = nValue;
  1266. m_ptrLVArrayPtr = NULL;
  1267. }
  1268. BOOL CXTPSyntaxEditLexVariant::IsStrType() const
  1269. {
  1270. if (m_nObjType == xtpEditLVT_valStr || m_nObjType == xtpEditLVT_className)
  1271. {
  1272. return TRUE;
  1273. }
  1274. return FALSE;
  1275. }
  1276. LPCTSTR CXTPSyntaxEditLexVariant::GetStr() const
  1277. {
  1278. if (IsStrType())
  1279. {
  1280. if (m_arStrVals.GetSize() > 0)
  1281. {
  1282. return m_arStrVals[0];
  1283. }
  1284. return _T("");
  1285. }
  1286. ASSERT(FALSE);
  1287. return _T("");
  1288. }
  1289. const CXTPSyntaxEditLexVariant& CXTPSyntaxEditLexVariant::operator = (int nVal)
  1290. {
  1291. m_nValue = nVal;
  1292. m_nObjType = xtpEditLVT_valInt;
  1293. return *this;
  1294. }
  1295. const CXTPSyntaxEditLexVariant& CXTPSyntaxEditLexVariant::operator = (const CXTPSyntaxEditLexVariable& rSrcVar)
  1296. {
  1297. m_nValue = 0;
  1298. m_nObjType = xtpEditLVT_valVar;
  1299. m_Variable = rSrcVar;
  1300. return *this;
  1301. }
  1302. const CXTPSyntaxEditLexVariant& CXTPSyntaxEditLexVariant::operator = (const CXTPSyntaxEditLexVariant& rSrc)
  1303. {
  1304. m_nObjType = rSrc.m_nObjType;
  1305. m_ptrClass = rSrc.m_ptrClass;
  1306. m_ptrLVArrayPtr = rSrc.m_ptrLVArrayPtr;
  1307. m_Variable = rSrc.m_Variable;
  1308. m_nValue = rSrc.m_nValue;
  1309. m_arStrVals.RemoveAll();
  1310. m_arStrVals.Append(rSrc.m_arStrVals);
  1311. return *this;
  1312. }
  1313. BOOL CXTPSyntaxEditLexVariant::SetVariable(LPCTSTR pcszVarName)
  1314. {
  1315. m_nValue = 0;
  1316. m_nObjType = xtpEditLVT_valVar;
  1317. BOOL bRes = m_Variable.SetVariable(pcszVarName);
  1318. return bRes;
  1319. }
  1320. CXTPSyntaxEditLexVariant* CXTPSyntaxEditLexVariant::Clone() const
  1321. {
  1322. CXTPSyntaxEditLexVariant* pClone = new CXTPSyntaxEditLexVariant(*this);
  1323. return pClone;
  1324. }
  1325. BOOL CXTPSyntaxEditLexVariant::operator == (const CXTPSyntaxEditLexVariant& rSrc) const
  1326. {
  1327. if (m_nObjType != rSrc.m_nObjType)
  1328. {
  1329. return FALSE;
  1330. }
  1331. switch(m_nObjType)
  1332. {
  1333. case xtpEditLVT_Unknown:
  1334. return TRUE;
  1335. case xtpEditLVT_className:
  1336. case xtpEditLVT_valStr:
  1337. if (m_arStrVals.GetSize() == rSrc.m_arStrVals.GetSize())
  1338. {
  1339. for (int i = 0; i < m_arStrVals.GetSize(); i++)
  1340. {
  1341. if (m_arStrVals[i] != rSrc.m_arStrVals[i])
  1342. {
  1343. return FALSE;
  1344. }
  1345. }
  1346. return TRUE;
  1347. }
  1348. return FALSE;
  1349. case xtpEditLVT_valInt:
  1350. return m_nValue == rSrc.m_nValue;
  1351. case xtpEditLVT_valVar:
  1352. return m_Variable == rSrc.m_Variable;
  1353. case xtpEditLVT_classPtr:
  1354. return m_ptrClass && rSrc.m_ptrClass &&
  1355. m_ptrClass->GetClassName() == rSrc.m_ptrClass->GetClassName();
  1356. case xtpEditLVT_LVArrayPtr:
  1357. if (m_ptrLVArrayPtr && rSrc.m_ptrLVArrayPtr &&
  1358. m_ptrLVArrayPtr->GetSize() == rSrc.m_ptrLVArrayPtr->GetSize())
  1359. {
  1360. for (int i = 0; i < m_ptrLVArrayPtr->GetSize(); i++)
  1361. {
  1362. if (!(*m_ptrLVArrayPtr->GetAt(i, FALSE) == *rSrc.m_ptrLVArrayPtr->GetAt(i, FALSE)) )
  1363. {
  1364. return FALSE;
  1365. }
  1366. }
  1367. return TRUE;
  1368. }
  1369. return FALSE;
  1370. default:
  1371. ASSERT(FALSE);
  1372. }
  1373. return FALSE;
  1374. }
  1375. #ifdef _DEBUG
  1376. void CXTPSyntaxEditLexVariant::Dump(CDumpContext& dc) const
  1377. {
  1378. if (IsStrType())
  1379. {
  1380. int nC = (int)m_arStrVals.GetSize();
  1381. for (int k = 0; k < nC; k++)
  1382. {
  1383. CString strTmp = m_arStrVals[k];
  1384. if (k)
  1385. {
  1386. dc << _T(", ");
  1387. }
  1388. if (m_nObjType == xtpEditLVT_valStr)
  1389. {
  1390. strTmp = XTPSyntaxEditLexConfig()->ESToStr(strTmp, FALSE);
  1391. dc << strTmp;
  1392. }
  1393. else
  1394. {
  1395. dc << strTmp;
  1396. }
  1397. }
  1398. }
  1399. else if (m_nObjType == xtpEditLVT_valInt)
  1400. {
  1401. dc << m_nValue;
  1402. }
  1403. else if (m_nObjType == xtpEditLVT_valVar)
  1404. {
  1405. dc << m_Variable.m_strVar;
  1406. }
  1407. else
  1408. {
  1409. dc << _T(" ?<LV type=") << m_nObjType;
  1410. ASSERT(FALSE);
  1411. }
  1412. }
  1413. #endif
  1414. ////////////////////////////////////////////////////////////////////////////
  1415. CXTPSyntaxEditLexOnScreenParseCnt::CXTPSyntaxEditLexOnScreenParseCnt()
  1416. {
  1417. m_nRowStart = m_nRowEnd = 0;
  1418. }
  1419. CXTPSyntaxEditLexOnScreenParseCnt::~CXTPSyntaxEditLexOnScreenParseCnt()
  1420. {
  1421. }
  1422. ////////////////////////////////////////////////////////////////////////////
  1423. CXTPSyntaxEditLexClass_file::CXTPSyntaxEditLexClass_file()
  1424. {
  1425. m_bExtInitialized = FALSE;
  1426. }
  1427. CXTPSyntaxEditLexClass_file::~CXTPSyntaxEditLexClass_file()
  1428. {
  1429. }
  1430. CXTPSyntaxEditLexClass* CXTPSyntaxEditLexClass_file::Clone(CXTPSyntaxEditLexClassSchema* pOwnerSch)
  1431. {
  1432. CXTPSyntaxEditLexClass* pNewClass = NULL;
  1433. if (pOwnerSch)
  1434. {
  1435. pNewClass = pOwnerSch->GetNewClass(TRUE);
  1436. }
  1437. else
  1438. {
  1439. pNewClass = new CXTPSyntaxEditLexClass_file();
  1440. }
  1441. if (pNewClass)
  1442. {
  1443. pNewClass->CopyFrom(this);
  1444. }
  1445. return pNewClass;
  1446. }
  1447. BOOL CXTPSyntaxEditLexClass_file::InternalInitExts(BOOL bReInit)
  1448. {
  1449. if (m_bExtInitialized && !bReInit)
  1450. {
  1451. return TRUE;
  1452. }
  1453. m_bExtInitialized = FALSE;
  1454. m_arExt.RemoveAll();
  1455. if (!m_Parent.arClassNames.GetSize())
  1456. {
  1457. TRACE(_T("ERROR! No File extentions string. n"));
  1458. return FALSE;
  1459. }
  1460. ASSERT(m_Parent.arClassNames.GetSize() == 1);
  1461. CString strExtsSet = m_Parent.arClassNames[0];
  1462. strExtsSet.TrimLeft();
  1463. strExtsSet.TrimRight();
  1464. int nESLen = strExtsSet.GetLength();
  1465. if (nESLen < 2 || strExtsSet[0] != _T('<') ||
  1466. strExtsSet[nESLen-1] != _T('>'))
  1467. {
  1468. TRACE(_T("ERROR! File extentions bad format: '%s'. Right format: <*.ex1|*.ext2|...> n"), (LPCTSTR)strExtsSet);
  1469. return FALSE;
  1470. }
  1471. DELETE_S(strExtsSet, nESLen-1);
  1472. DELETE_S(strExtsSet, 0);
  1473. SplitStr(strExtsSet, _T('|'), m_arExt);
  1474. int nCount = (int)m_arExt.GetSize();
  1475. for (int i = 0; i < nCount; i++)
  1476. {
  1477. CString strExt = m_arExt[i];
  1478. REPLACE_S(strExt, _T("*"), _T(""));
  1479. strExt.TrimLeft();
  1480. strExt.TrimRight();
  1481. m_arExt[i] = strExt;
  1482. }
  1483. //-----------------------------------------------------------------------
  1484. m_bExtInitialized = TRUE;
  1485. return TRUE;
  1486. }
  1487. BOOL CXTPSyntaxEditLexClass_file::TestExt(LPCTSTR pcszExt) const
  1488. {
  1489. ASSERT(m_bExtInitialized);
  1490. int nCount = (int)m_arExt.GetSize();
  1491. for (int i = 0; i < nCount; i++)
  1492. {
  1493. CString strExt = m_arExt[i];
  1494. if (_tcsicoll(strExt, pcszExt) == 0)
  1495. {
  1496. return TRUE;
  1497. }
  1498. }
  1499. return FALSE;
  1500. }
  1501. CXTPSyntaxEditLexVariantPtr CXTPSyntaxEditLexClass_file::PropV(LPCTSTR pcszPropName)
  1502. {
  1503. CXTPSyntaxEditLexVariantPtr ptrRes = CXTPSyntaxEditLexClass::PropV(pcszPropName);
  1504. if (ptrRes)
  1505. {
  1506. return ptrRes;
  1507. }
  1508. static LPCTSTR pcszIsExtPref = _T("IsExt=");
  1509. static int nIsExtPrefLen = (int)_tcsclen(pcszIsExtPref);
  1510. if (_tcsnicmp(pcszPropName, pcszIsExtPref, nIsExtPrefLen) == 0)
  1511. {
  1512. CString strExt = pcszPropName;
  1513. ASSERT(strExt.GetLength() >= nIsExtPrefLen);
  1514. DELETE_S(strExt, 0, nIsExtPrefLen);
  1515. InternalInitExts(TRUE);
  1516. BOOL bRes = TestExt(strExt);
  1517. CXTPSyntaxEditLexVariant* pV = new CXTPSyntaxEditLexVariant((int)bRes);
  1518. return pV;
  1519. }
  1520. return NULL;
  1521. }
  1522. int CXTPSyntaxEditLexClass_file::RunParse(CTextIter* pTxtIter,
  1523. CXTPSyntaxEditLexTextSchema* pTxtSch,
  1524. CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock,
  1525. CXTPSyntaxEditLexOnScreenParseCnt* pOnScreenRunCnt
  1526. )
  1527. {
  1528. if (!pTxtIter || !pTxtSch)
  1529. {
  1530. ASSERT(FALSE);
  1531. //TRACE
  1532. return xtpEditLPR_Error;
  1533. }
  1534. int nParseRes = 0;
  1535. InternalInitExts();
  1536. //===========================================================================
  1537. BOOL bStarted = (rPtrTxtBlock != NULL);
  1538. if (!bStarted )
  1539. {
  1540. CString strFileExt = pTxtIter->GetFileExt();
  1541. bStarted = TestExt(strFileExt);
  1542. if (!bStarted )
  1543. {
  1544. return 0;
  1545. }
  1546. rPtrTxtBlock = pTxtSch->GetNewBlock();
  1547. if (rPtrTxtBlock)
  1548. {
  1549. rPtrTxtBlock->m_ptrLexClass.SetPtr(this, TRUE);
  1550. rPtrTxtBlock->m_PosStartLC = pTxtIter->GetPosLC();
  1551. rPtrTxtBlock->m_nStartTagLen = 0;
  1552. }
  1553. else
  1554. {
  1555. return xtpEditLPR_StartFound | xtpEditLPR_Error;
  1556. }
  1557. nParseRes |= xtpEditLPR_StartFound | xtpEditLPR_Iterated;
  1558. }
  1559. //===========================================================================
  1560. // Run End
  1561. if (pTxtIter->IsEOF() && rPtrTxtBlock)
  1562. {
  1563. CSingleLock singleLock(pTxtSch->GetDataLoker(), TRUE);
  1564. rPtrTxtBlock->m_PosEndLC = pTxtIter->GetPosLC();
  1565. rPtrTxtBlock->m_nEndTagXLCLen = 0;
  1566. nParseRes |= xtpEditLPR_EndFound | xtpEditLPR_Iterated;
  1567. return nParseRes;
  1568. }
  1569. if (nParseRes)
  1570. {
  1571. return nParseRes;
  1572. }
  1573. //===========================================================================
  1574. // *** run childs ***
  1575. int nChildsCount = (int)m_arChildrenClasses.GetSize() + (int)m_arDynChildrenClasses.GetSize();
  1576. if (nChildsCount)
  1577. {
  1578. int nCHres = pTxtSch->RunChildren(pTxtIter, rPtrTxtBlock, this,
  1579. pOnScreenRunCnt);
  1580. nParseRes |= ~(xtpEditLPR_StartFound|xtpEditLPR_EndFound) & nCHres;
  1581. if (nParseRes & (xtpEditLPR_Error|xtpEditLPR_RunBreaked|xtpEditLPR_RunFinished))
  1582. {
  1583. return nParseRes;
  1584. }
  1585. //---------------------------------------------------------------------------
  1586. // Run End
  1587. if (pTxtIter->IsEOF() && rPtrTxtBlock)
  1588. {
  1589. CSingleLock singleLock(pTxtSch->GetDataLoker(), TRUE);
  1590. rPtrTxtBlock->m_PosEndLC = pTxtIter->GetPosLC();
  1591. rPtrTxtBlock->m_nEndTagXLCLen = 0;
  1592. nParseRes |= xtpEditLPR_EndFound;
  1593. }
  1594. }
  1595. return nParseRes;
  1596. }
  1597. ////////////////////////////////////////////////////////////////////////////
  1598. CXTPSyntaxEditLexClass::CXTPSyntaxEditLexClass()
  1599. {
  1600. SetSubMembers();
  1601. ClearAttributesCache();
  1602. m_Parent.Clear();
  1603. m_Children.Clear();
  1604. m_nActiv_EndTags_Offset = 0;
  1605. }
  1606. CXTPSyntaxEditLexClass::~CXTPSyntaxEditLexClass()
  1607. {
  1608. }
  1609. void CXTPSyntaxEditLexClass::ClearAttributesCache()
  1610. {
  1611. m_bCaseSensitive_Cached = -1; // ask
  1612. m_nCollapsable_Cached = -1; // ask
  1613. m_bRestartRunLoop_Cached = -1; // ask
  1614. m_bEndClassParent_this_Cached = -1; // ask
  1615. m_bTxtAttr_cached = FALSE; // ask
  1616. }
  1617. CXTPSyntaxEditLexVariantPtr CXTPSyntaxEditLexClass::PropV(LPCTSTR pcszPropName)
  1618. {
  1619. if (_tcsicmp(pcszPropName, _T("name")) == 0)
  1620. {
  1621. return new CXTPSyntaxEditLexVariant(m_strClassName, xtpEditLVT_className);
  1622. }
  1623. CXTPSyntaxEditLexVariantPtrArray* ptrData = GetIfMy(pcszPropName);
  1624. if (ptrData && ptrData->GetSize())
  1625. {
  1626. return new CXTPSyntaxEditLexVariant(ptrData);
  1627. }
  1628. return NULL;
  1629. }
  1630. void CXTPSyntaxEditLexClass::CloseClasses(CXTPSyntaxEditLexClassPtrArray* pArClasses)
  1631. {
  1632. if (!pArClasses)
  1633. {
  1634. ASSERT(FALSE);
  1635. return;
  1636. }
  1637. // 1. ***
  1638. int nCount = (int)pArClasses->GetSize();
  1639. for (int i = 0; i < nCount; i++)
  1640. {
  1641. CXTPSyntaxEditLexClassPtr ptrC = pArClasses->GetAt(i);
  1642. ASSERT(ptrC);
  1643. if (ptrC)
  1644. {
  1645. ptrC->Close();
  1646. }
  1647. }
  1648. pArClasses->RemoveAll();
  1649. }
  1650. void CXTPSyntaxEditLexClass::Close()
  1651. {
  1652. // 1. ***
  1653. CXTPSyntaxEditLexClass::CloseClasses(&m_arChildrenClasses);
  1654. CXTPSyntaxEditLexClass::CloseClasses(&m_arDynChildrenClasses);
  1655. // 2. ***
  1656. m_arChildrenSelfRefClasses.RemoveAll();
  1657. // 3. ***
  1658. TBase::RemoveAll();
  1659. m_mapAttributes.RemoveAll();
  1660. // 4. ***
  1661. m_Parent.ptrDirect = NULL;
  1662. }
  1663. BOOL CXTPSyntaxEditLexClass::SetProp(const XTP_EDIT_LEXPROPINFO* pPropDesc)
  1664. {
  1665. if (!pPropDesc || pPropDesc->arPropName.GetSize() < 1)
  1666. {
  1667. ASSERT(FALSE);
  1668. return FALSE;
  1669. }
  1670. BOOL bProcessed = FALSE;
  1671. BOOL bOK = SetProp_ProcessSpecials(pPropDesc, bProcessed);
  1672. if (!bOK || bProcessed)
  1673. {
  1674. return bOK;
  1675. }
  1676. //-----------------------------------------------------------------------
  1677. bProcessed = FALSE;
  1678. bOK = SetProp_ProcessSpecObjects(pPropDesc, bProcessed);
  1679. if (!bOK || bProcessed)
  1680. {
  1681. return bOK;
  1682. }
  1683. //-----------------------------------------------------------------------
  1684. bProcessed = FALSE;
  1685. bOK = SetProp_ProcessAttributes(pPropDesc, bProcessed);
  1686. if (!bOK || bProcessed)
  1687. {
  1688. return bOK;
  1689. }
  1690. return FALSE;
  1691. }
  1692. BOOL CXTPSyntaxEditLexClass::ParseValues(const XTP_EDIT_LEXPROPINFO* pPropDesc,
  1693. CXTPSyntaxEditLexVariantPtrArray* pLVArray)
  1694. {
  1695. if (!pPropDesc || pPropDesc->arPropName.GetSize() < 1 || !pLVArray)
  1696. {
  1697. ASSERT(FALSE);
  1698. return FALSE;
  1699. }
  1700. pLVArray->RemoveAll();
  1701. int nNCount = (int)pPropDesc->arPropName.GetSize();
  1702. CString strLastName = pPropDesc->arPropName[nNCount-1];
  1703. strLastName.MakeLower();
  1704. CString strFullName = MakeStr(pPropDesc->arPropName, _T(":"));
  1705. strFullName.MakeLower();
  1706. //ref, class, tag, separators
  1707. CXTPSyntaxEditLexVariantPtr ptrLexVar;
  1708. int nVCount = (int)pPropDesc->arPropValue.GetSize();
  1709. for (int i = 0; i < nVCount; i++)
  1710. {
  1711. CString strVal = pPropDesc->arPropValue[i];
  1712. CString strVal2;
  1713. int nVType = xtpEditLVT_Unknown;
  1714. if (IsQuoted(strVal, &strVal2))
  1715. {
  1716. if (strLastName == _T("tag") || strLastName == _T("separators"))
  1717. {
  1718. nVType = xtpEditLVT_valStr;
  1719. }
  1720. else
  1721. {
  1722. TRACE_ASSERT(FALSE);
  1723. //TRACE
  1724. TRACE(_T("ERROR! Quoted values ('%s') are not allowed for <:%s>'. (only for <:tag> and <:separators>) '%s'  n"),
  1725. (LPCTSTR)strVal, (LPCTSTR)strLastName, (LPCTSTR)strFullName);
  1726. }
  1727. }
  1728. else if (IsVar(strVal, &strVal2))
  1729. {
  1730. if (strLastName == _T("tag") || strLastName == _T("separators"))
  1731. {
  1732. nVType = xtpEditLVT_valVar;
  1733. }
  1734. else
  1735. {
  1736. TRACE_ASSERT(FALSE);
  1737. //TRACE
  1738. TRACE(_T("ERROR! Variable values ('%s') are not allowed for <:%s>'. (only for <:tag> and <:separators>) '%s'  n"),
  1739. (LPCTSTR)strVal, (LPCTSTR)strLastName, (LPCTSTR)strFullName);
  1740. }
  1741. }
  1742. else
  1743. {
  1744. //class
  1745. if (strLastName == _T("class"))
  1746. {
  1747. nVType = xtpEditLVT_className;
  1748. strVal2 = strVal;
  1749. strVal2.TrimLeft();
  1750. strVal2.TrimRight();
  1751. }
  1752. else
  1753. {
  1754. TRACE_ASSERT(FALSE);
  1755. TRACE(_T("ERROR! Unknown ref-expression '%s' n"), (LPCTSTR)strVal);
  1756. }
  1757. }
  1758. //----------------------------------
  1759. if (ptrLexVar &&
  1760. (ptrLexVar->m_nObjType != nVType || !ptrLexVar->IsStrType()) )
  1761. {
  1762. ASSERT(ptrLexVar->m_nObjType != xtpEditLVT_Unknown);
  1763. pLVArray->Add(ptrLexVar);
  1764. ptrLexVar = NULL;
  1765. }
  1766. if (nVType != xtpEditLVT_Unknown)
  1767. {
  1768. if (!ptrLexVar)
  1769. {
  1770. ptrLexVar = new CXTPSyntaxEditLexVariant();
  1771. }
  1772. if (!ptrLexVar)
  1773. {
  1774. return FALSE;
  1775. }
  1776. if (nVType == xtpEditLVT_valVar)
  1777. {
  1778. if (!ptrLexVar->SetVariable(strVal2))
  1779. {
  1780. TRACE(_T("ERROR! Unknown Variable '%s' n"), (LPCTSTR)strVal2);
  1781. }
  1782. }
  1783. else
  1784. {
  1785. ptrLexVar->m_nObjType = nVType;
  1786. ptrLexVar->m_arStrVals.Add(strVal2);
  1787. ASSERT(ptrLexVar->IsStrType());
  1788. }
  1789. }
  1790. }
  1791. //-----------------------------------------
  1792. if (ptrLexVar)
  1793. {
  1794. ASSERT(ptrLexVar->m_nObjType != xtpEditLVT_Unknown);
  1795. pLVArray->Add(ptrLexVar);
  1796. ptrLexVar = NULL;
  1797. }
  1798. return TRUE;
  1799. }
  1800. BOOL CXTPSyntaxEditLexClass::SetProp_ProcessSpecObjects(const XTP_EDIT_LEXPROPINFO* pPropDesc,
  1801. BOOL& rbProcessed)
  1802. {
  1803. rbProcessed = FALSE;
  1804. if (!pPropDesc || pPropDesc->arPropName.GetSize() < 1)
  1805. {
  1806. ASSERT(FALSE);
  1807. return FALSE;
  1808. }
  1809. CString strFullName = MakeStr(pPropDesc->arPropName, _T(":"));
  1810. strFullName.MakeLower();
  1811. if (IfMy(strFullName))
  1812. {
  1813. CXTPSyntaxEditLexVariantPtrArray arPtrLVar;
  1814. if (!ParseValues(pPropDesc, &arPtrLVar))
  1815. {
  1816. return FALSE;
  1817. }
  1818. if (!AppendIfMy(strFullName, arPtrLVar))
  1819. {
  1820. ASSERT(FALSE);
  1821. return FALSE;
  1822. }
  1823. rbProcessed = TRUE;
  1824. return TRUE;
  1825. }
  1826. return TRUE;
  1827. }
  1828. BOOL CXTPSyntaxEditLexClass::IsQuoted(CString strValue, CString* pstrUnQuotedVal)
  1829. {
  1830. CString strTmp = strValue;
  1831. strTmp.TrimLeft();
  1832. strTmp.TrimRight();
  1833. int nLen = strTmp.GetLength();
  1834. if (nLen >= 2)
  1835. {
  1836. if (strTmp[0] == _T(''') && strTmp[nLen-1] == _T(''') )
  1837. {
  1838. if (pstrUnQuotedVal)
  1839. {
  1840. DELETE_S(strTmp, nLen-1);
  1841. DELETE_S(strTmp, 0);
  1842. *pstrUnQuotedVal = strTmp;
  1843. }
  1844. return TRUE;
  1845. }
  1846. }
  1847. if (pstrUnQuotedVal)
  1848. {
  1849. *pstrUnQuotedVal = _T("");
  1850. }
  1851. return FALSE;
  1852. }
  1853. BOOL CXTPSyntaxEditLexClass::IsVar(CString strValue, CString* pstrVarVal)
  1854. {
  1855. CString strTmp = strValue;
  1856. strTmp.TrimLeft();
  1857. strTmp.TrimRight();
  1858. int nLen = strTmp.GetLength();
  1859. if (nLen >= 2)
  1860. {
  1861. if (strTmp[0] == _T('@'))
  1862. {
  1863. if (pstrVarVal)
  1864. {
  1865. *pstrVarVal = strTmp;
  1866. }
  1867. return TRUE;
  1868. }
  1869. }
  1870. if (pstrVarVal)
  1871. {
  1872. *pstrVarVal = _T("");
  1873. }
  1874. return FALSE;
  1875. }
  1876. BOOL CXTPSyntaxEditLexClass::SetProp_ProcessSpecials(const XTP_EDIT_LEXPROPINFO* pPropDesc,
  1877.   BOOL& rbProcessed)
  1878. {
  1879. rbProcessed = FALSE;
  1880. if (!pPropDesc || pPropDesc->arPropName.GetSize() < 1)
  1881. {
  1882. ASSERT(FALSE);
  1883. return FALSE;
  1884. }
  1885. int nNCount = (int)pPropDesc->arPropName.GetSize();
  1886. CString strMainName = pPropDesc->arPropName[0];
  1887. if (strMainName.CompareNoCase(_T("parent")) == 0)
  1888. {
  1889. if (nNCount == 1)
  1890. {
  1891. m_Parent.eOpt = xtpEditOptParent_direct;
  1892. }
  1893. else
  1894. {
  1895. ASSERT(nNCount == 2);
  1896. CString strName2 = pPropDesc->arPropName[1];
  1897. if (strName2.CompareNoCase(_T("file")) == 0)
  1898. {
  1899. m_Parent.eOpt = xtpEditOptParent_file;
  1900. }
  1901. else if (strName2.CompareNoCase(_T("dyn")) == 0)
  1902. {
  1903. m_Parent.eOpt = xtpEditOptParent_dyn;
  1904. }
  1905. else //if (strName2.CompareNoCase(_T("Override")) == 0)
  1906. {
  1907. ASSERT(FALSE);
  1908. return FALSE;
  1909. }
  1910. }
  1911. m_Parent.arClassNames.Append(pPropDesc->arPropValue);
  1912. rbProcessed = TRUE;
  1913. }
  1914. else if (strMainName.CompareNoCase(_T("children")) == 0)
  1915. {
  1916. int nValCount = (int)pPropDesc->arPropValue.GetSize();
  1917. if (nValCount == 0)
  1918. {
  1919. m_Children.eOpt = xtpEditOptChildren_No;
  1920. TRACE_ASSERT(m_Children.arClassNames.GetSize() == 0);
  1921. //TRACE(_T(""));
  1922. }
  1923. else
  1924. {
  1925. CString strVal0 = pPropDesc->arPropValue[0];
  1926. strVal0.TrimLeft();
  1927. strVal0.TrimRight();
  1928. if (strVal0 == _T("0"))
  1929. {
  1930. m_Children.eOpt = xtpEditOptChildren_No;
  1931. TRACE_ASSERT(m_Children.arClassNames.GetSize() == 0);
  1932. }
  1933. else
  1934. {
  1935. TRACE_ASSERT(m_Children.arClassNames.GetSize() == 0 &&
  1936. m_Children.eOpt == xtpEditOptChildren_Unknown ||
  1937. m_Children.eOpt == xtpEditOptChildren_List);
  1938. m_Children.eOpt = xtpEditOptChildren_List;
  1939. m_Children.arClassNames.Append(pPropDesc->arPropValue);
  1940. }
  1941. }
  1942. rbProcessed = TRUE;
  1943. }
  1944. return TRUE;
  1945. }
  1946. BOOL CXTPSyntaxEditLexClass::SetProp_ProcessAttributes(const XTP_EDIT_LEXPROPINFO* pPropDesc,
  1947. BOOL& rbProcessed)
  1948. {
  1949. rbProcessed = FALSE;
  1950. if (!pPropDesc || pPropDesc->arPropName.GetSize() < 1)
  1951. {
  1952. ASSERT(FALSE);
  1953. return FALSE;
  1954. }
  1955. //-----------------------------------------------------------------------
  1956. CString strFullName = MakeStr(pPropDesc->arPropName, _T(":"));
  1957. strFullName.MakeLower();
  1958. BOOL bKnown = FALSE;
  1959. for (int i = 0; i < _countof(g_arKnownLexClassAttribs); i++)
  1960. {
  1961. if (strFullName.CompareNoCase(g_arKnownLexClassAttribs[i]) == 0)
  1962. {
  1963. bKnown = TRUE;
  1964. break;
  1965. }
  1966. }
  1967. if (!bKnown)
  1968. {
  1969. TRACE(_T("WARNING! Unknown attribute '%s'. n"), (LPCTSTR)strFullName);
  1970. //return TRUE;
  1971. }
  1972. //===========================================================================
  1973. CXTPSyntaxEditLexVariantPtr ptrLvData = new CXTPSyntaxEditLexVariant();
  1974. if (!ptrLvData)
  1975. {
  1976. return FALSE;
  1977. }
  1978. //---------------------------------------------------------------------------
  1979. int nPCount = (int)pPropDesc->arPropValue.GetSize();
  1980. if (nPCount == 1)
  1981. {
  1982. CString strVal = pPropDesc->arPropValue[0];
  1983. CString strVal2;
  1984. if (IsQuoted(strVal, &strVal2))
  1985. {
  1986. *ptrLvData = CXTPSyntaxEditLexVariant(strVal2);
  1987. }
  1988. else if (strFullName == _T("end:class:parent"))
  1989. {
  1990. *ptrLvData = CXTPSyntaxEditLexVariant(&pPropDesc->arPropValue);
  1991. }
  1992. else
  1993. {
  1994. static const int c_nClrPrefLen = (int)_tcsclen(XTPLEX_ATTR_COLORPREFIX);
  1995. TCHAR* pCh = NULL;
  1996. int nValue = _tcstol(strVal, &pCh, 0);
  1997. if (_tcsnicmp(strFullName, XTPLEX_ATTR_COLORPREFIX, c_nClrPrefLen) == 0)
  1998. {
  1999. nValue = XTP_EDIT_RGB_INT2CLR(nValue);
  2000. }
  2001. *ptrLvData = nValue;
  2002. }
  2003. m_mapAttributes[strFullName] = ptrLvData;
  2004. }
  2005. else if (nPCount > 1)
  2006. {
  2007. *ptrLvData = CXTPSyntaxEditLexVariant(&pPropDesc->arPropValue);
  2008. m_mapAttributes[strFullName] = ptrLvData;
  2009. }
  2010. else
  2011. {
  2012. //TRACE
  2013. TRACE(_T("ERROR! There is not values present for attribute '%s'  n"), (LPCTSTR)strFullName);
  2014. }
  2015. rbProcessed = TRUE;
  2016. //-----------------------------------------------------------------------
  2017. return TRUE;
  2018. }
  2019. void CXTPSyntaxEditLexClass::SortTags()
  2020. {
  2021. BOOL bAsc = FALSE;
  2022. BOOL bNoCase = !IsCaseSensitive();
  2023. SortTagsInLexVarArray(m_previous.m_tag, bAsc, bNoCase);
  2024. SortTagsInLexVarArray(m_previous.m_tag_separators, bAsc, bNoCase);
  2025. SortTagsInLexVarArray(m_start.m_tag, bAsc, bNoCase);
  2026. SortTagsInLexVarArray(m_end.m_tag, bAsc, bNoCase);
  2027. SortTagsInLexVarArray(m_end.m_separators, bAsc, bNoCase);
  2028. SortTagsInLexVarArray(m_token.m_tag, bAsc, bNoCase);
  2029. SortTagsInLexVarArray(m_token.m_start_separators, bAsc, bNoCase);
  2030. SortTagsInLexVarArray(m_token.m_end_separators, bAsc, bNoCase);
  2031. SortTagsInLexVarArray(m_skip.m_tag, bAsc, bNoCase);
  2032. bAsc = TRUE;
  2033. SortTagsInLexVarArray(m_ActiveTags, bAsc, bNoCase);
  2034. //m_ActiveTags.BuildAutomat(TRUE);
  2035. }
  2036. BOOL CXTPSyntaxEditLexClass::IsCaseSensitive()
  2037. {
  2038. if (m_bCaseSensitive_Cached < 0)
  2039. {
  2040. m_bCaseSensitive_Cached = FALSE;
  2041. CXTPSyntaxEditLexVariantPtr ptrCase = GetAttribute(XTPLEX_ATTR_CASESENSITIVE, TRUE);
  2042. if (ptrCase && ptrCase->m_nObjType == xtpEditLVT_valInt)
  2043. {
  2044. m_bCaseSensitive_Cached = ptrCase->m_nValue > 0;
  2045. }
  2046. }
  2047. return m_bCaseSensitive_Cached;
  2048. }
  2049. int CXTPSyntaxEditLexClass::IsCollapsable()
  2050. {
  2051. if (m_nCollapsable_Cached < 0)
  2052. {
  2053. m_nCollapsable_Cached = FALSE;
  2054. CXTPSyntaxEditLexVariantPtr ptrLV = GetAttribute(XTPLEX_ATTR_COLLAPSABLE, FALSE);
  2055. if (ptrLV && ptrLV->m_nObjType == xtpEditLVT_valInt)
  2056. {
  2057. m_nCollapsable_Cached = ptrLV->m_nValue;// > 0;
  2058. }
  2059. }
  2060. return m_nCollapsable_Cached;
  2061. }
  2062. BOOL CXTPSyntaxEditLexClass::IsEndClassParent_this()
  2063. {
  2064. if (m_bEndClassParent_this_Cached < 0)
  2065. {
  2066. m_bEndClassParent_this_Cached = FALSE;
  2067. CXTPSyntaxEditLexVariantPtr ptrAttrVal = GetAttribute(XTPLEX_ATTR_ENDCLASSPARENT, FALSE);
  2068. ASSERT(!ptrAttrVal || ptrAttrVal && ptrAttrVal->m_nObjType == xtpEditLVT_valStr);
  2069. if (ptrAttrVal && ptrAttrVal->m_nObjType == xtpEditLVT_valStr)
  2070. {
  2071. m_bEndClassParent_this_Cached = Find_noCase(ptrAttrVal->m_arStrVals, _T("this")) >= 0;
  2072. }
  2073. }
  2074. return m_bEndClassParent_this_Cached;
  2075. }
  2076. BOOL CXTPSyntaxEditLexClass::StrCmpEQ(LPCTSTR pcszStr1, LPCTSTR pcszStr2, int nLen,
  2077. BOOL bCaseSensitive,
  2078. BOOL bParseDirection_Back)
  2079. {
  2080. int nRes = 0;
  2081. if (bParseDirection_Back)
  2082. {
  2083. for (int i = 0; i < nLen; i++)
  2084. {
  2085. nRes = StrCmp(pcszStr1, pcszStr2, 1, bCaseSensitive);
  2086. if (nRes)
  2087. {
  2088. break;
  2089. }
  2090. if (*pcszStr1 == 0 || *pcszStr2 == 0)
  2091. {
  2092. break;
  2093. }
  2094. if (i+1 < nLen)
  2095. {
  2096. pcszStr1 = _tcsdec(pcszStr1-2, pcszStr1);
  2097. pcszStr2 = _tcsdec(pcszStr2-2, pcszStr2);
  2098. }
  2099. }
  2100. }
  2101. else
  2102. {
  2103. nRes = StrCmp(pcszStr1, pcszStr2, nLen, bCaseSensitive);
  2104. }
  2105. return nRes == 0;
  2106. }
  2107. BOOL CXTPSyntaxEditLexClass::StrVarCmpEQ(LPCTSTR pcszStr,
  2108.    const CXTPSyntaxEditLexVariable& lexVar,
  2109.    CString& rstrValue, BOOL bParseDirection_Back)
  2110. {
  2111. UNREFERENCED_PARAMETER(bParseDirection_Back);
  2112. BOOL bRes = FALSE;
  2113. TCHAR chChar = *pcszStr;
  2114. if (lexVar.m_nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_alpha)  //a-z, A-Z
  2115. {
  2116. bRes = chChar >= _T('a') && chChar <= _T('z') ||
  2117. chChar >= _T('A') && chChar <= _T('Z');
  2118. }
  2119. else if (lexVar.m_nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_digit) // 0-9
  2120. {
  2121. bRes = chChar >= _T('0') && chChar <= _T('9');
  2122. }
  2123. else if (lexVar.m_nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_HexDigit) // 0-9, a-f, A-F
  2124. {
  2125. bRes = chChar >= _T('0') && chChar <= _T('9') ||
  2126. chChar >= _T('a') && chChar <= _T('f') ||
  2127. chChar >= _T('A') && chChar <= _T('F');
  2128. }
  2129. else if (lexVar.m_nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_specs)
  2130. {
  2131. TCHAR* pF = _tcschr((TCHAR*)cszSpecs, chChar);
  2132. bRes = (pF != NULL);
  2133. }
  2134. // @EOL
  2135. else if (lexVar.m_nVarID == CXTPSyntaxEditLexVariable::xtpEditVarID_EOL)
  2136. {
  2137. bRes = chChar == _T('r') || chChar == _T('n');
  2138. }
  2139. else
  2140. {
  2141. ASSERT(FALSE);
  2142. TRACE(_T("ERROR! Unknown lexVariable '%s' n"), (LPCTSTR)lexVar.m_strVar);
  2143. return FALSE;
  2144. }
  2145. if (lexVar.m_nVarFlags & CXTPSyntaxEditLexVariable::xtpEditVarfNot)
  2146. {
  2147. bRes = !bRes;
  2148. }
  2149. if (bRes)
  2150. {
  2151. rstrValue = chChar;
  2152. }
  2153. return bRes;
  2154. }
  2155. CXTPSyntaxEditLexClassPtrArray* CXTPSyntaxEditLexClass::GetChildren()
  2156. {
  2157. return &m_arChildrenClasses;
  2158. }
  2159. CXTPSyntaxEditLexClassPtrArray* CXTPSyntaxEditLexClass::GetChildrenDyn()
  2160. {
  2161. return &m_arDynChildrenClasses;
  2162. }
  2163. CXTPSyntaxEditLexClassPtrArray* CXTPSyntaxEditLexClass::GetChildrenSelfRef()
  2164. {
  2165. return &m_arChildrenSelfRefClasses;
  2166. }
  2167. BOOL CXTPSyntaxEditLexClass::AddChild(CXTPSyntaxEditLexClass* pChild, BOOL bDyn)
  2168. {
  2169. if (!pChild)
  2170. {
  2171. ASSERT(FALSE);
  2172. return FALSE;
  2173. }
  2174. CXTPSyntaxEditLexClassPtr ptrC(pChild, TRUE);
  2175. if (pChild == this)
  2176. {
  2177. int nCount = (int)m_arChildrenSelfRefClasses.GetSize();
  2178. for (int i = 0; i < nCount; i++)
  2179. {
  2180. CXTPSyntaxEditLexClassPtr ptrCSelf = m_arChildrenSelfRefClasses[i];
  2181. if (ptrC == ptrCSelf )
  2182. {
  2183. return FALSE;
  2184. }
  2185. }
  2186. m_arChildrenSelfRefClasses.Add(ptrC);
  2187. return TRUE;
  2188. }
  2189. pChild->m_Parent.ptrDirect.SetPtr(this, TRUE);
  2190. if (bDyn)
  2191. {
  2192. m_arDynChildrenClasses.Add(ptrC);
  2193. }
  2194. else
  2195. {
  2196. m_arChildrenClasses.Add(ptrC);
  2197. }
  2198. return TRUE;
  2199. }
  2200. void CXTPSyntaxEditLexClass::GetParentOpt(int& rnOpt, CStringArray& rArData) const
  2201. {
  2202. rnOpt = m_Parent.eOpt;
  2203. rArData.RemoveAll();
  2204. rArData.Append(m_Parent.arClassNames);
  2205. }
  2206. void CXTPSyntaxEditLexClass::GetChildrenOpt(int& rnOpt, CStringArray& rArData) const
  2207. {
  2208. rnOpt = m_Children.eOpt;
  2209. rArData.RemoveAll();
  2210. rArData.Append(m_Children.arClassNames);
  2211. }
  2212. CXTPSyntaxEditLexClass* CXTPSyntaxEditLexClass::FindParent(LPCTSTR pcszClassName)
  2213. {
  2214. if (!m_Parent.ptrDirect)
  2215. {
  2216. return NULL;
  2217. }
  2218. CString strParent = m_Parent.ptrDirect->GetClassName();
  2219. if (strParent.CompareNoCase(pcszClassName) == 0)
  2220. {
  2221. return m_Parent.ptrDirect;
  2222. }
  2223. return m_Parent.ptrDirect->FindParent(pcszClassName);
  2224. }
  2225. int CXTPSyntaxEditLexClass::RunParse(CTextIter* pTxtIter,
  2226. CXTPSyntaxEditLexTextSchema* pTxtSch,
  2227. CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock,
  2228. CXTPSyntaxEditLexOnScreenParseCnt* pOnScreenRunCnt
  2229. )
  2230. {
  2231. if (!pTxtIter || !pTxtSch)
  2232. {
  2233. ASSERT(FALSE);
  2234. //TRACE
  2235. return xtpEditLPR_Error | xtpEditLPR_Iterated;
  2236. }
  2237. if (!m_token.IsEmpty() && (!m_start.IsEmpty() || !m_end.IsEmpty()) )
  2238. {
  2239. TRACE(_T("WARNING: Start/End and Token options cannot be used together! '%s' n"), (LPCTSTR)m_strClassName);
  2240. }
  2241. int nParseRes = 0;
  2242. BOOL bStarted = (rPtrTxtBlock != NULL);
  2243. BOOL bPrevCondition = TRUE;
  2244. //===========================================================================
  2245. if (!bStarted)
  2246. {
  2247. if (!m_previous.IsEmpty())
  2248. {
  2249. bPrevCondition = Run_Previous(pTxtIter, pTxtSch, rPtrTxtBlock,
  2250. pOnScreenRunCnt);
  2251. }
  2252. //===========================================================================
  2253. if (!m_start.IsEmpty())
  2254. {
  2255. if (bPrevCondition && !bStarted )
  2256. {
  2257. int nResStart = Run_Start(pTxtIter, pTxtSch, rPtrTxtBlock,
  2258. pOnScreenRunCnt);
  2259. bStarted = nResStart & xtpEditLPR_StartFound;
  2260. nParseRes |= nResStart;
  2261. return nParseRes;
  2262. }
  2263. }
  2264. else if (bPrevCondition)
  2265. {
  2266. if (!m_token.IsEmpty())
  2267. {
  2268. int nResToken = Run_Token(pTxtIter, pTxtSch, rPtrTxtBlock);
  2269. BOOL bEnded = nResToken & xtpEditLPR_EndFound;
  2270. nParseRes |= nResToken;
  2271. if (nParseRes & xtpEditLPR_Error)
  2272. {
  2273. return nParseRes;
  2274. }
  2275. //---------------------------------------------------------------------------
  2276. if (bEnded)
  2277. {
  2278. return nParseRes;
  2279. }
  2280. }
  2281. else
  2282. {
  2283. bStarted = TRUE;
  2284. nParseRes |= xtpEditLPR_StartFound|xtpEditLPR_Iterated;
  2285. rPtrTxtBlock = pTxtSch->GetNewBlock();
  2286. if (rPtrTxtBlock)
  2287. {
  2288. rPtrTxtBlock->m_ptrLexClass.SetPtr(this, TRUE);
  2289. rPtrTxtBlock->m_PosStartLC = pTxtIter->GetPosLC();
  2290. rPtrTxtBlock->m_nStartTagLen = 0;
  2291. }
  2292. else
  2293. {
  2294. nParseRes |= xtpEditLPR_Error;
  2295. }
  2296. return nParseRes;
  2297. }
  2298. }
  2299. } // if (!bStarted)
  2300. //---------------------------------------------------------------------------
  2301. if (!bStarted)
  2302. {
  2303. return 0;
  2304. }
  2305. //===========================================================================
  2306. if (!m_skip.IsEmpty())
  2307. {
  2308. int nResSkip = Run_Skip(pTxtIter, pTxtSch, rPtrTxtBlock);
  2309. nParseRes |= nResSkip;
  2310. if (nParseRes & xtpEditLPR_Error)
  2311. {
  2312. return nParseRes;
  2313. }
  2314. }
  2315. //===========================================================================
  2316. if (!m_end.IsEmpty())
  2317. {
  2318. int nResEnd = Run_End(pTxtIter, pTxtSch, rPtrTxtBlock, pOnScreenRunCnt);
  2319. BOOL bEnded = nResEnd & xtpEditLPR_EndFound;
  2320. nParseRes |= nResEnd;
  2321. if (nParseRes & xtpEditLPR_Error)
  2322. {
  2323. return nParseRes;
  2324. }
  2325. //---------------------------------------------------------------------------
  2326. if (bEnded)
  2327. {
  2328. return nParseRes;
  2329. }
  2330. }
  2331. //===========================================================================
  2332. // *** run childs ***
  2333. int nChildsCount = (int)m_arChildrenClasses.GetSize() +
  2334. (int)m_arDynChildrenClasses.GetSize() +
  2335. (int)m_arChildrenSelfRefClasses.GetSize();
  2336. if (nChildsCount)
  2337. {
  2338. int nCHres = pTxtSch->RunChildren(pTxtIter, rPtrTxtBlock, this, pOnScreenRunCnt);
  2339. nParseRes |= ~(xtpEditLPR_StartFound|xtpEditLPR_EndFound) & nCHres;
  2340. if (nParseRes & (xtpEditLPR_Error|xtpEditLPR_RunBreaked|xtpEditLPR_RunFinished))
  2341. {
  2342. return nParseRes;
  2343. }
  2344. //---------------------------------------------------------------------------
  2345. int nResEnd = Run_End(pTxtIter, pTxtSch, rPtrTxtBlock, pOnScreenRunCnt);
  2346. nParseRes |= nResEnd;
  2347. }
  2348. return nParseRes;
  2349. }
  2350. BOOL CXTPSyntaxEditLexClass::Run_Previous(CTextIter* pTxtIter,
  2351.  CXTPSyntaxEditLexTextSchema* pTxtSch,
  2352.  CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock,
  2353.  CXTPSyntaxEditLexOnScreenParseCnt* pOnScreenRunCnt)
  2354. {
  2355. UNREFERENCED_PARAMETER(rPtrTxtBlock);
  2356. BOOL bRes_Class = TRUE, bRes_Tag = TRUE;
  2357. //=======================================================================
  2358. if (!m_previous.m_class.IsEmpty())
  2359. {
  2360. bRes_Class = Run_PrevClass(NULL, pTxtSch, &m_previous.m_class,
  2361. c_nPrevClassDepth_default, NULL,
  2362.  NULL, pOnScreenRunCnt);
  2363. if (!bRes_Class)
  2364. {
  2365. return FALSE;
  2366. }
  2367. }
  2368. //=======================================================================
  2369. if (!m_previous.m_tag.IsEmpty())
  2370. {
  2371. bRes_Tag = FALSE;
  2372. if (!m_previous.m_tag_separators.IsEmpty())
  2373. {
  2374. int nMaxBackOffset = pTxtIter->GetMaxBackOffset();
  2375. BOOL bContinue = TRUE;
  2376. int nOffset;
  2377. for (nOffset = 0; bContinue && labs(nOffset) < nMaxBackOffset; nOffset--)
  2378. {
  2379. CString strSep;
  2380. bContinue = Run_Tags(pTxtIter, pTxtSch, &m_previous.m_tag_separators,
  2381.  strSep, TRUE);
  2382. if (bContinue)
  2383. {
  2384. pTxtIter->SetTxtOffset(nOffset-1);
  2385. }
  2386. }
  2387. ASSERT(labs(nOffset) < nMaxBackOffset);
  2388. }
  2389. CString strTag;
  2390. bRes_Tag = Run_Tags(pTxtIter, pTxtSch, &m_previous.m_tag, strTag, TRUE);
  2391. pTxtIter->SetTxtOffset(0);
  2392. }
  2393. return bRes_Class && bRes_Tag;
  2394. }
  2395. BOOL CXTPSyntaxEditLexClass::Run_PrevClass(CXTPSyntaxEditLexTextBlock** ppPrevTB,
  2396.  CXTPSyntaxEditLexTextSchema* pTxtSch,
  2397.  CXTPSyntaxEditLexVariantPtrArray* pLVPrevClasses,
  2398.  int nDepth, XTP_EDIT_LINECOL* pMinPrevPos,
  2399.  CXTPSyntaxEditLexTextBlock* pPrevForParentBlockOnly,
  2400.  CXTPSyntaxEditLexOnScreenParseCnt* pOnScreenRunCnt)
  2401. {
  2402. if (ppPrevTB)
  2403. {
  2404. *ppPrevTB = NULL;
  2405. }
  2406. CXTPSyntaxEditLexTextBlock* pTBprev = NULL;
  2407. if (pOnScreenRunCnt)
  2408. {
  2409. pTBprev = pOnScreenRunCnt->m_ptrTBLast;
  2410. }
  2411. else
  2412. {
  2413. pTBprev = pTxtSch->GetPrevBlock(FALSE);
  2414. }
  2415. if (!pLVPrevClasses || !pTBprev || !pTBprev->m_ptrLexClass)
  2416. {
  2417. return FALSE;
  2418. }
  2419. if (pPrevForParentBlockOnly && pPrevForParentBlockOnly != pTBprev->m_ptrParent)
  2420. {
  2421. return FALSE;
  2422. }
  2423. //=======================================================================
  2424. for (int nD = 0;
  2425. pTBprev && pTBprev->m_ptrLexClass &&
  2426. (!pMinPrevPos || pTBprev->m_PosStartLC >= *pMinPrevPos) &&
  2427. nD < nDepth;
  2428. nD++, pTBprev = pTBprev->m_ptrPrev)
  2429. {
  2430. const CString& strPrevClassName = pTBprev->m_ptrLexClass->m_strClassName;
  2431. int nPCCont1 = (int)pLVPrevClasses->GetSize();
  2432. for (int i = 0; i < nPCCont1; i++)
  2433. {
  2434. CXTPSyntaxEditLexVariant* pVarPrevC = pLVPrevClasses->GetAt(i, FALSE);
  2435. if (!pVarPrevC || !pVarPrevC->IsStrType())
  2436. {
  2437. ASSERT(FALSE);
  2438. continue;
  2439. }
  2440. ASSERT(pVarPrevC->m_nObjType == xtpEditLVT_className);
  2441. int nCCount2 = (int)pVarPrevC->m_arStrVals.GetSize();
  2442. for (int k = 0; k < nCCount2; k++)
  2443. {
  2444. const CString& strCName = pVarPrevC->m_arStrVals[k];
  2445. if (strPrevClassName.CompareNoCase(strCName) == 0)
  2446. {
  2447. if (ppPrevTB)
  2448. {
  2449. *ppPrevTB = pTBprev;
  2450. }
  2451. return TRUE;
  2452. }
  2453. }
  2454. }
  2455. }
  2456. return FALSE;
  2457. }
  2458. int CXTPSyntaxEditLexClass::Run_Start(CTextIter* pTxtIter,
  2459. CXTPSyntaxEditLexTextSchema* pTxtSch,
  2460. CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock,
  2461. CXTPSyntaxEditLexOnScreenParseCnt* pOnScreenRunCnt
  2462. )
  2463. {
  2464. if (!pTxtIter || !pTxtSch)
  2465. {
  2466. ASSERT(FALSE);
  2467. //TRACE
  2468. return xtpEditLPR_Error;
  2469. }
  2470. BOOL bStarted = (rPtrTxtBlock != NULL);
  2471. ASSERT(!bStarted);
  2472. if (bStarted || m_start.IsEmpty())
  2473. {
  2474. return 0;
  2475. }
  2476. //===========================================================================
  2477. BOOL bRes_Class = TRUE;
  2478. CXTPSyntaxEditLexTextBlock* pPrevClass = NULL;
  2479. if (!m_start.m_class.IsEmpty())
  2480. {
  2481. bRes_Class = Run_PrevClass(&pPrevClass, pTxtSch, &m_start.m_class,
  2482. c_nPrevClassDepth_default, NULL,  NULL, pOnScreenRunCnt);
  2483. if (!bRes_Class)
  2484. {
  2485. return 0;
  2486. }
  2487. }
  2488. //===========================================================================
  2489. BOOL bRes_Tag = TRUE;
  2490. CString strTagVal;
  2491. BOOL bTag_Empty = m_start.m_tag.IsEmpty();
  2492. if (!bTag_Empty)
  2493. {
  2494. bRes_Tag = Run_Tags(pTxtIter, pTxtSch, &m_start.m_tag, strTagVal);
  2495. if (!bRes_Tag)
  2496. {
  2497. return 0;
  2498. }
  2499. }
  2500. bStarted = bRes_Class && bRes_Tag;
  2501. int nRes = 0;
  2502. if (bStarted)
  2503. {
  2504. nRes |= xtpEditLPR_StartFound;
  2505. if (!m_start.m_class.IsEmpty() && pPrevClass && pPrevClass->m_ptrLexClass &&
  2506. m_Parent.ptrDirect )
  2507. {
  2508. CString strC0 = m_Parent.ptrDirect->GetClassName();
  2509. CString strC1 = pPrevClass->m_ptrLexClass->GetClassName();
  2510. if (strC0.CompareNoCase(strC1) != 0)
  2511. {
  2512. nRes |= xtpEditLPR_TBpop1;
  2513. }
  2514. }
  2515. rPtrTxtBlock = pTxtSch->GetNewBlock();
  2516. if (rPtrTxtBlock)
  2517. {
  2518. rPtrTxtBlock->m_ptrLexClass = this;
  2519. rPtrTxtBlock->m_ptrLexClass->InternalAddRef();
  2520. if (bRes_Tag && !bTag_Empty)
  2521. {
  2522. int nLenC = (int)_tcsclen(strTagVal);
  2523. ASSERT(nLenC);
  2524. rPtrTxtBlock->m_PosStartLC = pTxtIter->GetPosLC();
  2525. rPtrTxtBlock->m_nStartTagLen = nLenC;
  2526. pTxtIter->SeekNext(nLenC);
  2527. nRes |= xtpEditLPR_Iterated;
  2528. }
  2529. else
  2530. {
  2531. CSingleLock singleLock(pTxtSch->GetDataLoker(), TRUE);
  2532. ASSERT(pPrevClass);
  2533. if (pPrevClass)
  2534. {
  2535. rPtrTxtBlock->m_PosStartLC = pPrevClass->m_PosStartLC;
  2536. rPtrTxtBlock->m_nStartTagLen = pPrevClass->m_nStartTagLen;
  2537. }
  2538. }
  2539. }
  2540. if (!rPtrTxtBlock)
  2541. {
  2542. return xtpEditLPR_Error | nRes;
  2543. }
  2544. }
  2545. //---------------------------------------------------------------------------
  2546. return nRes;
  2547. }
  2548. int CXTPSyntaxEditLexClass::Run_Skip(CTextIter* pTxtIter,
  2549. CXTPSyntaxEditLexTextSchema* pTxtSch,
  2550. CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock
  2551. )
  2552. {
  2553. if (!pTxtIter || !pTxtSch)
  2554. {
  2555. ASSERT(FALSE);
  2556. //TRACE
  2557. return xtpEditLPR_Error;
  2558. }
  2559. BOOL bStarted = (rPtrTxtBlock != NULL);
  2560. ASSERT(bStarted);
  2561. if (!bStarted || m_skip.IsEmpty())
  2562. {
  2563. return 0;
  2564. }
  2565. //===========================================================================
  2566. CString strTagVal;
  2567. if (!m_skip.m_tag.IsEmpty())
  2568. {
  2569. BOOL bIterated = FALSE;
  2570. while (!pTxtIter->IsEOF() && Run_Tags(pTxtIter, pTxtSch, &m_skip.m_tag, strTagVal))
  2571. {
  2572. int nLen = strTagVal.GetLength();
  2573. pTxtIter->SeekNext(nLen);
  2574. bIterated = TRUE;
  2575. }
  2576. if (bIterated)
  2577. {
  2578. return xtpEditLPR_Iterated;
  2579. }
  2580. }
  2581. return 0;
  2582. }
  2583. int CXTPSyntaxEditLexClass::Run_End(CTextIter* pTxtIter,
  2584. CXTPSyntaxEditLexTextSchema* pTxtSch,
  2585. CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock,
  2586. CXTPSyntaxEditLexOnScreenParseCnt* pOnScreenRunCnt)
  2587. {
  2588. if (!pTxtIter || !pTxtSch)
  2589. {
  2590. ASSERT(FALSE);
  2591. //TRACE
  2592. return xtpEditLPR_Error;
  2593. }
  2594. BOOL bEnded = FALSE;
  2595. if (m_end.IsEmpty())
  2596. {
  2597. return 0;
  2598. }
  2599. ASSERT(rPtrTxtBlock);
  2600. //===========================================================================
  2601. BOOL bRes_Class = TRUE;
  2602. CXTPSyntaxEditLexTextBlock* pPrevClass = NULL;
  2603. if (!m_end.m_class.IsEmpty())
  2604. {
  2605. CXTPSyntaxEditLexTextBlock* pTBEndParent = IsEndClassParent_this() ? rPtrTxtBlock : NULL;
  2606. bRes_Class = Run_PrevClass(&pPrevClass, pTxtSch, &m_end.m_class,
  2607. c_nPrevClassDepth_default, &rPtrTxtBlock->m_PosStartLC,
  2608. pTBEndParent, pOnScreenRunCnt);
  2609. if (!bRes_Class)
  2610. {
  2611. return 0;
  2612. }
  2613. }
  2614. //===========================================================================
  2615. BOOL bRes_Tag = TRUE;
  2616. CString strTagVal;
  2617. int nTagLenC = 0;
  2618. if (!m_end.m_tag.IsEmpty())
  2619. {
  2620. bRes_Tag = Run_Tags(pTxtIter, pTxtSch, &m_end.m_tag, strTagVal);
  2621. if (!bRes_Tag)
  2622. {
  2623. return 0;
  2624. }
  2625. nTagLenC = (int)_tcsclen(strTagVal);
  2626. }
  2627. //===========================================================================
  2628. BOOL bRes_Separators = TRUE;
  2629. CString strSepVal;
  2630. if (!m_end.m_separators.IsEmpty())
  2631. {
  2632. pTxtIter->SetTxtOffset(nTagLenC);
  2633. bRes_Separators = Run_Tags(pTxtIter, pTxtSch, &m_end.m_separators, strSepVal);
  2634. pTxtIter->SetTxtOffset(0);
  2635. if (!bRes_Separators)
  2636. {
  2637. return 0;
  2638. }
  2639. }
  2640. //-----------------------------------------------------------------------
  2641. bEnded = bRes_Class && bRes_Tag && bRes_Separators;
  2642. int nRes = 0;
  2643. if (bEnded)
  2644. {
  2645. nRes |= xtpEditLPR_EndFound;
  2646. nRes |= xtpEditLPR_Iterated;
  2647. if (bRes_Tag && !m_end.m_tag.IsEmpty() ||
  2648. bRes_Separators && !m_end.m_separators.IsEmpty())
  2649. {
  2650. CSingleLock singleLock(pTxtSch->GetDataLoker(), TRUE);
  2651. XTP_EDIT_LINECOL runLC = pTxtIter->GetPosLC();
  2652. if (bRes_Tag && !m_end.m_tag.IsEmpty())
  2653. {
  2654. pTxtIter->SeekNext(nTagLenC);
  2655. }
  2656. ASSERT(this == (CXTPSyntaxEditLexClass*)rPtrTxtBlock->m_ptrLexClass);
  2657. rPtrTxtBlock->m_PosEndLC = pTxtIter->GetPosLC();
  2658. const XTP_EDIT_LINECOL beginLC = {1, 0};
  2659. if (rPtrTxtBlock->m_PosEndLC > beginLC)
  2660. {
  2661. pTxtIter->LCPosDec(rPtrTxtBlock->m_PosEndLC);
  2662. }
  2663. else
  2664. {
  2665. TRACE(_T("WARNING (parser): unexpected end position (1,0) n"));
  2666. }
  2667. if (bRes_Separators && !m_end.m_separators.IsEmpty())
  2668. {
  2669. int nSepLenC = (int)_tcsclen(strSepVal);
  2670. XTP_EDIT_LINECOL endLC2 = rPtrTxtBlock->m_PosEndLC;
  2671. pTxtIter->LCPosAdd(endLC2, nTagLenC+nSepLenC);
  2672. rPtrTxtBlock->m_nEndTagXLCLen = rPtrTxtBlock->m_PosEndLC.GetXLC() -
  2673. endLC2.GetXLC();
  2674. }
  2675. else
  2676. {
  2677. rPtrTxtBlock->m_nEndTagXLCLen = rPtrTxtBlock->m_PosEndLC.GetXLC() -
  2678. runLC.GetXLC();
  2679. }
  2680. }
  2681. else
  2682. {
  2683. CSingleLock singleLock(pTxtSch->GetDataLoker(), TRUE);
  2684. ASSERT(pPrevClass);
  2685. if (pPrevClass)
  2686. {
  2687. rPtrTxtBlock->m_PosEndLC = pPrevClass->m_PosEndLC;
  2688. rPtrTxtBlock->m_nEndTagXLCLen = pPrevClass->m_nEndTagXLCLen;
  2689. }
  2690. }
  2691. }
  2692. //---------------------------------------------------------------------------
  2693. return nRes;
  2694. }
  2695. int CXTPSyntaxEditLexClass::Run_Token(CTextIter* pTxtIter,
  2696.   CXTPSyntaxEditLexTextSchema* pTxtSch,
  2697.   CXTPSyntaxEditLexTextBlockPtr& rPtrTxtBlock )
  2698. {
  2699. if (!pTxtIter || !pTxtSch)
  2700. {
  2701. ASSERT(FALSE);
  2702. //TRACE
  2703. return xtpEditLPR_Error;
  2704. }
  2705. //===========================================================================
  2706. if (!m_token.m_tag.IsEmpty())
  2707. {
  2708. CString strTokenVal;
  2709. //if (Run_Tags(pTxtIter, pTxtSch, &m_token.m_tag, strTokenVal))
  2710. //BOOL bTagBegins = Run_Tags(pTxtIter, pTxtSch, &m_token.m_tag, strTokenVal);
  2711. BOOL bTagBegins = m_token.m_tag.FindMaxWord(pTxtIter->GetText(1024),
  2712. strTokenVal, 1024, FALSE, !IsCaseSensitive());
  2713. #ifdef DBG_AUTOMAT
  2714. BOOL bTagBeginsX = Run_Tags(pTxtIter, pTxtSch, &m_token.m_tag, strTokenVal);
  2715. if (bTagBeginsX  != bTagBegins)
  2716. {
  2717. ASSERT(FALSE);
  2718. }
  2719. #endif
  2720. if (bTagBegins)
  2721. {
  2722. CString strSeparator1, strSeparator2;
  2723. if (Run_TokenSeparators(strTokenVal, pTxtIter, pTxtSch,
  2724. strSeparator1, strSeparator2) )
  2725. {
  2726. int nLenC = (int)_tcsclen(strTokenVal);
  2727. rPtrTxtBlock = pTxtSch->GetNewBlock();
  2728. if (rPtrTxtBlock)
  2729. {
  2730. rPtrTxtBlock->m_ptrLexClass.SetPtr(this, TRUE);
  2731. rPtrTxtBlock->m_PosStartLC = pTxtIter->GetPosLC();
  2732. rPtrTxtBlock->m_nStartTagLen = nLenC;
  2733. }
  2734. pTxtIter->SeekNext(nLenC);
  2735. int nRes = xtpEditLPR_StartFound | xtpEditLPR_EndFound | xtpEditLPR_Iterated;
  2736. if (rPtrTxtBlock)
  2737. {
  2738. rPtrTxtBlock->m_PosEndLC = pTxtIter->GetPosLC();
  2739. if (nLenC)
  2740. {
  2741. pTxtIter->LCPosDec(rPtrTxtBlock->m_PosEndLC);
  2742. }
  2743. rPtrTxtBlock->m_nEndTagXLCLen = rPtrTxtBlock->m_PosEndLC.GetXLC() -
  2744. rPtrTxtBlock->m_PosStartLC.GetXLC();
  2745. }
  2746. else
  2747. {
  2748. nRes |= xtpEditLPR_Error;
  2749. }
  2750. return nRes;
  2751. }
  2752. }
  2753. }
  2754. return 0;
  2755. }
  2756. BOOL CXTPSyntaxEditLexClass::Run_TokenSeparators(CString strToken,
  2757.   CTextIter* pTxtIter,
  2758.   CXTPSyntaxEditLexTextSchema* pTxtSch,
  2759.   CString& rstrSeparator1,
  2760.   CString& rstrSeparator2)
  2761. {
  2762. rstrSeparator1.Empty();
  2763. rstrSeparator2.Empty();
  2764. //===========================================================================
  2765. BOOL bTSyes = TRUE;
  2766. BOOL bTEyes = TRUE;
  2767. if (!m_token.m_start_separators.IsEmpty())
  2768. {
  2769. bTSyes = Run_Tags(pTxtIter, pTxtSch, &m_token.m_start_separators, rstrSeparator1, TRUE);
  2770. }
  2771. if (!m_token.m_end_separators.IsEmpty())
  2772. {
  2773. int nLen = strToken.GetLength();
  2774. pTxtIter->SetTxtOffset(nLen);
  2775. bTEyes = Run_Tags(pTxtIter, pTxtSch, &m_token.m_end_separators, rstrSeparator2);
  2776. pTxtIter->SetTxtOffset(0);
  2777. }
  2778. return bTSyes && bTEyes;
  2779. }
  2780. BOOL CXTPSyntaxEditLexClass::Run_Tags(CTextIter* pIter,
  2781.  CXTPSyntaxEditLexTextSchema* pTxtSch,
  2782.  CXTPSyntaxEditLexVariantPtrArray* pLVTags,
  2783.  CString& rstrTagVal, BOOL bParseDirection_Back
  2784.  )
  2785. {
  2786. UNREFERENCED_PARAMETER(pTxtSch);
  2787. BOOL bCaseSensitive = IsCaseSensitive();
  2788. return Run_Tags1(pIter, pLVTags, rstrTagVal, bCaseSensitive, bParseDirection_Back);
  2789. }
  2790. BOOL CXTPSyntaxEditLexClass::Run_Tags1(CTextIter* pIter,
  2791. CXTPSyntaxEditLexVariantPtrArray* pLVTags,
  2792. CString& rstrTagVal, BOOL bCaseSensitive,
  2793. BOOL bParseDirection_Back
  2794. )
  2795. {
  2796. if (!pLVTags)
  2797. {
  2798. ASSERT(FALSE);
  2799. return FALSE;
  2800. }
  2801. int nCount = (int)pLVTags->GetSize();
  2802. for (int i = 0; i < nCount; i++)
  2803. {
  2804. CXTPSyntaxEditLexVariant* pVTag = pLVTags->GetAt(i, FALSE);
  2805. if (Run_Tags2(pIter, pVTag, rstrTagVal, bCaseSensitive, bParseDirection_Back) )
  2806. {
  2807. return TRUE;
  2808. }
  2809. }
  2810. return FALSE;
  2811. }
  2812. int CXTPSyntaxEditLexClass::Run_Tags2(CTextIter* pIter,
  2813. CXTPSyntaxEditLexVariant* pVTags,
  2814. CString& rstrTagVal,
  2815. BOOL bCaseSensitive,
  2816. BOOL bParseDirection_Back
  2817.    )
  2818. {
  2819. LPCTSTR pText = pIter->GetText();
  2820. if (!pVTags)
  2821. {
  2822. ASSERT(FALSE);
  2823. //TRACE
  2824. return 0;
  2825. }
  2826. if (pVTags->m_nObjType == xtpEditLVT_valStr)
  2827. {
  2828. if (bParseDirection_Back)
  2829. {
  2830. pText = _tcsdec(pText-5, pText);
  2831. }
  2832. for (int k = 0; k < pVTags->m_arStrVals.GetSize(); k++)
  2833. {
  2834. LPCTSTR pcszTag = pVTags->m_arStrVals[k];
  2835. int nLen = (int)_tcsclen(pcszTag);
  2836. if (nLen <= 0)
  2837. {
  2838. ASSERT(FALSE);
  2839. continue;
  2840. }
  2841. if (bParseDirection_Back)
  2842. {
  2843. pcszTag = _tcsninc(pcszTag, nLen-1);
  2844. }
  2845. if (StrCmpEQ(pcszTag, pText, nLen, bCaseSensitive, bParseDirection_Back))
  2846. {
  2847. rstrTagVal = pcszTag;
  2848. return TRUE;
  2849. }
  2850. }
  2851. return FALSE;
  2852. }
  2853. else if (pVTags->m_nObjType == xtpEditLVT_valVar)
  2854. {
  2855. if (bParseDirection_Back)
  2856. {
  2857. pText = _tcsdec(pText-5, pText);
  2858. }
  2859. if (StrVarCmpEQ(pText, pVTags->m_Variable, rstrTagVal, bParseDirection_Back))
  2860. {
  2861. return TRUE;
  2862. }
  2863. return FALSE;
  2864. }
  2865. else
  2866. {
  2867. ASSERT(FALSE);
  2868. //TRACE
  2869. }
  2870. return FALSE;
  2871. }
  2872. void CXTPSyntaxEditLexClass::CopyFrom(const CXTPSyntaxEditLexClass* pSrc)
  2873. {
  2874. if (!pSrc)
  2875. {
  2876. ASSERT(FALSE);
  2877. return;
  2878. }
  2879. m_Parent.eOpt = pSrc->m_Parent.eOpt;
  2880. m_Parent.ptrDirect = pSrc->m_Parent.ptrDirect;
  2881. m_Parent.arClassNames.RemoveAll();
  2882. m_Parent.arClassNames.Append(pSrc->m_Parent.arClassNames);
  2883. m_Children.eOpt = pSrc->m_Children.eOpt;
  2884. m_Children.arClassNames.RemoveAll();
  2885. m_Children.arClassNames.Append(pSrc->m_Children.arClassNames);
  2886. m_strClassName = pSrc->GetClassName();
  2887. TBase::CopyFrom(*pSrc);
  2888. CopyAttributes(pSrc);
  2889. m_arChildrenClasses.RemoveAll();
  2890. m_arDynChildrenClasses.RemoveAll();
  2891. m_arChildrenSelfRefClasses.RemoveAll();
  2892. }
  2893. const CXTPSyntaxEditLexClass& CXTPSyntaxEditLexClass::operator=(const CXTPSyntaxEditLexClass& rSrc)
  2894. {
  2895. CopyFrom(&rSrc);
  2896. return *this;
  2897. }
  2898. CXTPSyntaxEditLexClass* CXTPSyntaxEditLexClass::Clone(CXTPSyntaxEditLexClassSchema* pOwnerSch)
  2899. {
  2900. CXTPSyntaxEditLexClass* pNewClass = NULL;
  2901. if (pOwnerSch)
  2902. {
  2903. pNewClass = pOwnerSch->GetNewClass(FALSE);
  2904. }
  2905. else
  2906. {
  2907. pNewClass = new CXTPSyntaxEditLexClass();
  2908. }
  2909. if (pNewClass)
  2910. {
  2911. pNewClass->CopyFrom(this);
  2912. }
  2913. return pNewClass;
  2914. }
  2915. void CXTPSyntaxEditLexClass::RemoveAttributes(LPCTSTR pcszAttrPrefix)
  2916. {
  2917. ClearAttributesCache();
  2918. if (pcszAttrPrefix)
  2919. {
  2920. int nLenC = (int)_tcsclen(pcszAttrPrefix);
  2921. CString strKey;
  2922. CStringArray arKeysToRemove;
  2923. POSITION pos = m_mapAttributes.GetStartPosition();
  2924. while (pos)
  2925. {
  2926. CXTPSyntaxEditLexVariantPtr ptrVal;
  2927. m_mapAttributes.GetNextAssoc(pos, strKey, ptrVal);
  2928. if (_tcsnicmp(pcszAttrPrefix, strKey, nLenC) == 0)
  2929. {
  2930. arKeysToRemove.Add(strKey);
  2931. }
  2932. }
  2933. //-----------------------------------------
  2934. int nCount = (int)arKeysToRemove.GetSize();
  2935. for (int i = 0; i < nCount; i++)
  2936. {
  2937. strKey = arKeysToRemove[i];
  2938. m_mapAttributes.RemoveKey(strKey);
  2939. }
  2940. }
  2941. else
  2942. {
  2943. m_mapAttributes.RemoveAll();
  2944. }
  2945. }
  2946. void CXTPSyntaxEditLexClass::CopyAttributes(const CXTPSyntaxEditLexClass* pSrcAttrClass,
  2947.   LPCTSTR pcszAttrPrefix)
  2948. {
  2949. RemoveAttributes(pcszAttrPrefix);
  2950. if (!pSrcAttrClass)
  2951. {
  2952. ASSERT(FALSE);
  2953. return;
  2954. }
  2955. int nLenC = pcszAttrPrefix ? (int)(_tcsclen(pcszAttrPrefix)) : 0;
  2956. CString strKey;
  2957. POSITION pos = pSrcAttrClass->m_mapAttributes.GetStartPosition();
  2958. while (pos)
  2959. {
  2960. CXTPSyntaxEditLexVariantPtr ptrVal;
  2961. pSrcAttrClass->m_mapAttributes.GetNextAssoc(pos, strKey, ptrVal);
  2962. if (pcszAttrPrefix)
  2963. {
  2964. if (_tcsnicmp(pcszAttrPrefix, strKey, nLenC) == 0)
  2965. {
  2966. m_mapAttributes[strKey] = ptrVal;
  2967. }
  2968. }
  2969. else
  2970. {
  2971. m_mapAttributes[strKey] = ptrVal;
  2972. }
  2973. }
  2974. }
  2975. void CXTPSyntaxEditLexClass::SetAttribute(CString strName, const CXTPSyntaxEditLexVariant& rVal)
  2976. {
  2977. ClearAttributesCache();
  2978. strName.MakeLower();
  2979. CXTPSyntaxEditLexVariantPtr ptrData = new CXTPSyntaxEditLexVariant(rVal);
  2980. m_mapAttributes[strName] = ptrData;
  2981. }
  2982. CXTPSyntaxEditLexVariantPtr CXTPSyntaxEditLexClass::GetAttribute(LPCTSTR strName, BOOL bDyn) const
  2983. {
  2984. CString strName_lower = strName;
  2985. strName_lower.MakeLower();
  2986. CXTPSyntaxEditLexVariantPtr ptrData;
  2987. if (m_mapAttributes.Lookup(strName_lower, ptrData))
  2988. {
  2989. return ptrData;
  2990. }
  2991. if (bDyn && m_Parent.ptrDirect)
  2992. {
  2993. ptrData = m_Parent.ptrDirect->GetAttribute(strName_lower, TRUE);
  2994. return ptrData;
  2995. }
  2996. return NULL;
  2997. }
  2998. #ifdef _DEBUG
  2999. void CXTPSyntaxEditLexClass::DumpOffset(CDumpContext& dc, LPCTSTR pcszOffset)
  3000. {
  3001. if (!pcszOffset)
  3002. {
  3003. pcszOffset = _T("");
  3004. }
  3005. int i;
  3006. dc << _T("n");
  3007. dc << pcszOffset;
  3008. dc << _T("lexClass:   NAME=") << m_strClassName << _T(" n");
  3009. //------------------------------------
  3010. dc << pcszOffset;
  3011. if (m_Parent.eOpt == xtpEditOptParent_file)
  3012. {
  3013. dc << _T("parent:file = ");
  3014. }
  3015. else if (m_Parent.eOpt == xtpEditOptParent_direct)
  3016. {
  3017. dc << _T("parent = ");
  3018. }
  3019. else if (m_Parent.eOpt == xtpEditOptParent_dyn)
  3020. {
  3021. dc << _T("parent:dyn = ");
  3022. }
  3023. else
  3024. {
  3025. dc << _T("parent:??? = ");
  3026. }
  3027. for (i = 0; i < m_Parent.arClassNames.GetSize(); i++)
  3028. {
  3029. dc << m_Parent.arClassNames[i] << _T(", ");
  3030. }
  3031. if (m_Parent.ptrDirect)
  3032. {
  3033. dc << _T(" // [parent_by_ptr=[") << m_Parent.ptrDirect->m_strClassName << _T("] ");
  3034. }
  3035. dc << _T(" n");
  3036. //------------------------------------
  3037. if (m_Children.eOpt == xtpEditOptChildren_No)
  3038. {
  3039. dc << pcszOffset;
  3040. dc << _T("children = 0 n");
  3041. }
  3042. if (m_Children.eOpt == xtpEditOptChildren_List)
  3043. {
  3044. dc << pcszOffset;
  3045. dc << _T("children = ");
  3046. for (i = 0; i < m_Children.arClassNames.GetSize(); i++)
  3047. {
  3048. dc <<  m_Children.arClassNames[i] << _T(", ");
  3049. }
  3050. dc << _T(" n");
  3051. }
  3052. //------------------------------------
  3053. m_previous.DumpOffset(dc, pcszOffset);
  3054. m_start.DumpOffset(dc, pcszOffset);
  3055. m_end.DumpOffset(dc, pcszOffset);
  3056. m_token.DumpOffset(dc, pcszOffset);
  3057. m_skip.DumpOffset(dc, pcszOffset);
  3058. m_ActiveTags.DumpOffset(dc, pcszOffset);
  3059. }
  3060. #endif
  3061. void CXTPSyntaxEditLexClass::GetTextAttributes(XTP_EDIT_TEXTBLOCK& rTB)
  3062. {
  3063. if (!m_bTxtAttr_cached)
  3064. {
  3065. m_bTxtAttr_cached = TRUE;
  3066. m_txtAttr_cached.clrBlock.crText = COLORREF_NULL;
  3067. m_txtAttr_cached.clrBlock.crBack = COLORREF_NULL;
  3068. m_txtAttr_cached.clrBlock.crHiliteText  = COLORREF_NULL;
  3069. m_txtAttr_cached.clrBlock.crHiliteBack = COLORREF_NULL;
  3070. m_txtAttr_cached.lf.lfWeight = XTP_EDIT_FONTOPTIONS_UNSPEC_OPTION;
  3071. m_txtAttr_cached.lf.lfItalic = XTP_EDIT_FONTOPTIONS_UNSPEC_OPTION;
  3072. m_txtAttr_cached.lf.lfUnderline = XTP_EDIT_FONTOPTIONS_UNSPEC_OPTION;
  3073. //====================================================================
  3074. CXTPSyntaxEditLexVariantPtr ptrLVA;
  3075. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_COLORFG, TRUE);
  3076. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3077. {
  3078. m_txtAttr_cached.clrBlock.crText = (COLORREF)ptrLVA->m_nValue;
  3079. }
  3080. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_COLORBK, TRUE);
  3081. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3082. {
  3083. m_txtAttr_cached.clrBlock.crBack = (COLORREF)ptrLVA->m_nValue;
  3084. }
  3085. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_COLORSELFG, TRUE);
  3086. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3087. {
  3088. m_txtAttr_cached.clrBlock.crHiliteText  = (COLORREF)ptrLVA->m_nValue;
  3089. }
  3090. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_COLORSELBK, TRUE);
  3091. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3092. {
  3093. m_txtAttr_cached.clrBlock.crHiliteBack = (COLORREF)ptrLVA->m_nValue;
  3094. }
  3095. //===========================================================================
  3096. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_BOLD, TRUE);
  3097. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3098. {
  3099. m_txtAttr_cached.lf.lfWeight =
  3100. ptrLVA->m_nValue ? FW_BOLD : XTP_EDIT_FONTOPTIONS_UNSPEC_OPTION;
  3101. }
  3102. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_ITALIC, TRUE);
  3103. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3104. {
  3105. m_txtAttr_cached.lf.lfItalic =
  3106. ptrLVA->m_nValue ? (BYTE)1 : XTP_EDIT_FONTOPTIONS_UNSPEC_OPTION;
  3107. }
  3108. ptrLVA = GetAttribute(XTPLEX_ATTR_TXT_UNDERLINE, TRUE);
  3109. if (ptrLVA && ptrLVA->m_nObjType == xtpEditLVT_valInt)
  3110. {
  3111. m_txtAttr_cached.lf.lfUnderline =
  3112. ptrLVA->m_nValue ? (BYTE)1 : XTP_EDIT_FONTOPTIONS_UNSPEC_OPTION;
  3113. }
  3114. }
  3115. //===========================================================================
  3116. if (m_txtAttr_cached.clrBlock.crText != COLORREF_NULL)
  3117. {
  3118. rTB.clrBlock.crText = m_txtAttr_cached.clrBlock.crText;
  3119. }
  3120. if (m_txtAttr_cached.clrBlock.crBack != COLORREF_NULL)
  3121. {
  3122. rTB.clrBlock.crBack = m_txtAttr_cached.clrBlock.crBack;
  3123. }
  3124. if (m_txtAttr_cached.clrBlock.crHiliteText != COLORREF_NULL)
  3125. {
  3126. rTB.clrBlock.crHiliteText = m_txtAttr_cached.clrBlock.crHiliteText;
  3127. }
  3128. if (m_txtAttr_cached.clrBlock.crHiliteBack != COLORREF_NULL)
  3129. {
  3130. rTB.clrBlock.crHiliteBack = m_txtAttr_cached.clrBlock.crHiliteBack;
  3131. }
  3132. rTB.lf.lfWeight = m_txtAttr_cached.lf.lfWeight;
  3133. rTB.lf.lfItalic = m_txtAttr_cached.lf.lfItalic;
  3134. rTB.lf.lfUnderline = m_txtAttr_cached.lf.lfUnderline;
  3135. }
  3136. CXTPSyntaxEditLexVariantPtrArray* CXTPSyntaxEditLexClass::BuildActiveTags(int& rnStartCount)
  3137. {
  3138. m_ActiveTags.RemoveAll();
  3139. m_nActiv_EndTags_Offset = 0;
  3140. //== start class tags =====
  3141. const TCHAR* s_arActiveTagsObjs1[] = {
  3142. _T("start:Tag"),
  3143. _T("previous:tag"),
  3144. _T("previous:tag:separators"),
  3145. _T("Token:tag")
  3146. };
  3147. //== end class tags =====
  3148. const TCHAR* s_arActiveTagsObjs2[] = {
  3149. _T("skip:Tag"),
  3150. _T("end:Tag"),
  3151. _T("end:separators")
  3152. };
  3153. //== 1. process start tags =====
  3154. int a;
  3155. for (a = 0; a < _countof(s_arActiveTagsObjs1); a++)
  3156. {
  3157. CXTPSyntaxEditLexVariantPtrArray* ptrAT = GetIfMy(s_arActiveTagsObjs1[a]);
  3158. ASSERT(ptrAT);
  3159. if (ptrAT)
  3160. {
  3161. ConcatenateLVArrays(&m_ActiveTags, ptrAT);
  3162. // if start:Tag not empty - skip previous tags.
  3163. // else previous tags are used to determine class start.
  3164. if (a == 0 && ptrAT->GetSize() > 0)
  3165. {
  3166. a += 2;
  3167. }
  3168. }
  3169. }
  3170. //m_ActiveTags.Dump(_T("~a1~ "));
  3171. //== 2. process children and add start tags only =====
  3172. CXTPSyntaxEditLexClassPtrArray* arChildren[2];
  3173. arChildren[0] = GetChildren();
  3174. arChildren[1] = GetChildrenDyn();
  3175. int i;
  3176. for (i = 0; i < _countof(arChildren); i++)
  3177. {
  3178. int nKCount = arChildren[i] ? (int)arChildren[i]->GetSize() : 0;
  3179. int k;
  3180. for (k = 0; k < nKCount; k++)
  3181. {
  3182. CXTPSyntaxEditLexClass* pCh = arChildren[i]->GetAt(k, FALSE);
  3183. ASSERT(pCh);
  3184. if (!pCh)
  3185. continue;
  3186. int nStartCount = 0;
  3187. CXTPSyntaxEditLexVariantPtrArray* ptrATch = pCh->BuildActiveTags(nStartCount);
  3188. if (ptrATch)
  3189. {
  3190. ConcatenateLVArrays(&m_ActiveTags, ptrATch, nStartCount);
  3191. }
  3192. }
  3193. }
  3194. //== 3. process end tags =====
  3195. m_nActiv_EndTags_Offset = (int)m_ActiveTags.GetSize();
  3196. for (a = 0; a < _countof(s_arActiveTagsObjs2); a++)
  3197. {
  3198. CXTPSyntaxEditLexVariantPtrArray* ptrAT = GetIfMy(s_arActiveTagsObjs2[a]);
  3199. ASSERT(ptrAT);
  3200. if (ptrAT)
  3201. {
  3202. ConcatenateLVArrays(&m_ActiveTags, ptrAT);
  3203. }
  3204. }
  3205. //m_ActiveTags.Dump(_T("~a2~ "));
  3206. //=======================
  3207. rnStartCount = m_nActiv_EndTags_Offset;
  3208. m_ActiveTags.BuildAutomat(TRUE);
  3209. //********************
  3210. m_token.m_tag.BuildAutomat(FALSE);
  3211. //********************
  3212. return &m_ActiveTags;
  3213. }