LCOV - code coverage report
Current view: top level - usr/local/src/libreoffice/i18npool/source/collator - gencoll_rule.cxx (source / functions) Hit Total Coverage
Test: libreoffice_filtered.info Lines: 52 59 88.1 %
Date: 2013-07-09 Functions: 3 3 100.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 <stdio.h>
      22             : #include <string.h>
      23             : #include <stdlib.h>
      24             : #include <errno.h>
      25             : #include <sal/main.h>
      26             : #include <sal/types.h>
      27             : #include <rtl/ustrbuf.hxx>
      28             : 
      29             : #include "warnings_guard_unicode_tblcoll.h"
      30             : 
      31             : U_CAPI void U_EXPORT2 uprv_free(void *mem);
      32             : 
      33             : using namespace ::rtl;
      34             : 
      35             : /* Main Procedure */
      36             : 
      37          20 : void data_write(char* file, char* name, sal_uInt8 *data, sal_Int32 len)
      38             : {
      39          20 :     FILE *fp = fopen(file, "wb");
      40          20 :     if (fp == NULL) {
      41           0 :         fprintf(stderr, "Opening %s for writing failed: %s\n", file, strerror(errno));
      42           0 :         exit(1);
      43             :     }
      44             : 
      45          20 :     fprintf(fp, "/*\n");
      46          20 :     fprintf(fp, " * Copyright(c) 1999 - 2000, Sun Microsystems, Inc.\n");
      47          20 :     fprintf(fp, " * All Rights Reserved.\n");
      48          20 :     fprintf(fp, " */\n\n");
      49          20 :     fprintf(fp, "/* !!!The file is generated automatically. DONOT edit the file manually!!! */\n\n");
      50          20 :     fprintf(fp, "#include <sal/types.h>\n");
      51          20 :     fprintf(fp, "\nextern \"C\" {\n");
      52             : 
      53             :     // generate main dict. data array
      54          20 :     fprintf(fp, "\nstatic const sal_uInt8 %s[] = {", name);
      55             : 
      56          20 :     sal_Int32 count = 0;
      57     1564824 :     for (sal_Int32 i = 0; i < len; i++) {
      58             : 
      59     1564804 :         if (count++ % 16 == 0)
      60       97806 :             fprintf(fp, "\n\t");
      61             : 
      62     1564804 :         fprintf(fp, "0x%04x, ", data[i]);
      63             :     }
      64          20 :     fprintf(fp, "\n};\n\n");
      65             : 
      66          20 :     fprintf(fp, "#ifndef DISABLE_DYNLOADING\n");
      67          20 :     fprintf(fp, "SAL_DLLPUBLIC_EXPORT const sal_uInt8* get_%s() { return %s; }\n", name, name);
      68          20 :     fprintf(fp, "#else\n");
      69          20 :     fprintf(fp, "SAL_DLLPUBLIC_EXPORT const sal_uInt8* get_collator_data_%s() { return %s; }\n", name, name);
      70          20 :     fprintf(fp, "#endif\n");
      71          20 :     fprintf(fp, "\n");
      72          20 :     fprintf (fp, "}\n");
      73             : 
      74          20 :     fclose(fp);
      75             : 
      76          20 : }
      77             : 
      78          40 : SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
      79             : {
      80             :     FILE *fp;
      81             : 
      82          20 :     if (argc < 4) exit(-1);
      83             : 
      84          20 :     fp = fopen(argv[1], "rb");  // open the source file for read;
      85          20 :     if (fp == NULL){
      86           0 :         fprintf(stderr, "Opening the rule source file %s for reading failed: %s\n", argv[1], strerror(errno));
      87           0 :         exit(1);
      88             :     }
      89             : 
      90             :     sal_Char str[1024];
      91          20 :     OUStringBuffer Obuf;
      92       23588 :     while (fgets(str, 1024, fp)) {
      93             :         // don't convert last new line character to Ostr.
      94       23548 :         sal_Int32 len = strlen(str) - 1;
      95             :         // skip comment line
      96       23548 :         if (len == 0 || str[0] == '#')
      97         708 :             continue;
      98             : 
      99             :         // input file is in UTF-8 encoding
     100       23194 :         OUString Ostr = OUString((const sal_Char *)str, len, RTL_TEXTENCODING_UTF8).trim();
     101             : 
     102       23194 :         len = Ostr.getLength();
     103       23194 :         if (len == 0)
     104           0 :             continue; // skip empty line.
     105             : 
     106       23194 :         Obuf.append(Ostr);
     107       23194 :     }
     108          20 :     fclose(fp);
     109             : 
     110          20 :     UErrorCode status = U_ZERO_ERROR;
     111             :     //UParseError parseError;
     112             :     //UCollator *coll = ucol_openRules(Obuf.getStr(), Obuf.getLength(), UCOL_OFF,
     113             :     //        UCOL_DEFAULT_STRENGTH, &parseError, &status);
     114             : 
     115          20 :     RuleBasedCollator *coll = new RuleBasedCollator(reinterpret_cast<const UChar *>(Obuf.getStr()), status);    // UChar != sal_Unicode in MinGW
     116             : 
     117          20 :     if (U_SUCCESS(status)) {
     118             : 
     119          20 :         int32_t len = 0;
     120          20 :         uint8_t *data = coll->cloneRuleData(len, status);
     121             : 
     122          20 :         if (U_SUCCESS(status) && data != NULL)
     123          20 :             data_write(argv[2], argv[3], data, len);
     124             :         else {
     125           0 :             printf("Could not get rule data from collator\n");
     126             :         }
     127             : 
     128          20 :     if (data) uprv_free(data);
     129             :     } else {
     130           0 :         printf("\nRule parsering error\n");
     131             :     }
     132             : 
     133          20 :     if (coll)
     134          20 :         delete coll;
     135             : 
     136          20 :     return U_SUCCESS(status) ? 0 : 1;
     137             : }   // End of main
     138             : 
     139             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10