Imported Upstream version 1.9.4
[platform/upstream/doxygen.git] / src / commentcnv.l
1 /*****************************************************************************
2  *
3  * 
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby 
9  * granted. No representations are made about the suitability of this software 
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  */
17 %option never-interactive
18 %option prefix="commentcnvYY"
19 %option reentrant
20 %option extra-type="struct commentcnvYY_state *"
21 %top{
22 #include <stdint.h>
23 // forward declare yyscan_t to improve type safety
24 #define YY_TYPEDEF_YY_SCANNER_T
25 struct yyguts_t;
26 typedef yyguts_t *yyscan_t;
27 }
28
29 %{
30
31   
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <stack>
35 #include <algorithm>
36
37 #include "bufstr.h"
38 #include "debug.h"
39 #include "message.h"
40 #include "config.h"
41 #include "doxygen.h"
42 #include "util.h"
43 #include "condparser.h"
44
45 #include <assert.h>
46
47 #define YY_NO_INPUT 1
48 #define YY_NO_UNISTD_H 1
49
50 #define ADDCHAR(c)    yyextra->outBuf->addChar(c)
51 #define ADDARRAY(a,s) yyextra->outBuf->addArray(a,s)
52
53 #define USE_STATE2STRING 0
54   
55 struct commentcnvYY_CondCtx
56 {
57   commentcnvYY_CondCtx(int line,QCString id,bool b) 
58     : lineNr(line),sectionId(id), skip(b) {}
59   int lineNr;
60   QCString sectionId;
61   bool skip;
62 };
63   
64 struct CommentCtx
65 {
66   CommentCtx(int line) 
67     : lineNr(line) {}
68   int lineNr;
69 };
70   
71 struct commentcnvYY_state
72 {
73   BufStr * inBuf = 0;
74   BufStr * outBuf = 0;
75   yy_size_t inBufPos = 0;
76   int      col = 0;
77   int      blockHeadCol = 0;
78   bool     mlBrief = FALSE;
79   int      readLineCtx = 0;
80   bool     skip = FALSE;
81   QCString fileName;
82   int      lineNr = 0;
83   int      condCtx = 0;
84   std::stack<commentcnvYY_CondCtx> condStack;
85   std::stack<int> commentStack;
86   QCString blockName;
87   int      lastCommentContext = 0;
88   bool     inSpecialComment = FALSE;
89   bool     inRoseComment= FALSE;
90   int      stringContext = 0;
91   int      charContext = 0;
92   int      javaBlock = 0;
93   bool     specialComment = FALSE;
94
95   QCString aliasString;
96   int      blockCount = 0;
97   bool     lastEscaped = FALSE;
98   int      lastBlockContext= 0;
99   bool     pythonDocString = FALSE;
100   int      nestingCount= 0;
101
102   bool     vhdl = FALSE; // for VHDL old style --! comment
103
104   SrcLangExt lang = SrcLangExt_Unknown;
105   bool       isFixedForm = FALSE; // For Fortran
106 };
107
108 #if USE_STATE2STRING
109 static const char *stateToString(int state);
110 #endif
111 static inline int computeIndent(const char *s);
112
113 static void replaceCommentMarker(yyscan_t yyscanner,const char *s,int len);
114 static inline void copyToOutput(yyscan_t yyscanner,const char *s,int len);
115 static void startCondSection(yyscan_t yyscanner,const QCString &sectId);
116 static void endCondSection(yyscan_t yyscanner);
117 static void handleCondSectionId(yyscan_t yyscanner,const char *expression);
118 static void replaceAliases(yyscan_t yyscanner,const QCString &s);
119 static yy_size_t yyread(yyscan_t yyscanner,char *buf,yy_size_t max_size);
120 static void replaceComment(yyscan_t yyscanner,int offset);
121 static void clearCommentStack(yyscan_t yyscanner);
122
123
124
125
126 #undef  YY_INPUT
127 #define YY_INPUT(buf,result,max_size) result=yyread(yyscanner,buf,max_size);
128
129 // otherwise the filename would be the name of the converted file (*.cpp instead of *.l)
130 static inline const char *getLexerFILE() {return __FILE__;}
131 #include "doxygen_lex.h"
132
133 %}
134
135 MAILADDR   ("mailto:")?[a-z_A-Z0-9\x80-\xff.+-]+"@"[a-z_A-Z0-9\x80-\xff-]+("."[a-z_A-Z0-9\x80-\xff\-]+)+[a-z_A-Z0-9\x80-\xff\-]+
136
137 %option noyywrap
138
139 %x Scan
140 %x SkipString
141 %x SkipChar
142 %x SComment
143 %x CComment
144 %x CNComment
145 %x Verbatim
146 %x VerbatimCode
147 %x ReadLine
148 %x CondLine
149 %x ReadAliasArgs
150
151   //- start: NUMBER -------------------------------------------------------------------------
152   // Note same defines in code.l: keep in sync
153 DECIMAL_INTEGER  [1-9][0-9']*[0-9]?[uU]?[lL]?[lL]?
154 HEXADECIMAL_INTEGER  "0"[xX][0-9a-zA-Z']+[0-9a-zA-Z]?
155 OCTAL_INTEGER  "0"[0-7][0-7']+[0-7]?
156 BINARY_INTEGER  "0"[bB][01][01']*[01]?
157 INTEGER_NUMBER {DECIMAL_INTEGER}|{HEXADECIMAL_INTEGER}|{OCTAL_INTEGER}|{BINARY_INTEGER}
158
159 FP_SUF [fFlL]
160
161 DIGIT_SEQ [0-9][0-9']*[0-9]?
162 FRAC_CONST {DIGIT_SEQ}"."|{DIGIT_SEQ}?"."{DIGIT_SEQ}
163 FP_EXP [eE][+-]?{DIGIT_SEQ}
164 DEC_FP1 {FRAC_CONST}{FP_EXP}?{FP_SUF}?
165 DEC_FP2 {DIGIT_SEQ}{FP_EXP}{FP_SUF}
166
167 HEX_DIGIT_SEQ [0-9a-fA-F][0-9a-fA-F']*[0-9a-fA-F]?
168 HEX_FRAC_CONST {HEX_DIGIT_SEQ}"."|{HEX_DIGIT_SEQ}?"."{HEX_DIGIT_SEQ}
169 BIN_EXP [pP][+-]?{DIGIT_SEQ}
170 HEX_FP1 "0"[xX]{HEX_FRAC_CONST}{BIN_EXP}{FP_SUF}?
171 HEX_FP2 "0"[xX]{HEX_DIGIT_SEQ}{BIN_EXP}{FP_SUF}?
172
173 FLOAT_DECIMAL {DEC_FP1}|{DEC_FP2}
174 FLOAT_HEXADECIMAL {HEX_FP1}|{HEX_FP2}
175 FLOAT_NUMBER {FLOAT_DECIMAL}|{FLOAT_HEXADECIMAL}
176 NUMBER {INTEGER_NUMBER}|{FLOAT_NUMBER}
177   //- end: NUMBER ---------------------------------------------------------------------------
178
179   // C start comment 
180 CCS   "/\*"
181   // C end comment
182 CCE   "*\/"
183   // Cpp comment 
184 CPPC  "/\/"
185
186   // Optional any character
187 ANYopt .*
188
189   // Optional white space
190 WSopt [ \t\r]*
191   // readline non special
192 RLopt [^\\@\n\*\/]*
193   // Optional slash
194 SLASHopt [/]*
195
196 %%
197
198 <Scan>{NUMBER}                      { //Note similar code in code.l
199                                       if (yyextra->lang!=SrcLangExt_Cpp) REJECT;
200                                       copyToOutput(yyscanner,yytext,(int)yyleng); 
201                                     }
202 <Scan>[^"'!\/\n\\#,\-=; \t]*        { /* eat anything that is not " / , or \n */
203                                        copyToOutput(yyscanner,yytext,(int)yyleng);
204                                     }
205 <Scan>[,= ;\t]                      { /* eat , so we have a nice separator in long initialization lines */ 
206                                        copyToOutput(yyscanner,yytext,(int)yyleng);
207                                     }
208 <Scan>"\"\"\""!                     { /* start of python long comment */
209                                      if (yyextra->lang!=SrcLangExt_Python)
210                                      {
211                                        REJECT;
212                                      }
213                                      else
214                                      {
215                                        yyextra->pythonDocString = TRUE;
216                                        yyextra->nestingCount=1;
217                                        clearCommentStack(yyscanner); /*  to be on the save side */
218                                        copyToOutput(yyscanner,yytext,(int)yyleng);
219                                        BEGIN(CComment);
220                                        yyextra->commentStack.push(yyextra->lineNr);
221                                      }
222                                    }
223 <Scan>![><!]/.*\n          {
224                                      if (yyextra->lang!=SrcLangExt_Fortran)
225                                      {
226                                        REJECT;
227                                      }
228                                      else
229                                      {
230                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
231                                        yyextra->nestingCount=0; // Fortran doesn't have an end comment
232                                        clearCommentStack(yyscanner); /*  to be on the save side */
233                                        BEGIN(CComment);
234                                        yyextra->commentStack.push(yyextra->lineNr);
235                                      }
236                                    }
237 <Scan>[Cc\*][><!]/.*\n     {
238                                      if (yyextra->lang!=SrcLangExt_Fortran)
239                                      {
240                                        REJECT;
241                                      }
242                                      else
243                                      {
244                                        /* check for fixed format; we might have some conditional as part of multiline if like C<5 .and. & */
245                                        if (yyextra->isFixedForm && (yyextra->col == 0))
246                                        {
247                                          copyToOutput(yyscanner,yytext,(int)yyleng); 
248                                          yyextra->nestingCount=0; // Fortran doesn't have an end comment
249                                          clearCommentStack(yyscanner); /*  to be on the save side */
250                                          BEGIN(CComment);
251                                          yyextra->commentStack.push(yyextra->lineNr);
252                                        }
253                                        else
254                                        {
255                                          REJECT;
256                                        }
257                                      }
258                                    }
259 <Scan>!.*\n                {
260                                      if (yyextra->lang!=SrcLangExt_Fortran)
261                                      {
262                                        REJECT;
263                                      }
264                                      else
265                                      {
266                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
267                                      }
268                                    }
269 <Scan>[Cc\*].*\n                   {
270                                      if (yyextra->lang!=SrcLangExt_Fortran)
271                                      {
272                                        REJECT;
273                                      }
274                                      else
275                                      {
276                                        if (yyextra->col == 0)
277                                        {
278                                          copyToOutput(yyscanner,yytext,(int)yyleng); 
279                                        }
280                                        else
281                                        {
282                                          REJECT;
283                                        }
284                                      }
285                                    }
286 <Scan>"\""                         { /* start of a string */ 
287                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
288                                      yyextra->stringContext = YY_START;
289                                      BEGIN(SkipString); 
290                                    }
291 <Scan>'                            {
292                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
293                                      yyextra->charContext = YY_START;
294                                      if (yyextra->lang!=SrcLangExt_VHDL)
295                                      {
296                                        BEGIN(SkipChar);
297                                      }
298                                    }
299 <Scan>\n                           { /* new line */ 
300                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
301                                    }
302 <Scan>{CPPC}"!"/.*\n[ \t]*{CPPC}[\/!][^\/] | /* start C++ style special comment block */
303 <Scan>({CPPC}"/"[/]*)/[^/].*\n[ \t]*{CPPC}[\/!][^\/] { /* start C++ style special comment block */
304                                      if (yyextra->mlBrief) 
305                                      {
306                                        REJECT; // bail out if we do not need to convert
307                                      }
308                                      else
309                                      {
310                                        int i=3;
311                                        if (yytext[2]=='/')
312                                        {
313                                          while (i<(int)yyleng && yytext[i]=='/') i++;
314                                        }
315                                        yyextra->blockHeadCol=yyextra->col;
316                                        copyToOutput(yyscanner,"/**",3); 
317                                        replaceAliases(yyscanner,QCString(yytext+i));
318                                        yyextra->inSpecialComment=TRUE;
319                                        //BEGIN(SComment); 
320                                        yyextra->readLineCtx=SComment;
321                                        BEGIN(ReadLine);
322                                      }
323                                    }
324 <Scan>{CPPC}"##Documentation"{ANYopt}/\n           { /* Start of Rational Rose ANSI C++ comment block */
325                                      if (yyextra->mlBrief) REJECT;
326                                      int i=17; //=strlen("//##Documentation");
327                                      yyextra->blockHeadCol=yyextra->col;
328                                      copyToOutput(yyscanner,"/**",3);
329                                      replaceAliases(yyscanner,QCString(yytext+i));
330                                      yyextra->inRoseComment=TRUE;
331                                      BEGIN(SComment);
332                                    }
333 <Scan>{CPPC}[!\/]/.*\n[ \t]*{CPPC}[|\/][ \t]*[@\\]"}" { // next line contains an end marker, see bug 752712
334                                      yyextra->inSpecialComment=yytext[2]=='/' || yytext[2]=='!';
335                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
336                                      yyextra->readLineCtx=YY_START;
337                                      BEGIN(ReadLine);
338                                    }
339 <Scan>{CPPC}/.*\n                          { /* one line C++ comment */ 
340                                      yyextra->inSpecialComment=yytext[2]=='/' || yytext[2]=='!';
341                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
342                                      yyextra->readLineCtx=YY_START;
343                                      BEGIN(ReadLine);
344                                    }
345 <Scan>{CCS}{CCE}                       { /* avoid matching next rule for empty C comment, see bug 711723 */
346                                      copyToOutput(yyscanner,yytext,(int)yyleng);
347                                    }
348 <Scan>{CCS}[*!]?                           { /* start of a C comment */
349                                      if (yyextra->lang==SrcLangExt_Python)
350                                      {
351                                        REJECT;
352                                      }
353                                      yyextra->specialComment=(int)yyleng==3;
354                                      yyextra->nestingCount=1;
355                                      clearCommentStack(yyscanner); /*  to be on the save side */
356                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
357                                      if (yyextra->specialComment)
358                                        BEGIN(CComment); 
359                                      else
360                                        BEGIN(CNComment); 
361                                      yyextra->commentStack.push(yyextra->lineNr);
362                                    }
363 <Scan>"#"("#")?                    {
364                                      if (yyextra->lang!=SrcLangExt_Python)
365                                      {
366                                        REJECT;
367                                      }
368                                      else
369                                      {
370                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
371                                        yyextra->nestingCount=0; // Python doesn't have an end comment for #
372                                        clearCommentStack(yyscanner); /*  to be on the save side */
373                                        BEGIN(CComment);
374                                        yyextra->commentStack.push(yyextra->lineNr);
375                                      }
376                                    }
377 <Scan>"--"[^!][^\n]*               {
378                                      if (yyextra->lang!=SrcLangExt_VHDL)
379                                      {
380                                        REJECT;
381                                      }
382                                      else
383                                      {
384                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
385                                      }
386                                    }
387 <Scan>"--!"                        {
388                                      if (yyextra->lang!=SrcLangExt_VHDL)
389                                      {
390                                        REJECT;
391                                      }
392                                      else
393                                      {
394                                        yyextra->vhdl = TRUE;
395                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
396                                        yyextra->nestingCount=0;  // VHDL doesn't have an end comment
397                                        clearCommentStack(yyscanner); /*  to be on the save side */
398                                        BEGIN(CComment);
399                                        yyextra->commentStack.push(yyextra->lineNr);
400                                      }
401                                    }
402 <Scan>![><!]                       {
403                                      if (yyextra->lang!=SrcLangExt_Fortran)
404                                      {
405                                        REJECT;
406                                      }
407                                      else
408                                      {
409                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
410                                        yyextra->nestingCount=0;  // Fortran doesn't have an end comment
411                                        clearCommentStack(yyscanner); /*  to be on the save side */
412                                        BEGIN(CComment);
413                                        yyextra->commentStack.push(yyextra->lineNr);
414                                      }
415                                    }
416 <CComment,CNComment,ReadLine>{MAILADDR}       |
417 <CComment,CNComment,ReadLine>"<"{MAILADDR}">" { // Mail address, to prevent seeing e.g x@code-factory.org as start of a code block
418                                      copyToOutput(yyscanner,yytext,(int)yyleng);
419                                    }
420 <CComment>"{"[ \t]*"@code"/[ \t\n] {
421                                      copyToOutput(yyscanner,"@iliteral{code}",15); 
422                                      yyextra->lastCommentContext = YY_START;
423                                      yyextra->javaBlock=1;
424                                      yyextra->blockName=&yytext[1];
425                                      BEGIN(VerbatimCode);
426                                    }
427 <CComment>"{"[ \t]*"@literal"/[ \t\n] {
428                                      copyToOutput(yyscanner,"@iliteral",9); 
429                                      yyextra->lastCommentContext = YY_START;
430                                      yyextra->javaBlock=1;
431                                      yyextra->blockName=&yytext[1];
432                                      BEGIN(VerbatimCode);
433                                    }
434 <CComment,ReadLine>^[ \t]*("```"[`]*|"~~~"[~]*) { /* start of markdown code block */
435                                      if (!Config_getBool(MARKDOWN_SUPPORT))
436                                      {
437                                        REJECT;
438                                      }
439                                      copyToOutput(yyscanner,yytext,(int)yyleng);
440                                      yyextra->lastCommentContext = YY_START;
441                                      yyextra->javaBlock=0;
442                                      yyextra->blockName=QCString(yytext).stripWhiteSpace().left(3);
443                                      BEGIN(VerbatimCode);
444                                    }
445 <CComment,ReadLine>[\\@]("dot"|"code"|"msc"|"startuml")/[^a-z_A-Z0-9] { /* start of a verbatim block */
446                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
447                                      yyextra->lastCommentContext = YY_START;
448                                      yyextra->javaBlock=0;
449                                      if (qstrcmp(&yytext[1],"startuml")==0)
450                                      {
451                                        yyextra->blockName="uml";
452                                      }
453                                      else
454                                      {
455                                        yyextra->blockName=&yytext[1];
456                                      }
457                                      BEGIN(VerbatimCode);
458                                    }
459 <CComment,ReadLine>[\\@]("f$"|"f["|"f{"|"f(") {
460                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
461                                      yyextra->blockName=&yytext[1];
462                                      if (yyextra->blockName.at(1)=='[')
463                                      {
464                                        yyextra->blockName.at(1)=']';
465                                      }
466                                      else if (yyextra->blockName.at(1)=='{')
467                                      {
468                                        yyextra->blockName.at(1)='}';
469                                      }
470                                      else if (yyextra->blockName.at(1)=='(')
471                                      {
472                                        yyextra->blockName.at(1)=')';
473                                      }
474                                      yyextra->lastCommentContext = YY_START;
475                                      BEGIN(Verbatim);
476                                    }
477 <CComment,ReadLine>[\\@]("verbatim"|"iliteral"|"latexonly"|"htmlonly"|"xmlonly"|"docbookonly"|"rtfonly"|"manonly")/[^a-z_A-Z0-9] { /* start of a verbatim block */
478                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
479                                      yyextra->blockName=&yytext[1];
480                                      yyextra->lastCommentContext = YY_START;
481                                      BEGIN(Verbatim);
482                                    }
483 <Scan>"\\\""                       { /* escaped double quote */
484                                      copyToOutput(yyscanner,yytext,(int)yyleng);
485                                    }
486 <Scan>"\\\\"                       { /* escaped backslash */
487                                      copyToOutput(yyscanner,yytext,(int)yyleng);
488                                    }
489 <Scan>.                            { /* any other character */
490                                      copyToOutput(yyscanner,yytext,(int)yyleng);
491                                    }
492 <Verbatim>[\\@]("endverbatim"|"endiliteral"|"endlatexonly"|"endhtmlonly"|"endxmlonly"|"enddocbookonly"|"endrtfonly"|"endmanonly"|"f$"|"f]"|"f}"|"f)") { /* end of verbatim block */
493                                      copyToOutput(yyscanner,yytext,(int)yyleng);
494                                      if (&yytext[1]==yyextra->blockName) // end of formula
495                                      {
496                                        BEGIN(yyextra->lastCommentContext);
497                                      }
498                                      else if (&yytext[4]==yyextra->blockName)
499                                      {
500                                        BEGIN(yyextra->lastCommentContext);
501                                      }
502                                    }
503 <VerbatimCode>"{"                  {
504                                      if (yyextra->javaBlock==0)
505                                      {
506                                        REJECT;
507                                      }
508                                      else
509                                      {
510                                        yyextra->javaBlock++;
511                                        copyToOutput(yyscanner,yytext,(int)yyleng);
512                                      }
513                                    }
514 <VerbatimCode>"}"                  {
515                                      if (yyextra->javaBlock==0)
516                                      {
517                                        REJECT;
518                                      }
519                                      else
520                                      {
521                                        yyextra->javaBlock--;
522                                        if (yyextra->javaBlock==0)
523                                        {
524                                          copyToOutput(yyscanner," @endiliteral ",14);
525                                          BEGIN(yyextra->lastCommentContext);
526                                        }
527                                        else
528                                        {
529                                          copyToOutput(yyscanner,yytext,(int)yyleng);
530                                        }
531                                      }
532                                    }
533 <VerbatimCode>("```"[`]*|"~~~"[~]*) { /* end of markdown code block */
534                                      copyToOutput(yyscanner,yytext,(int)yyleng);
535                                      if (yytext[0]==yyextra->blockName[0])
536                                      {
537                                        BEGIN(yyextra->lastCommentContext);
538                                      }
539                                    }
540 <VerbatimCode>[\\@]("enddot"|"endcode"|"endmsc"|"enduml") { /* end of verbatim block */
541                                      copyToOutput(yyscanner,yytext,(int)yyleng);
542                                      if (&yytext[4]==yyextra->blockName)
543                                      {
544                                        BEGIN(yyextra->lastCommentContext);
545                                      }
546                                    }
547 <VerbatimCode>^[ \t]*{CPPC}[\!\/]?   { /* skip leading comments */
548                                      if (!yyextra->inSpecialComment)
549                                      {
550                                        copyToOutput(yyscanner,yytext,(int)yyleng); 
551                                      }
552                                      else
553                                      {
554                                        int l=0;
555                                        while (yytext[l]==' ' || yytext[l]=='\t')
556                                        {
557                                          l++;
558                                        }
559                                        copyToOutput(yyscanner,yytext,l);
560                                        if (yyleng-l==3) // ends with //! or ///
561                                        {
562                                          copyToOutput(yyscanner," * ",3);
563                                        }
564                                        else // ends with //
565                                        {
566                                          copyToOutput(yyscanner,"//",2);
567                                        }
568                                      }
569                                    }
570 <Verbatim,VerbatimCode>[^`~@\/\\\n{}]* { /* any character not a backslash or new line or } */
571                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
572                                    }
573 <Verbatim,VerbatimCode>\n          { /* new line in verbatim block */
574                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
575                                    }
576 <Verbatim>^[ \t]*{CPPC}[/!]          {
577                                      if (yyextra->blockName=="dot" || yyextra->blockName=="msc" || yyextra->blockName=="uml" || yyextra->blockName.at(0)=='f')
578                                      {
579                                        // see bug 487871, strip /// from dot images and formulas.
580                                        int l=0;
581                                        while (yytext[l]==' ' || yytext[l]=='\t')
582                                        {
583                                          l++;
584                                        }
585                                        copyToOutput(yyscanner,yytext,l);
586                                        copyToOutput(yyscanner,"   ",3);
587                                      }
588                                      else // even slashes are verbatim (e.g. \verbatim, \code)
589                                      {
590                                        REJECT;
591                                      }
592                                    }
593 <Verbatim,VerbatimCode>.           { /* any other character */
594                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
595                                    }
596 <SkipString>\\.                    { /* escaped character in string */
597                                      if (yyextra->lang==SrcLangExt_Fortran || yyextra->lang==SrcLangExt_VHDL)
598                                      {
599                                        unput(yytext[1]);
600                                        copyToOutput(yyscanner,yytext,1);
601                                      }
602                                      else
603                                      {
604                                        copyToOutput(yyscanner,yytext,(int)yyleng);
605                                      }
606                                    }
607 <SkipString>"\""                   { /* end of string */ 
608                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
609                                      BEGIN(yyextra->stringContext); 
610                                    }
611 <SkipString>.                      { /* any other string character */ 
612                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
613                                    }
614 <SkipString>\n                     { /* new line inside string (illegal for some compilers) */ 
615                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
616                                    }
617 <SkipChar>\\.                      { /* escaped character */
618                                      if (yyextra->lang==SrcLangExt_Fortran || yyextra->lang==SrcLangExt_VHDL)
619                                      {
620                                        unput(yytext[1]);
621                                        copyToOutput(yyscanner,yytext,1);
622                                      }
623                                      else
624                                      {
625                                        copyToOutput(yyscanner,yytext,(int)yyleng);
626                                      }
627                                    }
628 <SkipChar>'                        { /* end of character literal */ 
629                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
630                                      BEGIN(yyextra->charContext);
631                                    }
632 <SkipChar>.                        { /* any other string character */ 
633                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
634                                    }
635 <SkipChar>\n                       { /* new line character */
636                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
637                                    }
638
639 <CComment,CNComment>[^ `~<\\!@*\n{\"\/]*     { /* anything that is not a '*' or command */ 
640                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
641                                    }
642 <CComment,CNComment>"*"+[^*\/\\@\n{\"]*      { /* stars without slashes */
643                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
644                                    }
645 <CComment>"\"\"\""                 { /* end of Python docstring */
646                                      if (yyextra->lang!=SrcLangExt_Python)
647                                      {
648                                        REJECT;
649                                      }
650                                      else
651                                      {
652                                        yyextra->nestingCount--;
653                                        yyextra->pythonDocString = FALSE;
654                                        copyToOutput(yyscanner,yytext,(int)yyleng);
655                                        BEGIN(Scan);
656                                      }
657                                    }
658 <CComment,CNComment>\n                       { /* new line in comment */
659                                      copyToOutput(yyscanner,yytext,(int)yyleng);
660                                      /* in case of Fortran always end of comment */
661                                      if (yyextra->lang==SrcLangExt_Fortran)
662                                      {
663                                        BEGIN(Scan);
664                                      }
665                                    }
666 <CComment,CNComment>"/"+"*"                  { /* nested C comment */
667                                      if (yyextra->lang==SrcLangExt_Python ||
668                                          yyextra->lang==SrcLangExt_Markdown)
669                                      {
670                                        REJECT;
671                                      }
672                                      yyextra->nestingCount++;
673                                      yyextra->commentStack.push(yyextra->lineNr);
674                                      copyToOutput(yyscanner,yytext,(int)yyleng);
675                                    }
676 <CComment,CNComment>"*"+"/"                  { /* end of C comment */
677                                      if (yyextra->lang==SrcLangExt_Python ||
678                                          yyextra->lang==SrcLangExt_Markdown)
679                                      {
680                                        REJECT;
681                                      }
682                                      else
683                                      {
684                                        copyToOutput(yyscanner,yytext,(int)yyleng);
685                                        yyextra->nestingCount--;
686                                        if (yyextra->nestingCount<=0)
687                                        {
688                                          BEGIN(Scan);
689                                        }
690                                        else
691                                        {
692                                          //yyextra->nestingCount--;
693                                          yyextra->commentStack.pop();
694                                        }
695                                      }
696                                    }
697   /* Python an VHDL share CComment,CNComment, so special attention for ending comments is required */
698 <CComment,CNComment>"\n"/[ \t]*"#"         {
699                                      if (yyextra->lang!=SrcLangExt_VHDL)
700                                      {
701                                        REJECT;
702                                      }
703                                      else
704                                      {
705                                        if (yyextra->vhdl) // inside --! comment
706                                        {
707                                          yyextra->vhdl = FALSE;
708                                          copyToOutput(yyscanner,yytext,(int)yyleng);
709                                          BEGIN(Scan);
710                                        }
711                                        else // C-type comment
712                                        {
713                                          REJECT;
714                                        }
715                                      }
716                                    }
717 <CComment,CNComment>"\n"/[ \t]*"-"         {
718                                      if (yyextra->lang!=SrcLangExt_Python || yyextra->pythonDocString)
719                                      {
720                                        REJECT;
721                                      }
722                                      else
723                                      {
724                                        copyToOutput(yyscanner,yytext,(int)yyleng);
725                                        BEGIN(Scan);
726                                      }
727                                    }
728 <CComment,CNComment>"\n"/[ \t]*[^ \t#\-]           {
729                                      if (yyextra->lang==SrcLangExt_Python)
730                                      {
731                                        if (yyextra->pythonDocString)
732                                        {
733                                          REJECT;
734                                        }
735                                        else
736                                        {
737                                          copyToOutput(yyscanner,yytext,(int)yyleng);
738                                          BEGIN(Scan);
739                                        }
740                                      }
741                                      else if (yyextra->lang==SrcLangExt_VHDL)
742                                      {
743                                        if (yyextra->vhdl) // inside --! comment
744                                        {
745                                          yyextra->vhdl = FALSE;
746                                          copyToOutput(yyscanner,yytext,(int)yyleng);
747                                          BEGIN(Scan);
748                                        }
749                                        else // C-type comment
750                                        {
751                                          REJECT;
752                                        }
753                                      }
754                                      else
755                                      {
756                                        REJECT;
757                                      }
758                                    }
759    /* removed for bug 674842 (bug was introduced in rev 768)
760 <CComment,CNComment>"'"                    {
761                                      yyextra->charContext = YY_START;
762                                      copyToOutput(yyscanner,yytext,(int)yyleng);
763                                      BEGIN(SkipChar);
764                                    }
765 <CComment,CNComment>"\""                           {
766                                      yyextra->stringContext = YY_START;
767                                      copyToOutput(yyscanner,yytext,(int)yyleng);
768                                      BEGIN(SkipString);
769                                    }
770    */
771 <CComment,CNComment>.                      {
772                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
773                                    }
774 <SComment>^[ \t]*{CPPC}"/"{SLASHopt}/\n     {
775                                      replaceComment(yyscanner,0);
776                                    }
777 <SComment>\n[ \t]*{CPPC}"/"{SLASHopt}/\n    {
778                                      replaceComment(yyscanner,1); 
779                                    }
780 <SComment>^[ \t]*{CPPC}"/"[^\/\n]/.*\n { 
781                                      replaceComment(yyscanner,0);
782                                      yyextra->readLineCtx=YY_START;
783                                      BEGIN(ReadLine);
784                                    }
785 <SComment>\n[ \t]*{CPPC}[\/!]("<")?[ \t]*[\\@]"}".*\n {   
786                                      /* See Bug 752712: end the multiline comment when finding a @} or \} command */
787                                      copyToOutput(yyscanner," */",3); 
788                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
789                                      yyextra->inSpecialComment=FALSE;
790                                      yyextra->inRoseComment=FALSE;
791                                      BEGIN(Scan); 
792                                    }
793 <SComment>\n[ \t]*{CPPC}"/"[^\/\n]/.*\n  { 
794                                      replaceComment(yyscanner,1); 
795                                      yyextra->readLineCtx=YY_START;
796                                      BEGIN(ReadLine);
797                                    }
798 <SComment>^[ \t]*{CPPC}"!"             |    // just //!
799 <SComment>^[ \t]*{CPPC}"!<"/.*\n       |    // or   //!< something
800 <SComment>^[ \t]*{CPPC}"!"[^<]/.*\n    {    // or   //!something
801                                      replaceComment(yyscanner,0);
802                                      yyextra->readLineCtx=YY_START;
803                                      BEGIN(ReadLine);
804                                    }
805 <SComment>\n[ \t]*{CPPC}"!"            |
806 <SComment>\n[ \t]*{CPPC}"!<"/.*\n      |
807 <SComment>\n[ \t]*{CPPC}"!"[^<\n]/.*\n { 
808                                      replaceComment(yyscanner,1); 
809                                      yyextra->readLineCtx=YY_START;
810                                      BEGIN(ReadLine);
811                                    }
812 <SComment>^[ \t]*{CPPC}"##"/.*\n       {
813                                      if (!yyextra->inRoseComment)
814                                      {
815                                        REJECT;
816                                      }
817                                      else
818                                      {
819                                        replaceComment(yyscanner,0);
820                                        yyextra->readLineCtx=YY_START;
821                                        BEGIN(ReadLine);
822                                      }
823                                    }
824 <SComment>\n[ \t]*{CPPC}"##"/.*\n      {
825                                      if (!yyextra->inRoseComment)
826                                      {
827                                        REJECT;
828                                      }
829                                      else
830                                      {
831                                        replaceComment(yyscanner,1); 
832                                        yyextra->readLineCtx=YY_START;
833                                        BEGIN(ReadLine);
834                                      }
835                                    }
836 <SComment>\n                       { /* end of special comment */
837                                      copyToOutput(yyscanner," */",3); 
838                                      copyToOutput(yyscanner,yytext,(int)yyleng); 
839                                      yyextra->inSpecialComment=FALSE;
840                                      yyextra->inRoseComment=FALSE;
841                                      yyextra->readLineCtx = Scan; // reset, otherwise there will be problems with:
842                                                                   //   static void handleCondSectionId
843                                      BEGIN(Scan); 
844                                    }
845 <ReadLine>{CCS}"*"                    {
846                                      copyToOutput(yyscanner,"/&zwj;**",8);
847                                    }
848 <ReadLine>{CCE}                     {
849                                      copyToOutput(yyscanner,"*&zwj;/",7);
850                                    }
851 <ReadLine>"*"                      {
852                                      copyToOutput(yyscanner,yytext,(int)yyleng);
853                                    }
854 <ReadLine>{RLopt}                  {
855                                      copyToOutput(yyscanner,yytext,(int)yyleng);
856                                    }
857 <ReadLine>{RLopt}/\n               {
858                                      copyToOutput(yyscanner,yytext,(int)yyleng);
859                                      BEGIN(yyextra->readLineCtx);
860                                    }
861 <CComment,CNComment,ReadLine>[\\@][\\@][~a-z_A-Z][a-z_A-Z0-9]*[ \t]* { // escaped command
862                                      copyToOutput(yyscanner,yytext,(int)yyleng);
863                                    }
864 <CComment,ReadLine>[\\@]"cond"/[^a-z_A-Z0-9]       { // conditional section
865                                      yyextra->condCtx = YY_START; 
866                                      BEGIN(CondLine);
867                                    }
868 <CComment,ReadLine>[\\@]"endcond"/[^a-z_A-Z0-9] { // end of conditional section
869                                      bool oldSkip=yyextra->skip;
870                                      endCondSection(yyscanner);
871                                      if (YY_START==CComment && oldSkip && !yyextra->skip) 
872                                      {
873                                        //printf("** Adding start of comment!\n");
874                                        if (yyextra->lang!=SrcLangExt_Python &&
875                                            yyextra->lang!=SrcLangExt_VHDL &&
876                                            yyextra->lang!=SrcLangExt_Markdown &&
877                                            yyextra->lang!=SrcLangExt_Fortran)
878                                        {
879                                          ADDCHAR('/');
880                                          ADDCHAR('*');
881                                          if (yyextra->specialComment)
882                                          {
883                                            ADDCHAR('*');
884                                          }
885                                        }
886                                      }
887                                     }
888 <CondLine>[!()&| \ta-z_A-Z0-9.\-]+ {
889                                      handleCondSectionId(yyscanner,yytext);
890                                    }
891 <CComment,ReadLine>[\\@]"cond"{WSopt}/\n {
892                                      yyextra->condCtx=YY_START;
893                                      handleCondSectionId(yyscanner," "); // fake section id causing the section to be hidden unconditionally
894                                    }
895 <CondLine>\n                       |
896 <CondLine>.                        { // forgot section id?
897                                      handleCondSectionId(yyscanner," "); // fake section id causing the section to be hidden unconditionally
898                                      if (*yytext=='\n') { yyextra->lineNr++; copyToOutput(yyscanner,"\n",1);}
899                                    }
900 <CComment,ReadLine>[\\@][a-z_A-Z][a-z_A-Z0-9]*  { // expand alias without arguments
901                                      replaceAliases(yyscanner,QCString(yytext));
902                                    }
903 <CComment,ReadLine>[\\@][a-z_A-Z][a-z_A-Z0-9]*"{" { // expand alias with arguments
904                                      yyextra->lastBlockContext=YY_START;
905                                      yyextra->blockCount=1;
906                                      yyextra->aliasString=yytext;
907                                      yyextra->lastEscaped=0;
908                                      BEGIN( ReadAliasArgs );
909                                    }
910 <ReadAliasArgs>^[ \t]*{CPPC}[/!]/[^\n]+   { // skip leading special comments (see bug 618079)
911                                    }
912 <ReadAliasArgs>{CCE}               { // oops, end of comment in the middle of an alias?
913                                      if (yyextra->lang==SrcLangExt_Python)
914                                      {
915                                        REJECT;
916                                      }
917                                      else // abort the alias, restart scanning
918                                      {
919                                        copyToOutput(yyscanner,yyextra->aliasString.data(),yyextra->aliasString.length());
920                                        copyToOutput(yyscanner,yytext,(int)yyleng);
921                                        BEGIN(Scan);
922                                      }
923                                    }
924 <ReadAliasArgs>[^{}\n\\\*]+        {
925                                      yyextra->aliasString+=yytext;
926                                      yyextra->lastEscaped=FALSE;
927                                    }
928 <ReadAliasArgs>"\\"                {
929                                      if (yyextra->lastEscaped)  yyextra->lastEscaped=FALSE;
930                                      else                yyextra->lastEscaped=TRUE;
931                                      yyextra->aliasString+=yytext;
932                                    }
933 <ReadAliasArgs>\n                  {
934                                      yyextra->aliasString+=yytext;
935                                      yyextra->lineNr++;
936                                      yyextra->lastEscaped=FALSE;
937                                    }
938 <ReadAliasArgs>"{"                 {
939                                      yyextra->aliasString+=yytext;
940                                      if (!yyextra->lastEscaped) yyextra->blockCount++;
941                                      yyextra->lastEscaped=FALSE;
942                                    }
943 <ReadAliasArgs>"}"                 {
944                                      yyextra->aliasString+=yytext;
945                                      if (!yyextra->lastEscaped) yyextra->blockCount--;
946                                      if (yyextra->blockCount==0)
947                                      {
948                                        replaceAliases(yyscanner,yyextra->aliasString);
949                                        BEGIN( yyextra->lastBlockContext );
950                                      }
951                                      yyextra->lastEscaped=FALSE;
952                                    }
953 <ReadAliasArgs>.                   {
954                                      yyextra->aliasString+=yytext;
955                                      yyextra->lastEscaped=FALSE;
956                                    }
957 <ReadLine>.                        {
958                                      copyToOutput(yyscanner,yytext,(int)yyleng);
959                                    }
960
961 <*>.                               {
962                                      copyToOutput(yyscanner,yytext,(int)yyleng);
963                                    }
964   /*
965 <*>\n  { fprintf(stderr,"Lex scanner %s (%s) default rule newline for state %s.\n", __FILE__, qPrint(yyextra->fileName),stateToString(YY_START));}
966   */
967 %%
968
969 static void replaceCommentMarker(yyscan_t yyscanner,const char *s,int len)
970 {
971   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
972   const char *p=s;
973   char c;
974   // copy leading blanks
975   while ((c=*p) && (c==' ' || c=='\t' || c=='\n')) 
976   {
977     ADDCHAR(c);
978     yyextra->lineNr += c=='\n';
979     p++;
980   }
981   // replace start of comment marker by blanks and the last character by a *
982   int blanks=0;
983   while ((c=*p) && (c=='/' || c=='!' || c=='#')) 
984   {
985     blanks++;
986     p++;
987     if (*p=='<') // comment-after-item marker 
988     { 
989       blanks++;
990       p++; 
991     }
992     if (c=='!') // end after first !
993     {
994       break;
995     }
996   }
997   if (blanks>0)
998   {
999     while (blanks>2)
1000     {
1001       ADDCHAR(' ');
1002       blanks--;
1003     }
1004     if (blanks>1) ADDCHAR('*');
1005     ADDCHAR(' ');
1006   }
1007   // copy comment line to output
1008   ADDARRAY(p,len-(int)(p-s));
1009 }
1010
1011 static inline int computeIndent(const char *s)
1012 {
1013   int col=0;
1014   int tabSize=Config_getInt(TAB_SIZE);
1015   const char *p=s;
1016   char c;
1017   while ((c=*p++))
1018   {
1019     if (c==' ') col++;
1020     else if (c=='\t') col+=tabSize-(col%tabSize); 
1021     else break;
1022   }
1023   return col;
1024 }
1025
1026 static inline void copyToOutput(yyscan_t yyscanner,const char *s,int len)
1027 {
1028   int tabSize=Config_getInt(TAB_SIZE);
1029   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1030   int i;
1031   if (yyextra->skip) // only add newlines.
1032   {
1033     for (i=0;i<len;i++)
1034     {
1035       switch(s[i])
1036       {
1037         case '\n':
1038           ADDCHAR('\n');
1039           yyextra->lineNr++;
1040           yyextra->col=0;
1041           break;
1042         case '\t':
1043           yyextra->col+=tabSize-(yyextra->col%tabSize);
1044           break;
1045         default:
1046           yyextra->col++;
1047           break;
1048       }
1049     }
1050   }
1051   else if (len>0)
1052   {
1053     ADDARRAY(s,len);
1054     for (i=0;i<len;i++) 
1055     {
1056       switch (s[i])
1057       {
1058         case '\n': yyextra->col=0; 
1059                    //fprintf(stderr,"---> copy %d\n",g_lineNr);
1060                    yyextra->lineNr++; break;
1061         case '\t': yyextra->col+=tabSize-(yyextra->col%tabSize); break;
1062         default:   yyextra->col++; break;
1063       }
1064     }
1065   }
1066 }
1067
1068 static void clearCommentStack(yyscan_t yyscanner)
1069 {
1070   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1071   while (!yyextra->commentStack.empty()) yyextra->commentStack.pop();
1072 }
1073
1074 static void startCondSection(yyscan_t yyscanner,const QCString &sectId)
1075 {
1076   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1077   //printf("startCondSection: skip=%d stack=%d\n",g_skip,g_condStack.count());
1078   CondParser prs;
1079   bool expResult = prs.parse(yyextra->fileName,yyextra->lineNr,sectId);
1080   yyextra->condStack.push(commentcnvYY_CondCtx(yyextra->lineNr,sectId,yyextra->skip));
1081   if (!expResult) // not enabled
1082   {
1083     yyextra->skip=TRUE;
1084   }
1085 }
1086
1087 static void endCondSection(yyscan_t yyscanner)
1088 {
1089   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1090   if (yyextra->condStack.empty())
1091   {
1092     warn(yyextra->fileName,yyextra->lineNr,"Found \\endcond command without matching \\cond");
1093     yyextra->skip=FALSE;
1094   }
1095   else
1096   {
1097     const commentcnvYY_CondCtx &ctx = yyextra->condStack.top();
1098     yyextra->skip=ctx.skip;
1099     yyextra->condStack.pop();
1100   }
1101   //printf("endCondSection: skip=%d stack=%d\n",g_skip,g_condStack.count());
1102 }
1103
1104 static void handleCondSectionId(yyscan_t yyscanner,const char *expression)
1105 {
1106   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1107   bool oldSkip=yyextra->skip;
1108   startCondSection(yyscanner,QCString(expression));
1109   if ((yyextra->condCtx==CComment || yyextra->readLineCtx==SComment) && 
1110       !oldSkip && yyextra->skip) 
1111   {
1112     if (yyextra->lang!=SrcLangExt_Python &&
1113         yyextra->lang!=SrcLangExt_VHDL &&
1114         yyextra->lang!=SrcLangExt_Markdown &&
1115         yyextra->lang!=SrcLangExt_Fortran)
1116     {
1117       ADDCHAR('*');
1118       ADDCHAR('/');
1119     }
1120   }
1121   if (yyextra->readLineCtx==SComment)
1122   {
1123     BEGIN(SComment);
1124   }
1125   else
1126   {
1127     BEGIN(yyextra->condCtx);
1128   }
1129 }
1130
1131 /** copies string \a s with length \a len to the output, while 
1132  *  replacing any alias commands found in the string.
1133  */
1134 static void replaceAliases(yyscan_t yyscanner,const QCString &s)
1135 {
1136   QCString result = resolveAliasCmd(s);
1137   //printf("replaceAliases(%s)->'%s'\n",s,result.data());
1138   copyToOutput(yyscanner,result.data(),result.length());
1139 }
1140
1141
1142 static yy_size_t yyread(yyscan_t yyscanner,char *buf,yy_size_t max_size)
1143 {
1144   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1145   yy_size_t bytesInBuf = yyextra->inBuf->curPos()-yyextra->inBufPos;
1146   yy_size_t bytesToCopy = std::min(max_size,bytesInBuf);
1147   memcpy(buf,yyextra->inBuf->data()+yyextra->inBufPos,bytesToCopy);
1148   yyextra->inBufPos+=bytesToCopy;
1149   return bytesToCopy;
1150 }
1151
1152 static void replaceComment(yyscan_t yyscanner,int offset)
1153 {
1154   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1155   if (yyextra->mlBrief || yyextra->skip)
1156   {
1157     copyToOutput(yyscanner,yytext,(int)yyleng);
1158   }
1159   else
1160   {
1161     //printf("replaceComment(%s)\n",yytext);
1162     int i=computeIndent(&yytext[offset]);
1163     if (i==yyextra->blockHeadCol)
1164     {
1165       replaceCommentMarker(yyscanner,yytext,(int)yyleng);
1166     }
1167     else
1168     {
1169       copyToOutput(yyscanner," */",3);
1170       for (i=(int)yyleng-1;i>=0;i--) unput(yytext[i]);
1171       yyextra->inSpecialComment=FALSE;
1172       BEGIN(Scan);
1173     }
1174   }
1175 }
1176
1177 /*! This function does three things:
1178  *  -# It converts multi-line C++ style comment blocks (that are aligned)
1179  *     to C style comment blocks (if MULTILINE_CPP_IS_BRIEF is set to NO).
1180  *  -# It replaces aliases with their definition (see ALIASES)
1181  *  -# It handles conditional sections (cond...endcond blocks)
1182  */
1183 void convertCppComments(BufStr *inBuf,BufStr *outBuf,const QCString &fileName)
1184 {
1185   yyscan_t yyscanner;
1186   commentcnvYY_state extra;
1187   commentcnvYYlex_init_extra(&extra,&yyscanner);
1188 #ifdef FLEX_DEBUG
1189   commentcnvYYset_debug(1,yyscanner);
1190 #endif
1191   struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
1192   //printf("convertCppComments(%s)\n",fileName);
1193   yyextra->inBuf    = inBuf;
1194   yyextra->outBuf   = outBuf;
1195   yyextra->inBufPos = 0;
1196   yyextra->col      = 0;
1197   yyextra->mlBrief = Config_getBool(MULTILINE_CPP_IS_BRIEF);
1198   yyextra->skip     = FALSE;
1199   yyextra->fileName = fileName;
1200   yyextra->lang = getLanguageFromFileName(fileName);
1201   yyextra->pythonDocString = FALSE;
1202   yyextra->lineNr   = 1;
1203   while (!yyextra->condStack.empty()) yyextra->condStack.pop();
1204   clearCommentStack(yyscanner);
1205   yyextra->vhdl = FALSE;
1206
1207   printlex(yy_flex_debug, TRUE, __FILE__, qPrint(fileName));
1208   yyextra->isFixedForm = FALSE;
1209   if (yyextra->lang==SrcLangExt_Fortran)
1210   {
1211     FortranFormat fmt = convertFileNameFortranParserCode(fileName);
1212     yyextra->isFixedForm = recognizeFixedForm(QCString(inBuf->data()),fmt);
1213   }
1214
1215   if (yyextra->lang==SrcLangExt_Markdown)
1216   {
1217     yyextra->nestingCount=0;
1218     BEGIN(CComment);
1219     yyextra->commentStack.push(yyextra->lineNr);
1220   }
1221   else
1222   {
1223     BEGIN(Scan);
1224   }
1225   yylex(yyscanner);
1226   while (!yyextra->condStack.empty())
1227   {
1228     const commentcnvYY_CondCtx &ctx = yyextra->condStack.top();
1229     QCString sectionInfo(" ");
1230     if (ctx.sectionId!=" ") sectionInfo.sprintf(" with label '%s' ",ctx.sectionId.stripWhiteSpace().data());
1231     warn(yyextra->fileName,ctx.lineNr,"Conditional section%sdoes not have "
1232         "a corresponding \\endcond command within this file.",sectionInfo.data());
1233     yyextra->condStack.pop();
1234   }
1235   if (yyextra->nestingCount>0 && yyextra->lang!=SrcLangExt_Markdown && yyextra->lang!=SrcLangExt_Fortran)
1236   {
1237     QCString tmp("(probable line reference: ");
1238     bool first = TRUE;
1239     while (!yyextra->commentStack.empty())
1240     {
1241       int lineNr = yyextra->commentStack.top();
1242       if (!first) tmp += ", ";
1243       tmp += QCString().setNum(lineNr);
1244       first = FALSE;
1245       yyextra->commentStack.pop();
1246     }
1247     tmp += ")";
1248     warn(yyextra->fileName,yyextra->lineNr,"Reached end of file while still inside a (nested) comment. "
1249         "Nesting level %d %s",yyextra->nestingCount,tmp.data());
1250   }
1251   yyextra->nestingCount = 0;
1252   if (Debug::isFlagSet(Debug::CommentCnv))
1253   {
1254     yyextra->outBuf->at(yyextra->outBuf->curPos())='\0';
1255     Debug::print(Debug::CommentCnv,0,"-----------\nCommentCnv: %s\n"
1256                  "output=[\n%s]\n-----------\n",qPrint(fileName),yyextra->outBuf->data()
1257                 );
1258   }
1259   printlex(yy_flex_debug, FALSE, __FILE__, qPrint(fileName));
1260   commentcnvYYlex_destroy(yyscanner);
1261 }
1262
1263
1264 //----------------------------------------------------------------------------
1265
1266 #if USE_STATE2STRING
1267 #include "commentcnv.l.h"
1268 #endif