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 * lexer for parsing cfg source files
24 #include "sal/config.h"
26 /* enlarge token buffer to tokenize whole strings */
30 /* to enable debug output define LEXDEBUG */
33 #define OUTPUT fprintf
35 #define OUTPUT(Par1,Par2);
38 /* table of possible token ids */
48 #pragma GCC diagnostic ignored "-Wunused-function"
49 #pragma GCC diagnostic ignored "-Wunused-label"
50 #pragma GCC diagnostic ignored "-Wunused-but-set-variable"
51 #elif defined _MSC_VER
52 #pragma warning(push, 1)
54 #define YY_NO_UNISTD_H
57 #define YY_USER_ACTION yycolumn += yyleng;
63 %option never-interactive
71 \<[^\>]*"xml:lang="\""x-no-translate"\"[^\<]*\/\> {
73 workOnTokenSet( CFG_TOKEN_NO_TRANSLATE, yytext );
78 workOnTokenSet( ANYTOKEN, yytext );
81 \<[^\>]*"xml:lang="\".*\"[^\<]*\> {
83 workOnTokenSet( CFG_TEXT_START, yytext );
89 workOnTokenSet( CFG_TAG, yytext );
94 workOnTokenSet( CFG_TAG, yytext );
105 workOnTokenSet( COMMENT, yytext );
106 workOnTokenSet( COMMENT, pChar );
111 if ( c1 == '-' && c2 == '-' && c3 == '>' )
118 workOnTokenSet( COMMENT, pChar );
124 workOnTokenSet( CFG_CLOSETAG, yytext );
129 if ( yytext[ 1 ] == '!' && yytext[ 2 ] == '-' && yytext[ 3 ] == '-' )
130 workOnTokenSet( COMMENT, yytext );
132 workOnTokenSet( CFG_UNKNOWNTAG, yytext );
138 workOnTokenSet( CFG_TEXTCHAR, yytext );
140 workOnTokenSet( UNKNOWNCHAR, yytext );
146 /*****************************************************************************/
148 /*****************************************************************************/
153 /*****************************************************************************/
154 void YYWarning( const char *s )
155 /*****************************************************************************/
157 /* write warning to stderr */
159 "Warning: \"%s\" in line %d, column %d: \"%s\"\n", s, yylineno, yycolumn, yytext );
162 /*****************************************************************************/
163 void yyerror ( const char *s )
164 /*****************************************************************************/
166 /* write error to stderr */
168 "Error: \"%s\" in line %d, column %d: \"%s\"\n", s, yylineno, yycolumn, yytext );
172 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
173 yyin = init(argc, argv);