3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

aiger: Use new JSON code for writing aiger witness map files

This commit is contained in:
Jannis Harder 2022-12-23 17:22:24 +01:00
parent 29461ade17
commit 3e25e61778
3 changed files with 96 additions and 55 deletions

View file

@ -38,18 +38,26 @@ class PrettyJson
ARRAY,
};
struct Target {
virtual void emit(const char *data) = 0;
virtual void flush() {};
virtual ~Target() {};
};
std::string newline_indent = "\n";
std::vector<std::function<void(const char *)>> targets;
std::vector<std::unique_ptr<Target>> targets;
std::vector<Scope> state = {VALUE};
public:
void emit_to_log();
void append_to_string(std::string &target);
bool write_to_file(const std::string &path);
bool active() { return !targets.empty(); }
void line();
void raw(const char *raw_json);
void flush();
void begin_object();
void begin_array();
void end_object();