aboutsummaryrefslogtreecommitdiffstats
path: root/json/jsonwrite.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-07-03 12:39:38 +0100
committerGitHub <noreply@github.com>2019-07-03 12:39:38 +0100
commit8f2813279c5888e655ee6f50f198cf8cb11b0b50 (patch)
tree0aac9464d3ea87d37cd0689903ba08094b7c0984 /json/jsonwrite.cc
parentff958830d1097b9bfa3c3b34094e671741ef563d (diff)
parente27dc41a7646fd3377d2400059c916fbcc35119c (diff)
downloadnextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.tar.gz
nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.tar.bz2
nextpnr-8f2813279c5888e655ee6f50f198cf8cb11b0b50.zip
Merge pull request #284 from YosysHQ/json_write
Initial support for writing to json files from nextpnr.
Diffstat (limited to 'json/jsonwrite.cc')
-rw-r--r--json/jsonwrite.cc180
1 files changed, 180 insertions, 0 deletions
diff --git a/json/jsonwrite.cc b/json/jsonwrite.cc
new file mode 100644
index 00000000..0b7a5b25
--- /dev/null
+++ b/json/jsonwrite.cc
@@ -0,0 +1,180 @@
+/*
+ * nextpnr -- Next Generation Place and Route
+ *
+ * Copyright (C) 2018 Miodrag Milanovic <miodrag@symbioticeda.com>
+ *
+ * Permission to use, copy, modify, and/or distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ */
+
+#include "jsonwrite.h"
+#include <assert.h>
+#include <fstream>
+#include <iostream>
+#include <iterator>
+#include <log.h>
+#include <map>
+#include <string>
+#include "nextpnr.h"
+#include "version.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+namespace JsonWriter {
+
+std::string get_string(std::string str)
+{
+ std::string newstr = "\"";
+ for (char c : str) {
+ if (c == '\\')
+ newstr += c;
+ newstr += c;
+ }
+ return newstr + "\"";
+}
+
+std::string get_name(IdString name, Context *ctx) { return get_string(name.c_str(ctx)); }
+
+void write_parameters(std::ostream &f, Context *ctx, const std::unordered_map<IdString, Property> &parameters,
+ bool for_module = false)
+{
+ bool first = true;
+ for (auto &param : parameters) {
+ f << stringf("%s\n", first ? "" : ",");
+ f << stringf(" %s%s: ", for_module ? "" : " ", get_name(param.first, ctx).c_str());
+ if (param.second.isString())
+ f << get_string(param.second);
+ else
+ f << param.second.num;
+ first = false;
+ }
+}
+
+void write_module(std::ostream &f, Context *ctx)
+{
+ auto val = ctx->attrs.find(ctx->id("module"));
+ if (val != ctx->attrs.end())
+ f << stringf(" %s: {\n", get_string(val->second.str).c_str());
+ else
+ f << stringf(" %s: {\n", get_string("top").c_str());
+ f << stringf(" \"settings\": {");
+ write_parameters(f, ctx, ctx->settings, true);
+ f << stringf("\n },\n");
+ f << stringf(" \"attributes\": {");
+ write_parameters(f, ctx, ctx->attrs, true);
+ f << stringf("\n },\n");
+ f << stringf(" \"ports\": {");
+ bool first = true;
+ for (auto &pair : ctx->ports) {
+ auto &c = pair.second;
+ f << stringf("%s\n", first ? "" : ",");
+ f << stringf(" %s: {\n", get_name(c.name, ctx).c_str());
+ f << stringf(" \"direction\": \"%s\",\n",
+ c.type == PORT_IN ? "input" : c.type == PORT_INOUT ? "inout" : "output");
+ f << stringf(" \"bits\": [ %d ]\n", pair.first.index);
+ f << stringf(" }");
+ first = false;
+ }
+ f << stringf("\n },\n");
+
+ f << stringf(" \"cells\": {");
+ first = true;
+ for (auto &pair : ctx->cells) {
+ auto &c = pair.second;
+ f << stringf("%s\n", first ? "" : ",");
+ f << stringf(" %s: {\n", get_name(c->name, ctx).c_str());
+ f << stringf(" \"hide_name\": %s,\n", c->name.c_str(ctx)[0] == '$' ? "1" : "0");
+ f << stringf(" \"type\": %s,\n", get_name(c->type, ctx).c_str());
+ f << stringf(" \"parameters\": {");
+ write_parameters(f, ctx, c->params);
+ f << stringf("\n },\n");
+ f << stringf(" \"attributes\": {");
+ write_parameters(f, ctx, c->attrs);
+ f << stringf("\n },\n");
+ f << stringf(" \"port_directions\": {");
+ bool first2 = true;
+ for (auto &conn : c->ports) {
+ auto &p = conn.second;
+ std::string direction = (p.type == PORT_IN) ? "input" : (p.type == PORT_OUT) ? "output" : "inout";
+ f << stringf("%s\n", first2 ? "" : ",");
+ f << stringf(" %s: \"%s\"", get_name(conn.first, ctx).c_str(), direction.c_str());
+ first2 = false;
+ }
+ f << stringf("\n },\n");
+ f << stringf(" \"connections\": {");
+ first2 = true;
+ for (auto &conn : c->ports) {
+ auto &p = conn.second;
+ f << stringf("%s\n", first2 ? "" : ",");
+ if (p.net)
+ f << stringf(" %s: [ %d ]", get_name(conn.first, ctx).c_str(), p.net->name.index);
+ else
+ f << stringf(" %s: [ ]", get_name(conn.first, ctx).c_str());
+
+ first2 = false;
+ }
+ f << stringf("\n }\n");
+
+ f << stringf(" }");
+ first = false;
+ }
+
+ f << stringf("\n },\n");
+
+ f << stringf(" \"netnames\": {");
+ first = true;
+ for (auto &pair : ctx->nets) {
+ auto &w = pair.second;
+ f << stringf("%s\n", first ? "" : ",");
+ f << stringf(" %s: {\n", get_name(w->name, ctx).c_str());
+ f << stringf(" \"hide_name\": %s,\n", w->name.c_str(ctx)[0] == '$' ? "1" : "0");
+ f << stringf(" \"bits\": [ %d ] ,\n", pair.first.index);
+ f << stringf(" \"attributes\": {");
+ write_parameters(f, ctx, w->attrs);
+ f << stringf("\n }\n");
+ f << stringf(" }");
+ first = false;
+ }
+
+ f << stringf("\n }\n");
+ f << stringf(" }");
+}
+
+void write_context(std::ostream &f, Context *ctx)
+{
+ f << stringf("{\n");
+ f << stringf(" \"creator\": %s,\n",
+ get_string("Next Generation Place and Route (git sha1 " GIT_COMMIT_HASH_STR ")").c_str());
+ f << stringf(" \"modules\": {\n");
+ write_module(f, ctx);
+ f << stringf("\n }");
+ f << stringf("\n}\n");
+}
+
+}; // End Namespace JsonWriter
+
+bool write_json_file(std::ostream &f, std::string &filename, Context *ctx)
+{
+ try {
+ using namespace JsonWriter;
+ if (!f)
+ log_error("failed to open JSON file.\n");
+ write_context(f, ctx);
+ log_break();
+ return true;
+ } catch (log_execution_error_exception) {
+ return false;
+ }
+}
+
+NEXTPNR_NAMESPACE_END