aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-08-06 19:32:17 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-08-06 19:32:17 +0200
commitfffaaa613f498cb83f8d885e5a8b75dc41a9c157 (patch)
tree325deb17a71813a6316b5ecec253a4e3155d4733 /common
parent9510c444c93fdb8923d77651562fb698e59dea5f (diff)
downloadnextpnr-fffaaa613f498cb83f8d885e5a8b75dc41a9c157.tar.gz
nextpnr-fffaaa613f498cb83f8d885e5a8b75dc41a9c157.tar.bz2
nextpnr-fffaaa613f498cb83f8d885e5a8b75dc41a9c157.zip
Added project loader
Diffstat (limited to 'common')
-rw-r--r--common/command.cc15
-rw-r--r--common/command.h2
-rw-r--r--common/project.cc87
-rw-r--r--common/project.h42
4 files changed, 145 insertions, 1 deletions
diff --git a/common/command.cc b/common/command.cc
index f144db37..9eace237 100644
--- a/common/command.cc
+++ b/common/command.cc
@@ -187,7 +187,9 @@ int CommandHandler::executeMain(std::unique_ptr<Context> ctx)
log_error("Loading design failed.\n");
customAfterLoad(ctx.get());
+ }
+ if (vm.count("json") || vm.count("load")) {
if (!ctx->pack() && !ctx->force)
log_error("Packing design failed.\n");
ctx->check();
@@ -215,6 +217,11 @@ int CommandHandler::executeMain(std::unique_ptr<Context> ctx)
deinit_python();
}
#endif
+
+ if (vm.count("save")) {
+ project.save(ctx.get(), vm["save"].as<std::string>());
+ }
+
return 0;
}
@@ -235,7 +242,13 @@ int CommandHandler::exec()
if (executeBeforeContext())
return 0;
- std::unique_ptr<Context> ctx = createContext();
+
+ std::unique_ptr<Context> ctx;
+ if (vm.count("load")) {
+ ctx = project.load(vm["load"].as<std::string>());
+ } else {
+ ctx = createContext();
+ }
setupContext(ctx.get());
setupArchContext(ctx.get());
return executeMain(std::move(ctx));
diff --git a/common/command.h b/common/command.h
index e6595f6a..13d5a250 100644
--- a/common/command.h
+++ b/common/command.h
@@ -23,6 +23,7 @@
#include <boost/program_options.hpp>
#include "nextpnr.h"
+#include "project.h"
NEXTPNR_NAMESPACE_BEGIN
@@ -61,6 +62,7 @@ class CommandHandler
po::positional_options_description pos;
int argc;
char **argv;
+ ProjectHandler project;
};
NEXTPNR_NAMESPACE_END
diff --git a/common/project.cc b/common/project.cc
new file mode 100644
index 00000000..8e043f36
--- /dev/null
+++ b/common/project.cc
@@ -0,0 +1,87 @@
+/*
+ * 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 <boost/filesystem/convenience.hpp>
+#include <boost/property_tree/json_parser.hpp>
+#include "project.h"
+#include "log.h"
+#include "jsonparse.h"
+#include <fstream>
+
+NEXTPNR_NAMESPACE_BEGIN
+
+void ProjectHandler::save(Context *ctx, std::string filename)
+{
+ std::ofstream f(filename);
+ pt::ptree root;
+ root.put("project.version", 1);
+ root.put("project.name", boost::filesystem::basename(filename));
+ root.put("project.arch.name", ctx->archId().c_str(ctx));
+ root.put("project.arch.type", ctx->archArgsToId(ctx->archArgs()).c_str(ctx));
+/* root.put("project.input.json", );*/
+ root.put("project.params.freq", int(ctx->target_freq / 1e6));
+ root.put("project.params.seed", ctx->rngstate);
+ saveArch(ctx,root);
+ pt::write_json(f, root);
+}
+
+std::unique_ptr<Context> ProjectHandler::load(std::string filename)
+{
+ std::unique_ptr<Context> ctx;
+ try {
+ pt::ptree root;
+ boost::filesystem::path proj(filename);
+ pt::read_json(filename, root);
+ log_info("Loading project %s...\n", filename.c_str());
+ log_break();
+
+ int version = root.get<int>("project.version");
+ if (version != 1)
+ log_error("Wrong project format version.\n");
+
+
+ ctx = createContext(root);
+
+ std::string arch_name = root.get<std::string>("project.arch.name");
+ if (arch_name != ctx->archId().c_str(ctx.get()))
+ log_error("Unsuported project architecture.\n");
+
+ auto project = root.get_child("project");
+ auto input = project.get_child("input");
+ std::string filename = input.get<std::string>("json");
+ boost::filesystem::path json = proj.parent_path() / filename;
+ std::ifstream f(json.string());
+ if (!parse_json_file(f, filename, ctx.get()))
+ log_error("Loading design failed.\n");
+
+ if (project.count("params")) {
+ auto params = project.get_child("params");
+ if (params.count("freq"))
+ ctx->target_freq = params.get<double>("freq") * 1e6;
+ if (params.count("seed"))
+ ctx->rngseed(params.get<uint64_t>("seed"));
+ }
+ loadArch(ctx.get(),root, proj.parent_path().string());
+ } catch (...) {
+ log_error("Error loading project file.\n");
+ }
+ return ctx;
+}
+
+NEXTPNR_NAMESPACE_END
diff --git a/common/project.h b/common/project.h
new file mode 100644
index 00000000..14f03ecd
--- /dev/null
+++ b/common/project.h
@@ -0,0 +1,42 @@
+/*
+ * 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.
+ *
+ */
+
+#ifndef PROJECT_H
+#define PROJECT_H
+
+#include <boost/property_tree/ptree.hpp>
+#include "nextpnr.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+namespace pt = boost::property_tree;
+
+struct ProjectHandler
+{
+ void save(Context *ctx, std::string filename);
+ std::unique_ptr<Context> load(std::string filename);
+ // implemented per arch
+ void saveArch(Context *ctx, pt::ptree &root);
+ std::unique_ptr<Context> createContext(pt::ptree &root);
+ void loadArch(Context *ctx, pt::ptree &root, std::string path);
+};
+
+NEXTPNR_NAMESPACE_END
+
+#endif // PROJECT_H