Branch libreoffice-5-0-4
[LibreOffice.git] / l10ntools / source / xrmlex.l
blob0d4bb4d48573528fd38035d3168a6ae01732b617
1 %{
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  */
21  * lexer for parsing xml-property source files (*.xml)
22  */
24 #include "sal/config.h"
26 /* enlarge token buffer to tokenize whole strings */
27 #undef YYLMAX
28 #define YYLMAX 64000
30 /* to enable debug output define LEXDEBUG */
31 #define LEXDEBUG                1
32 #ifdef LEXDEBUG
33 #define OUTPUT  fprintf
34 #else
35 #define OUTPUT(Par1,Par2);
36 #endif
38 /* table of possible token ids */
39 #include "tokens.h"
40 #include "xrmlex.hxx"
41 #include <stdlib.h>
42 #include <stdio.h>
44 #include "sal/main.h"
46 #ifdef __GNUC__
47 #pragma GCC diagnostic ignored "-Wunused-function"
48 #pragma GCC diagnostic ignored "-Wunused-label"
49 #pragma GCC diagnostic ignored "-Wunused-but-set-variable"
50 #elif defined _MSC_VER
51 #pragma warning(push, 1)
52 #endif
53 #define YY_NO_UNISTD_H
55 /* forwards */
56 void YYWarning();
58 int bText=0;
61 %option yylineno
62 %option never-interactive
64 %p 24000
65 %e 1200
66 %n 500
70 "<p "[^\>]*xml:lang[^\>]*\> {
71         WorkOnTokenSet( XRM_TEXT_START , yytext );
74 "</p>" {
75         WorkOnTokenSet( XRM_TEXT_END, yytext );
78 "<h1 "[^\>]*xml:lang[^\>]*\> {
79         WorkOnTokenSet( XRM_TEXT_START , yytext );
82 "</h1>" {
83         WorkOnTokenSet( XRM_TEXT_END, yytext );
85 "<h2 "[^\>]*xml:lang[^\>]*\> {
86         WorkOnTokenSet( XRM_TEXT_START , yytext );
89 "</h2>" {
90         WorkOnTokenSet( XRM_TEXT_END, yytext );
92 "<h3 "[^\>]*xml:lang[^\>]*\> {
93         WorkOnTokenSet( XRM_TEXT_START , yytext );
96 "</h3>" {
97         WorkOnTokenSet( XRM_TEXT_END, yytext );
99 "<h4 "[^\>]*xml:lang[^\>]*\> {
100         WorkOnTokenSet( XRM_TEXT_START , yytext );
103 "</h4>" {
104         WorkOnTokenSet( XRM_TEXT_END, yytext );
106 "<h5 "[^\>]*xml:lang[^\>]*\> {
107         WorkOnTokenSet( XRM_TEXT_START , yytext );
110 "</h5>" {
111         WorkOnTokenSet( XRM_TEXT_END, yytext );
114 "<display-name>" {
115         WorkOnTokenSet( DESC_DISPLAY_NAME_START , yytext );
118 "</display-name>" {
119         WorkOnTokenSet( DESC_DISPLAY_NAME_END, yytext );
122 "<name "[^\>]*lang[^\>]*\> {
123         WorkOnTokenSet( DESC_TEXT_START , yytext );
126 "</name>" {
127         WorkOnTokenSet( DESC_TEXT_END, yytext );
130 "<extension-description>" {
131         WorkOnTokenSet( DESC_EXTENSION_DESCRIPTION_START , yytext );
134 "</extension-description>" {
135         WorkOnTokenSet( DESC_EXTENSION_DESCRIPTION_END , yytext );
138 "<src "[^\>]*lang[^\>]*\> {
139         WorkOnTokenSet( DESC_EXTENSION_DESCRIPTION_SRC , yytext );
144 "<!--"  {
145         char c1 = 0, c2 = 0;
146         int c3 = yyinput();
147         char pChar[2];
148         pChar[1] = 0x00;
149         pChar[0] = c3;
151         WorkOnTokenSet( COMMENT, yytext );
152         WorkOnTokenSet( COMMENT, pChar );
154         for(;;) {
155                 if ( c3 == EOF )
156                         break;
157                 if ( c1 == '-' && c2 == '-' && c3 == '>' )
158                         break;
159                 c1 = c2;
160                 c2 = c3;
161                 c3 = yyinput();
162                 pChar[0] = c3;
163                 WorkOnTokenSet( COMMENT, pChar );
164         }
167 .|\n {
168         if ( bText == 1 )
169                 WorkOnTokenSet( XML_TEXTCHAR, yytext );
170         else
171                 WorkOnTokenSet( UNKNOWNCHAR, yytext );
177 /*****************************************************************************/
178 int     yywrap(void)
179 /*****************************************************************************/
181         return 1;
184 /*****************************************************************************/
185 void YYWarning( const char *s )
186 /*****************************************************************************/
188         /* write warning to stderr */
189         fprintf( stderr,
190                 "Warning: \"%s\" in line %d: \"%s\"\n", s, yylineno, yytext  );
193 /*****************************************************************************/
194 void yyerror ( const char *s )
195 /*****************************************************************************/
197         /* write error to stderr */
198         fprintf( stderr,
199                 "Error: \"%s\" in line %d: \"%s\"\n", s, yylineno, yytext  );
200         SetError();
203 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
204         /* error level */
205         int nRetValue = 0;
206         FILE *pFile;
208         if ( !GetOutputFile( argc, argv ) )
209         {
210                 return 1;
211         }
212         pFile = GetXrmFile();
213         InitXrmExport( getFilename() );
215     if ( !pFile )
216                 return 1;
218         yyin = pFile;
220         /* create global instance of class XmlExport */
221         //InitXrmExport( pOutput );
223         /* start parser */
224         yylex();
226         /* get error info. and end export */
227         nRetValue = GetError();
228         EndXrmExport();
230         /* return error level */
231         return nRetValue;