-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fdt: working on more type driven parser/tokenizer
Signed-off-by: Bartłomiej Burdukiewicz <[email protected]>
- Loading branch information
Showing
3 changed files
with
170 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#pragma once | ||
|
||
#include <type_traits> | ||
#include <variant> | ||
#include <string_view> | ||
#include <vector> | ||
#include <cstdint> | ||
|
||
using u32 = std::uint32_t; | ||
|
||
namespace fdt::tokenizer { | ||
|
||
namespace types { | ||
struct node_begin { | ||
std::string_view name; | ||
}; | ||
struct node_end {}; | ||
struct property { | ||
std::string_view name; | ||
std::string_view data; | ||
}; | ||
struct nop {}; | ||
struct end {}; | ||
|
||
constexpr auto id_of(node_begin) -> u32 { return 0x01; }; | ||
constexpr auto id_of(node_end) -> u32 { return 0x02; }; | ||
constexpr auto id_of(property) -> u32 { return 0x03; }; | ||
constexpr auto id_of(nop) -> u32 { return 0x04; }; | ||
constexpr auto id_of(end) -> u32 { return 0x09; }; | ||
|
||
} // namespace types | ||
|
||
using token = std::variant<types::node_begin, types::node_end, types::property, types::nop, types::end>; | ||
using token_list = std::vector<token>; | ||
|
||
struct context { | ||
std::string_view structs; | ||
std::string_view strings; | ||
token_list tokens; | ||
}; | ||
|
||
template <typename T> | ||
concept Tokenizable = requires(T t) { | ||
{ fdt::tokenizer::types::id_of(t) } -> std::convertible_to<u32>; | ||
}; | ||
|
||
} // namespace fdt::tokenizer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters