1 | 'string.sbp
|
---|
2 | '文字列変数の操作用
|
---|
3 |
|
---|
4 | #ifndef _INC_BASIC_STRING
|
---|
5 | #define _INC_BASIC_STRING
|
---|
6 |
|
---|
7 | Function StrPtr(buf As *StrChar) As *StrChar
|
---|
8 | StrPtr = buf
|
---|
9 | End Function
|
---|
10 |
|
---|
11 | Function ZeroString(length As Long) As String
|
---|
12 | Return New String(0 As StrChar, length)
|
---|
13 | End Function
|
---|
14 |
|
---|
15 | Function MakeStr(psz As PSTR) As String
|
---|
16 | Return New String(psz)
|
---|
17 | End Function
|
---|
18 |
|
---|
19 | Function MakeStr(psz As PWSTR) As String
|
---|
20 | Return New String(psz)
|
---|
21 | End Function
|
---|
22 |
|
---|
23 | Dim _System_AllocForConvertedString As *Function(size As SIZE_T) As VoidPtr
|
---|
24 | _System_AllocForConvertedString = AddressOf (GC_malloc_atomic)
|
---|
25 |
|
---|
26 | Function GetStr(psz As PSTR, ByRef wcs As PWSTR) As SIZE_T
|
---|
27 | If psz <> 0 Then
|
---|
28 | Return GetStr(psz, lstrlenA(psz) As SIZE_T, wcs)
|
---|
29 | Else
|
---|
30 | Return 0
|
---|
31 | End If
|
---|
32 | End Function
|
---|
33 |
|
---|
34 | Function GetStr(psz As PSTR, len As SIZE_T, ByRef wcs As PWSTR) As SIZE_T
|
---|
35 | If psz = 0 Then Return 0
|
---|
36 | Dim lenWCS = MultiByteToWideChar(CP_THREAD_ACP, 0, psz, len, 0, 0)
|
---|
37 | wcs = _System_AllocForConvertedString(SizeOf (WCHAR) * (lenWCS + 1)) As PWSTR
|
---|
38 | GetStr = MultiByteToWideChar(CP_THREAD_ACP, 0, psz, len, wcs, lenWCS)
|
---|
39 | wcs[GetStr] = 0
|
---|
40 | End Function
|
---|
41 |
|
---|
42 | Function GetStr(psz As PWSTR, ByRef wcs As PWSTR) As SIZE_T
|
---|
43 | wcs = psz
|
---|
44 | If psz <> 0 Then
|
---|
45 | Return lstrlenW(psz) As SIZE_T
|
---|
46 | Else
|
---|
47 | Return 0
|
---|
48 | End If
|
---|
49 | End Function
|
---|
50 |
|
---|
51 | Function GetStr(psz As PWSTR, len As SIZE_T, ByRef wcs As PWSTR) As SIZE_T
|
---|
52 | wcs = psz
|
---|
53 | If psz <> 0 Then
|
---|
54 | Return len
|
---|
55 | Else
|
---|
56 | Return 0
|
---|
57 | End If
|
---|
58 | End Function
|
---|
59 |
|
---|
60 | Function GetStr(psz As PWSTR, ByRef mbs As PSTR) As SIZE_T
|
---|
61 | If psz = 0 Then
|
---|
62 | Return 0
|
---|
63 | Else
|
---|
64 | Return GetStr(psz, lstrlenW(psz) As SIZE_T, mbs)
|
---|
65 | End If
|
---|
66 | End Function
|
---|
67 |
|
---|
68 | Function GetStr(psz As PWSTR, len As SIZE_T, ByRef mbs As PSTR) As SIZE_T
|
---|
69 | If psz = 0 Then Return 0
|
---|
70 | Dim lenMBS = WideCharToMultiByte(CP_THREAD_ACP, 0, psz, len, 0, 0, 0, 0)
|
---|
71 | mbs = _System_AllocForConvertedString(SizeOf (SByte) * (lenMBS + 1)) As PSTR
|
---|
72 | GetStr = WideCharToMultiByte(CP_THREAD_ACP, 0, psz, len, mbs, lenMBS, 0, 0) As SIZE_T
|
---|
73 | mbs[GetStr] = 0
|
---|
74 | End Function
|
---|
75 |
|
---|
76 | Function GetStr(psz As PSTR, ByRef mbs As PSTR) As SIZE_T
|
---|
77 | mbs = psz
|
---|
78 | If psz <> 0 Then
|
---|
79 | Return lstrlenA(psz) As SIZE_T
|
---|
80 | Else
|
---|
81 | Return 0
|
---|
82 | End If
|
---|
83 | End Function
|
---|
84 |
|
---|
85 | Function GetStr(psz As PSTR, len As SIZE_T, ByRef mbs As PSTR) As SIZE_T
|
---|
86 | mbs = psz
|
---|
87 | If psz <> 0 Then
|
---|
88 | Return len
|
---|
89 | Else
|
---|
90 | Return 0
|
---|
91 | End If
|
---|
92 | End Function
|
---|
93 |
|
---|
94 | Function GetStr(s As String, ByRef mbs As PSTR) As SIZE_T
|
---|
95 | Return GetStr(s.Chars, s.Length As SIZE_T, mbs)
|
---|
96 | End Function
|
---|
97 |
|
---|
98 | Function GetStr(s As String, ByRef wcs As PWSTR) As SIZE_T
|
---|
99 | Return GetStr(s.Chars, s.Length As SIZE_T, wcs)
|
---|
100 | End Function
|
---|
101 |
|
---|
102 | Function GetWCStr(psz As PSTR, ByRef wcs As PWSTR) As SIZE_T
|
---|
103 | Return GetStr(psz, wcs)
|
---|
104 | End Function
|
---|
105 |
|
---|
106 | Function GetWCStr(psz As PSTR, len As SIZE_T, ByRef wcs As PWSTR) As SIZE_T
|
---|
107 | Return GetStr(psz, len, wcs)
|
---|
108 | End Function
|
---|
109 |
|
---|
110 | Function GetWCStr(psz As PWSTR, ByRef wcs As PWSTR) As SIZE_T
|
---|
111 | Return GetStr(psz, wcs)
|
---|
112 | End Function
|
---|
113 |
|
---|
114 | Function GetWCStr(psz As PWSTR, len As SIZE_T, ByRef wcs As PWSTR) As SIZE_T
|
---|
115 | Return GetStr(psz, len, wcs)
|
---|
116 | End Function
|
---|
117 |
|
---|
118 | Function GetWCStr(s As String, ByRef wcs As PWSTR) As SIZE_T
|
---|
119 | Return GetStr(s.Chars, s.Length As SIZE_T, wcs)
|
---|
120 | End Function
|
---|
121 |
|
---|
122 | Function GetMBStr(psz As PWSTR, ByRef mbs As PSTR) As SIZE_T
|
---|
123 | Return GetStr(psz, mbs)
|
---|
124 | End Function
|
---|
125 |
|
---|
126 | Function GetMBStr(psz As PWSTR, len As SIZE_T, ByRef mbs As PSTR) As SIZE_T
|
---|
127 | Return GetStr(psz, len, mbs)
|
---|
128 | End Function
|
---|
129 |
|
---|
130 | Function GetMBStr(psz As PSTR, ByRef mbs As PSTR) As SIZE_T
|
---|
131 | Return GetStr(psz, mbs)
|
---|
132 | End Function
|
---|
133 |
|
---|
134 | Function GetMBStr(psz As PSTR, len As SIZE_T, ByRef mbs As PSTR) As SIZE_T
|
---|
135 | Return GetStr(psz, len, mbs)
|
---|
136 | End Function
|
---|
137 |
|
---|
138 | Function GetMBStr(s As String, ByRef mbs As PSTR) As SIZE_T
|
---|
139 | Return GetStr(s.Chars, s.Length As SIZE_T, mbs)
|
---|
140 | End Function
|
---|
141 |
|
---|
142 | Function GetTCStr(psz As PSTR, ByRef tcs As PCTSTR) As SIZE_T
|
---|
143 | Return GetStr(psz, tcs)
|
---|
144 | End Function
|
---|
145 |
|
---|
146 | Function GetTCStr(psz As PSTR, len As SIZE_T, ByRef tcs As PCTSTR) As SIZE_T
|
---|
147 | Return GetStr(psz, len, tcs)
|
---|
148 | End Function
|
---|
149 |
|
---|
150 | Function GetTCStr(psz As PWSTR, ByRef tcs As PCTSTR) As SIZE_T
|
---|
151 | Return GetStr(psz, tcs)
|
---|
152 | End Function
|
---|
153 |
|
---|
154 | Function GetTCStr(psz As PWSTR, len As SIZE_T, ByRef tcs As PCTSTR) As SIZE_T
|
---|
155 | Return GetStr(psz, len, tcs)
|
---|
156 | End Function
|
---|
157 |
|
---|
158 | Function GetTCStr(s As String, ByRef tcs As PCTSTR) As SIZE_T
|
---|
159 | Return GetStr(s.Chars, s.Length As SIZE_T, wcs)
|
---|
160 | End Function
|
---|
161 |
|
---|
162 | Function GetSCStr(psz As PSTR, ByRef ss As *StrChar) As SIZE_T
|
---|
163 | Return GetStr(psz, ss)
|
---|
164 | End Function
|
---|
165 |
|
---|
166 | Function GetSCStr(psz As PSTR, len As SIZE_T, ByRef ss As *StrChar) As SIZE_T
|
---|
167 | Return GetStr(psz, len, ss)
|
---|
168 | End Function
|
---|
169 |
|
---|
170 | Function GetSCStr(psz As PWSTR, ByRef ss As *StrChar) As SIZE_T
|
---|
171 | Return GetStr(psz, ss)
|
---|
172 | End Function
|
---|
173 |
|
---|
174 | Function GetSCStr(psz As PWSTR, len As SIZE_T, ByRef ss As *StrChar) As SIZE_T
|
---|
175 | Return GetStr(psz, len, ss)
|
---|
176 | End Function
|
---|
177 |
|
---|
178 | Function GetSCStr(s As String, ByRef ss As *StrChar) As SIZE_T
|
---|
179 | Return GetStr(s.Chars, s.Length As SIZE_T, wcs)
|
---|
180 | End Function
|
---|
181 |
|
---|
182 | Function ToWCStr(psz As PSTR) As PWSTR
|
---|
183 | GetStr(psz, ToWCStr)
|
---|
184 | End Function
|
---|
185 |
|
---|
186 | Function ToWCStr(psz As PSTR, len As SIZE_T) As PWSTR
|
---|
187 | GetStr(psz, len, ToWCStr)
|
---|
188 | End Function
|
---|
189 |
|
---|
190 | Function ToWCStr(psz As PWSTR) As PWSTR
|
---|
191 | GetStr(psz, ToWCStr)
|
---|
192 | End Function
|
---|
193 |
|
---|
194 | Function ToWCStr(psz As PWSTR, len As SIZE_T) As PWSTR
|
---|
195 | GetStr(psz, len, ToWCStr)
|
---|
196 | End Function
|
---|
197 |
|
---|
198 | Function ToWCStr(s As String) As PWSTR
|
---|
199 | GetStr(s.Chars, s.Length As SIZE_T, ToWCStr)
|
---|
200 | End Function
|
---|
201 |
|
---|
202 | Function ToMBStr(psz As PSTR) As PSTR
|
---|
203 | GetStr(psz, ToMBStr)
|
---|
204 | End Function
|
---|
205 |
|
---|
206 | Function ToMBStr(psz As PSTR, len As SIZE_T) As PSTR
|
---|
207 | GetStr(psz, len, ToMBStr)
|
---|
208 | End Function
|
---|
209 |
|
---|
210 | Function ToMBStr(psz As PWSTR) As PSTR
|
---|
211 | GetStr(psz, ToMBStr)
|
---|
212 | End Function
|
---|
213 |
|
---|
214 | Function ToMBStr(psz As PWSTR, len As SIZE_T) As PSTR
|
---|
215 | GetStr(psz, len, ToMBStr)
|
---|
216 | End Function
|
---|
217 |
|
---|
218 | Function ToMBStr(s As String) As PSTR
|
---|
219 | GetStr(s.Chars, s.Length As SIZE_T, ToMBStr)
|
---|
220 | End Function
|
---|
221 |
|
---|
222 | Function ToTCStr(psz As PSTR) As PCTSTR
|
---|
223 | GetStr(psz, ToTCStr)
|
---|
224 | End Function
|
---|
225 |
|
---|
226 | Function ToTCStr(psz As PSTR, len As SIZE_T) As PCTSTR
|
---|
227 | GetStr(psz, len, ToTCStr)
|
---|
228 | End Function
|
---|
229 |
|
---|
230 | Function ToTCStr(psz As PWSTR) As PCTSTR
|
---|
231 | GetStr(psz, ToTCStr)
|
---|
232 | End Function
|
---|
233 |
|
---|
234 | Function ToTCStr(psz As PWSTR, len As SIZE_T) As PCTSTR
|
---|
235 | GetStr(psz, len, ToTCStr)
|
---|
236 | End Function
|
---|
237 |
|
---|
238 | Function ToTCStr(s As String) As PCTSTR
|
---|
239 | GetStr(s.Chars, s.Length As SIZE_T, ToTCStr)
|
---|
240 | End Function
|
---|
241 |
|
---|
242 | Function ToSCStr(psz As PSTR) As *StrChar
|
---|
243 | GetStr(psz, ToSCStr)
|
---|
244 | End Function
|
---|
245 |
|
---|
246 | Function ToSCStr(psz As PSTR, len As SIZE_T) As *StrChar
|
---|
247 | GetStr(psz, len, ToSCStr)
|
---|
248 | End Function
|
---|
249 |
|
---|
250 | Function ToSCStr(psz As PWSTR) As *StrChar
|
---|
251 | GetStr(psz, ToSCStr)
|
---|
252 | End Function
|
---|
253 |
|
---|
254 | Function ToSCStr(psz As PWSTR, len As SIZE_T) As *StrChar
|
---|
255 | GetStr(psz, len, ToSCStr)
|
---|
256 | End Function
|
---|
257 |
|
---|
258 | Function ToSCStr(s As String) As *StrChar
|
---|
259 | GetStr(s.Chars, s.Length As SIZE_T, ToSCStr)
|
---|
260 | End Function
|
---|
261 |
|
---|
262 | #endif '_INC_BASIC_STRING
|
---|