tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / l10ntools / source / cfglex.l
blob1bac5a32d53d71a2d416c49bf2d6ab4700566e14
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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  */
23  * lexer for parsing cfg source files
24  */
26 #include <sal/config.h>
28 /* enlarge token buffer to tokenize whole strings */
29 #undef YYLMAX
30 #define YYLMAX 64000
32 /* to enable debug output define LEXDEBUG */
33 #define LEXDEBUG        1
34 #ifdef LEXDEBUG
35 #define OUTPUT  fprintf
36 #else
37 #define OUTPUT(Par1,Par2);
38 #endif
40 /* table of possible token ids */
41 #include <tokens.h>
42 #include <stdlib.h>
43 #include <stdio.h>
45 #include <sal/main.h>
47 #include <cfglex.hxx>
49 #define YY_NO_UNISTD_H
51 static int yycolumn = 1;
52 #define YY_USER_ACTION yycolumn += yyleng;
54 static int bText=0;
57 %option yylineno
58 %option nounput
59 %option never-interactive
61 %p 24000
62 %e 1200
63 %n 500
67 \<[^\>]*"xml:lang="\""x-no-translate"\"[^\<]*\/\>   {
68     bText = 0;
69     workOnTokenSet( CFG_TOKEN_NO_TRANSLATE, yytext );
72 \<.*\/\> {
73     bText = 0;
74     workOnTokenSet( ANYTOKEN, yytext );
77 \<[^\>]*"xml:lang="\".*\"[^\<]*\>   {
78     bText = 1;
79     workOnTokenSet( CFG_TEXT_START, yytext );
83 \<[^\/\!][^\>]*\>   {
84     bText = 0;
85     workOnTokenSet( CFG_TAG, yytext );
88 "<!"DOCTYPE[^\>]*\> {
89     bText = 0;
90     workOnTokenSet( CFG_TAG, yytext );
94 \<\!\-\-    {
95     char c1 = 0, c2 = 0;
96     int c3 = yyinput();
97     char pChar[2];
98     pChar[1] = 0x00;
99     pChar[0] = c3;
101     workOnTokenSet( COMMENT, yytext );
102     workOnTokenSet( COMMENT, pChar );
104     for(;;) {
105         if ( c3 == EOF )
106             break;
107         if ( c1 == '-' && c2 == '-' && c3 == '>' )
108             break;
109         c1 = c2;
110         c2 = c3;
111         c3 = yyinput();
113         pChar[0] = c3;
114         workOnTokenSet( COMMENT, pChar );
115     }
118 \<\/[^\>]*\> {
119     bText = 0;
120     workOnTokenSet( CFG_CLOSETAG, yytext );
123 \<[^\>\!]*\> {
124     bText = 0;
125     if ( yytext[ 1 ] == '!' && yytext[ 2 ] == '-' && yytext[ 3 ] == '-' )
126         workOnTokenSet( COMMENT, yytext );
127     else
128         workOnTokenSet( CFG_UNKNOWNTAG, yytext );
131 .|\n {
132     yycolumn = 1;
133     if ( bText == 1 )
134         workOnTokenSet( CFG_TEXTCHAR, yytext );
135     else
136         workOnTokenSet( UNKNOWNCHAR, yytext );
142 /*****************************************************************************/
143 int yywrap(void)
144 /*****************************************************************************/
146     return 1;
149 /*****************************************************************************/
150 void yyerror ( const char *s )
151 /*****************************************************************************/
153     /* write error to stderr */
154     fprintf( stderr,
155         "Error: \"%s\" in line %d, column %d: \"%s\"\n", s, yylineno, yycolumn, yytext  );
156     exit(EXIT_FAILURE);
159 SAL_IMPLEMENT_MAIN_WITH_ARGS(argc, argv) {
160     yyin = init(argc, argv);
161     yylex();
162     return EXIT_SUCCESS;
165 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */