%{
/*
* Copyright (c) 2005 Hunter (whywhathow at hotmail dot com)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 4. Neither the name of the Hunter nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
/*!
* \file hhte_template.l
* \brief H html template engine’s lex parser, some code from php3.
* \author HunterLiu
* \date 2005-9-15
* \version 1.1
*/
%}
%x IN_HHTE
%{
#include “hhte_template.tab.h”
#include “h_html_template.h”
#include
#define YYDEBUG 1
#undef YY_INPUT
#define YY_INPUT(buf,retval,max) ( retval = hhte_yyinput(buf, max) )
extern CTemplate g_cHTemplate;
int iCurrentPtr = 0;
int hhte_yyinput(char *buf, int max_size)
{
int iBufferSize = (max_size if (iBufferSize>0)
{
string sTmpString = g_cHTemplate.getBuffer(iCurrentPtr, max_size);
memcpy(buf, sTmpString.c_str(), iBufferSize);
iCurrentPtr += iBufferSize;
}
return iBufferSize;
}
void end_hhte()
{
BEGIN(INITIAL);
}
%}
LNUM [0-9]+
DNUM [0-9]*[\.][0-9]+
HNUM “0x”[0-9a-fA-F]+
LABEL [a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*
WHITESPACE [ \n\r\t]+
TOKENS [;:,.\[\]()|^&+-/*=%!~$<>{}?@]
ENCAPSED_TOKENS [\[\]\\$]
ESCAPED_AND_WHITESPACE [\n\t\r #`’.:;,()|^&+-/*=%!~<>{}?@]+
%option lex-compat
%option 8bit
%%
“loop” {
return HHTE_LOOP;
}
“done” {
return HHTE_DONE;
}
“echo” {
return HHTE_ECHO;
}
{TOKENS} {
return yytext[0];
}
([^< ]|"<"[^%]){1,400} { yylval.sval = strdup(yytext); return INLINE_HTML; } "< %" { BEGIN(IN_HHTE); } "%>” {
return END_HHTE;
}
{LABEL} {
yylval.sval = strdup(yytext);
return HHTE_STRING;
}
{WHITESPACE} {
; /* 忽略空格 */
}
“/*”([^*]|[*]+[^/])*”*/” {
; /* 忽略注释 */
}
<> {
fprintf(stderr, “…………\n”);
yyterminate();
}