mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-14 19:25:40 +00:00
Stop empty source files `""` from being exported to json. Move source path fixing to a separate function. `ContentListing::to_json` now takes the source root, recursively calling the source path fixup function on all source paths in the content listing.
183 lines
5 KiB
C++
183 lines
5 KiB
C++
/*
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
*
|
|
* Copyright (C) 2025 Krystine Dawn <krystinedawn@yosyshq.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 "kernel/log_help.h"
|
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
std::filesystem::path Yosys::fixup_source_path (const char* source_file,
|
|
const std::filesystem::path &source_root, bool* skip_source_group)
|
|
{
|
|
std::filesystem::path source_path(source_file);
|
|
if (source_path.is_absolute()) {
|
|
// using proximate instead of relative means that we
|
|
// still get the source path if they aren't relative
|
|
auto proximate_path = std::filesystem::proximate(source_path, source_root);
|
|
if (proximate_path == proximate_path.lexically_normal()) {
|
|
// we're only interested if it's a subpath of our root dir
|
|
// if the normal form differs, then the proximate path includes ".."
|
|
return proximate_path;
|
|
} else if (skip_source_group != nullptr) {
|
|
// don't try to group external paths
|
|
*skip_source_group = true;
|
|
}
|
|
}
|
|
return source_path;
|
|
}
|
|
|
|
Json ContentListing::to_json(const std::filesystem::path &source_root) const {
|
|
Json::object object;
|
|
|
|
object["type"] = type;
|
|
if (body.length())
|
|
object["body"] = body;
|
|
|
|
if (has_source())
|
|
object["source_file"] = fixup_source_path(source_file, source_root).string();
|
|
if (source_line != 0)
|
|
object["source_line"] = source_line;
|
|
|
|
object["options"] = Json(options);
|
|
|
|
Json::array content_array;
|
|
for (auto child : _content)
|
|
content_array.push_back(child.to_json(source_root));
|
|
object["content"] = content_array;
|
|
|
|
return object;
|
|
}
|
|
|
|
void ContentListing::usage(const string &text,
|
|
const source_location location)
|
|
{
|
|
log_assert(type.compare("root") == 0);
|
|
add_content("usage", text, location);
|
|
}
|
|
|
|
void ContentListing::option(const string &text, const string &description,
|
|
const source_location location)
|
|
{
|
|
auto option = open_option(text, source_location());
|
|
if (description.length())
|
|
option->add_content("text", description, location);
|
|
}
|
|
|
|
void ContentListing::codeblock(const string &code, const string &language,
|
|
const source_location location)
|
|
{
|
|
add_content("code", code, location);
|
|
back()->set_option("language", language);
|
|
}
|
|
|
|
void ContentListing::paragraph(const string &text,
|
|
const source_location location)
|
|
{
|
|
add_content("text", text, location);
|
|
}
|
|
|
|
ContentListing* ContentListing::open_usage(const string &text,
|
|
const source_location location)
|
|
{
|
|
usage(text, location);
|
|
return back();
|
|
}
|
|
|
|
ContentListing* ContentListing::open_option(const string &text,
|
|
const source_location location)
|
|
{
|
|
log_assert(type.compare("root") == 0 || type.compare("usage") == 0);
|
|
add_content("option", text, location);
|
|
return back();
|
|
}
|
|
|
|
#define MAX_LINE_LEN 80
|
|
void log_body_str(const std::string &pass_str, std::string indent_str, bool leading_newline=false, bool is_formatted=false) {
|
|
if (pass_str.empty())
|
|
return;
|
|
std::istringstream iss(pass_str);
|
|
if (leading_newline)
|
|
log("\n");
|
|
for (std::string line; std::getline(iss, line);) {
|
|
log("%s", indent_str);
|
|
if (is_formatted) {
|
|
log("%s", line);
|
|
} else {
|
|
auto curr_len = indent_str.length();
|
|
std::istringstream lss(line);
|
|
for (std::string word; std::getline(lss, word, ' ');) {
|
|
while (word[0] == '`' && word.back() == '`')
|
|
word = word.substr(1, word.length()-2);
|
|
if (curr_len + word.length() >= MAX_LINE_LEN-1) {
|
|
curr_len = 0;
|
|
log("\n%s", indent_str);
|
|
}
|
|
if (word.length()) {
|
|
log("%s ", word);
|
|
curr_len += word.length() + 1;
|
|
}
|
|
}
|
|
}
|
|
log("\n");
|
|
}
|
|
}
|
|
void log_body(const ContentListing &content, int indent=0, bool leading_newline=false) {
|
|
std::string indent_str(indent*4, ' ');
|
|
log_body_str(content.body, indent_str, leading_newline, content.type.compare("code") == 0);
|
|
}
|
|
|
|
PrettyHelp *current_help = nullptr;
|
|
|
|
PrettyHelp::PrettyHelp()
|
|
{
|
|
_prior = current_help;
|
|
_root_listing = ContentListing("root", "");
|
|
|
|
current_help = this;
|
|
}
|
|
|
|
PrettyHelp::~PrettyHelp()
|
|
{
|
|
current_help = _prior;
|
|
}
|
|
|
|
PrettyHelp *PrettyHelp::get_current()
|
|
{
|
|
if (current_help == nullptr)
|
|
new PrettyHelp();
|
|
return current_help;
|
|
}
|
|
|
|
void PrettyHelp::log_help() const
|
|
{
|
|
for (auto &content : _root_listing) {
|
|
if (content.type.compare("usage") == 0) {
|
|
log_body(content, 1, true);
|
|
log("\n");
|
|
} else if (content.type.compare("option") == 0) {
|
|
log_body(content, 1);
|
|
for (auto text : content) {
|
|
log_body(text, 2);
|
|
log("\n");
|
|
}
|
|
} else {
|
|
log_body(content, 0);
|
|
log("\n");
|
|
}
|
|
}
|
|
}
|