Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / i18npool / source / collator / gencoll_rule.cxx
blobafca09f00d360cc3bf1b8f1dce45c33b2c6cbdd0
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
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>
29 #include "warnings_guard_unicode_tblcoll.h"
31 U_CAPI void U_EXPORT2 uprv_free(void *mem);
33 using namespace ::rtl;
35 /* Main Procedure */
37 void data_write(char* file, char* name, sal_uInt8 *data, sal_Int32 len)
39 FILE *fp = fopen(file, "wb");
40 if (fp == NULL) {
41 fprintf(stderr, "Opening %s for writing failed: %s\n", file, strerror(errno));
42 exit(1);
45 fprintf(fp, "/*\n");
46 fprintf(fp, " * Copyright(c) 1999 - 2000, Sun Microsystems, Inc.\n");
47 fprintf(fp, " * All Rights Reserved.\n");
48 fprintf(fp, " */\n\n");
49 fprintf(fp, "/* !!!The file is generated automatically. DONOT edit the file manually!!! */\n\n");
50 fprintf(fp, "#include <sal/types.h>\n");
51 fprintf(fp, "\nextern \"C\" {\n");
53 // generate main dict. data array
54 fprintf(fp, "\nstatic const sal_uInt8 %s[] = {", name);
56 sal_Int32 count = 0;
57 for (sal_Int32 i = 0; i < len; i++) {
59 if (count++ % 16 == 0)
60 fprintf(fp, "\n\t");
62 fprintf(fp, "0x%04x, ", data[i]);
64 fprintf(fp, "\n};\n\n");
66 fprintf(fp, "#ifndef DISABLE_DYNLOADING\n");
67 fprintf(fp, "SAL_DLLPUBLIC_EXPORT const sal_uInt8* get_%s() { return %s; }\n", name, name);
68 fprintf(fp, "#else\n");
69 fprintf(fp, "SAL_DLLPUBLIC_EXPORT const sal_uInt8* get_collator_data_%s() { return %s; }\n", name, name);
70 fprintf(fp, "#endif\n");
71 fprintf(fp, "\n");
72 fprintf (fp, "}\n");
74 fclose(fp);
78 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv)
80 FILE *fp;
82 if (argc < 4) exit(-1);
84 fp = fopen(argv[1], "rb"); // open the source file for read;
85 if (fp == NULL){
86 fprintf(stderr, "Opening the rule source file %s for reading failed: %s\n", argv[1], strerror(errno));
87 exit(1);
90 sal_Char str[1024];
91 OUStringBuffer Obuf;
92 while (fgets(str, 1024, fp)) {
93 // don't convert last new line character to Ostr.
94 sal_Int32 len = strlen(str) - 1;
95 // skip comment line
96 if (len == 0 || str[0] == '#')
97 continue;
99 // input file is in UTF-8 encoding
100 OUString Ostr = OUString((const sal_Char *)str, len, RTL_TEXTENCODING_UTF8).trim();
102 len = Ostr.getLength();
103 if (len == 0)
104 continue; // skip empty line.
106 Obuf.append(Ostr);
108 fclose(fp);
110 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);
115 RuleBasedCollator *coll = new RuleBasedCollator(reinterpret_cast<const UChar *>(Obuf.getStr()), status); // UChar != sal_Unicode in MinGW
117 if (U_SUCCESS(status)) {
119 int32_t len = 0;
120 uint8_t *data = coll->cloneRuleData(len, status);
122 if (U_SUCCESS(status) && data != NULL)
123 data_write(argv[2], argv[3], data, len);
124 else {
125 printf("Could not get rule data from collator\n");
128 if (data) uprv_free(data);
129 } else {
130 printf("\nRule parsering error\n");
133 if (coll)
134 delete coll;
136 return U_SUCCESS(status) ? 0 : 1;
137 } // End of main
139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */