]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
374ca955 A |
3 | /* |
4 | ******************************************************************************* | |
5 | * | |
73c04bcf | 6 | * Copyright (C) 1997-2006, International Business Machines |
374ca955 A |
7 | * Corporation and others. All Rights Reserved. |
8 | * | |
9 | ******************************************************************************* | |
10 | * file name: ures_cnv.c | |
f3c0d7a5 | 11 | * encoding: UTF-8 |
374ca955 A |
12 | * tab size: 8 (not used) |
13 | * indentation:4 | |
14 | * | |
15 | * created on: 2004aug25 | |
16 | * created by: Markus W. Scherer | |
17 | * | |
18 | * Character conversion functions moved here from uresbund.c | |
19 | */ | |
20 | ||
21 | #include "unicode/utypes.h" | |
22 | #include "unicode/putil.h" | |
23 | #include "unicode/ustring.h" | |
24 | #include "unicode/ucnv.h" | |
25 | #include "unicode/ures.h" | |
26 | #include "uinvchar.h" | |
27 | #include "ustr_cnv.h" | |
28 | ||
29 | U_CAPI UResourceBundle * U_EXPORT2 | |
30 | ures_openU(const UChar *myPath, | |
31 | const char *localeID, | |
73c04bcf A |
32 | UErrorCode *status) |
33 | { | |
34 | char pathBuffer[1024]; | |
374ca955 | 35 | int32_t length; |
73c04bcf | 36 | char *path = pathBuffer; |
374ca955 A |
37 | |
38 | if(status==NULL || U_FAILURE(*status)) { | |
39 | return NULL; | |
40 | } | |
41 | if(myPath==NULL) { | |
73c04bcf | 42 | path = NULL; |
374ca955 | 43 | } |
73c04bcf A |
44 | else { |
45 | length=u_strlen(myPath); | |
f3c0d7a5 | 46 | if(length>=(int32_t)sizeof(pathBuffer)) { |
374ca955 A |
47 | *status=U_ILLEGAL_ARGUMENT_ERROR; |
48 | return NULL; | |
73c04bcf A |
49 | } else if(uprv_isInvariantUString(myPath, length)) { |
50 | /* | |
51 | * the invariant converter is sufficient for package and tree names | |
52 | * and is more efficient | |
53 | */ | |
54 | u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */ | |
55 | } else { | |
56 | #if !UCONFIG_NO_CONVERSION | |
57 | /* use the default converter to support variant-character paths */ | |
58 | UConverter *cnv=u_getDefaultConverter(status); | |
59 | length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status); | |
60 | u_releaseDefaultConverter(cnv); | |
61 | if(U_FAILURE(*status)) { | |
62 | return NULL; | |
63 | } | |
f3c0d7a5 | 64 | if(length>=(int32_t)sizeof(pathBuffer)) { |
73c04bcf A |
65 | /* not NUL-terminated - path too long */ |
66 | *status=U_ILLEGAL_ARGUMENT_ERROR; | |
67 | return NULL; | |
68 | } | |
374ca955 | 69 | #else |
73c04bcf A |
70 | /* the default converter is not available */ |
71 | *status=U_UNSUPPORTED_ERROR; | |
72 | return NULL; | |
374ca955 | 73 | #endif |
73c04bcf | 74 | } |
374ca955 A |
75 | } |
76 | ||
77 | return ures_open(path, localeID, status); | |
78 | } |