1*89b56da7SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*89b56da7SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*89b56da7SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*89b56da7SAndrew Rist * distributed with this work for additional information 6*89b56da7SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*89b56da7SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*89b56da7SAndrew Rist * "License"); you may not use this file except in compliance 9*89b56da7SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*89b56da7SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*89b56da7SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*89b56da7SAndrew Rist * software distributed under the License is distributed on an 15*89b56da7SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*89b56da7SAndrew Rist * KIND, either express or implied. See the License for the 17*89b56da7SAndrew Rist * specific language governing permissions and limitations 18*89b56da7SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*89b56da7SAndrew Rist *************************************************************/ 21*89b56da7SAndrew Rist 22*89b56da7SAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 25cdf0e10cSrcweir #include "precompiled_tools.hxx" 26cdf0e10cSrcweir #include <rtl/tencinfo.h> 27cdf0e10cSrcweir #include <tools/tenccvt.hxx> 28cdf0e10cSrcweir 29cdf0e10cSrcweir // ======================================================================= 30cdf0e10cSrcweir 31cdf0e10cSrcweir rtl_TextEncoding GetExtendedCompatibilityTextEncoding( rtl_TextEncoding eEncoding ) 32cdf0e10cSrcweir { 33cdf0e10cSrcweir // Latin1 34cdf0e10cSrcweir if ( eEncoding == RTL_TEXTENCODING_ISO_8859_1 ) 35cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1252; 36cdf0e10cSrcweir // Turkey 37cdf0e10cSrcweir else if ( eEncoding == RTL_TEXTENCODING_ISO_8859_9 ) 38cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1254; 39cdf0e10cSrcweir else 40cdf0e10cSrcweir return eEncoding; 41cdf0e10cSrcweir } 42cdf0e10cSrcweir 43cdf0e10cSrcweir // ----------------------------------------------------------------------- 44cdf0e10cSrcweir 45cdf0e10cSrcweir rtl_TextEncoding GetExtendedTextEncoding( rtl_TextEncoding eEncoding ) 46cdf0e10cSrcweir { 47cdf0e10cSrcweir // Cyr 48cdf0e10cSrcweir if ( eEncoding == RTL_TEXTENCODING_ISO_8859_5 ) 49cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1251; 50cdf0e10cSrcweir // Greek (2 Characters different: A1 (0x2018/0x0385), A2 (0x2019/0x0386) - 51cdf0e10cSrcweir // so it is handled in this function and not in GetExtendedCompatibilityTextEncoding) 52cdf0e10cSrcweir else if ( eEncoding == RTL_TEXTENCODING_ISO_8859_7 ) 53cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1253; 54cdf0e10cSrcweir // East-Europe - Latin2 55cdf0e10cSrcweir else if ( eEncoding == RTL_TEXTENCODING_ISO_8859_2 ) 56cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1250; 57cdf0e10cSrcweir // Latin-15 - Latin 1 mit Euro-Sign 58cdf0e10cSrcweir else if ( eEncoding == RTL_TEXTENCODING_ISO_8859_15 ) 59cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1252; 60cdf0e10cSrcweir else 61cdf0e10cSrcweir return GetExtendedCompatibilityTextEncoding( eEncoding ); 62cdf0e10cSrcweir } 63cdf0e10cSrcweir 64cdf0e10cSrcweir // ----------------------------------------------------------------------- 65cdf0e10cSrcweir 66cdf0e10cSrcweir rtl_TextEncoding GetOneByteTextEncoding( rtl_TextEncoding eEncoding ) 67cdf0e10cSrcweir { 68cdf0e10cSrcweir rtl_TextEncodingInfo aTextEncInfo; 69cdf0e10cSrcweir aTextEncInfo.StructSize = sizeof( aTextEncInfo ); 70cdf0e10cSrcweir if ( rtl_getTextEncodingInfo( eEncoding, &aTextEncInfo ) ) 71cdf0e10cSrcweir { 72cdf0e10cSrcweir if ( aTextEncInfo.MaximumCharSize > 1 ) 73cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1252; 74cdf0e10cSrcweir else 75cdf0e10cSrcweir return eEncoding; 76cdf0e10cSrcweir } 77cdf0e10cSrcweir else 78cdf0e10cSrcweir return RTL_TEXTENCODING_MS_1252; 79cdf0e10cSrcweir } 80cdf0e10cSrcweir 81cdf0e10cSrcweir // ----------------------------------------------------------------------- 82cdf0e10cSrcweir 83cdf0e10cSrcweir rtl_TextEncoding GetSOLoadTextEncoding( rtl_TextEncoding eEncoding, sal_uInt16 /* nVersion = SOFFICE_FILEFORMAT_50 */ ) 84cdf0e10cSrcweir { 85cdf0e10cSrcweir return GetExtendedCompatibilityTextEncoding( GetOneByteTextEncoding( eEncoding ) ); 86cdf0e10cSrcweir } 87cdf0e10cSrcweir 88cdf0e10cSrcweir // ----------------------------------------------------------------------- 89cdf0e10cSrcweir 90cdf0e10cSrcweir rtl_TextEncoding GetSOStoreTextEncoding( rtl_TextEncoding eEncoding, sal_uInt16 /* nVersion = SOFFICE_FILEFORMAT_50 */ ) 91cdf0e10cSrcweir { 92cdf0e10cSrcweir return GetExtendedTextEncoding( GetOneByteTextEncoding( eEncoding ) ); 93cdf0e10cSrcweir } 94