1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
|
/*
Miranda NG: the free IM client for Microsoft* Windows*
Copyright (c) 2012-14 Miranda NG project (http://miranda-ng.org)
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#pragma once
#ifndef M_STRING_H__
#include <stdio.h>
#include <string.h>
#include <mbstring.h>
#include <wchar.h>
#include <m_core.h>
#ifdef __MINGW32__
#include <limits.h>
__inline size_t strnlen(const char *string, size_t maxlen)
{
const char *end = (const char *)memchr ((const void *)string, '\0', maxlen);
return end ? (size_t) (end - string) : maxlen;
}
__inline size_t wcsnlen(const wchar_t *string, size_t maxlen)
{
const wchar_t *end = wmemchr (string, L'\0', maxlen);
return end ? (size_t) (end - string) : maxlen;
}
/* FIXME: This may be wrong assumption about Langpack_GetDefaultCodePage */
#define Langpack_GetDefaultCodePage() CP_THREAD_ACP
/* FIXME: This is unsafe */
#define memcpy_s(dest,size,src,count) memcpy(dest,src,count)
/* FIXME: This is quite silly implementation of _mbsstr */
#define _mbsstr(str,search) strstr((const char *)str,(const char *)search)
#define __max(x,y) (((x)<(y))?(y):(x))
#endif /* __MINGW32__ */
/////////////////////////////////////////////////////////////////////////////////////////
struct CMStringData;
MIR_CORE_DLL(CMStringData*) mirstr_allocate(int nChars, int nCharSize);
MIR_CORE_DLL(void) mirstr_free(CMStringData *pData);
MIR_CORE_DLL(CMStringData*) mirstr_realloc(CMStringData* pData, int nChars, int nCharSize);
MIR_CORE_DLL(CMStringData*) mirstr_getNil();
MIR_CORE_DLL(void) mirstr_lock(CMStringData* pThis);
MIR_CORE_DLL(void) mirstr_release(CMStringData* pThis);
MIR_CORE_DLL(void) mirstr_unlock(CMStringData* pThis);
/////////////////////////////////////////////////////////////////////////////////////////
enum CMStringDataFormat { FORMAT };
struct CMStringData
{
int nDataLength; // Length of currently used data in XCHARs (not including terminating null)
int nAllocLength; // Length of allocated data in XCHARs (not including terminating null)
long nRefs; // Reference count: negative == locked
__forceinline void* data() { return (this + 1); }
__forceinline void AddRef() { InterlockedIncrement(&nRefs); }
__forceinline bool IsLocked() const { return nRefs < 0; }
__forceinline bool IsShared() const { return nRefs > 1; }
__forceinline void Lock() { mirstr_lock(this); }
__forceinline void Release() { mirstr_release(this); }
__forceinline void Unlock() { mirstr_unlock(this); }
};
template< typename BaseType = char >
class ChTraitsBase
{
public:
typedef char XCHAR;
typedef LPSTR PXSTR;
typedef LPCSTR PCXSTR;
typedef wchar_t YCHAR;
typedef LPWSTR PYSTR;
typedef LPCWSTR PCYSTR;
};
template<>
class ChTraitsBase< wchar_t >
{
public:
typedef wchar_t XCHAR;
typedef LPWSTR PXSTR;
typedef LPCWSTR PCXSTR;
typedef char YCHAR;
typedef LPSTR PYSTR;
typedef LPCSTR PCYSTR;
};
template< typename BaseType >
class CMSimpleStringT
{
public:
typedef typename ChTraitsBase< BaseType >::XCHAR XCHAR;
typedef typename ChTraitsBase< BaseType >::PXSTR PXSTR;
typedef typename ChTraitsBase< BaseType >::PCXSTR PCXSTR;
typedef typename ChTraitsBase< BaseType >::YCHAR YCHAR;
typedef typename ChTraitsBase< BaseType >::PYSTR PYSTR;
typedef typename ChTraitsBase< BaseType >::PCYSTR PCYSTR;
public:
explicit CMSimpleStringT()
{
CMStringData* pData = mirstr_getNil();
Attach(pData);
}
CMSimpleStringT(const CMSimpleStringT& strSrc)
{
CMStringData* pSrcData = strSrc.GetData();
CMStringData* pNewData = CloneData(pSrcData);
Attach(pNewData);
}
CMSimpleStringT(PCXSTR pszSrc)
{
int nLength = StringLength(pszSrc);
CMStringData* pData = mirstr_allocate(nLength, sizeof(XCHAR));
if (pData != NULL) {
Attach(pData);
SetLength(nLength);
CopyChars(m_pszData, nLength, pszSrc, nLength);
}
}
CMSimpleStringT(const XCHAR* pchSrc, int nLength)
{
CMStringData* pData = mirstr_allocate(nLength, sizeof(XCHAR));
if (pData != NULL) {
Attach(pData);
SetLength(nLength);
CopyChars(m_pszData, nLength, pchSrc, nLength);
}
}
~CMSimpleStringT()
{
CMStringData* pData = GetData();
pData->Release();
}
operator CMSimpleStringT<BaseType>&()
{
return *(CMSimpleStringT<BaseType>*)this;
}
CMSimpleStringT& operator=(const CMSimpleStringT& strSrc)
{
CMStringData* pSrcData = strSrc.GetData();
CMStringData* pOldData = GetData();
if (pSrcData != pOldData) {
if (pOldData->IsLocked())
SetString(strSrc.GetString(), strSrc.GetLength());
else {
CMStringData* pNewData = CloneData(pSrcData);
pOldData->Release();
Attach(pNewData);
}
}
return *this;
}
CMSimpleStringT& operator=(PCXSTR pszSrc)
{
SetString(pszSrc);
return *this;
}
CMSimpleStringT& operator+=(const CMSimpleStringT& strSrc)
{
Append(strSrc);
return *this;
}
CMSimpleStringT& operator+=(PCXSTR pszSrc)
{
Append(pszSrc);
return *this;
}
CMSimpleStringT& operator+=(char ch)
{
AppendChar(XCHAR(ch));
return *this;
}
CMSimpleStringT& operator+=(unsigned char ch)
{
AppendChar(XCHAR(ch));
return *this;
}
CMSimpleStringT& operator+=(wchar_t ch)
{
AppendChar(XCHAR(ch));
return *this;
}
XCHAR operator[](int iChar) const
{
return m_pszData[iChar];
}
operator PCXSTR() const
{
return m_pszData;
}
PCXSTR c_str() const
{
return m_pszData;
}
void Append(PCXSTR pszSrc)
{
Append(pszSrc, StringLength(pszSrc));
}
void Append(PCXSTR pszSrc, int nLength)
{
// See comment in SetString() about why we do this
UINT_PTR nOffset = UINT_PTR(pszSrc - GetString());
int nOldLength = GetLength();
if (nOldLength < 0) {
// protects from underflow
nOldLength = 0;
}
//Make sure we don't read pass end of the terminating NULL
int nSrcLength = StringLength(pszSrc);
nLength = nLength > nSrcLength ? nSrcLength : nLength;
int nNewLength = nOldLength + nLength;
PXSTR pszBuffer = GetBuffer(nNewLength);
if (nOffset <= UINT_PTR(nOldLength)) {
pszSrc = pszBuffer + nOffset;
// No need to call CopyCharsOverlapped, since the destination is
// beyond the end of the original buffer
}
CopyChars(pszBuffer + nOldLength, nLength, pszSrc, nLength);
ReleaseBufferSetLength(nNewLength);
}
void AppendChar(XCHAR ch)
{
UINT nOldLength = GetLength();
int nNewLength = nOldLength + 1;
PXSTR pszBuffer = GetBuffer(nNewLength);
pszBuffer[nOldLength] = ch;
ReleaseBufferSetLength(nNewLength);
}
void Append(const CMSimpleStringT& strSrc)
{
Append(strSrc.GetString(), strSrc.GetLength());
}
void Empty()
{
CMStringData* pOldData = GetData();
if (pOldData->nDataLength == 0)
return;
if (pOldData->IsLocked()) {
// Don't reallocate a locked buffer that's shrinking
SetLength(0);
}
else {
pOldData->Release();
CMStringData* pNewData = mirstr_getNil();
Attach(pNewData);
}
}
void FreeExtra()
{
CMStringData* pOldData = GetData();
int nLength = pOldData->nDataLength;
if (pOldData->nAllocLength == nLength)
return;
if (!pOldData->IsLocked()) { // Don't reallocate a locked buffer that's shrinking
CMStringData* pNewData = mirstr_allocate(nLength, sizeof(XCHAR));
if (pNewData == NULL) {
SetLength(nLength);
return;
}
CopyChars(PXSTR(pNewData->data()), nLength, PCXSTR(pOldData->data()), nLength);
pOldData->Release();
Attach(pNewData);
SetLength(nLength);
}
}
int GetAllocLength() const
{
return GetData()->nAllocLength;
}
XCHAR GetAt(int iChar) const
{
return m_pszData[iChar];
}
PXSTR GetBuffer()
{
CMStringData* pData = GetData();
if (pData->IsShared())
Fork(pData->nDataLength);
return m_pszData;
}
PXSTR GetBuffer(int nMinBufferLength)
{
return PrepareWrite(nMinBufferLength);
}
PXSTR GetBufferSetLength(int nLength)
{
PXSTR pszBuffer = GetBuffer(nLength);
SetLength(nLength);
return pszBuffer;
}
int GetLength() const
{
return GetData()->nDataLength;
}
PCXSTR GetString() const
{
return m_pszData;
}
PCXSTR GetTail() const
{
return m_pszData + GetData()->nDataLength;
}
bool IsEmpty() const
{
return GetLength() == 0;
}
PXSTR LockBuffer()
{
CMStringData* pData = GetData();
if (pData->IsShared())
{
Fork(pData->nDataLength);
pData = GetData(); // Do it again, because the fork might have changed it
}
pData->Lock();
return m_pszData;
}
void UnlockBuffer()
{
CMStringData* pData = GetData();
pData->Unlock();
}
void Preallocate(int nLength)
{
PrepareWrite(nLength);
}
void ReleaseBuffer(int nNewLength = -1)
{
if (nNewLength == -1) {
int nAlloc = GetData()->nAllocLength;
nNewLength = StringLengthN(m_pszData, nAlloc);
}
SetLength(nNewLength);
}
void ReleaseBufferSetLength(int nNewLength)
{
SetLength(nNewLength);
}
void Truncate(int nNewLength)
{
GetBuffer(nNewLength);
ReleaseBufferSetLength(nNewLength);
}
void SetAt(int iChar, XCHAR ch)
{
int nLength = GetLength();
PXSTR pszBuffer = GetBuffer();
pszBuffer[iChar] = ch;
ReleaseBufferSetLength(nLength);
}
void SetString(PCXSTR pszSrc)
{
SetString(pszSrc, StringLength(pszSrc));
}
void SetString(PCXSTR pszSrc, int nLength)
{
if (nLength == 0)
Empty();
else {
UINT nOldLength = GetLength();
UINT_PTR nOffset = pszSrc - GetString();
PXSTR pszBuffer = GetBuffer(nLength);
if (nOffset <= nOldLength)
CopyCharsOverlapped(pszBuffer, GetAllocLength(), pszBuffer + nOffset, nLength);
else
CopyChars(pszBuffer, GetAllocLength(), pszSrc, nLength);
ReleaseBufferSetLength(nLength);
}
}
public:
friend CMSimpleStringT __stdcall operator+(const CMSimpleStringT& str1, const CMSimpleStringT& str2)
{
CMSimpleStringT s;
Concatenate(s, str1, str1.GetLength(), str2, str2.GetLength());
return s;
}
friend CMSimpleStringT __stdcall operator+(const CMSimpleStringT& str1, PCXSTR psz2)
{
CMSimpleStringT s;
Concatenate(s, str1, str1.GetLength(), psz2, StringLength(psz2));
return s;
}
friend CMSimpleStringT __stdcall operator+(PCXSTR psz1, const CMSimpleStringT& str2)
{
CMSimpleStringT s;
Concatenate(s, psz1, StringLength(psz1), str2, str2.GetLength());
return s;
}
static void __stdcall CopyChars(XCHAR* pchDest, const XCHAR* pchSrc, int nChars)
{
#pragma warning (push)
#pragma warning(disable : 4996)
memcpy(pchDest, pchSrc, nChars * sizeof(XCHAR));
#pragma warning (pop)
}
static void __stdcall CopyChars(XCHAR* pchDest, size_t nDestLen, const XCHAR* pchSrc, int nChars)
{
memcpy_s(pchDest, nDestLen * sizeof(XCHAR), pchSrc, nChars * sizeof(XCHAR));
}
static void __stdcall CopyCharsOverlapped(XCHAR* pchDest, const XCHAR* pchSrc, int nChars)
{
#pragma warning (push)
#pragma warning(disable : 4996)
memmove(pchDest, pchSrc, nChars * sizeof(XCHAR));
#pragma warning (pop)
}
static void __stdcall CopyCharsOverlapped(XCHAR* pchDest, size_t nDestLen, const XCHAR* pchSrc, int nChars)
{
memmove_s(pchDest, nDestLen * sizeof(XCHAR), pchSrc, nChars * sizeof(XCHAR));
}
static int __stdcall StringLength(const char* psz)
{
if (psz == NULL)
return(0);
return (int(strlen(psz)));
}
static int __stdcall StringLength(const wchar_t* psz)
{
if (psz == NULL)
return 0;
return int(wcslen(psz));
}
static int __stdcall StringLengthN(const char* psz, size_t sizeInXChar)
{
if (psz == NULL)
return 0;
return int(strnlen(psz, sizeInXChar));
}
static int __stdcall StringLengthN(const wchar_t* psz, size_t sizeInXChar)
{
if (psz == NULL)
return 0;
return int(wcsnlen(psz, sizeInXChar));
}
protected:
static void __stdcall Concatenate(CMSimpleStringT& strResult, PCXSTR psz1, int nLength1, PCXSTR psz2, int nLength2)
{
int nNewLength = nLength1+nLength2;
PXSTR pszBuffer = strResult.GetBuffer(nNewLength);
CopyChars(pszBuffer, nLength1, psz1, nLength1);
CopyChars(pszBuffer + nLength1, nLength2, psz2, nLength2);
strResult.ReleaseBufferSetLength(nNewLength);
}
// Implementation
private:
void Attach(CMStringData* pData)
{
m_pszData = static_cast<PXSTR>(pData->data());
}
void Fork(int nLength)
{
CMStringData* pOldData = GetData();
int nOldLength = pOldData->nDataLength;
CMStringData* pNewData = mirstr_allocate(nLength, sizeof(XCHAR));
if (pNewData != NULL) {
int nCharsToCopy = ((nOldLength < nLength) ? nOldLength : nLength)+1; // Copy '\0'
CopyChars(PXSTR(pNewData->data()), nCharsToCopy, PCXSTR(pOldData->data()), nCharsToCopy);
pNewData->nDataLength = nOldLength;
pOldData->Release();
Attach(pNewData);
}
}
CMStringData* GetData() const
{
return (reinterpret_cast<CMStringData *>(m_pszData) - 1);
}
PXSTR PrepareWrite(int nLength)
{
CMStringData* pOldData = GetData();
int nShared = 1 - pOldData->nRefs; // nShared < 0 means true, >= 0 means false
int nTooShort = pOldData->nAllocLength-nLength; // nTooShort < 0 means true, >= 0 means false
if ((nShared | nTooShort) < 0) // If either sign bit is set (i.e. either is less than zero), we need to copy data
PrepareWrite2(nLength);
return m_pszData;
}
void PrepareWrite2(int nLength)
{
CMStringData* pOldData = GetData();
if (pOldData->nDataLength > nLength)
nLength = pOldData->nDataLength;
if (pOldData->IsShared())
{
Fork(nLength);
}
else if (pOldData->nAllocLength < nLength) {
// Grow exponentially, until we hit 1K.
int nNewLength = pOldData->nAllocLength;
if (nNewLength > 1024)
nNewLength += 1024;
else
nNewLength *= 2;
if (nNewLength < nLength)
nNewLength = nLength;
Reallocate(nNewLength);
}
}
void Reallocate(int nLength)
{
CMStringData* pOldData = GetData();
if (pOldData->nAllocLength >= nLength || nLength <= 0)
return;
CMStringData* pNewData = mirstr_realloc(pOldData, nLength, sizeof(XCHAR));
if (pNewData != NULL)
Attach(pNewData);
}
void SetLength(int nLength)
{
GetData()->nDataLength = nLength;
m_pszData[nLength] = 0;
}
static CMStringData* __stdcall CloneData(CMStringData* pData)
{
CMStringData* pNewData = NULL;
if (!pData->IsLocked()) {
pNewData = pData;
pNewData->AddRef();
}
return pNewData;
}
public :
// typedef CStrBufT<BaseType> CStrBuf;
private:
PXSTR m_pszData;
};
template< typename _CharType = char >
class ChTraitsCRT : public ChTraitsBase< _CharType >
{
public:
static char* __stdcall CharNext(const char* p)
{
return reinterpret_cast< char* >(_mbsinc(reinterpret_cast< const unsigned char* >(p)));
}
static int __stdcall IsDigit(char ch)
{
return _ismbcdigit(ch);
}
static int __stdcall IsSpace(char ch)
{
return _ismbcspace(ch);
}
static int __stdcall StringCompare(LPCSTR pszA, LPCSTR pszB)
{
return _mbscmp(reinterpret_cast< const unsigned char* >(pszA), reinterpret_cast< const unsigned char* >(pszB));
}
static int __stdcall StringCompareIgnore(LPCSTR pszA, LPCSTR pszB)
{
return _mbsicmp(reinterpret_cast< const unsigned char* >(pszA), reinterpret_cast< const unsigned char* >(pszB));
}
static int __stdcall StringCollate(LPCSTR pszA, LPCSTR pszB)
{
return _mbscoll(reinterpret_cast< const unsigned char* >(pszA), reinterpret_cast< const unsigned char* >(pszB));
}
static int __stdcall StringCollateIgnore(LPCSTR pszA, LPCSTR pszB)
{
return _mbsicoll(reinterpret_cast< const unsigned char* >(pszA), reinterpret_cast< const unsigned char* >(pszB));
}
static LPCSTR __stdcall StringFindString(LPCSTR pszBlock, LPCSTR pszMatch)
{
return reinterpret_cast< LPCSTR >(_mbsstr(reinterpret_cast< const unsigned char* >(pszBlock),
reinterpret_cast< const unsigned char* >(pszMatch)));
}
static LPSTR __stdcall StringFindString(LPSTR pszBlock, LPCSTR pszMatch)
{
return const_cast< LPSTR >(StringFindString(const_cast< LPCSTR >(pszBlock), pszMatch));
}
static LPCSTR __stdcall StringFindChar(LPCSTR pszBlock, char chMatch)
{
return reinterpret_cast< LPCSTR >(_mbschr(reinterpret_cast< const unsigned char* >(pszBlock), (unsigned char)chMatch));
}
static LPCSTR __stdcall StringFindCharRev(LPCSTR psz, char ch)
{
return reinterpret_cast< LPCSTR >(_mbsrchr(reinterpret_cast< const unsigned char* >(psz), (unsigned char)ch));
}
static LPCSTR __stdcall StringScanSet(LPCSTR pszBlock, LPCSTR pszMatch)
{
return reinterpret_cast< LPCSTR >(_mbspbrk(reinterpret_cast< const unsigned char* >(pszBlock),
reinterpret_cast< const unsigned char* >(pszMatch)));
}
static int __stdcall StringSpanIncluding(LPCSTR pszBlock, LPCSTR pszSet)
{
return (int)_mbsspn(reinterpret_cast< const unsigned char* >(pszBlock), reinterpret_cast< const unsigned char* >(pszSet));
}
static int __stdcall StringSpanExcluding(LPCSTR pszBlock, LPCSTR pszSet)
{
return (int)_mbscspn(reinterpret_cast< const unsigned char* >(pszBlock), reinterpret_cast< const unsigned char* >(pszSet));
}
static LPSTR __stdcall StringUppercase(LPSTR psz)
{
#pragma warning (push)
#pragma warning(disable : 4996)
return reinterpret_cast< LPSTR >(_mbsupr(reinterpret_cast< unsigned char* >(psz)));
#pragma warning (pop)
}
static LPSTR __stdcall StringLowercase(LPSTR psz)
{
#pragma warning (push)
#pragma warning(disable : 4996)
return reinterpret_cast< LPSTR >(_mbslwr(reinterpret_cast< unsigned char* >(psz)));
#pragma warning (pop)
}
static LPSTR __stdcall StringUppercase(LPSTR psz, size_t size)
{
#if _MSC_VER >= 1400
_mbsupr_s(reinterpret_cast< unsigned char* >(psz), size);
#else
_mbsupr(reinterpret_cast< unsigned char* >(psz));
#endif
return psz;
}
static LPSTR __stdcall StringLowercase(LPSTR psz, size_t size)
{
#if _MSC_VER >= 1400
_mbslwr_s(reinterpret_cast< unsigned char* >(psz), size);
#else
_mbslwr(reinterpret_cast< unsigned char* >(psz));
#endif
return psz;
}
static LPSTR __stdcall StringReverse(LPSTR psz)
{
return reinterpret_cast< LPSTR >(_mbsrev(reinterpret_cast< unsigned char* >(psz)));
}
static int __stdcall GetFormattedLength(LPCSTR pszFormat, va_list args);
static int __stdcall Format(LPSTR pszBuffer, size_t nlength, LPCSTR pszFormat, va_list args);
static int __stdcall GetBaseTypeLength(LPCSTR pszSrc)
{
// Returns required buffer length in XCHARs
return int(strlen(pszSrc));
}
static int __stdcall GetBaseTypeLength(LPCSTR pszSrc, int nLength)
{
(void)pszSrc;
// Returns required buffer length in XCHARs
return nLength;
}
static int __stdcall GetBaseTypeLength(LPCWSTR pszSource)
{
// Returns required buffer length in XCHARs
return ::WideCharToMultiByte(Langpack_GetDefaultCodePage(), 0, pszSource, -1, NULL, 0, NULL, NULL)-1;
}
static int __stdcall GetBaseTypeLength(LPCWSTR pszSource, int nLength)
{
// Returns required buffer length in XCHARs
return ::WideCharToMultiByte(Langpack_GetDefaultCodePage(), 0, pszSource, nLength, NULL, 0, NULL, NULL);
}
static void __stdcall ConvertToBaseType(LPSTR pszDest, int nDestLength, LPCSTR pszSrc, int nSrcLength = -1)
{
if (nSrcLength == -1) { nSrcLength=1 + GetBaseTypeLength(pszSrc); }
// nLen is in XCHARs
memcpy_s(pszDest, nDestLength*sizeof(char), pszSrc, nSrcLength*sizeof(char));
}
static void __stdcall ConvertToBaseType(LPSTR pszDest, int nDestLength, LPCWSTR pszSrc, int nSrcLength = -1)
{
// nLen is in XCHARs
::WideCharToMultiByte(Langpack_GetDefaultCodePage(), 0, pszSrc, nSrcLength, pszDest, nDestLength, NULL, NULL);
}
static void ConvertToOem(_CharType* pstrString)
{
BOOL fSuccess=::CharToOemA(pstrString, pstrString);
}
static void ConvertToAnsi(_CharType* pstrString)
{
BOOL fSuccess=::OemToCharA(pstrString, pstrString);
}
static void ConvertToOem(_CharType* pstrString, size_t size)
{
if (size>UINT_MAX)
{
return;
}
DWORD dwSize=static_cast<DWORD>(size);
BOOL fSuccess=::CharToOemBuffA(pstrString, pstrString, dwSize);
}
static void ConvertToAnsi(_CharType* pstrString, size_t size)
{
if (size>UINT_MAX)
return;
DWORD dwSize=static_cast<DWORD>(size);
BOOL fSuccess=::OemToCharBuffA(pstrString, pstrString, dwSize);
}
static void __stdcall FloodCharacters(char ch, int nLength, char* pch)
{
// nLength is in XCHARs
memset(pch, ch, nLength);
}
static BSTR __stdcall AllocSysString(const char* pchData, int nDataLength)
{
int nLen = ::MultiByteToWideChar(Langpack_GetDefaultCodePage(), 0, pchData, nDataLength, NULL, NULL);
BSTR bstr = ::SysAllocStringLen(NULL, nLen);
if (bstr != NULL)
::MultiByteToWideChar(Langpack_GetDefaultCodePage(), 0, pchData, nDataLength, bstr, nLen);
return bstr;
}
static BOOL __stdcall ReAllocSysString(const char* pchData, BSTR* pbstr, int nDataLength)
{
int nLen = ::MultiByteToWideChar(Langpack_GetDefaultCodePage(), 0, pchData, nDataLength, NULL, NULL);
BOOL bSuccess = ::SysReAllocStringLen(pbstr, NULL, nLen);
if (bSuccess)
::MultiByteToWideChar(Langpack_GetDefaultCodePage(), 0, pchData, nDataLength, *pbstr, nLen);
return bSuccess;
}
static int __stdcall SafeStringLen(LPCSTR psz)
{
// returns length in bytes
return (psz != NULL) ? int(strlen(psz)) : 0;
}
static int __stdcall SafeStringLen(LPCWSTR psz)
{
// returns length in wchar_ts
return (psz != NULL) ? int(wcslen(psz)) : 0;
}
static int __stdcall GetCharLen(const wchar_t* pch)
{
// returns char length
return 1;
}
static int __stdcall GetCharLen(const char* pch)
{
// returns char length
return int(_mbclen(reinterpret_cast< const unsigned char* >(pch)));
}
static DWORD __stdcall GetEnvironmentVariable(LPCSTR pszVar, LPSTR pszBuffer, DWORD dwSize)
{
return ::GetEnvironmentVariableA(pszVar, pszBuffer, dwSize);
}
};
// specialization for wchar_t
template<>
class ChTraitsCRT< wchar_t > : public ChTraitsBase< wchar_t >
{
static DWORD __stdcall _GetEnvironmentVariableW(LPCWSTR pszName, LPWSTR pszBuffer, DWORD nSize)
{
return ::GetEnvironmentVariableW(pszName, pszBuffer, nSize);
}
public:
static LPWSTR __stdcall CharNext(LPCWSTR psz)
{
return const_cast< LPWSTR >(psz+1);
}
static int __stdcall IsDigit(wchar_t ch)
{
return iswdigit(static_cast<unsigned short>(ch));
}
static int __stdcall IsSpace(wchar_t ch)
{
return iswspace(static_cast<unsigned short>(ch));
}
static int __stdcall StringCompare(LPCWSTR pszA, LPCWSTR pszB)
{
return wcscmp(pszA, pszB);
}
static int __stdcall StringCompareIgnore(LPCWSTR pszA, LPCWSTR pszB)
{
return _wcsicmp(pszA, pszB);
}
static int __stdcall StringCollate(LPCWSTR pszA, LPCWSTR pszB)
{
return wcscoll(pszA, pszB);
}
static int __stdcall StringCollateIgnore(LPCWSTR pszA, LPCWSTR pszB)
{
return _wcsicoll(pszA, pszB);
}
static LPCWSTR __stdcall StringFindString(LPCWSTR pszBlock, LPCWSTR pszMatch)
{
return wcsstr(pszBlock, pszMatch);
}
static LPWSTR __stdcall StringFindString(LPWSTR pszBlock, LPCWSTR pszMatch)
{
return const_cast< LPWSTR >(StringFindString(const_cast< LPCWSTR >(pszBlock), pszMatch));
}
static LPCWSTR __stdcall StringFindChar(LPCWSTR pszBlock, wchar_t chMatch)
{
return wcschr(pszBlock, chMatch);
}
static LPCWSTR __stdcall StringFindCharRev(LPCWSTR psz, wchar_t ch)
{
return wcsrchr(psz, ch);
}
static LPCWSTR __stdcall StringScanSet(LPCWSTR pszBlock, LPCWSTR pszMatch)
{
return wcspbrk(pszBlock, pszMatch);
}
static int __stdcall StringSpanIncluding(LPCWSTR pszBlock, LPCWSTR pszSet)
{
return (int)wcsspn(pszBlock, pszSet);
}
static int __stdcall StringSpanExcluding(LPCWSTR pszBlock, LPCWSTR pszSet)
{
return (int)wcscspn(pszBlock, pszSet);
}
static LPWSTR __stdcall StringUppercase(LPWSTR psz)
{
#pragma warning (push)
#pragma warning(disable : 4996)
return _wcsupr(psz);
#pragma warning (pop)
}
static LPWSTR __stdcall StringLowercase(LPWSTR psz)
{
#pragma warning (push)
#pragma warning(disable : 4996)
return _wcslwr(psz);
#pragma warning (pop)
}
static LPWSTR __stdcall StringUppercase(LPWSTR psz, size_t)
{
return _wcsupr(psz);
}
static LPWSTR __stdcall StringLowercase(LPWSTR psz, size_t)
{
return _wcslwr(psz);
}
static LPWSTR __stdcall StringReverse(LPWSTR psz)
{
return _wcsrev(psz);
}
static int __stdcall GetFormattedLength(LPCWSTR pszFormat, va_list args);
static int __stdcall Format(LPWSTR pszBuffer, LPCWSTR pszFormat, va_list args)
{
#pragma warning (push)
#pragma warning(disable : 4996)
return vswprintf(pszBuffer, pszFormat, args); //!!!!!!!!!
#pragma warning (pop)
}
static int __stdcall Format(LPWSTR pszBuffer, size_t nLength, LPCWSTR pszFormat, va_list args);
static int __stdcall GetBaseTypeLength(LPCSTR pszSrc)
{
// Returns required buffer size in wchar_ts
return ::MultiByteToWideChar(CP_ACP, 0, pszSrc, -1, NULL, 0)-1;
}
static int __stdcall GetBaseTypeLength(LPCSTR pszSrc, int nLength)
{
// Returns required buffer size in wchar_ts
return ::MultiByteToWideChar(CP_ACP, 0, pszSrc, nLength, NULL, 0);
}
static int __stdcall GetBaseTypeLength(LPCWSTR pszSrc)
{
// Returns required buffer size in wchar_ts
return (int)wcslen(pszSrc);
}
static int __stdcall GetBaseTypeLength(LPCWSTR pszSrc, int nLength)
{
(void)pszSrc;
// Returns required buffer size in wchar_ts
return nLength;
}
static void __stdcall ConvertToBaseType(LPWSTR pszDest, int nDestLength, LPCSTR pszSrc, int nSrcLength = -1)
{
// nLen is in wchar_ts
::MultiByteToWideChar(CP_ACP, 0, pszSrc, nSrcLength, pszDest, nDestLength);
}
static void __stdcall ConvertToBaseType(LPWSTR pszDest, int nDestLength, LPCWSTR pszSrc, int nSrcLength = -1)
{
if (nSrcLength == -1) { nSrcLength=1 + GetBaseTypeLength(pszSrc); }
// nLen is in wchar_ts
#if _MSC_VER >= 1400
wmemcpy_s(pszDest, nDestLength, pszSrc, nSrcLength);
#else
wmemcpy(pszDest, pszSrc, nDestLength);
#endif
}
static void __stdcall FloodCharacters(wchar_t ch, int nLength, LPWSTR psz)
{
// nLength is in XCHARs
for (int i = 0; i < nLength; i++)
{
psz[i] = ch;
}
}
static BSTR __stdcall AllocSysString(const wchar_t* pchData, int nDataLength)
{
return ::SysAllocStringLen(pchData, nDataLength);
}
static BOOL __stdcall ReAllocSysString(const wchar_t* pchData, BSTR* pbstr, int nDataLength)
{
return ::SysReAllocStringLen(pbstr, pchData, nDataLength);
}
static int __stdcall SafeStringLen(LPCSTR psz)
{
// returns length in bytes
return (psz != NULL) ? (int)strlen(psz) : 0;
}
static int __stdcall SafeStringLen(LPCWSTR psz)
{
// returns length in wchar_ts
return (psz != NULL) ? (int)wcslen(psz) : 0;
}
static int __stdcall GetCharLen(const wchar_t* pch)
{
(void)pch;
// returns char length
return 1;
}
static int __stdcall GetCharLen(const char* pch)
{
// returns char length
return (int)(_mbclen(reinterpret_cast< const unsigned char* >(pch)));
}
static DWORD __stdcall GetEnvironmentVariable(LPCWSTR pszVar, LPWSTR pszBuffer, DWORD dwSize)
{
return _GetEnvironmentVariableW(pszVar, pszBuffer, dwSize);
}
static void __stdcall ConvertToOem(LPWSTR /*psz*/)
{
}
static void __stdcall ConvertToAnsi(LPWSTR /*psz*/)
{
}
static void __stdcall ConvertToOem(LPWSTR /*psz*/, size_t)
{
}
static void __stdcall ConvertToAnsi(LPWSTR /*psz*/, size_t)
{
}
};
template< typename BaseType, class StringTraits >
class CMStringT : public CMSimpleStringT< BaseType >
{
public:
typedef CMSimpleStringT< BaseType> CThisSimpleString;
typedef typename CThisSimpleString::XCHAR XCHAR;
typedef typename CThisSimpleString::PXSTR PXSTR;
typedef typename CThisSimpleString::PCXSTR PCXSTR;
typedef typename CThisSimpleString::YCHAR YCHAR;
typedef typename CThisSimpleString::PYSTR PYSTR;
typedef typename CThisSimpleString::PCYSTR PCYSTR;
public:
CMStringT() : CThisSimpleString()
{
}
static void __stdcall Construct(CMStringT* pString)
{
new(pString) CMStringT;
}
// Copy constructor
CMStringT(const CMStringT& strSrc) :
CThisSimpleString(strSrc)
{
}
CMStringT(const XCHAR* pszSrc) :
CThisSimpleString()
{
*this = pszSrc;
}
CMStringT(CMStringDataFormat, const XCHAR* pszFormat, ...) :
CThisSimpleString()
{
va_list args;
va_start(args, pszFormat);
FormatV(pszFormat, args);
}
CMStringT(const YCHAR* pszSrc) :
CThisSimpleString()
{
*this = pszSrc;
}
CMStringT(const unsigned char* pszSrc) :
CThisSimpleString()
{
*this = reinterpret_cast<const char*>(pszSrc);
}
CMStringT(char ch, int nLength = 1) :
CThisSimpleString()
{
if (nLength > 0) {
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::FloodCharacters(XCHAR(ch), nLength, pszBuffer);
this->ReleaseBufferSetLength(nLength);
}
}
CMStringT(wchar_t ch, int nLength = 1) :
CThisSimpleString()
{
if (nLength > 0) {
//Convert ch to the BaseType
wchar_t pszCh[2] = { ch, 0 };
int nBaseTypeCharLen = 1;
if (ch != L'\0')
nBaseTypeCharLen = StringTraits::GetBaseTypeLength(pszCh);
XCHAR *buffBaseTypeChar = new XCHAR[nBaseTypeCharLen + 1];
StringTraits::ConvertToBaseType(buffBaseTypeChar, nBaseTypeCharLen + 1, pszCh, 1);
//allocate enough characters in String and flood (replicate) with the (converted character)*nLength
PXSTR pszBuffer = this->GetBuffer(nLength*nBaseTypeCharLen);
if (nBaseTypeCharLen == 1) //Optimization for a common case - wide char translates to 1 ansi/wide char.
StringTraits::FloodCharacters(buffBaseTypeChar[0], nLength, pszBuffer);
else {
XCHAR* p = pszBuffer;
for (int i = 0; i < nLength; i++) {
for (int j = 0; j < nBaseTypeCharLen; ++j) {
*p = buffBaseTypeChar[j];
++p;
}
}
}
this->ReleaseBufferSetLength(nLength*nBaseTypeCharLen);
delete[] buffBaseTypeChar;
}
}
CMStringT(const XCHAR* pch, int nLength) :
CThisSimpleString(pch, nLength)
{}
CMStringT(const YCHAR* pch, int nLength) :
CThisSimpleString()
{
if (nLength > 0) {
int nDestLength = StringTraits::GetBaseTypeLength(pch, nLength);
PXSTR pszBuffer = this->GetBuffer(nDestLength);
StringTraits::ConvertToBaseType(pszBuffer, nDestLength, pch, nLength);
this->ReleaseBufferSetLength(nDestLength);
}
}
// Destructor
~CMStringT()
{}
// Assignment operators
CMStringT& operator=(const CMStringT& strSrc)
{
CThisSimpleString::operator=(strSrc);
return *this;
}
CMStringT& operator=(PCXSTR pszSrc)
{
CThisSimpleString::operator=(pszSrc);
return *this;
}
CMStringT& operator=(PCYSTR pszSrc)
{
// nDestLength is in XCHARs
int nDestLength = (pszSrc != NULL) ? StringTraits::GetBaseTypeLength(pszSrc) : 0;
if (nDestLength > 0) {
PXSTR pszBuffer = this->GetBuffer(nDestLength);
StringTraits::ConvertToBaseType(pszBuffer, nDestLength, pszSrc);
this->ReleaseBufferSetLength(nDestLength);
}
else this->Empty();
return *this;
}
CMStringT& operator=(const unsigned char* pszSrc)
{
return operator=(reinterpret_cast<const char*>(pszSrc));
}
CMStringT& operator=(char ch)
{
char ach[2] = { ch, 0 };
return operator=(ach);
}
CMStringT& operator=(wchar_t ch)
{
wchar_t ach[2] = { ch, 0 };
return operator=(ach);
}
// CMStringT& operator=(const VARIANT& var);
CMStringT& operator+=(const CMStringT& str)
{
CThisSimpleString::operator+=(str);
return *this;
}
CMStringT& operator+=(const CThisSimpleString& str)
{
CThisSimpleString::operator+=(str);
return *this;
}
CMStringT& operator+=(PCXSTR pszSrc)
{
CThisSimpleString::operator+=(pszSrc);
return *this;
}
CMStringT& operator+=(PCYSTR pszSrc)
{
CMStringT str(pszSrc);
return operator+=(str);
}
CMStringT& operator+=(char ch)
{
CThisSimpleString::operator+=(ch);
return *this;
}
CMStringT& operator+=(unsigned char ch)
{
CThisSimpleString::operator+=(ch);
return *this;
}
CMStringT& operator+=(wchar_t ch)
{
CThisSimpleString::operator+=(ch);
return *this;
}
// Comparison
int Compare(PCXSTR psz) const
{
return StringTraits::StringCompare(this->GetString(), psz);
}
int CompareNoCase(PCXSTR psz) const
{
return StringTraits::StringCompareIgnore(this->GetString(), psz);
}
int Collate(PCXSTR psz) const
{
return StringTraits::StringCollate(this->GetString(), psz);
}
int CollateNoCase(PCXSTR psz) const
{
return StringTraits::StringCollateIgnore(this->GetString(), psz);
}
// Advanced manipulation
// Delete 'nCount' characters, starting at index 'iIndex'
int Delete(int iIndex, int nCount = 1)
{
if (iIndex < 0)
iIndex = 0;
if (nCount < 0)
nCount = 0;
int nLength = this->GetLength();
if (nCount + iIndex > nLength)
nCount = nLength-iIndex;
if (nCount > 0) {
int nNewLength = nLength-nCount;
int nXCHARsToCopy = nLength-(iIndex+nCount)+1;
PXSTR pszBuffer = this->GetBuffer();
#if _MSC_VER >= 1400
memmove_s(pszBuffer+iIndex, nXCHARsToCopy*sizeof(XCHAR), pszBuffer+iIndex+nCount, nXCHARsToCopy*sizeof(XCHAR));
#else
memmove(pszBuffer+iIndex, pszBuffer+iIndex+nCount, nXCHARsToCopy*sizeof(XCHAR));
#endif
this->ReleaseBufferSetLength(nNewLength);
}
return this->GetLength();
}
// Insert character 'ch' before index 'iIndex'
int Insert(int iIndex, XCHAR ch)
{
if (iIndex < 0)
iIndex = 0;
if (iIndex > this->GetLength())
iIndex = this->GetLength();
int nNewLength = this->GetLength()+1;
PXSTR pszBuffer = this->GetBuffer(nNewLength);
// move existing bytes down
#if _MSC_VER >= 1400
memmove_s(pszBuffer+iIndex+1, (nNewLength-iIndex)*sizeof(XCHAR), pszBuffer+iIndex, (nNewLength-iIndex)*sizeof(XCHAR));
#else
memmove(pszBuffer+iIndex+1, pszBuffer+iIndex, (nNewLength-iIndex)*sizeof(XCHAR));
#endif
pszBuffer[iIndex] = ch;
this->ReleaseBufferSetLength(nNewLength);
return nNewLength;
}
// Insert string 'psz' before index 'iIndex'
int Insert(int iIndex, PCXSTR psz)
{
if (iIndex < 0)
iIndex = 0;
if (iIndex > this->GetLength())
iIndex = this->GetLength();
// nInsertLength and nNewLength are in XCHARs
int nInsertLength = StringTraits::SafeStringLen(psz);
int nNewLength = this->GetLength();
if (nInsertLength > 0) {
nNewLength += nInsertLength;
PXSTR pszBuffer = this->GetBuffer(nNewLength);
// move existing bytes down
#if _MSC_VER >= 1400
memmove_s(pszBuffer+iIndex+nInsertLength, (nNewLength-iIndex-nInsertLength+1)*sizeof(XCHAR), pszBuffer+iIndex, (nNewLength-iIndex-nInsertLength+1)*sizeof(XCHAR));
memcpy_s(pszBuffer+iIndex, nInsertLength*sizeof(XCHAR), psz, nInsertLength*sizeof(XCHAR));
#else
memmove(pszBuffer+iIndex+nInsertLength, pszBuffer+iIndex, (nNewLength-iIndex-nInsertLength+1)*sizeof(XCHAR));
memcpy(pszBuffer+iIndex, psz, nInsertLength*sizeof(XCHAR));
#endif
this->ReleaseBufferSetLength(nNewLength);
}
return nNewLength;
}
// Replace all occurrences of character 'chOld' with character 'chNew'
int Replace(XCHAR chOld, XCHAR chNew)
{
int nCount = 0;
// short-circuit the nop case
if (chOld != chNew) {
// otherwise modify each character that matches in the string
bool bCopied = false;
PXSTR pszBuffer = const_cast< PXSTR >(this->GetString()); // We don't actually write to pszBuffer until we've called GetBuffer().
int nLength = this->GetLength();
int iChar = 0;
while (iChar < nLength) {
// replace instances of the specified character only
if (pszBuffer[iChar] == chOld) {
if (!bCopied) {
bCopied = true;
pszBuffer = this->GetBuffer(nLength);
}
pszBuffer[iChar] = chNew;
nCount++;
}
iChar = int(StringTraits::CharNext(pszBuffer + iChar) - pszBuffer);
}
if (bCopied)
this->ReleaseBufferSetLength(nLength);
}
return nCount;
}
// Replace all occurrences of string 'pszOld' with string 'pszNew'
int Replace(PCXSTR pszOld, PCXSTR pszNew)
{
// can't have empty or NULL lpszOld
// nSourceLen is in XCHARs
int nSourceLen = StringTraits::SafeStringLen(pszOld);
if (nSourceLen == 0)
return 0;
// nReplacementLen is in XCHARs
int nReplacementLen = StringTraits::SafeStringLen(pszNew);
// loop once to figure out the size of the result string
int nCount = 0;
{
PCXSTR pszStart = this->GetString();
PCXSTR pszEnd = pszStart + this->GetLength();
while (pszStart < pszEnd) {
PCXSTR pszTarget;
while ((pszTarget = StringTraits::StringFindString(pszStart, pszOld)) != NULL) {
nCount++;
pszStart = pszTarget + nSourceLen;
}
pszStart += StringTraits::SafeStringLen(pszStart) + 1;
}
}
// if any changes were made, make them
if (nCount > 0) {
// if the buffer is too small, just
// allocate a new buffer (slow but sure)
int nOldLength = this->GetLength();
int nNewLength = nOldLength+(nReplacementLen-nSourceLen)*nCount;
PXSTR pszBuffer = this->GetBuffer(__max(nNewLength, nOldLength));
PXSTR pszStart = pszBuffer;
PXSTR pszEnd = pszStart+nOldLength;
// loop again to actually do the work
while (pszStart < pszEnd) {
PXSTR pszTarget;
while ((pszTarget = StringTraits::StringFindString(pszStart, pszOld)) != NULL) {
int nBalance = nOldLength - int(pszTarget - pszBuffer + nSourceLen);
memmove_s(pszTarget + nReplacementLen, nBalance*sizeof(XCHAR),
pszTarget + nSourceLen, nBalance*sizeof(XCHAR));
memcpy_s(pszTarget, nReplacementLen*sizeof(XCHAR),
pszNew, nReplacementLen*sizeof(XCHAR));
pszStart = pszTarget + nReplacementLen;
pszTarget[nReplacementLen + nBalance] = 0;
nOldLength += (nReplacementLen - nSourceLen);
}
pszStart += StringTraits::SafeStringLen(pszStart) + 1;
}
this->ReleaseBufferSetLength(nNewLength);
}
return nCount;
}
// Remove all occurrences of character 'chRemove'
int Remove(XCHAR chRemove)
{
int nLength = this->GetLength();
PXSTR pszBuffer = this->GetBuffer(nLength);
PXSTR pszSource = pszBuffer;
PXSTR pszDest = pszBuffer;
PXSTR pszEnd = pszBuffer+nLength;
while (pszSource < pszEnd) {
PXSTR pszNewSource = StringTraits::CharNext(pszSource);
if (*pszSource != chRemove) {
// Copy the source to the destination. Remember to copy all bytes of an MBCS character
// Copy the source to the destination. Remember to copy all bytes of an MBCS character
size_t NewSourceGap = (pszNewSource - pszSource);
PXSTR pszNewDest = pszDest + NewSourceGap;
for (size_t i = 0; pszDest != pszNewDest && i < NewSourceGap; i++) {
*pszDest = *pszSource;
pszSource++;
pszDest++;
}
}
pszSource = pszNewSource;
}
*pszDest = 0;
int nCount = int(pszSource - pszDest);
this->ReleaseBufferSetLength(nLength - nCount);
return nCount;
}
CMStringT Tokenize(PCXSTR pszTokens, int& iStart) const
{
if ((pszTokens == NULL) || (*pszTokens == (XCHAR)0)) {
if (iStart < this->GetLength())
return CMStringT(this->GetString() + iStart);
}
else {
PCXSTR pszPlace = this->GetString() + iStart;
PCXSTR pszEnd = this->GetString() + this->GetLength();
if (pszPlace < pszEnd) {
int nIncluding = StringTraits::StringSpanIncluding(pszPlace, pszTokens);
if ((pszPlace + nIncluding) < pszEnd) {
pszPlace += nIncluding;
int nExcluding = StringTraits::StringSpanExcluding(pszPlace, pszTokens);
int iFrom = iStart + nIncluding;
int nUntil = nExcluding;
iStart = iFrom + nUntil + 1;
return Mid(iFrom, nUntil);
}
}
}
// return empty string, done tokenizing
iStart = -1;
return CMStringT();
}
// find routines
// Find the first occurrence of character 'ch', starting at index 'iStart'
int Find(XCHAR ch, int iStart = 0) const
{
// nLength is in XCHARs
int nLength = this->GetLength();
if (iStart < 0 || iStart >= nLength)
return -1;
// find first single character
PCXSTR psz = StringTraits::StringFindChar(this->GetString() + iStart, ch);
// return -1 if not found and index otherwise
return (psz == NULL) ? -1 : int(psz - this->GetString());
}
// look for a specific sub-string
// Find the first occurrence of string 'pszSub', starting at index 'iStart'
int Find(PCXSTR pszSub, int iStart = 0) const
{
// iStart is in XCHARs
if (pszSub == NULL)
return -1;
// nLength is in XCHARs
int nLength = this->GetLength();
if (iStart < 0 || iStart > nLength)
return -1;
// find first matching substring
PCXSTR psz = StringTraits::StringFindString(this->GetString() + iStart, pszSub);
// return -1 for not found, distance from beginning otherwise
return (psz == NULL) ? -1 : int(psz - this->GetString());
}
// Find the first occurrence of any of the characters in string 'pszCharSet'
int FindOneOf(PCXSTR pszCharSet) const
{
PCXSTR psz = StringTraits::StringScanSet(this->GetString(), pszCharSet);
return (psz == NULL) ? -1 : int(psz - this->GetString());
}
// Find the last occurrence of character 'ch'
int ReverseFind(XCHAR ch) const
{
// find last single character
PCXSTR psz = StringTraits::StringFindCharRev(this->GetString(), ch);
// return -1 if not found, distance from beginning otherwise
return (psz == NULL) ? -1 : int(psz - this->GetString());
}
// manipulation
// Convert the string to uppercase
CMStringT& MakeUpper()
{
int nLength = this->GetLength();
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::StringUppercase(pszBuffer, nLength + 1);
this->ReleaseBufferSetLength(nLength);
return *this;
}
// Convert the string to lowercase
CMStringT& MakeLower()
{
int nLength = this->GetLength();
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::StringLowercase(pszBuffer, nLength + 1);
this->ReleaseBufferSetLength(nLength);
return *this;
}
// Reverse the string
CMStringT& MakeReverse()
{
int nLength = this->GetLength();
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::StringReverse(pszBuffer);
this->ReleaseBufferSetLength(nLength);
return *this;
}
// trimming
// Remove all trailing whitespace
CMStringT& TrimRight()
{
// find beginning of trailing spaces by starting
// at beginning (DBCS aware)
PCXSTR psz = this->GetString();
PCXSTR pszLast = NULL;
while (*psz != 0) {
if (StringTraits::IsSpace(*psz)) {
if (pszLast == NULL)
pszLast = psz;
}
else pszLast = NULL;
psz = StringTraits::CharNext(psz);
}
if (pszLast != NULL) {
// truncate at trailing space start
int iLast = int(pszLast - this->GetString());
this->Truncate(iLast);
}
return *this;
}
// Remove all leading whitespace
CMStringT& TrimLeft()
{
// find first non-space character
PCXSTR psz = this->GetString();
while (StringTraits::IsSpace(*psz))
psz = StringTraits::CharNext(psz);
if (psz != this->GetString()) {
// fix up data and length
int iFirst = int(psz - this->GetString());
PXSTR pszBuffer = this->GetBuffer(this->GetLength());
psz = pszBuffer + iFirst;
int nDataLength = this->GetLength() - iFirst;
memmove_s(pszBuffer, (this->GetLength() + 1)*sizeof(XCHAR),
psz, (nDataLength + 1)*sizeof(XCHAR));
this->ReleaseBufferSetLength(nDataLength);
}
return *this;
}
// Remove all leading and trailing whitespace
CMStringT& Trim()
{
return TrimRight().TrimLeft();
}
// Remove all leading and trailing occurrences of character 'chTarget'
CMStringT& Trim(XCHAR chTarget)
{
return TrimRight(chTarget).TrimLeft(chTarget);
}
// Remove all leading and trailing occurrences of any of the characters in the string 'pszTargets'
CMStringT& Trim(PCXSTR pszTargets)
{
return TrimRight(pszTargets).TrimLeft(pszTargets);
}
// trimming anything (either side)
// Remove all trailing occurrences of character 'chTarget'
CMStringT& TrimRight(XCHAR chTarget)
{
// find beginning of trailing matches
// by starting at beginning (DBCS aware)
PCXSTR psz = this->GetString();
PCXSTR pszLast = NULL;
while (*psz != 0) {
if (*psz == chTarget) {
if (pszLast == NULL)
pszLast = psz;
}
else pszLast = NULL;
psz = StringTraits::CharNext(psz);
}
if (pszLast != NULL) {
// truncate at left-most matching character
int iLast = int(pszLast - this->GetString());
this->Truncate(iLast);
}
return *this;
}
// Remove all trailing occurrences of any of the characters in string 'pszTargets'
CMStringT& TrimRight(PCXSTR pszTargets)
{
// if we're not trimming anything, we're not doing any work
if ((pszTargets == NULL) || (*pszTargets == 0)) {
return *this;
}
// find beginning of trailing matches
// by starting at beginning (DBCS aware)
PCXSTR psz = this->GetString();
PCXSTR pszLast = NULL;
while (*psz != 0) {
if (StringTraits::StringFindChar(pszTargets, *psz) != NULL) {
if (pszLast == NULL) {
pszLast = psz;
}
}
else {
pszLast = NULL;
}
psz = StringTraits::CharNext(psz);
}
if (pszLast != NULL) {
// truncate at left-most matching character
int iLast = int(pszLast - this->GetString());
this->Truncate(iLast);
}
return *this;
}
// Remove all leading occurrences of character 'chTarget'
CMStringT& TrimLeft(XCHAR chTarget)
{
// find first non-matching character
PCXSTR psz = this->GetString();
while (chTarget == *psz) {
psz = StringTraits::CharNext(psz);
}
if (psz != this->GetString()) {
// fix up data and length
int iFirst = int(psz - this->GetString());
PXSTR pszBuffer = this->GetBuffer(this->GetLength());
psz = pszBuffer + iFirst;
int nDataLength = this->GetLength() - iFirst;
memmove_s(pszBuffer, (this->GetLength() + 1)*sizeof(XCHAR),
psz, (nDataLength + 1)*sizeof(XCHAR));
this->ReleaseBufferSetLength(nDataLength);
}
return *this;
}
// Remove all leading occurrences of any of the characters in string 'pszTargets'
CMStringT& TrimLeft(PCXSTR pszTargets)
{
// if we're not trimming anything, we're not doing any work
if ((pszTargets == NULL) || (*pszTargets == 0)) {
return *this;
}
PCXSTR psz = this->GetString();
while ((*psz != 0) && (StringTraits::StringFindChar(pszTargets, *psz) != NULL)) {
psz = StringTraits::CharNext(psz);
}
if (psz != this->GetString()) {
// fix up data and length
int iFirst = int(psz - this->GetString());
PXSTR pszBuffer = this->GetBuffer(this->GetLength());
psz = pszBuffer + iFirst;
int nDataLength = this->GetLength() - iFirst;
memmove_s(pszBuffer, (this->GetLength() + 1)*sizeof(XCHAR),
psz, (nDataLength + 1)*sizeof(XCHAR));
this->ReleaseBufferSetLength(nDataLength);
}
return *this;
}
// Convert the string to the OEM character set
void AnsiToOem()
{
int nLength = this->GetLength();
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::ConvertToOem(pszBuffer, nLength + 1);
this->ReleaseBufferSetLength(nLength);
}
// Convert the string to the ANSI character set
void OemToAnsi()
{
int nLength = this->GetLength();
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::ConvertToAnsi(pszBuffer, nLength + 1);
this->ReleaseBufferSetLength(nLength);
}
// Very simple sub-string extraction
// Return the substring starting at index 'iFirst'
CMStringT Mid(int iFirst) const
{
return Mid(iFirst, this->GetLength() - iFirst);
}
// Return the substring starting at index 'iFirst', with length 'nCount'
CMStringT Mid(int iFirst, int nCount) const
{
// nCount is in XCHARs
// out-of-bounds requests return sensible things
if (iFirst < 0)
iFirst = 0;
if (nCount < 0)
nCount = 0;
if ((iFirst + nCount) > this->GetLength())
nCount = this->GetLength() - iFirst;
if (iFirst > this->GetLength())
nCount = 0;
// optimize case of returning entire string
if ((iFirst == 0) && ((iFirst + nCount) == this->GetLength()))
return *this;
return CMStringT(this->GetString() + iFirst, nCount);
}
// Return the substring consisting of the rightmost 'nCount' characters
CMStringT Right(int nCount) const
{
// nCount is in XCHARs
if (nCount < 0)
nCount = 0;
int nLength = this->GetLength();
if (nCount >= nLength) {
return *this;
}
return CMStringT(this->GetString() + nLength - nCount, nCount);
}
// Return the substring consisting of the leftmost 'nCount' characters
CMStringT Left(int nCount) const
{
// nCount is in XCHARs
if (nCount < 0)
nCount = 0;
int nLength = this->GetLength();
if (nCount >= nLength)
return *this;
return CMStringT(this->GetString(), nCount);
}
// Return the substring consisting of the leftmost characters in the set 'pszCharSet'
CMStringT SpanIncluding(PCXSTR pszCharSet) const
{
return Left(StringTraits::StringSpanIncluding(this->GetString(), pszCharSet));
}
// Return the substring consisting of the leftmost characters not in the set 'pszCharSet'
CMStringT SpanExcluding(PCXSTR pszCharSet) const
{
return Left(StringTraits::StringSpanExcluding(this->GetString(), pszCharSet));
}
// Format data using format string 'pszFormat'
PCXSTR Format(PCXSTR pszFormat, ...)
{
va_list argList;
va_start(argList, pszFormat);
FormatV(pszFormat, argList);
va_end(argList);
return GetString();
}
// Append formatted data using format string 'pszFormat'
PCXSTR AppendFormat(PCXSTR pszFormat, ...)
{
va_list argList;
va_start(argList, pszFormat);
AppendFormatV(pszFormat, argList);
va_end(argList);
return GetString();
}
void AppendFormatV(PCXSTR pszFormat, va_list args)
{
int nCurrentLength = this->GetLength();
int nAppendLength = StringTraits::GetFormattedLength(pszFormat, args);
PXSTR pszBuffer = this->GetBuffer(nCurrentLength + nAppendLength);
StringTraits::Format(pszBuffer + nCurrentLength, nAppendLength + 1, pszFormat, args);
this->ReleaseBufferSetLength(nCurrentLength + nAppendLength);
}
PCXSTR FormatV(PCXSTR pszFormat, va_list args)
{
int nLength = StringTraits::GetFormattedLength(pszFormat, args);
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::Format(pszBuffer, nLength + 1, pszFormat, args);
this->ReleaseBufferSetLength(nLength);
return GetString();
}
// OLE BSTR support
// allocate a BSTR containing a copy of the string
BSTR AllocSysString() const
{
BSTR bstrResult = StringTraits::AllocSysString(this->GetString(), this->GetLength());
return bstrResult;
}
BSTR SetSysString(BSTR* pbstr) const
{
StringTraits::ReAllocSysString(this->GetString(), pbstr, this->GetLength());
return *pbstr;
}
// Set the string to the value of environment variable 'pszVar'
BOOL GetEnvironmentVariable(PCXSTR pszVar)
{
ULONG nLength = StringTraits::GetEnvironmentVariable(pszVar, NULL, 0);
BOOL bRetVal = FALSE;
if (nLength == 0)
this->Empty();
else {
PXSTR pszBuffer = this->GetBuffer(nLength);
StringTraits::GetEnvironmentVariable(pszVar, pszBuffer, nLength);
this->ReleaseBuffer();
bRetVal = TRUE;
}
return bRetVal;
}
// Load the string from resource 'nID'
BOOL LoadString(UINT nID)
{
HINSTANCE hInst = StringTraits::FindStringResourceInstance(nID);
if (hInst == NULL)
return FALSE;
return LoadString(hInst, nID);
}
friend CMStringT __stdcall operator+(const CMStringT& str1, const CMStringT& str2)
{
CMStringT strResult;
Concatenate(strResult, str1, str1.GetLength(), str2, str2.GetLength());
return strResult;
}
friend CMStringT __stdcall operator+(const CMStringT& str1, PCXSTR psz2)
{
CMStringT strResult;
Concatenate(strResult, str1, str1.GetLength(), psz2, StringLength(psz2));
return strResult;
}
friend CMStringT __stdcall operator+(PCXSTR psz1, const CMStringT& str2)
{
CMStringT strResult;
Concatenate(strResult, psz1, StringLength(psz1), str2, str2.GetLength());
return strResult;
}
friend CMStringT __stdcall operator+(const CMStringT& str1, wchar_t ch2)
{
CMStringT strResult;
XCHAR chTemp = XCHAR(ch2);
Concatenate(strResult, str1, str1.GetLength(), &chTemp, 1);
return strResult;
}
friend CMStringT __stdcall operator+(const CMStringT& str1, char ch2)
{
CMStringT strResult;
XCHAR chTemp = XCHAR(ch2);
Concatenate(strResult, str1, str1.GetLength(), &chTemp, 1);
return strResult;
}
friend CMStringT __stdcall operator+(wchar_t ch1, const CMStringT& str2)
{
CMStringT strResult;
XCHAR chTemp = XCHAR(ch1);
Concatenate(strResult, &chTemp, 1, str2, str2.GetLength());
return strResult;
}
friend CMStringT __stdcall operator+(char ch1, const CMStringT& str2)
{
CMStringT strResult;
XCHAR chTemp = XCHAR(ch1);
Concatenate(strResult, &chTemp, 1, str2, str2.GetLength());
return strResult;
}
friend bool __stdcall operator==(const CMStringT& str1, const CMStringT& str2)
{
return str1.Compare(str2) == 0;
}
friend bool __stdcall operator==(const CMStringT& str1, PCXSTR psz2)
{
return str1.Compare(psz2) == 0;
}
friend bool __stdcall operator==(PCXSTR psz1, const CMStringT& str2)
{
return str2.Compare(psz1) == 0;
}
friend bool __stdcall operator==(const CMStringT& str1, PCYSTR psz2)
{
CMStringT str2(psz2);
return str1 == str2;
}
friend bool __stdcall operator==(PCYSTR psz1, const CMStringT& str2)
{
CMStringT str1(psz1);
return str1 == str2;
}
friend bool __stdcall operator!=(const CMStringT& str1, const CMStringT& str2)
{
return str1.Compare(str2) != 0;
}
friend bool __stdcall operator!=(const CMStringT& str1, PCXSTR psz2)
{
return str1.Compare(psz2) != 0;
}
friend bool __stdcall operator!=(PCXSTR psz1, const CMStringT& str2)
{
return str2.Compare(psz1) != 0;
}
friend bool __stdcall operator!=(const CMStringT& str1, PCYSTR psz2)
{
CMStringT str2(psz2);
return str1 != str2;
}
friend bool __stdcall operator!=(PCYSTR psz1, const CMStringT& str2)
{
CMStringT str1(psz1);
return str1 != str2;
}
friend bool __stdcall operator<(const CMStringT& str1, const CMStringT& str2)
{
return str1.Compare(str2) < 0;
}
friend bool __stdcall operator<(const CMStringT& str1, PCXSTR psz2)
{
return str1.Compare(psz2) < 0;
}
friend bool __stdcall operator<(PCXSTR psz1, const CMStringT& str2)
{
return str2.Compare(psz1) > 0;
}
friend bool __stdcall operator>(const CMStringT& str1, const CMStringT& str2)
{
return str1.Compare(str2) > 0;
}
friend bool __stdcall operator>(const CMStringT& str1, PCXSTR psz2)
{
return str1.Compare(psz2) > 0;
}
friend bool __stdcall operator>(PCXSTR psz1, const CMStringT& str2)
{
return str2.Compare(psz1) < 0;
}
friend bool __stdcall operator<=(const CMStringT& str1, const CMStringT& str2)
{
return str1.Compare(str2) <= 0;
}
friend bool __stdcall operator<=(const CMStringT& str1, PCXSTR psz2)
{
return str1.Compare(psz2) <= 0;
}
friend bool __stdcall operator<=(PCXSTR psz1, const CMStringT& str2)
{
return str2.Compare(psz1) >= 0;
}
friend bool __stdcall operator>=(const CMStringT& str1, const CMStringT& str2)
{
return str1.Compare(str2) >= 0;
}
friend bool __stdcall operator>=(const CMStringT& str1, PCXSTR psz2)
{
return str1.Compare(psz2) >= 0;
}
friend bool __stdcall operator>=(PCXSTR psz1, const CMStringT& str2)
{
return str2.Compare(psz1) <= 0;
}
friend bool __stdcall operator==(XCHAR ch1, const CMStringT& str2)
{
return (str2.GetLength() == 1) && (str2[0] == ch1);
}
friend bool __stdcall operator==(const CMStringT& str1, XCHAR ch2)
{
return (str1.GetLength() == 1) && (str1[0] == ch2);
}
friend bool __stdcall operator!=(XCHAR ch1, const CMStringT& str2)
{
return (str2.GetLength() != 1) || (str2[0] != ch1);
}
friend bool __stdcall operator!=(const CMStringT& str1, XCHAR ch2)
{
return (str1.GetLength() != 1) || (str1[0] != ch2);
}
};
typedef CMStringT< wchar_t, ChTraitsCRT< wchar_t > > CMStringW;
typedef CMStringT< char, ChTraitsCRT< char > > CMStringA;
typedef CMStringT< TCHAR, ChTraitsCRT< TCHAR > > CMString;
/////////////////////////////////////////////////////////////////////////////////////////
// ChTraitsCRT<wchar_t>
__forceinline int ChTraitsCRT<wchar_t>::GetFormattedLength(LPCWSTR pszFormat, va_list args)
{
return _vscwprintf(pszFormat, args);
}
__forceinline int ChTraitsCRT<wchar_t>::Format(LPWSTR pszBuffer, size_t nLength, LPCWSTR pszFormat, va_list args)
{
return _vsnwprintf(pszBuffer, nLength, pszFormat, args);
}
/////////////////////////////////////////////////////////////////////////////////////////
// ChTraitsCRT<char>
__forceinline int ChTraitsCRT<char>::GetFormattedLength(LPCSTR pszFormat, va_list args)
{
return _vscprintf(pszFormat, args);
}
__forceinline int ChTraitsCRT<char>::Format(LPSTR pszBuffer, size_t nlength, LPCSTR pszFormat, va_list args)
{
return vsprintf_s(pszBuffer, nlength, pszFormat, args);
}
#endif // M_STRING_H__
|