parser experiments

This commit is contained in:
Vadim Lopatin 2016-09-12 17:45:45 +03:00
parent 420812aa3c
commit d8145233c1
2 changed files with 70 additions and 14 deletions

View File

@ -5,22 +5,56 @@ import ddc.lexer.ast;
import dlangui.core.textsource;
import dlangui.core.logger;
class Parser {
SourceLines _lines;
SourceFile _file;
Token[] _tokens;
int[] _pairedBracket;
int[] _bracketLevel;
void init(SourceLines lines, SourceFile file) {
_lines = lines;
_file = file;
}
void init(dstring text, SourceFile file) {
import std.array;
ArraySourceLines lines = new ArraySourceLines();
dstring[] src = text.split('\n');
lines.initialize(src, file, 0);
init(lines, file);
}
void init(dstring src, string filename) {
init(src, new SourceFile(filename));
}
bool findBracketPairs() {
bool res = true;
_pairedBracket.length = _tokens.length;
_pairedBracket[0 .. $] = -1;
_bracketLevel.length = _tokens.length;
_bracketLevel[0 .. $] = -1;
return res;
}
bool tokenize() {
bool res = false;
Tokenizer tokenizer = new Tokenizer(_lines);
//tokenizer.errorTolerant = true;
try {
_tokens = tokenizer.allTokens();
Log.v("tokens: ", _tokens);
findBracketPairs();
res = true;
} catch (Exception e) {
// error
Log.e("Tokenizer exception", e);
}
return res;
}
}
ASTNode parseSource(dstring text, SourceFile file) {
ASTNode res;
import std.array;
ArraySourceLines lines = new ArraySourceLines();
dstring[] src = text.split('\n');
lines.initialize(src, file, 0);
Tokenizer tokenizer = new Tokenizer(lines);
//tokenizer.errorTolerant = true;
try {
Token[] tokens = tokenizer.allTokens();
ulong len = tokens.length;
Log.v("tokens: ", tokens);
} catch (Exception e) {
// error
Log.e("Tokenizer exception");
}
Parser parser = new Parser();
parser.init(text, file);
parser.tokenize();
return res;
}

View File

@ -924,6 +924,28 @@ class Token {
@property float floatValue() { return 0; }
@property byte precision() { return 0; }
@property bool isImaginary() { return false; }
@property bool isBracket() {
OpCode op = opCode;
return op == OpCode.PAR_OPEN
|| op == OpCode.PAR_CLOSE
|| op == OpCode.SQ_OPEN
|| op == OpCode.SQ_CLOSE
|| op == OpCode.CURL_OPEN
|| op == OpCode.CURL_CLOSE;
}
@property bool isOpenBracket() {
OpCode op = opCode;
return op == OpCode.PAR_OPEN
|| op == OpCode.SQ_OPEN
|| op == OpCode.CURL_OPEN;
}
@property bool isCloseBracket() {
OpCode op = opCode;
return op == OpCode.PAR_CLOSE
|| op == OpCode.SQ_CLOSE
|| op == OpCode.CURL_CLOSE;
}
@property bool isEof() { return type == TokenType.EOF; }
/// returns opcode ID - for opcode tokens
@property OpCode opCode() { return OpCode.NONE; }