bump product version to 4.1.6.2
[LibreOffice.git] / l10ntools / source / cfglex.l
blob501debd9ee9dc0741ac5f4dcb774e016887ffa04
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 cfg source files
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 <stdlib.h>
41 #include <stdio.h>
43 #include "sal/main.h"
45 #if HAVE_GCC_PRAGMA_DIAGNOSTIC_MODIFY
46 #pragma GCC diagnostic ignored "-Wunused-function"
47 #pragma GCC diagnostic ignored "-Wunused-label"
48 #if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))
49 #pragma GCC diagnostic ignored "-Wunused-but-set-variable"
50 #endif
51 #elif defined __SUNPRO_CC
52 #pragma disable_warn
53 #elif defined _MSC_VER
54 #pragma warning(push, 1)
55 #endif
56 #define YY_NO_UNISTD_H
58 int yycolumn = 1;
59 #define YY_USER_ACTION yycolumn += yyleng;
61 /* external functions (C++ code, declared as extern "C" */
62 extern "C" void workOnTokenSet( int, char* );
63 extern "C" FILE * init(int, char **);
65 int bText=0;
68 %option yylineno
69 %option never-interactive
71 %p 24000
72 %e 1200
73 %n 500
77 \<[^\>]*"xml:lang="\""x-no-translate"\"[^\<]*\/\>       {
78         bText = 0;
79         workOnTokenSet( CFG_TOKEN_NO_TRANSLATE, yytext );
82 \<.*\/\> {
83         bText = 0;
84         workOnTokenSet( ANYTOKEN, yytext );
87 \<[^\>]*"xml:lang="\".*\"[^\<]*\>       {
88         bText = 1;
89         workOnTokenSet( CFG_TEXT_START, yytext );
93 \<[^\/\!][^\>]*\>       {
94         bText = 0;
95         workOnTokenSet( CFG_TAG, yytext );
98 "<!"DOCTYPE[^\>]*\>     {
99         bText = 0;
100         workOnTokenSet( CFG_TAG, yytext );
104 \<\!\-\-        {
105         char c1 = 0, c2 = 0;
106         int c3 = yyinput();
107         char pChar[2];
108         pChar[1] = 0x00;
109         pChar[0] = c3;
111         workOnTokenSet( COMMENT, yytext );
112         workOnTokenSet( COMMENT, pChar );
114         for(;;) {
115                 if ( c3 == EOF )
116                         break;
117                 if ( c1 == '-' && c2 == '-' && c3 == '>' )
118                         break;
119                 c1 = c2;
120                 c2 = c3;
121                 c3 = yyinput();
123                 pChar[0] = c3;
124                 workOnTokenSet( COMMENT, pChar );
125         }
128 \<\/[^\>]*\> {
129         bText = 0;
130         workOnTokenSet( CFG_CLOSETAG, yytext );
133 \<[^\>\!]*\> {
134         bText = 0;
135         if ( yytext[ 1 ] == '!' && yytext[ 2 ] == '-' && yytext[ 3 ] == '-' )
136                 workOnTokenSet( COMMENT, yytext );
137         else
138                 workOnTokenSet( CFG_UNKNOWNTAG, yytext );
141 .|\n {
142     yycolumn = 1;
143         if ( bText == 1 )
144                 workOnTokenSet( CFG_TEXTCHAR, yytext );
145         else
146                 workOnTokenSet( UNKNOWNCHAR, yytext );
152 /*****************************************************************************/
153 int     yywrap(void)
154 /*****************************************************************************/
156         return 1;
159 /*****************************************************************************/
160 void YYWarning( const char *s )
161 /*****************************************************************************/
163         /* write warning to stderr */
164         fprintf( stderr,
165                 "Warning: \"%s\" in line %d, column %d: \"%s\"\n", s, yylineno, yycolumn, yytext  );
168 /*****************************************************************************/
169 void yyerror ( const char *s )
170 /*****************************************************************************/
172         /* write error to stderr */
173         fprintf( stderr,
174                 "Error: \"%s\" in line %d, column %d: \"%s\"\n", s, yylineno, yycolumn, yytext  );
175         exit(EXIT_FAILURE);
178 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
179     yyin = init(argc, argv);
180     yylex();
181     return EXIT_SUCCESS;