LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/i18npool/source/textconversion - textconversion_zh.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 0 140 0.0 %
Date: 2013-07-09 Functions: 0 8 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      11             :  *   Licensed to the Apache Software Foundation (ASF) under one or more
      12             :  *   contributor license agreements. See the NOTICE file distributed
      13             :  *   with this work for additional information regarding copyright
      14             :  *   ownership. The ASF licenses this file to you under the Apache
      15             :  *   License, Version 2.0 (the "License"); you may not use this file
      16             :  *   except in compliance with the License. You may obtain a copy of
      17             :  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
      18             :  */
      19             : 
      20             : 
      21             : #include <assert.h>
      22             : #include <textconversion.hxx>
      23             : #include <com/sun/star/i18n/TextConversionType.hpp>
      24             : #include <com/sun/star/i18n/TextConversionOption.hpp>
      25             : #include <com/sun/star/linguistic2/ConversionDirection.hpp>
      26             : #include <com/sun/star/linguistic2/ConversionDictionaryType.hpp>
      27             : #include <com/sun/star/linguistic2/ConversionDictionaryList.hpp>
      28             : #include <comphelper/string.hxx>
      29             : 
      30             : using namespace com::sun::star::lang;
      31             : using namespace com::sun::star::i18n;
      32             : using namespace com::sun::star::linguistic2;
      33             : using namespace com::sun::star::uno;
      34             : 
      35             : 
      36             : namespace com { namespace sun { namespace star { namespace i18n {
      37             : 
      38           0 : TextConversion_zh::TextConversion_zh( const Reference < XComponentContext >& xContext )
      39             : {
      40           0 :     xCDL = ConversionDictionaryList::create(xContext);
      41             : 
      42           0 :     implementationName = "com.sun.star.i18n.TextConversion_zh";
      43           0 : }
      44             : 
      45           0 : sal_Unicode SAL_CALL getOneCharConversion(sal_Unicode ch, const sal_Unicode* Data, const sal_uInt16* Index)
      46             : {
      47           0 :     if (Data && Index) {
      48           0 :         sal_Unicode address = Index[ch>>8];
      49           0 :         if (address != 0xFFFF)
      50           0 :             address = Data[address + (ch & 0xFF)];
      51           0 :         return (address != 0xFFFF) ? address : ch;
      52             :     } else {
      53           0 :         return ch;
      54             :     }
      55             : }
      56             : 
      57             : #ifdef DISABLE_DYNLOADING
      58             : 
      59             : extern "C" {
      60             : 
      61             : const sal_Unicode* getSTC_CharData_T2S();
      62             : const sal_uInt16* getSTC_CharIndex_T2S();
      63             : const sal_Unicode* getSTC_CharData_S2V();
      64             : const sal_uInt16* getSTC_CharIndex_S2V();
      65             : const sal_Unicode* getSTC_CharData_S2T();
      66             : const sal_uInt16* getSTC_CharIndex_S2T();
      67             : 
      68             : const sal_Unicode *getSTC_WordData(sal_Int32&);
      69             : 
      70             : const sal_uInt16 *getSTC_WordIndex_T2S(sal_Int32&);
      71             : const sal_uInt16 *getSTC_WordEntry_T2S();
      72             : const sal_uInt16 *getSTC_WordIndex_S2T(sal_Int32&);
      73             : const sal_uInt16 *getSTC_WordEntry_S2T();
      74             : 
      75             : }
      76             : 
      77             : #endif
      78             : 
      79             : OUString SAL_CALL
      80           0 : TextConversion_zh::getCharConversion(const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength, sal_Bool toSChinese, sal_Int32 nConversionOptions)
      81             : {
      82             :     const sal_Unicode *Data;
      83             :     const sal_uInt16 *Index;
      84             : 
      85             : #ifndef DISABLE_DYNLOADING
      86           0 :     if (toSChinese) {
      87           0 :         Data = ((const sal_Unicode* (*)())getFunctionBySymbol("getSTC_CharData_T2S"))();
      88           0 :         Index = ((const sal_uInt16* (*)())getFunctionBySymbol("getSTC_CharIndex_T2S"))();
      89           0 :     } else if (nConversionOptions & TextConversionOption::USE_CHARACTER_VARIANTS) {
      90           0 :         Data = ((const sal_Unicode* (*)())getFunctionBySymbol("getSTC_CharData_S2V"))();
      91           0 :         Index = ((const sal_uInt16* (*)())getFunctionBySymbol("getSTC_CharIndex_S2V"))();
      92             :     } else {
      93           0 :         Data = ((const sal_Unicode* (*)())getFunctionBySymbol("getSTC_CharData_S2T"))();
      94           0 :         Index = ((const sal_uInt16* (*)())getFunctionBySymbol("getSTC_CharIndex_S2T"))();
      95             :     }
      96             : #else
      97             :     if (toSChinese) {
      98             :         Data = getSTC_CharData_T2S();
      99             :         Index = getSTC_CharIndex_T2S();
     100             :     } else if (nConversionOptions & TextConversionOption::USE_CHARACTER_VARIANTS) {
     101             :         Data = getSTC_CharData_S2V();
     102             :         Index = getSTC_CharIndex_S2V();
     103             :     } else {
     104             :         Data = getSTC_CharData_S2T();
     105             :         Index = getSTC_CharIndex_S2T();
     106             :     }
     107             : #endif
     108             : 
     109           0 :     rtl_uString * newStr = rtl_uString_alloc(nLength);
     110           0 :     for (sal_Int32 i = 0; i < nLength; i++)
     111             :         newStr->buffer[i] =
     112           0 :             getOneCharConversion(aText[nStartPos+i], Data, Index);
     113           0 :     return OUString(newStr, SAL_NO_ACQUIRE); //take ownership
     114             : }
     115             : 
     116             : OUString SAL_CALL
     117           0 : TextConversion_zh::getWordConversion(const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength, sal_Bool toSChinese, sal_Int32 nConversionOptions, Sequence<sal_Int32>& offset)
     118             : {
     119           0 :     sal_Int32 dictLen = 0;
     120           0 :     sal_Int32 maxLen = 0;
     121             :     const sal_uInt16 *index;
     122             :     const sal_uInt16 *entry;
     123             :     const sal_Unicode *charData;
     124             :     const sal_uInt16 *charIndex;
     125           0 :     sal_Bool one2one=sal_True;
     126             : 
     127             : #ifndef DISABLE_DYNLOADING
     128           0 :     const sal_Unicode *wordData = ((const sal_Unicode* (*)(sal_Int32&)) getFunctionBySymbol("getSTC_WordData"))(dictLen);
     129           0 :     if (toSChinese) {
     130           0 :         index = ((const sal_uInt16* (*)(sal_Int32&)) getFunctionBySymbol("getSTC_WordIndex_T2S"))(maxLen);
     131           0 :         entry = ((const sal_uInt16* (*)()) getFunctionBySymbol("getSTC_WordEntry_T2S"))();
     132           0 :         charData = ((const sal_Unicode* (*)()) getFunctionBySymbol("getSTC_CharData_T2S"))();
     133           0 :         charIndex = ((const sal_uInt16* (*)()) getFunctionBySymbol("getSTC_CharIndex_T2S"))();
     134             :     } else {
     135           0 :         index = ((const sal_uInt16* (*)(sal_Int32&)) getFunctionBySymbol("getSTC_WordIndex_S2T"))(maxLen);
     136           0 :         entry = ((const sal_uInt16* (*)()) getFunctionBySymbol("getSTC_WordEntry_S2T"))();
     137           0 :         if (nConversionOptions & TextConversionOption::USE_CHARACTER_VARIANTS) {
     138           0 :             charData = ((const sal_Unicode* (*)()) getFunctionBySymbol("getSTC_CharData_S2V"))();
     139           0 :             charIndex = ((const sal_uInt16* (*)()) getFunctionBySymbol("getSTC_CharIndex_S2V"))();
     140             :         } else {
     141           0 :             charData = ((const sal_Unicode* (*)()) getFunctionBySymbol("getSTC_CharData_S2T"))();
     142           0 :             charIndex = ((const sal_uInt16* (*)()) getFunctionBySymbol("getSTC_CharIndex_S2T"))();
     143             :         }
     144             :     }
     145             : #else
     146             :     const sal_Unicode *wordData = getSTC_WordData(dictLen);
     147             :     if (toSChinese) {
     148             :         index = getSTC_WordIndex_T2S(maxLen);
     149             :         entry = getSTC_WordEntry_T2S();
     150             :         charData = getSTC_CharData_T2S();
     151             :         charIndex = getSTC_CharIndex_T2S();
     152             :     } else {
     153             :         index = getSTC_WordIndex_S2T(maxLen);
     154             :         entry = getSTC_WordEntry_S2T();
     155             :         if (nConversionOptions & TextConversionOption::USE_CHARACTER_VARIANTS) {
     156             :             charData = getSTC_CharData_S2V();
     157             :             charIndex = getSTC_CharIndex_S2V();
     158             :         } else {
     159             :             charData = getSTC_CharData_S2T();
     160             :             charIndex = getSTC_CharIndex_S2T();
     161             :         }
     162             :     }
     163             : #endif
     164             : 
     165           0 :     if ((!wordData || !index || !entry) && !xCDL.is()) // no word mapping defined, do char2char conversion.
     166           0 :         return getCharConversion(aText, nStartPos, nLength, toSChinese, nConversionOptions);
     167             : 
     168           0 :     sal_Unicode *newStr = new sal_Unicode[nLength * 2 + 1];
     169           0 :     sal_Int32 currPos = 0, count = 0;
     170           0 :     while (currPos < nLength) {
     171           0 :         sal_Int32 len = nLength - currPos;
     172           0 :         sal_Bool found = sal_False;
     173           0 :         if (len > maxLen)
     174           0 :             len = maxLen;
     175           0 :         for (; len > 0 && ! found; len--) {
     176           0 :             OUString word = aText.copy(nStartPos + currPos, len);
     177           0 :             sal_Int32 current = 0;
     178             :             // user dictionary
     179           0 :             if (xCDL.is()) {
     180           0 :                 Sequence < OUString > conversions;
     181             :                 try {
     182           0 :                     conversions = xCDL->queryConversions(word, 0, len,
     183             :                             aLocale, ConversionDictionaryType::SCHINESE_TCHINESE,
     184             :                             /*toSChinese ?*/ ConversionDirection_FROM_LEFT /*: ConversionDirection_FROM_RIGHT*/,
     185           0 :                             nConversionOptions);
     186             :                 }
     187           0 :                 catch ( NoSupportException & ) {
     188             :                     // clear reference (when there is no user dictionary) in order
     189             :                     // to not always have to catch this exception again
     190             :                     // in further calls. (save time)
     191           0 :                     xCDL = 0;
     192             :                 }
     193           0 :                 catch (...) {
     194             :                     // catch all other exceptions to allow
     195             :                     // querying the system dictionary in the next line
     196             :                 }
     197           0 :                 if (conversions.getLength() > 0) {
     198           0 :                     if (offset.getLength() > 0) {
     199           0 :                         if (word.getLength() != conversions[0].getLength())
     200           0 :                             one2one=sal_False;
     201           0 :                         while (current < conversions[0].getLength()) {
     202           0 :                             offset[count] = nStartPos + currPos + (current *
     203           0 :                                     word.getLength() / conversions[0].getLength());
     204           0 :                             newStr[count++] = conversions[0][current++];
     205             :                         }
     206             :                         // offset[count-1] = nStartPos + currPos + word.getLength() - 1;
     207             :                     } else {
     208           0 :                         while (current < conversions[0].getLength())
     209           0 :                             newStr[count++] = conversions[0][current++];
     210             :                     }
     211           0 :                     currPos += word.getLength();
     212           0 :                     found = sal_True;
     213           0 :                 }
     214             :             }
     215             : 
     216           0 :             if (!found && index[len+1] - index[len] > 0) {
     217           0 :                 sal_Int32 bottom = (sal_Int32) index[len];
     218           0 :                 sal_Int32 top = (sal_Int32) index[len+1] - 1;
     219             : 
     220           0 :                 while (bottom <= top && !found) {
     221           0 :                     current = (top + bottom) / 2;
     222           0 :                     const sal_Int32 result = word.compareTo(wordData + entry[current]);
     223           0 :                     if (result < 0)
     224           0 :                         top = current - 1;
     225           0 :                     else if (result > 0)
     226           0 :                         bottom = current + 1;
     227             :                     else {
     228           0 :                         if (toSChinese)   // Traditionary/Simplified conversion,
     229           0 :                             for (current = entry[current]-1; current > 0 && wordData[current-1]; current--) ;
     230             :                         else  // Simplified/Traditionary conversion, forwards search for next word
     231           0 :                             current = entry[current] + word.getLength() + 1;
     232           0 :                         sal_Int32 start=current;
     233           0 :                         if (offset.getLength() > 0) {
     234           0 :                             if (word.getLength() != OUString(&wordData[current]).getLength())
     235           0 :                                 one2one=sal_False;
     236           0 :                             sal_Int32 convertedLength=OUString(&wordData[current]).getLength();
     237           0 :                             while (wordData[current]) {
     238           0 :                                 offset[count]=nStartPos + currPos + ((current-start) *
     239           0 :                                     word.getLength() / convertedLength);
     240           0 :                                 newStr[count++] = wordData[current++];
     241             :                             }
     242             :                             // offset[count-1]=nStartPos + currPos + word.getLength() - 1;
     243             :                         } else {
     244           0 :                             while (wordData[current])
     245           0 :                                 newStr[count++] = wordData[current++];
     246             :                         }
     247           0 :                         currPos += word.getLength();
     248           0 :                         found = sal_True;
     249             :                     }
     250             :                 }
     251             :             }
     252           0 :         }
     253           0 :         if (!found) {
     254           0 :             if (offset.getLength() > 0)
     255           0 :                 offset[count]=nStartPos+currPos;
     256           0 :             newStr[count++] =
     257           0 :                 getOneCharConversion(aText[nStartPos+currPos], charData, charIndex);
     258           0 :             currPos++;
     259             :         }
     260             :     }
     261           0 :     if (offset.getLength() > 0)
     262           0 :         offset.realloc(one2one ? 0 : count);
     263           0 :     OUString aRet(newStr, count);
     264           0 :     delete[] newStr;
     265           0 :     return aRet;
     266             : }
     267             : 
     268             : TextConversionResult SAL_CALL
     269           0 : TextConversion_zh::getConversions( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
     270             :     const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions)
     271             :     throw(  RuntimeException, IllegalArgumentException, NoSupportException )
     272             : {
     273           0 :     TextConversionResult result;
     274             : 
     275           0 :     result.Candidates.realloc(1);
     276           0 :     result.Candidates[0] = getConversion( aText, nStartPos, nLength, rLocale, nConversionType, nConversionOptions);
     277           0 :     result.Boundary.startPos = nStartPos;
     278           0 :     result.Boundary.endPos = nStartPos + nLength;
     279             : 
     280           0 :     return result;
     281             : }
     282             : 
     283             : OUString SAL_CALL
     284           0 : TextConversion_zh::getConversion( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
     285             :     const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions)
     286             :     throw(  RuntimeException, IllegalArgumentException, NoSupportException )
     287             : {
     288           0 :     if (rLocale.Language == "zh" && ( nConversionType == TextConversionType::TO_SCHINESE || nConversionType == TextConversionType::TO_TCHINESE) ) {
     289             : 
     290           0 :         aLocale=rLocale;
     291           0 :         sal_Bool toSChinese = nConversionType == TextConversionType::TO_SCHINESE;
     292             : 
     293           0 :         if (nConversionOptions & TextConversionOption::CHARACTER_BY_CHARACTER)
     294             :             // char to char dictionary
     295           0 :             return getCharConversion(aText, nStartPos, nLength, toSChinese, nConversionOptions);
     296             :         else {
     297           0 :             Sequence <sal_Int32> offset;
     298             :             // word to word dictionary
     299           0 :             return  getWordConversion(aText, nStartPos, nLength, toSChinese, nConversionOptions, offset);
     300             :         }
     301             :     } else
     302           0 :         throw NoSupportException(); // Conversion type is not supported in this service.
     303             : }
     304             : 
     305             : OUString SAL_CALL
     306           0 : TextConversion_zh::getConversionWithOffset( const OUString& aText, sal_Int32 nStartPos, sal_Int32 nLength,
     307             :     const Locale& rLocale, sal_Int16 nConversionType, sal_Int32 nConversionOptions, Sequence<sal_Int32>& offset)
     308             :     throw(  RuntimeException, IllegalArgumentException, NoSupportException )
     309             : {
     310           0 :     if (rLocale.Language == "zh" && ( nConversionType == TextConversionType::TO_SCHINESE || nConversionType == TextConversionType::TO_TCHINESE) ) {
     311             : 
     312           0 :         aLocale=rLocale;
     313           0 :         sal_Bool toSChinese = nConversionType == TextConversionType::TO_SCHINESE;
     314             : 
     315           0 :         if (nConversionOptions & TextConversionOption::CHARACTER_BY_CHARACTER) {
     316           0 :             offset.realloc(0);
     317             :             // char to char dictionary
     318           0 :             return getCharConversion(aText, nStartPos, nLength, toSChinese, nConversionOptions);
     319             :         } else {
     320           0 :             if (offset.getLength() < 2*nLength)
     321           0 :                 offset.realloc(2*nLength);
     322             :             // word to word dictionary
     323           0 :             return  getWordConversion(aText, nStartPos, nLength, toSChinese, nConversionOptions, offset);
     324             :         }
     325             :     } else
     326           0 :         throw NoSupportException(); // Conversion type is not supported in this service.
     327             : }
     328             : 
     329             : sal_Bool SAL_CALL
     330           0 : TextConversion_zh::interactiveConversion( const Locale& /*rLocale*/, sal_Int16 /*nTextConversionType*/, sal_Int32 /*nTextConversionOptions*/ )
     331             :     throw(  RuntimeException, IllegalArgumentException, NoSupportException )
     332             : {
     333           0 :     return sal_False;
     334             : }
     335             : 
     336             : } } } }
     337             : 
     338             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10