Update ooo320-m1
[ooovba.git] / transex3 / source / utf8conv.cxx
blob4a41efc44d221c3f9ca62db478862e7a32a96ad7
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: utf8conv.cxx,v $
10 * $Revision: 1.4 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_transex3.hxx"
33 #include "utf8conv.hxx"
36 // class UTF8Converter
39 #define MAX_CONV_BUFFER_SIZE 0xFF00
41 #define TO_CVTFLAGS (RTL_TEXTTOUNICODE_FLAGS_UNDEFINED_MAPTOPRIVATE |\
42 RTL_TEXTTOUNICODE_FLAGS_MBUNDEFINED_DEFAULT |\
43 RTL_TEXTTOUNICODE_FLAGS_INVALID_DEFAULT)
45 #define FROM_CVTFLAGS (RTL_UNICODETOTEXT_FLAGS_UNDEFINED_DEFAULT |\
46 RTL_UNICODETOTEXT_FLAGS_INVALID_DEFAULT |\
47 RTL_UNICODETOTEXT_FLAGS_UNDEFINED_REPLACE |\
48 RTL_UNICODETOTEXT_FLAGS_PRIVATE_MAPTO0)
50 /*****************************************************************************/
51 void UTF8Converter::Convert( ByteString &rBuffer,
52 rtl_TextEncoding nSourceENC, rtl_TextEncoding nDestENC )
53 /*****************************************************************************/
55 String sTemp( rBuffer, nSourceENC );
56 rBuffer = ByteString( sTemp, nDestENC );
59 /*****************************************************************************/
60 ByteString UTF8Converter::ConvertToUTF8(
61 const ByteString &rASCII, rtl_TextEncoding nEncoding )
62 /*****************************************************************************/
64 ByteString sReturn( rASCII );
65 Convert( sReturn, nEncoding, RTL_TEXTENCODING_UTF8 );
66 return sReturn;
69 /*****************************************************************************/
70 ByteString UTF8Converter::ConvertFromUTF8(
71 const ByteString &rUTF8, rtl_TextEncoding nEncoding )
72 /*****************************************************************************/
74 ByteString sReturn( rUTF8 );
75 Convert( sReturn, RTL_TEXTENCODING_UTF8, nEncoding );
76 return sReturn;