Преглед на файлове

Flag to read stdin for `catalog import`

default_compile_flags
vector-of-bool преди 4 години
родител
ревизия
6ae7eeb23f
променени са 1 файла, в които са добавени 8 реда и са изтрити 0 реда
  1. +8
    -0
      src/dds.main.cpp

+ 8
- 0
src/dds.main.cpp Целия файл

@@ -19,6 +19,7 @@

#include <filesystem>
#include <iostream>
#include <sstream>

namespace {

@@ -154,6 +155,8 @@ struct cli_catalog {
common_flags _common{cmd};

catalog_path_flag cat_path{cmd};

args::Flag import_stdin{cmd, "stdin", "Import JSON from stdin", {"stdin"}};
args::ValueFlagList<std::string>
json_paths{cmd,
"json",
@@ -165,6 +168,11 @@ struct cli_catalog {
for (const auto& json_fpath : json_paths.Get()) {
cat.import_json_file(json_fpath);
}
if (import_stdin.Get()) {
std::ostringstream strm;
strm << std::cin.rdbuf();
cat.import_json_str(strm.str());
}
return 0;
}
} import{*this};

Loading…
Отказ
Запис