1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
|
-------------------------------------------------------------------------------
-- This file is part of the QMake parser in KDevelop4
-- Copyright (c) 2007 Andreas Pakulat <apaku@gmx.de>
--
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU General Public License
-- as published by the Free Software Foundation; either version 2
-- of the License, or (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
-- 02110-1301, USA.
-------------------------------------------------------------------------------
-----------------------------------------------------------
-- Global declarations
-----------------------------------------------------------
[:
namespace QMake
{
class Lexer;
}
#include <QString>
:]
%parser_declaration_header "QtCore/QString"
------------------------------------------------------------
-- Parser class members
------------------------------------------------------------
%parserclass (public declaration)
[:
/**
* Transform the raw input into tokens.
* When this method returns, the parser's token stream has been filled
* and any parse_*() method can be called.
*/
void tokenize( const QString& contents );
enum ProblemType {
Error,
Warning,
Info
};
void reportProblem( Parser::ProblemType type, const QString& message );
QString tokenText(qint64 begin, qint64 end) const;
void setDebug( bool debug );
:]
%parserclass (private declaration)
[:
QString m_contents;
bool m_debug;
:]
-----------------------------------------------------------
-- List of defined tokens
-----------------------------------------------------------
%token LBRACE("lbrace"), RBRACE("rbrace"), LPAREN("lparen"),RPAREN("rparen") ;;
%token PLUSEQ("pluseq"),EQUAL("equal"),MINUSEQ("minuseq"),STAREQ("stareq"),
TILDEEQ("tildeeq") ;;
%token COLON("colon"), COMMA("comma"), CONT("cont"), EXCLAM("exclam"),
NEWLINE("newline"), OR("or") ;;
%token IDENTIFIER("identifier"), VALUE("value") ;;
-- token that makes the parser fail in any case:
%token INVALID ("invalid token") ;;
-- The actual grammar starts here.
( #statements=statement )*
-> project ;;
( id=IDENTIFIER ( var=variableAssignment | scope=scope )
[:
(*yynode)->isNewline = false;
(*yynode)->isExclam = false;
:]
) | ( EXCLAM id=IDENTIFIER scope=scope
[:
(*yynode)->isNewline = false;
(*yynode)->isExclam = true;
:]
) | NEWLINE
[:
(*yynode)->isNewline = true;
(*yynode)->isExclam = false;
:]
-> statement [ member variable isNewline: bool;
member variable isExclam: bool; ] ;;
functionArguments=functionArguments ( scopeBody=scopeBody | orOperator=orOperator scopeBody=scopeBody | 0 )
| ( orOperator=orOperator | 0 ) scopeBody=scopeBody
-> scope ;;
( OR #item=item )+
-> orOperator ;;
id=IDENTIFIER ( functionArguments=functionArguments | 0 )
-> item ;;
op=op ( values=valueList ( NEWLINE | 0 ) | NEWLINE | 0 )
-> variableAssignment ;;
optoken=PLUSEQ | optoken=MINUSEQ | optoken=STAREQ | optoken=EQUAL | optoken=TILDEEQ
-> op ;;
( #list=value | CONT NEWLINE )+
-> valueList ;;
value=VALUE
-> value ;;
LPAREN args=argumentList RPAREN
-> functionArguments ;;
( ( #args=value | CONT NEWLINE ) ( ( COMMA | CONT NEWLINE ) #args=value )* | 0 )
-> argumentList ;;
LBRACE ( NEWLINE | 0 ) ( #statements=statement )* RBRACE | COLON #statements=statement
-> scopeBody ;;
-----------------------------------------------------------------
-- Code segments copied to the implementation (.cpp) file.
-- If existent, kdevelop-pg's current syntax requires this block
-- to occur at the end of the file.
-----------------------------------------------------------------
[:
#include "qmakelexer.h"
#include <QString>
#include <debug.h>
namespace QMake
{
void Parser::tokenize( const QString& contents )
{
m_contents = contents;
QMake::Lexer lexer( this, contents );
int kind = Parser::Token_EOF;
do
{
kind = lexer.nextTokenKind();
if ( !kind ) // when the lexer returns 0, the end of file is reached
kind = Parser::Token_EOF;
Parser::Token &t = this->tokenStream->push();
t.kind = kind;
if( t.kind == Parser::Token_EOF )
{
t.begin = -1;
t.end = -1;
}else
{
t.begin = lexer.tokenBegin();
t.end = lexer.tokenEnd();
}
if( m_debug )
{
qCDebug(KDEV_QMAKE) << kind << "(" << t.begin << "," << t.end << ")::" << tokenText(t.begin, t.end);
}
}
while ( kind != Parser::Token_EOF );
this->yylex(); // produce the look ahead token
}
QString Parser::tokenText( qint64 begin, qint64 end ) const
{
return m_contents.mid((int)begin, (int)end-begin+1);
}
void Parser::reportProblem( Parser::ProblemType type, const QString& message )
{
if (type == Error)
qCDebug(KDEV_QMAKE) << "** ERROR:" << message;
else if (type == Warning)
qCDebug(KDEV_QMAKE) << "** WARNING:" << message;
else if (type == Info)
qCDebug(KDEV_QMAKE) << "** Info:" << message;
}
// custom error recovery
void Parser::expectedToken(int /*expected*/, qint64 /*where*/, const QString& name)
{
reportProblem(
Parser::Error,
QStringLiteral("Expected token \"%1\"").arg(name));
}
void Parser::expectedSymbol(int /*expected_symbol*/, const QString& name)
{
qint64 line;
qint64 col;
size_t index = tokenStream->index()-1;
Token &token = tokenStream->at(index);
qCDebug(KDEV_QMAKE) << "token starts at:" << token.begin;
qCDebug(KDEV_QMAKE) << "index is:" << index;
tokenStream->startPosition(index, &line, &col);
QString tokenValue = tokenText(token.begin, token.end);
reportProblem(
Parser::Error,
QStringLiteral("Expected symbol \"%1\" (current token: \"%2\" [%3] at line: %4 col: %5)")
.arg(name, token.kind != 0 ? tokenValue : QStringLiteral("EOF"))
.arg(token.kind)
.arg(line)
.arg(col));
}
void Parser::setDebug( bool debug )
{
m_debug = debug;
}
} // end of namespace QMake
:]
-- kate: space-indent on; indent-width 4; tab-width 4; replace-tabs on; auto-insert-doxygen on
|