0.6.0
C++ to UML diagram generator based on Clang
Loading...
Searching...
No Matches
Functions
main.cc File Reference
#include "cli/cli_handler.h"
#include "common/compilation_database.h"
#include "common/generators/generators.h"
#include "util/query_driver_output_extractor.h"
#include "util/util.h"
#include <cli11/CLI11.hpp>
#include <spdlog/spdlog.h>
#include <cstring>

Go to the source code of this file.

Functions

int main (int argc, const char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
const char *  argv[] 
)

Definition at line 44 of file main.cc.

45{
47
48 try {
49 auto res = cli.handle_options(argc, argv);
50
51 if (res == cli::cli_flow_t::kExit)
52 return 0;
53
54 if (res == cli::cli_flow_t::kError)
55 return 1;
56
57#if !defined(NDEBUG)
58 // Catch invalid logger message formats, e.g. missing arguments
59 spdlog::set_error_handler([](const std::string & /*msg*/) {
60 assert(0 == 1); // NOLINT
61 });
62#endif
63
64 const auto db =
66 cli.config);
67
68 const auto compilation_database_files = db->getAllFiles();
69
70 std::map<std::string /* diagram name */,
71 std::vector<std::string> /* translation units */>
72 translation_units_map;
73
74 // We have to generate the translation units list for each diagram
75 // before scheduling tasks, because std::filesystem::current_path
76 // cannot be trusted with multiple threads
78 cli.diagram_names, cli.config, compilation_database_files,
79 translation_units_map);
80
81 if (cli.progress) {
82 // llvm::errs() output stream mangles the stdout stream , we need
83 // to close it here so that it doesn't interfere with the rendering
84 // of progress indicators
85 llvm::errs().close();
86 }
87
89 cli.config, db, cli.get_runtime_config(), translation_units_map);
90 }
92 if (clanguml::logging::logger_type() == logging::logger_type_t::text) {
93 fmt::println(
94 "ERROR: Failed to load compilation database from {} due to: {}",
95 cli.config.compilation_database_dir(), e.what());
96 }
97 else {
98 LOG_ERROR("Failed to load compilation database from {} due to: {}",
99 cli.config.compilation_database_dir(), e.what());
100 }
101 return 1;
102 }
104 if (clanguml::logging::logger_type() == logging::logger_type_t::text) {
105 fmt::println(
106 "ERROR: Querying provided compiler driver {} did not provide "
107 "any "
108 "paths, please make sure the path is correct and that your "
109 "compiler is GCC-compatible: {}",
110 cli.config.query_driver(), e.what());
111 }
112 else {
113 LOG_ERROR(
114 "Querying provided compiler driver {} did not provide any "
115 "paths, please make sure the path is correct and that your "
116 "compiler is GCC-compatible: {}",
117 cli.config.query_driver(), e.what());
118 }
119 return 1;
120 }
122 if (clanguml::logging::logger_type() == logging::logger_type_t::text)
123 fmt::println("ERROR: {}", e.what());
124 else
125 LOG_ERROR("{}", e.what());
126 return 1;
127 }
128 catch (std::exception &e) {
129 if (clanguml::logging::logger_type() == logging::logger_type_t::text)
130 fmt::println("ERROR: {}", e.what());
131 else
132 LOG_ERROR("{}", e.what());
133 return 1;
134 }
135
136 return 0;
137}