1d95fb7f2e7bf5fc7461f78f616ca9afe5d9621e
[shibboleth/cpp-xmltooling.git] / xmltooling / unicode.cpp
1 /*\r
2  *  Copyright 2001-2006 Internet2\r
3  * \r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  *\r
8  *     http://www.apache.org/licenses/LICENSE-2.0\r
9  *\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 /**\r
18  * unicode.cpp\r
19  * \r
20  * Helper classes and types for manipulating Unicode \r
21  */\r
22 \r
23 #include "internal.h"\r
24 #include "unicode.h"\r
25 \r
26 #include <xercesc/util/XMLUTF8Transcoder.hpp>\r
27 #include <xercesc/util/XMLUniDefs.hpp>\r
28 \r
29 static const XMLCh UTF8[]={ chLatin_U, chLatin_T, chLatin_F, chDigit_8, chNull };\r
30 \r
31 char* xmltooling::toUTF8(const XMLCh* src)\r
32 {\r
33     unsigned int eaten;\r
34     unsigned int srclen=XMLString::stringLen(src);\r
35     XMLUTF8Transcoder t(UTF8, srclen*4 + 1);\r
36     char* buf=new char[srclen*4 + 1];\r
37     memset(buf,0,srclen*4 + 1);\r
38     t.transcodeTo(\r
39         src,srclen,\r
40         reinterpret_cast<XMLByte*>(buf),srclen*4,\r
41         eaten,XMLTranscoder::UnRep_RepChar);\r
42     return buf;\r
43 }\r
44 \r
45 XMLCh* xmltooling::fromUTF8(const char* src)\r
46 {\r
47     unsigned int eaten;\r
48     unsigned int srclen=strlen(src);\r
49     XMLUTF8Transcoder t(UTF8, srclen + 1);\r
50     XMLCh* buf=new XMLCh[srclen + 1];\r
51     unsigned char* sizes=new unsigned char[srclen];\r
52     memset(buf,0,(srclen+1)*sizeof(XMLCh));\r
53     t.transcodeFrom(\r
54         reinterpret_cast<const XMLByte*>(src),srclen,\r
55         buf,srclen,\r
56         eaten,sizes);\r
57     delete[] sizes;\r
58     return buf;\r
59 }\r