LCOV - code coverage report
Current view: top level - tools/source/reversemap - bestreversemap.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 60 0.0 %
Date: 2014-04-14 Functions: 0 7 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             : 
      10             : #include "sal/config.h"
      11             : #include "rtl/textcvt.h"
      12             : 
      13             : #include <stdio.h>
      14             : 
      15             : struct Encoder
      16             : {
      17             :     rtl_UnicodeToTextConverter m_aConverter;
      18             :     bool m_bCapable;
      19             :     rtl_TextEncoding m_nEncoding;
      20             :     const char *m_pEncoding;
      21           0 :     Encoder(rtl_TextEncoding nEncoding, const char *pEncoding)
      22             :         : m_bCapable(true)
      23             :         , m_nEncoding(nEncoding)
      24           0 :         , m_pEncoding(pEncoding)
      25             :     {
      26           0 :         m_aConverter = rtl_createUnicodeToTextConverter(m_nEncoding);
      27           0 :     }
      28           0 :     ~Encoder()
      29             :     {
      30           0 :         rtl_destroyUnicodeToTextConverter(m_aConverter);
      31           0 :     }
      32           0 :     void checkSupports(sal_Unicode c)
      33             :     {
      34             :         sal_Char aTempArray[8];
      35             :         sal_Size nTempSize;
      36             :         sal_uInt32 nCvtInfo;
      37             : 
      38             :         sal_Size nChars = rtl_convertUnicodeToText(m_aConverter,
      39             :             NULL, &c, 1, aTempArray, sizeof(aTempArray),
      40             :               RTL_UNICODETOTEXT_FLAGS_UNDEFINED_ERROR |  RTL_UNICODETOTEXT_FLAGS_INVALID_ERROR,
      41           0 :              &nCvtInfo, &nTempSize);
      42           0 :         m_bCapable = nChars > 0;
      43           0 :     }
      44           0 :     void reset()
      45             :     {
      46           0 :         m_bCapable = true;
      47           0 :     }
      48           0 :     bool isOK() const
      49             :     {
      50           0 :         return m_bCapable;
      51             :     }
      52           0 :     const char* getName() const
      53             :     {
      54           0 :         return m_pEncoding;
      55             :     }
      56             : 
      57             : };
      58             : 
      59           0 : int main()
      60             : {
      61             : #   define EXP(x) Encoder(x, #x)
      62             : 
      63             :     Encoder aConverters[15] =
      64             :     {
      65             :         EXP(RTL_TEXTENCODING_MS_1361),
      66             :         EXP(RTL_TEXTENCODING_MS_950),
      67             :         EXP(RTL_TEXTENCODING_MS_949),
      68             :         EXP(RTL_TEXTENCODING_MS_936),
      69             :         EXP(RTL_TEXTENCODING_MS_932),
      70             :         EXP(RTL_TEXTENCODING_MS_874),
      71             :         EXP(RTL_TEXTENCODING_MS_1258),
      72             :         EXP(RTL_TEXTENCODING_MS_1257),
      73             :         EXP(RTL_TEXTENCODING_MS_1256),
      74             :         EXP(RTL_TEXTENCODING_MS_1255),
      75             :         EXP(RTL_TEXTENCODING_MS_1254),
      76             :         EXP(RTL_TEXTENCODING_MS_1253),
      77             :         EXP(RTL_TEXTENCODING_MS_1251),
      78             :         EXP(RTL_TEXTENCODING_MS_1250),
      79             :         EXP(RTL_TEXTENCODING_MS_1252)
      80           0 :     };
      81             : 
      82           0 :     printf("//Do not edit manually, generated from bestreversemap.cxx\n");
      83           0 :     printf("rtl_TextEncoding getBestMSEncodingByChar(sal_Unicode c)\n");
      84           0 :     printf("{\n");
      85             : 
      86           0 :     sal_Unicode c = 0;
      87           0 :     while (c < 0xFFFF)
      88             :     {
      89           0 :         for (size_t i = 0; i < SAL_N_ELEMENTS(aConverters); ++i)
      90           0 :             aConverters[i].reset();
      91             : 
      92           0 :         int nMostCapable = -1;
      93             : 
      94           0 :         while(c < 0xFFFF)
      95             :         {
      96           0 :             bool bSomethingCapable = false;
      97           0 :             for (size_t i = 0; i < SAL_N_ELEMENTS(aConverters); ++i)
      98             :             {
      99           0 :                 if (aConverters[i].isOK())
     100           0 :                     aConverters[i].checkSupports(c);
     101           0 :                 if (aConverters[i].isOK())
     102             :                 {
     103           0 :                     bSomethingCapable = true;
     104           0 :                     nMostCapable = i;
     105             :                 }
     106             :             }
     107           0 :             if (!bSomethingCapable)
     108           0 :                 break;
     109           0 :             ++c;
     110             :         }
     111           0 :         sal_Unicode cEnd = c;
     112           0 :         printf("    if (c < 0x%x)\n", c);
     113           0 :         printf("        return %s;\n", aConverters[nMostCapable].getName());
     114           0 :         while(c < 0xFFFF)
     115             :         {
     116           0 :             bool bNothingCapable = true;
     117           0 :             for (size_t i = 0; i < SAL_N_ELEMENTS(aConverters); ++i)
     118             :             {
     119           0 :                 aConverters[i].checkSupports(c);
     120           0 :                 if (aConverters[i].isOK())
     121             :                 {
     122           0 :                     bNothingCapable = false;
     123           0 :                     break;
     124             :                 }
     125             :             }
     126           0 :             if (!bNothingCapable)
     127           0 :                 break;
     128           0 :             ++c;
     129             :         }
     130           0 :         if (cEnd != c)
     131             :         {
     132           0 :             if (c < 0xFFFF)
     133             :             {
     134           0 :                 printf("    if (c < 0x%x)\n", c);
     135           0 :                 printf("        return RTL_TEXTENCODING_DONTKNOW;\n");
     136             :             }
     137             :             else
     138           0 :                 printf("    return RTL_TEXTENCODING_DONTKNOW;\n");
     139             :         }
     140             :     }
     141             : 
     142           0 :     printf("}\n");
     143           0 :     fflush(stdout);
     144             : 
     145           0 :     return EXIT_SUCCESS;
     146             : }
     147             : 
     148             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10