diff options
author | Jannis Harder <me@jix.one> | 2022-12-23 17:22:24 +0100 |
---|---|---|
committer | Jannis Harder <me@jix.one> | 2023-01-11 18:07:16 +0100 |
commit | 3e25e61778cc9fe427bf68f45de43f26985b12c3 (patch) | |
tree | 29215ec1d1788c0a3c950fd9fd25cbb3b648d5cd /kernel/json.h | |
parent | 29461ade177eb3dfb2ba5714c4a6bf365b09a24e (diff) | |
download | yosys-3e25e61778cc9fe427bf68f45de43f26985b12c3.tar.gz yosys-3e25e61778cc9fe427bf68f45de43f26985b12c3.tar.bz2 yosys-3e25e61778cc9fe427bf68f45de43f26985b12c3.zip |
aiger: Use new JSON code for writing aiger witness map files
Diffstat (limited to 'kernel/json.h')
-rw-r--r-- | kernel/json.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/kernel/json.h b/kernel/json.h index 3ba355327..ae86b3aa6 100644 --- a/kernel/json.h +++ b/kernel/json.h @@ -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(); |