mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
// This file is distributed under the BSD License.
|
|
// See LICENSE.TXT for details.
|
|
|
|
#ifndef LANGKIT_LEXER_HPP_
|
|
#define LANGKIT_LEXER_HPP_
|
|
|
|
#include <string>
|
|
#include <boost/regex.hpp>
|
|
|
|
struct File_Position {
|
|
int line;
|
|
int column;
|
|
char *filename;
|
|
|
|
File_Position(int file_line, int file_column, char *fname)
|
|
: line(file_line), column(file_column), filename(fname) { }
|
|
|
|
File_Position() : line(0), column(0), filename(NULL) { }
|
|
};
|
|
|
|
struct Pattern {
|
|
boost::regex regex;
|
|
int identifier;
|
|
|
|
Pattern(const std::string ®exp, int id) : regex(regexp), identifier(id) { }
|
|
};
|
|
|
|
struct Token {
|
|
std::string text;
|
|
int identifier;
|
|
File_Position start, end;
|
|
|
|
std::vector<Token> children;
|
|
|
|
Token(const std::string &token_text, int id) : text(token_text), identifier(id) { }
|
|
};
|
|
|
|
struct Lexer {
|
|
std::vector<Pattern> lex_patterns;
|
|
std::vector<Pattern> skip_patterns;
|
|
std::vector<Pattern> command_sep_patterns;
|
|
std::vector<Pattern> line_sep_patterns;
|
|
|
|
Lexer operator<<(const Pattern &p);
|
|
std::vector<Token> lex(const std::string &input);
|
|
|
|
void set_skip(const Pattern &p);
|
|
void set_line_sep(const Pattern &p);
|
|
void set_command_sep(const Pattern &p);
|
|
};
|
|
|
|
|
|
#endif /* LANGKIT_LEXER_HPP_ */
|