forked from maraf/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnamespaceutil.cpp
More file actions
364 lines (318 loc) · 11.3 KB
/
namespaceutil.cpp
File metadata and controls
364 lines (318 loc) · 11.3 KB
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
//*****************************************************************************
// NamespaceUtil.cpp
//
//
// Helpers for converting namespace separators.
//
//*****************************************************************************
#include "stdafx.h"
#include "corhdr.h"
#include "corhlpr.h"
#include "sstring.h"
#include "utilcode.h"
#ifndef _ASSERTE
#define _ASSERTE(foo)
#endif
#include "nsutilpriv.h"
//*****************************************************************************
// Determine how many chars large a fully qualified name would be given the
// two parts of the name. The return value includes room for every character
// in both names, as well as room for the separator and a final terminator.
//*****************************************************************************
int ns::GetFullLength( // Number of chars in full name.
const WCHAR *szNameSpace, // Namspace for value.
const WCHAR *szName) // Name of value.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
int iLen = 1; // Null terminator.
if (szNameSpace)
iLen += (int)u16_strlen(szNameSpace);
if (szName)
iLen += (int)u16_strlen(szName);
if (szNameSpace && *szNameSpace && szName && *szName)
++iLen;
return iLen;
} //int ns::GetFullLength()
int ns::GetFullLength( // Number of chars in full name.
LPCUTF8 szNameSpace, // Namspace for value.
LPCUTF8 szName) // Name of value.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
int iLen = 1;
if (szNameSpace)
iLen += (int)strlen(szNameSpace);
if (szName)
iLen += (int)strlen(szName);
if (szNameSpace && *szNameSpace && szName && *szName)
++iLen;
return iLen;
} //int ns::GetFullLength()
//*****************************************************************************
// Scan the string from the rear looking for the first valid separator. If
// found, return a pointer to it. Else return null. This code is smart enough
// to skip over special sequences, such as:
// a.b..ctor
// ^
// |
// The ".ctor" is considered one token.
//*****************************************************************************
WCHAR *ns::FindSep( // Pointer to separator or null.
const WCHAR *szPath) // The path to look in.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
_ASSERTE(szPath);
WCHAR *ptr = (WCHAR*)u16_strrchr(szPath, NAMESPACE_SEPARATOR_WCHAR);
if((ptr == NULL) || (ptr == szPath)) return NULL;
if(*(ptr - 1) == NAMESPACE_SEPARATOR_WCHAR) // here ptr is at least szPath+1
--ptr;
return ptr;
} //WCHAR *ns::FindSep()
//<TODO>@todo: this isn't dbcs safe if this were ansi, but this is utf8. Still an issue?</TODO>
LPUTF8 ns::FindSep( // Pointer to separator or null.
LPCUTF8 szPath) // The path to look in.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
STATIC_CONTRACT_SUPPORTS_DAC;
_ASSERTE(szPath);
LPUTF8 ptr = const_cast<LPUTF8>(strrchr(szPath, NAMESPACE_SEPARATOR_CHAR));
if((ptr == NULL) || (ptr == szPath)) return NULL;
if(*(ptr - 1) == NAMESPACE_SEPARATOR_CHAR) // here ptr is at least szPath+1
--ptr;
return ptr;
} //LPUTF8 ns::FindSep()
//*****************************************************************************
// Take a path and find the last separator (nsFindSep), and then replace the
// separator with a '\0' and return a pointer to the name. So for example:
// a.b.c
// becomes two strings "a.b" and "c" and the return value points to "c".
//*****************************************************************************
LPUTF8 ns::SplitInline( // Pointer to name portion.
__inout __inout_z LPUTF8 szPath) // The path to split.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
LPUTF8 ptr = ns::FindSep(szPath);
if (ptr)
{
*ptr = 0;
++ptr;
}
return ptr;
} // LPUTF8 ns::SplitInline()
void ns::SplitInline(
__inout __inout_z LPUTF8 szPath, // Path to split.
LPCUTF8 &szNameSpace, // Return pointer to namespace.
LPCUTF8 &szName) // Return pointer to name.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
LPUTF8 ptr = SplitInline(szPath);
if (ptr)
{
szNameSpace = szPath;
szName = ptr;
}
else
{
szNameSpace = 0;
szName = szPath;
}
} // void ns::SplitInline()
//*****************************************************************************
// Split the last parsable element from the end of the string as the name,
// the first part as the namespace.
//*****************************************************************************
int ns::SplitPath( // true ok, false trunction.
const WCHAR *szPath, // Path to split.
_Out_writes_(cchNameSpace) WCHAR *szNameSpace, // Output for namespace value.
int cchNameSpace, // Max chars for output.
_Out_writes_(cchName) WCHAR *szName, // Output for name.
int cchName) // Max chars for output.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
const WCHAR *ptr = ns::FindSep(szPath);
size_t iLen = (ptr) ? ptr - szPath : 0;
size_t iCopyMax;
int brtn = true;
if (szNameSpace && cchNameSpace)
{
_ASSERTE(cchNameSpace > 1);
iCopyMax = cchNameSpace - 1;
iCopyMax = min(iCopyMax, iLen);
wcsncpy_s(szNameSpace, cchNameSpace, szPath, iCopyMax);
szNameSpace[iCopyMax] = 0;
if (iLen >= (size_t)cchNameSpace)
brtn = false;
}
if (szName && cchName)
{
_ASSERTE(cchName > 1);
iCopyMax = cchName - 1;
if (ptr)
++ptr;
else
ptr = szPath;
iLen = (int)u16_strlen(ptr);
iCopyMax = min(iCopyMax, iLen);
wcsncpy_s(szName, cchName, ptr, iCopyMax);
szName[iCopyMax] = 0;
if (iLen >= (size_t)cchName)
brtn = false;
}
return brtn;
} // int ns::SplitPath()
int ns::SplitPath( // true ok, false trunction.
LPCUTF8 szPath, // Path to split.
_Out_writes_opt_ (cchNameSpace) LPUTF8 szNameSpace, // Output for namespace value.
int cchNameSpace, // Max chars for output.
_Out_writes_opt_ (cchName) LPUTF8 szName, // Output for name.
int cchName) // Max chars for output.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
LPCUTF8 ptr = ns::FindSep(szPath);
size_t iLen = (ptr) ? ptr - szPath : 0;
size_t iCopyMax;
int brtn = true;
if (szNameSpace && cchNameSpace)
{
_ASSERTE(cchNameSpace > 1);
iCopyMax = cchNameSpace-1;
iCopyMax = min(iCopyMax, iLen);
strncpy_s(szNameSpace, cchNameSpace, szPath, iCopyMax);
szNameSpace[iCopyMax] = 0;
if (iLen >= (size_t)cchNameSpace)
brtn = false;
}
if (szName && cchName)
{
_ASSERTE(cchName > 1);
iCopyMax = cchName-1;
if (ptr)
++ptr;
else
ptr = szPath;
iLen = (int)strlen(ptr);
iCopyMax = min(iCopyMax, iLen);
strncpy_s(szName, cchName, ptr, iCopyMax);
szName[iCopyMax] = 0;
if (iLen >= (size_t)cchName)
brtn = false;
}
return brtn;
} // int ns::SplitPath()
//*****************************************************************************
// Take two values and put them together in a fully qualified path using the
// correct separator.
//*****************************************************************************
int ns::MakePath( // true ok, false truncation.
_Out_writes_(cchChars) WCHAR *szOut, // output path for name.
int cchChars, // max chars for output path.
const WCHAR *szNameSpace, // Namespace.
const WCHAR *szName) // Name.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
if (cchChars < 1)
return false;
if (szOut)
*szOut = 0;
else
return false;
if (szNameSpace && *szNameSpace != W('\0'))
{
if (wcsncpy_s(szOut, cchChars, szNameSpace, _TRUNCATE) == STRUNCATE)
return false;
// Add namespace separator if a non-empty name was supplied
if (szName && *szName != W('\0'))
{
if (wcsncat_s(szOut, cchChars, NAMESPACE_SEPARATOR_WSTR, _TRUNCATE) == STRUNCATE)
{
return false;
}
}
}
if (szName && *szName)
{
if (wcsncat_s(szOut, cchChars, szName, _TRUNCATE) == STRUNCATE)
return false;
}
return true;
} // int ns::MakePath()
int ns::MakePath( // true ok, false truncation.
_Out_writes_(cchChars) LPUTF8 szOut, // output path for name.
int cchChars, // max chars for output path.
LPCUTF8 szNameSpace, // Namespace.
LPCUTF8 szName) // Name.
{
STATIC_CONTRACT_NOTHROW;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FORBID_FAULT;
if (cchChars < 1)
return false;
if (szOut)
*szOut = 0;
else
return false;
if (szNameSpace && *szNameSpace != W('\0'))
{
if (strncpy_s(szOut, cchChars, szNameSpace, _TRUNCATE) == STRUNCATE)
return false;
// Add namespace separator if a non-empty name was supplied
if (szName && *szName != W('\0'))
{
if (strncat_s(szOut, cchChars, NAMESPACE_SEPARATOR_STR, _TRUNCATE) == STRUNCATE)
{
return false;
}
}
}
if (szName && *szName)
{
if (strncat_s(szOut, cchChars, szName, _TRUNCATE) == STRUNCATE)
return false;
}
return true;
} // int ns::MakePath()
void ns::MakePath( // throws on out of memory
SString &ssBuf, // Where to put results.
const SString &ssNameSpace, // Namespace for name.
const SString &ssName) // Final part of name.
{
STATIC_CONTRACT_THROWS;
STATIC_CONTRACT_GC_NOTRIGGER;
STATIC_CONTRACT_FAULT;
ssBuf.Clear();
if (!ssNameSpace.IsEmpty())
{
if (ssName.IsEmpty())
{
ssBuf.Set(ssNameSpace);
}
else
{
SString s(SString::Literal, NAMESPACE_SEPARATOR_WSTR);
ssBuf.Set(ssNameSpace, s);
}
}
if (!ssName.IsEmpty())
{
ssBuf.Append(ssName);
}
}