gsc-tool/src/iw8/xsk/lexer.hpp

79 lines
1.6 KiB
C++
Raw Normal View History

2022-01-26 06:08:28 -05:00
// Copyright 2022 xensik. All rights reserved.
//
// Use of this source code is governed by a GNU GPLv3 license
// that can be found in the LICENSE file.
#pragma once
#include "iw8.hpp"
namespace xsk::gsc::iw8
{
enum class keyword;
2022-01-28 09:58:41 -05:00
constexpr size_t max_buf_size = 0x2000;
2022-01-26 06:08:28 -05:00
struct buffer
{
char* data;
2022-01-28 09:58:41 -05:00
int length;
2022-01-26 06:08:28 -05:00
buffer();
~buffer();
bool push(char c);
};
struct reader
{
2022-01-28 09:58:41 -05:00
enum state_type : std::uint8_t { end, ok };
2022-01-26 06:08:28 -05:00
const char* buffer_pos;
2022-01-28 09:58:41 -05:00
std::uint32_t bytes_remaining;
2022-01-26 06:08:28 -05:00
char last_byte;
char current_byte;
2022-01-28 09:58:41 -05:00
state_type state;
2022-01-26 06:08:28 -05:00
reader();
reader& operator=(const reader& r)
{
std::memcpy(this, &r, sizeof(reader));
return *this;
}
void init(const char* data, size_t size);
void advance();
};
class lexer
{
2022-01-28 09:58:41 -05:00
enum class state : std::uint8_t { start, string, localize, field, preprocessor };
2022-01-26 06:08:28 -05:00
reader reader_;
buffer buffer_;
location loc_;
build mode_;
std::stack<location> locs_;
std::stack<reader> readers_;
std::uint32_t header_top_;
2022-01-28 09:58:41 -05:00
state state_;
bool indev_;
2022-01-26 06:08:28 -05:00
public:
lexer(const std::string& name, const char* data, size_t size);
auto lex() -> xsk::gsc::iw8::parser::symbol_type;
void push_header(const std::string& file);
void pop_header();
void restrict_header(const xsk::gsc::location& loc);
private:
auto keyword_token(keyword k) -> xsk::gsc::iw8::parser::symbol_type;
static auto keyword_is_token(keyword k) -> bool;
static auto get_keyword(std::string_view str) -> keyword;
static std::unordered_map<std::string_view, keyword> keywords;
};
} // namespace xsk::gsc::iw8