Compare commits
7 Commits
handle-sin
...
remove-pac
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92422624cb | ||
|
|
9d43281bdd | ||
|
|
c398c6ffda | ||
|
|
1983a609a0 | ||
|
|
8a6b497cc9 | ||
|
|
03bd5ada31 | ||
|
|
fc6a63490b |
@@ -1,5 +1,10 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
|
* Excluded package diagram relationships to rejected packages (#185)
|
||||||
|
* Added 'title' diagram property (#184)
|
||||||
|
* Make sure sequence diagram messages generated during static variable
|
||||||
|
initialization are rendered only once (#183)
|
||||||
|
|
||||||
### 0.4.0
|
### 0.4.0
|
||||||
* Added MermaidJS diagram generators (#27)
|
* Added MermaidJS diagram generators (#27)
|
||||||
|
|
||||||
|
|||||||
@@ -43,6 +43,17 @@ Effective configuration, including default values can be printed out in YAML for
|
|||||||
clang-uml --dump-config
|
clang-uml --dump-config
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Diagram titles
|
||||||
|
Each type of diagram can have a `title` property, which will be generated in the
|
||||||
|
diagram using directives specific to a given diagram generator, for instance:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
diagrams:
|
||||||
|
diagram1:
|
||||||
|
type: class
|
||||||
|
title: Some explanatory diagram title
|
||||||
|
```
|
||||||
|
|
||||||
## Translation unit glob patterns
|
## Translation unit glob patterns
|
||||||
One of the key options of the diagram configuration is the list of translation units, which should be parsed to
|
One of the key options of the diagram configuration is the list of translation units, which should be parsed to
|
||||||
get all necessary information for a diagram.
|
get all necessary information for a diagram.
|
||||||
|
|||||||
@@ -110,6 +110,9 @@ void generator<C, D>::generate(std::ostream &ostr) const
|
|||||||
nlohmann::json j;
|
nlohmann::json j;
|
||||||
j["name"] = generators::generator<C, D>::model().name();
|
j["name"] = generators::generator<C, D>::model().name();
|
||||||
j["diagram_type"] = to_string(generators::generator<C, D>::model().type());
|
j["diagram_type"] = to_string(generators::generator<C, D>::model().type());
|
||||||
|
if (generators::generator<C, D>::config().title) {
|
||||||
|
j["title"] = generators::generator<C, D>::config().title();
|
||||||
|
}
|
||||||
|
|
||||||
generate_diagram(j);
|
generate_diagram(j);
|
||||||
|
|
||||||
|
|||||||
@@ -136,6 +136,16 @@ public:
|
|||||||
*/
|
*/
|
||||||
void generate_metadata(std::ostream &ostr) const;
|
void generate_metadata(std::ostream &ostr) const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Generate diagram title
|
||||||
|
*
|
||||||
|
* Generates a MermaidJS diagram title directive if diagram title
|
||||||
|
* is provided in the diagram configuration.
|
||||||
|
*
|
||||||
|
* @param ostr Output stream
|
||||||
|
*/
|
||||||
|
void generate_title(std::ostream &ostr) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Generate hyper link to element
|
* @brief Generate hyper link to element
|
||||||
*
|
*
|
||||||
@@ -238,6 +248,8 @@ void generator<C, D>::generate(std::ostream &ostr) const
|
|||||||
|
|
||||||
update_context();
|
update_context();
|
||||||
|
|
||||||
|
generate_title(ostr);
|
||||||
|
|
||||||
generate_diagram_type(ostr);
|
generate_diagram_type(ostr);
|
||||||
|
|
||||||
generate_mermaid_directives(ostr, config.mermaid().before);
|
generate_mermaid_directives(ostr, config.mermaid().before);
|
||||||
@@ -399,6 +411,18 @@ void generator<C, D>::generate_metadata(std::ostream &ostr) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename C, typename D>
|
||||||
|
void generator<C, D>::generate_title(std::ostream &ostr) const
|
||||||
|
{
|
||||||
|
const auto &config = generators::generator<C, D>::config();
|
||||||
|
|
||||||
|
if (config.title) {
|
||||||
|
ostr << "---\n";
|
||||||
|
ostr << "title: " << config.title() << '\n';
|
||||||
|
ostr << "---\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
template <typename C, typename D>
|
template <typename C, typename D>
|
||||||
void generator<C, D>::print_debug(
|
void generator<C, D>::print_debug(
|
||||||
const common::model::source_location &e, std::ostream &ostr) const
|
const common::model::source_location &e, std::ostream &ostr) const
|
||||||
|
|||||||
@@ -131,6 +131,16 @@ public:
|
|||||||
*/
|
*/
|
||||||
void generate_metadata(std::ostream &ostr) const;
|
void generate_metadata(std::ostream &ostr) const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Generate diagram title
|
||||||
|
*
|
||||||
|
* Generates a PlantUML diagram title directive if diagram title
|
||||||
|
* is provided in the diagram configuration.
|
||||||
|
*
|
||||||
|
* @param ostr Output stream
|
||||||
|
*/
|
||||||
|
void generate_title(std::ostream &ostr) const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Generate hyper link to element
|
* @brief Generate hyper link to element
|
||||||
*
|
*
|
||||||
@@ -241,6 +251,8 @@ void generator<C, D>::generate(std::ostream &ostr) const
|
|||||||
|
|
||||||
ostr << "@startuml" << '\n';
|
ostr << "@startuml" << '\n';
|
||||||
|
|
||||||
|
generate_title(ostr);
|
||||||
|
|
||||||
generate_plantuml_directives(ostr, config.puml().before);
|
generate_plantuml_directives(ostr, config.puml().before);
|
||||||
|
|
||||||
generate_diagram(ostr);
|
generate_diagram(ostr);
|
||||||
@@ -449,6 +461,16 @@ void generator<C, D>::generate_metadata(std::ostream &ostr) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename C, typename D>
|
||||||
|
void generator<C, D>::generate_title(std::ostream &ostr) const
|
||||||
|
{
|
||||||
|
const auto &config = generators::generator<C, D>::config();
|
||||||
|
|
||||||
|
if (config.title) {
|
||||||
|
ostr << "title " << config.title() << '\n';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
template <typename C, typename D>
|
template <typename C, typename D>
|
||||||
template <typename E>
|
template <typename E>
|
||||||
void generator<C, D>::generate_link(std::ostream &ostr, const E &e) const
|
void generator<C, D>::generate_link(std::ostream &ostr, const E &e) const
|
||||||
|
|||||||
@@ -30,6 +30,16 @@ diagram_element::id_t diagram_element::id() const { return id_; }
|
|||||||
|
|
||||||
void diagram_element::set_id(diagram_element::id_t id) { id_ = id; }
|
void diagram_element::set_id(diagram_element::id_t id) { id_ = id; }
|
||||||
|
|
||||||
|
std::optional<id_t> diagram_element::parent_element_id() const
|
||||||
|
{
|
||||||
|
return parent_element_id_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void diagram_element::set_parent_element_id(diagram_element::id_t id)
|
||||||
|
{
|
||||||
|
parent_element_id_ = id;
|
||||||
|
}
|
||||||
|
|
||||||
std::string diagram_element::alias() const
|
std::string diagram_element::alias() const
|
||||||
{
|
{
|
||||||
assert(id_ >= 0);
|
assert(id_ >= 0);
|
||||||
|
|||||||
@@ -64,6 +64,20 @@ public:
|
|||||||
*/
|
*/
|
||||||
void set_id(id_t id);
|
void set_id(id_t id);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get elements parent package id.
|
||||||
|
*
|
||||||
|
* @return Parent package id if element is nested.
|
||||||
|
*/
|
||||||
|
std::optional<id_t> parent_element_id() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set elements parent package id.
|
||||||
|
*
|
||||||
|
* @param id Id of parent package.
|
||||||
|
*/
|
||||||
|
void set_parent_element_id(diagram_element::id_t id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Return elements' diagram alias.
|
* @brief Return elements' diagram alias.
|
||||||
*
|
*
|
||||||
@@ -174,6 +188,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
id_t id_{0};
|
id_t id_{0};
|
||||||
|
std::optional<id_t> parent_element_id_{0};
|
||||||
std::string name_;
|
std::string name_;
|
||||||
std::vector<relationship> relationships_;
|
std::vector<relationship> relationships_;
|
||||||
bool nested_{false};
|
bool nested_{false};
|
||||||
|
|||||||
@@ -248,10 +248,6 @@ tvl::value_t namespace_filter::match(const diagram &d, const element &e) const
|
|||||||
e.full_name(false);
|
e.full_name(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (tvl::is_false(result))
|
|
||||||
LOG_DBG("Element {} rejected by namespace_filter 1",
|
|
||||||
e.full_name(false));
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -273,10 +269,6 @@ tvl::value_t namespace_filter::match(const diagram &d, const element &e) const
|
|||||||
e.full_name(false);
|
e.full_name(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (tvl::is_false(result))
|
|
||||||
LOG_DBG("Element {} rejected by namespace_filter (package diagram)",
|
|
||||||
e.full_name(false));
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -290,9 +282,6 @@ tvl::value_t namespace_filter::match(const diagram &d, const element &e) const
|
|||||||
return std::get<common::regex>(nsit.value()) %= e.full_name(false);
|
return std::get<common::regex>(nsit.value()) %= e.full_name(false);
|
||||||
});
|
});
|
||||||
|
|
||||||
if (tvl::is_false(result))
|
|
||||||
LOG_DBG("Element {} rejected by namespace_filter", e.full_name(false));
|
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -94,9 +94,11 @@ public:
|
|||||||
|
|
||||||
auto parent = get_element(path);
|
auto parent = get_element(path);
|
||||||
|
|
||||||
if (parent && dynamic_cast<nested_trait<T, Path> *>(&parent.value()))
|
if (parent && dynamic_cast<nested_trait<T, Path> *>(&parent.value())) {
|
||||||
|
p->set_parent_element_id(parent.value().id());
|
||||||
return dynamic_cast<nested_trait<T, Path> &>(parent.value())
|
return dynamic_cast<nested_trait<T, Path> &>(parent.value())
|
||||||
.template add_element<V>(std::move(p));
|
.template add_element<V>(std::move(p));
|
||||||
|
}
|
||||||
|
|
||||||
LOG_INFO("No parent element found at: {}", path.to_string());
|
LOG_INFO("No parent element found at: {}", path.to_string());
|
||||||
|
|
||||||
|
|||||||
@@ -537,6 +537,8 @@ struct diagram : public inheritable_diagram_options {
|
|||||||
void initialize_type_aliases();
|
void initialize_type_aliases();
|
||||||
|
|
||||||
std::string name;
|
std::string name;
|
||||||
|
|
||||||
|
option<std::string> title{"title"};
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -156,6 +156,7 @@ types:
|
|||||||
relative_to: !optional string
|
relative_to: !optional string
|
||||||
using_namespace: !optional [string, [string]]
|
using_namespace: !optional [string, [string]]
|
||||||
generate_metadata: !optional bool
|
generate_metadata: !optional bool
|
||||||
|
title: !optional string
|
||||||
#
|
#
|
||||||
# Class diagram specific options
|
# Class diagram specific options
|
||||||
#
|
#
|
||||||
@@ -192,6 +193,7 @@ types:
|
|||||||
relative_to: !optional string
|
relative_to: !optional string
|
||||||
using_namespace: !optional [string, [string]]
|
using_namespace: !optional [string, [string]]
|
||||||
generate_metadata: !optional bool
|
generate_metadata: !optional bool
|
||||||
|
title: !optional string
|
||||||
#
|
#
|
||||||
# Sequence diagram specific options
|
# Sequence diagram specific options
|
||||||
#
|
#
|
||||||
@@ -226,6 +228,7 @@ types:
|
|||||||
relative_to: !optional string
|
relative_to: !optional string
|
||||||
using_namespace: !optional [string, [string]]
|
using_namespace: !optional [string, [string]]
|
||||||
generate_metadata: !optional bool
|
generate_metadata: !optional bool
|
||||||
|
title: !optional string
|
||||||
#
|
#
|
||||||
# Package diagram specific options
|
# Package diagram specific options
|
||||||
#
|
#
|
||||||
@@ -254,6 +257,7 @@ types:
|
|||||||
relative_to: !optional string
|
relative_to: !optional string
|
||||||
using_namespace: !optional [string, [string]]
|
using_namespace: !optional [string, [string]]
|
||||||
generate_metadata: !optional bool
|
generate_metadata: !optional bool
|
||||||
|
title: !optional string
|
||||||
#
|
#
|
||||||
# Include diagram specific options
|
# Include diagram specific options
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -551,6 +551,7 @@ template <typename T> bool decode_diagram(const Node &node, T &rhs)
|
|||||||
get_option(node, rhs.comment_parser);
|
get_option(node, rhs.comment_parser);
|
||||||
get_option(node, rhs.debug_mode);
|
get_option(node, rhs.debug_mode);
|
||||||
get_option(node, rhs.generate_metadata);
|
get_option(node, rhs.generate_metadata);
|
||||||
|
get_option(node, rhs.title);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -297,7 +297,9 @@ YAML::Emitter &operator<<(
|
|||||||
out << c.using_namespace;
|
out << c.using_namespace;
|
||||||
out << c.generate_metadata;
|
out << c.generate_metadata;
|
||||||
|
|
||||||
if (dynamic_cast<const class_diagram *>(&c) != nullptr) {
|
if (const auto *cd = dynamic_cast<const class_diagram *>(&c);
|
||||||
|
cd != nullptr) {
|
||||||
|
out << cd->title;
|
||||||
out << c.generate_method_arguments;
|
out << c.generate_method_arguments;
|
||||||
out << c.generate_packages;
|
out << c.generate_packages;
|
||||||
out << c.include_relations_also_as_members;
|
out << c.include_relations_also_as_members;
|
||||||
@@ -315,18 +317,24 @@ YAML::Emitter &operator<<(
|
|||||||
out << c.generate_template_argument_dependencies;
|
out << c.generate_template_argument_dependencies;
|
||||||
out << c.skip_redundant_dependencies;
|
out << c.skip_redundant_dependencies;
|
||||||
}
|
}
|
||||||
else if (dynamic_cast<const sequence_diagram *>(&c) != nullptr) {
|
else if (const auto *sd = dynamic_cast<const sequence_diagram *>(&c);
|
||||||
|
sd != nullptr) {
|
||||||
|
out << sd->title;
|
||||||
out << c.combine_free_functions_into_file_participants;
|
out << c.combine_free_functions_into_file_participants;
|
||||||
out << c.generate_condition_statements;
|
out << c.generate_condition_statements;
|
||||||
out << c.generate_method_arguments;
|
out << c.generate_method_arguments;
|
||||||
out << c.generate_return_types;
|
out << c.generate_return_types;
|
||||||
out << c.participants_order;
|
out << c.participants_order;
|
||||||
}
|
}
|
||||||
else if (dynamic_cast<const package_diagram *>(&c) != nullptr) {
|
else if (const auto *pd = dynamic_cast<const package_diagram *>(&c);
|
||||||
|
pd != nullptr) {
|
||||||
|
out << pd->title;
|
||||||
out << c.generate_packages;
|
out << c.generate_packages;
|
||||||
out << c.package_type;
|
out << c.package_type;
|
||||||
}
|
}
|
||||||
else if (dynamic_cast<const include_diagram *>(&c) != nullptr) {
|
else if (const auto *id = dynamic_cast<const include_diagram *>(&c);
|
||||||
|
id != nullptr) {
|
||||||
|
out << id->title;
|
||||||
out << c.generate_system_headers;
|
out << c.generate_system_headers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,14 @@ void generator::generate_relationships(
|
|||||||
if (model().should_include(relationship_t::kDependency)) {
|
if (model().should_include(relationship_t::kDependency)) {
|
||||||
for (const auto &r : p.relationships()) {
|
for (const auto &r : p.relationships()) {
|
||||||
nlohmann::json rel = r;
|
nlohmann::json rel = r;
|
||||||
|
|
||||||
|
auto destination_package = model().get(r.destination());
|
||||||
|
|
||||||
|
if (!destination_package ||
|
||||||
|
!model().should_include(
|
||||||
|
dynamic_cast<const package &>(*destination_package)))
|
||||||
|
continue;
|
||||||
|
|
||||||
rel["source"] = std::to_string(p.id());
|
rel["source"] = std::to_string(p.id());
|
||||||
parent["relationships"].push_back(std::move(rel));
|
parent["relationships"].push_back(std::move(rel));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,9 +45,17 @@ void generator::generate_relationships(
|
|||||||
for (const auto &r : p.relationships()) {
|
for (const auto &r : p.relationships()) {
|
||||||
std::stringstream relstr;
|
std::stringstream relstr;
|
||||||
try {
|
try {
|
||||||
auto destination = model().to_alias(r.destination());
|
auto destination_package = model().get(r.destination());
|
||||||
if (!destination.empty()) {
|
|
||||||
relstr << p.alias() << " -.-> " << destination << '\n';
|
if (!destination_package ||
|
||||||
|
!model().should_include(
|
||||||
|
dynamic_cast<const package &>(*destination_package)))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
auto destination_alias = model().to_alias(r.destination());
|
||||||
|
if (!destination_alias.empty()) {
|
||||||
|
relstr << p.alias() << " -.-> " << destination_alias
|
||||||
|
<< '\n';
|
||||||
ostr << indent(1) << relstr.str();
|
ostr << indent(1) << relstr.str();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,9 +38,17 @@ void generator::generate_relationships(
|
|||||||
for (const auto &r : p.relationships()) {
|
for (const auto &r : p.relationships()) {
|
||||||
std::stringstream relstr;
|
std::stringstream relstr;
|
||||||
try {
|
try {
|
||||||
auto destination = model().to_alias(r.destination());
|
auto destination_package = model().get(r.destination());
|
||||||
if (!destination.empty()) {
|
|
||||||
relstr << p.alias() << " ..> " << destination << '\n';
|
if (!destination_package ||
|
||||||
|
!model().should_include(
|
||||||
|
dynamic_cast<const package &>(*destination_package)))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
auto destination_alias = model().to_alias(r.destination());
|
||||||
|
|
||||||
|
if (!destination_alias.empty()) {
|
||||||
|
relstr << p.alias() << " ..> " << destination_alias << '\n';
|
||||||
ostr << relstr.str();
|
ostr << relstr.str();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -54,8 +62,9 @@ void generator::generate_relationships(
|
|||||||
|
|
||||||
// Process it's subpackages relationships
|
// Process it's subpackages relationships
|
||||||
for (const auto &subpackage : p) {
|
for (const auto &subpackage : p) {
|
||||||
generate_relationships(
|
if (model().should_include(dynamic_cast<const package &>(*subpackage)))
|
||||||
dynamic_cast<const package &>(*subpackage), ostr);
|
generate_relationships(
|
||||||
|
dynamic_cast<const package &>(*subpackage), ostr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -76,12 +76,12 @@ bool translation_unit_visitor::VisitNamespaceDecl(clang::NamespaceDecl *ns)
|
|||||||
p->set_name(name);
|
p->set_name(name);
|
||||||
p->set_namespace(package_parent);
|
p->set_namespace(package_parent);
|
||||||
p->set_id(common::to_id(*ns));
|
p->set_id(common::to_id(*ns));
|
||||||
|
set_source_location(*ns, *p);
|
||||||
|
|
||||||
assert(p->id() > 0);
|
assert(p->id() > 0);
|
||||||
|
|
||||||
if (diagram().should_include(*p) && !diagram().get(p->id())) {
|
if (diagram().should_include(*p) && !diagram().get(p->id())) {
|
||||||
process_comment(*ns, *p);
|
process_comment(*ns, *p);
|
||||||
set_source_location(*ns, *p);
|
|
||||||
|
|
||||||
p->set_style(p->style_spec());
|
p->set_style(p->style_spec());
|
||||||
|
|
||||||
@@ -232,8 +232,10 @@ void translation_unit_visitor::add_relationships(
|
|||||||
|
|
||||||
pkg->set_name(pkg_name);
|
pkg->set_name(pkg_name);
|
||||||
pkg->set_id(get_package_id(cls));
|
pkg->set_id(get_package_id(cls));
|
||||||
|
set_source_location(*cls, *pkg);
|
||||||
|
|
||||||
diagram().add(parent_path, std::move(pkg));
|
if (diagram().should_include(*pkg))
|
||||||
|
diagram().add(parent_path, std::move(pkg));
|
||||||
}
|
}
|
||||||
|
|
||||||
auto current_package_id = get_package_id(cls);
|
auto current_package_id = get_package_id(cls);
|
||||||
@@ -246,8 +248,21 @@ void translation_unit_visitor::add_relationships(
|
|||||||
auto current_package = diagram().get(current_package_id);
|
auto current_package = diagram().get(current_package_id);
|
||||||
|
|
||||||
if (current_package) {
|
if (current_package) {
|
||||||
|
std::vector<common::model::diagram_element::id_t> parent_ids =
|
||||||
|
get_parent_package_ids(current_package_id);
|
||||||
|
|
||||||
for (const auto &dependency : relationships) {
|
for (const auto &dependency : relationships) {
|
||||||
const auto destination_id = std::get<0>(dependency);
|
const auto destination_id = std::get<0>(dependency);
|
||||||
|
|
||||||
|
// Skip dependency relationships to parent packages
|
||||||
|
if (util::contains(parent_ids, destination_id))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
// Skip dependency relationship to child packages
|
||||||
|
if (util::contains(
|
||||||
|
get_parent_package_ids(destination_id), current_package_id))
|
||||||
|
continue;
|
||||||
|
|
||||||
relationship r{relationship_t::kDependency, destination_id,
|
relationship r{relationship_t::kDependency, destination_id,
|
||||||
common::model::access_t::kNone};
|
common::model::access_t::kNone};
|
||||||
if (destination_id != current_package_id)
|
if (destination_id != current_package_id)
|
||||||
@@ -605,4 +620,23 @@ translation_unit_visitor::config() const
|
|||||||
|
|
||||||
void translation_unit_visitor::finalize() { }
|
void translation_unit_visitor::finalize() { }
|
||||||
|
|
||||||
|
std::vector<common::model::diagram_element::id_t>
|
||||||
|
translation_unit_visitor::get_parent_package_ids(
|
||||||
|
common::model::diagram_element::id_t id)
|
||||||
|
{
|
||||||
|
std::vector<common::model::diagram_element::id_t> parent_ids;
|
||||||
|
std::optional<common::model::diagram_element::id_t> parent_id = id;
|
||||||
|
|
||||||
|
while (parent_id.has_value()) {
|
||||||
|
parent_ids.push_back(parent_id.value());
|
||||||
|
auto parent = this->diagram().get(parent_id.value());
|
||||||
|
if (parent)
|
||||||
|
parent_id = parent.value().parent_element_id();
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return parent_ids;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace clanguml::package_diagram::visitor
|
} // namespace clanguml::package_diagram::visitor
|
||||||
|
|||||||
@@ -214,6 +214,9 @@ private:
|
|||||||
void add_relationships(
|
void add_relationships(
|
||||||
clang::Decl *cls, found_relationships_t &relationships);
|
clang::Decl *cls, found_relationships_t &relationships);
|
||||||
|
|
||||||
|
std::vector<common::model::diagram_element::id_t> get_parent_package_ids(
|
||||||
|
common::model::diagram_element::id_t id);
|
||||||
|
|
||||||
// Reference to the output diagram model
|
// Reference to the output diagram model
|
||||||
clanguml::package_diagram::model::diagram &diagram_;
|
clanguml::package_diagram::model::diagram &diagram_;
|
||||||
|
|
||||||
|
|||||||
@@ -1039,10 +1039,6 @@ bool translation_unit_visitor::TraverseVarDecl(clang::VarDecl *decl)
|
|||||||
decl->getBeginLoc().printToString(source_manager()),
|
decl->getBeginLoc().printToString(source_manager()),
|
||||||
context().caller_id());
|
context().caller_id());
|
||||||
|
|
||||||
decl->dump();
|
|
||||||
|
|
||||||
decl->getInit()->dump();
|
|
||||||
|
|
||||||
if (decl->isStaticLocal())
|
if (decl->isStaticLocal())
|
||||||
within_static_variable_declaration_++;
|
within_static_variable_declaration_++;
|
||||||
|
|
||||||
@@ -1074,8 +1070,6 @@ bool translation_unit_visitor::VisitCXXConstructExpr(
|
|||||||
expr->getBeginLoc().printToString(source_manager()),
|
expr->getBeginLoc().printToString(source_manager()),
|
||||||
context().caller_id());
|
context().caller_id());
|
||||||
|
|
||||||
expr->dump();
|
|
||||||
|
|
||||||
message m{message_t::kCall, context().caller_id()};
|
message m{message_t::kCall, context().caller_id()};
|
||||||
|
|
||||||
m.in_static_declaration_context(within_static_variable_declaration_ > 0);
|
m.in_static_declaration_context(within_static_variable_declaration_ > 0);
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ output_directory: diagrams
|
|||||||
diagrams:
|
diagrams:
|
||||||
t00002_class:
|
t00002_class:
|
||||||
type: class
|
type: class
|
||||||
|
title: Basic class diagram example
|
||||||
glob:
|
glob:
|
||||||
- ../../tests/t00002/t00002.cc
|
- ../../tests/t00002/t00002.cc
|
||||||
comment_parser: clang
|
comment_parser: clang
|
||||||
|
|||||||
@@ -41,6 +41,7 @@ TEST_CASE("t00002", "[test-case][class]")
|
|||||||
|
|
||||||
REQUIRE_THAT(puml, StartsWith("@startuml"));
|
REQUIRE_THAT(puml, StartsWith("@startuml"));
|
||||||
REQUIRE_THAT(puml, EndsWith("@enduml\n"));
|
REQUIRE_THAT(puml, EndsWith("@enduml\n"));
|
||||||
|
REQUIRE_THAT(puml, HasTitle("Basic class diagram example"));
|
||||||
REQUIRE_THAT(puml, IsAbstractClass(_A("A")));
|
REQUIRE_THAT(puml, IsAbstractClass(_A("A")));
|
||||||
REQUIRE_THAT(puml, IsClass(_A("B")));
|
REQUIRE_THAT(puml, IsClass(_A("B")));
|
||||||
REQUIRE_THAT(puml, IsClass(_A("C")));
|
REQUIRE_THAT(puml, IsClass(_A("C")));
|
||||||
@@ -92,6 +93,7 @@ TEST_CASE("t00002", "[test-case][class]")
|
|||||||
|
|
||||||
using namespace json;
|
using namespace json;
|
||||||
|
|
||||||
|
REQUIRE(HasTitle(j, "Basic class diagram example"));
|
||||||
REQUIRE(IsClass(j, "A"));
|
REQUIRE(IsClass(j, "A"));
|
||||||
REQUIRE(IsClass(j, "B"));
|
REQUIRE(IsClass(j, "B"));
|
||||||
REQUIRE(IsClass(j, "C"));
|
REQUIRE(IsClass(j, "C"));
|
||||||
@@ -111,9 +113,11 @@ TEST_CASE("t00002", "[test-case][class]")
|
|||||||
|
|
||||||
mermaid::AliasMatcher _A(mmd);
|
mermaid::AliasMatcher _A(mmd);
|
||||||
using mermaid::HasNote;
|
using mermaid::HasNote;
|
||||||
|
using mermaid::HasTitle;
|
||||||
using mermaid::IsAbstractClass;
|
using mermaid::IsAbstractClass;
|
||||||
|
|
||||||
REQUIRE_THAT(mmd, StartsWith("classDiagram"));
|
REQUIRE_THAT(mmd, HasTitle("Basic class diagram example"));
|
||||||
|
REQUIRE_THAT(mmd, Contains("classDiagram"));
|
||||||
REQUIRE_THAT(mmd, IsAbstractClass(_A("A")));
|
REQUIRE_THAT(mmd, IsAbstractClass(_A("A")));
|
||||||
REQUIRE_THAT(mmd, IsClass(_A("B")));
|
REQUIRE_THAT(mmd, IsClass(_A("B")));
|
||||||
REQUIRE_THAT(mmd, IsClass(_A("C")));
|
REQUIRE_THAT(mmd, IsClass(_A("C")));
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ output_directory: diagrams
|
|||||||
diagrams:
|
diagrams:
|
||||||
t20001_sequence:
|
t20001_sequence:
|
||||||
type: sequence
|
type: sequence
|
||||||
|
title: Basic sequence diagram example
|
||||||
glob:
|
glob:
|
||||||
- ../../tests/t20001/t20001.cc
|
- ../../tests/t20001/t20001.cc
|
||||||
include:
|
include:
|
||||||
|
|||||||
@@ -35,6 +35,8 @@ TEST_CASE("t20001", "[test-case][sequence]")
|
|||||||
REQUIRE_THAT(src, StartsWith("@startuml"));
|
REQUIRE_THAT(src, StartsWith("@startuml"));
|
||||||
REQUIRE_THAT(src, EndsWith("@enduml\n"));
|
REQUIRE_THAT(src, EndsWith("@enduml\n"));
|
||||||
|
|
||||||
|
REQUIRE_THAT(src, HasTitle("Basic sequence diagram example"));
|
||||||
|
|
||||||
REQUIRE_THAT(src, HasCall(_A("B"), _A("A"), "add3(int,int,int)"));
|
REQUIRE_THAT(src, HasCall(_A("B"), _A("A"), "add3(int,int,int)"));
|
||||||
REQUIRE_THAT(src, HasCall(_A("A"), "add(int,int)"));
|
REQUIRE_THAT(src, HasCall(_A("A"), "add(int,int)"));
|
||||||
REQUIRE_THAT(src, !HasCall(_A("A"), _A("detail::C"), "add(int,int)"));
|
REQUIRE_THAT(src, !HasCall(_A("A"), _A("detail::C"), "add(int,int)"));
|
||||||
@@ -50,6 +52,8 @@ TEST_CASE("t20001", "[test-case][sequence]")
|
|||||||
|
|
||||||
using namespace json;
|
using namespace json;
|
||||||
|
|
||||||
|
REQUIRE(HasTitle(j, "Basic sequence diagram example"));
|
||||||
|
|
||||||
REQUIRE(IsFunctionParticipant(j, "tmain()"));
|
REQUIRE(IsFunctionParticipant(j, "tmain()"));
|
||||||
REQUIRE(IsClassParticipant(j, "A"));
|
REQUIRE(IsClassParticipant(j, "A"));
|
||||||
REQUIRE(IsClassParticipant(j, "B"));
|
REQUIRE(IsClassParticipant(j, "B"));
|
||||||
@@ -71,6 +75,9 @@ TEST_CASE("t20001", "[test-case][sequence]")
|
|||||||
mermaid::SequenceDiagramAliasMatcher _A(src);
|
mermaid::SequenceDiagramAliasMatcher _A(src);
|
||||||
using mermaid::HasCall;
|
using mermaid::HasCall;
|
||||||
using mermaid::HasComment;
|
using mermaid::HasComment;
|
||||||
|
using mermaid::HasTitle;
|
||||||
|
|
||||||
|
REQUIRE_THAT(src, HasTitle("Basic sequence diagram example"));
|
||||||
|
|
||||||
REQUIRE_THAT(src, HasCall(_A("B"), _A("A"), "add3(int,int,int)"));
|
REQUIRE_THAT(src, HasCall(_A("B"), _A("A"), "add3(int,int,int)"));
|
||||||
REQUIRE_THAT(src, HasCall(_A("A"), "add(int,int)"));
|
REQUIRE_THAT(src, HasCall(_A("A"), "add(int,int)"));
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ output_directory: diagrams
|
|||||||
diagrams:
|
diagrams:
|
||||||
t30001_package:
|
t30001_package:
|
||||||
type: package
|
type: package
|
||||||
|
title: Basic package diagram example
|
||||||
glob:
|
glob:
|
||||||
- ../../tests/t30001/t30001.cc
|
- ../../tests/t30001/t30001.cc
|
||||||
include:
|
include:
|
||||||
|
|||||||
@@ -35,6 +35,8 @@ TEST_CASE("t30001", "[test-case][package]")
|
|||||||
REQUIRE_THAT(src, StartsWith("@startuml"));
|
REQUIRE_THAT(src, StartsWith("@startuml"));
|
||||||
REQUIRE_THAT(src, EndsWith("@enduml\n"));
|
REQUIRE_THAT(src, EndsWith("@enduml\n"));
|
||||||
|
|
||||||
|
REQUIRE_THAT(src, HasTitle("Basic package diagram example"));
|
||||||
|
|
||||||
REQUIRE_THAT(src, IsPackage("A"));
|
REQUIRE_THAT(src, IsPackage("A"));
|
||||||
REQUIRE_THAT(src, IsPackage("AAA"));
|
REQUIRE_THAT(src, IsPackage("AAA"));
|
||||||
REQUIRE_THAT(src, IsPackage("AAA"));
|
REQUIRE_THAT(src, IsPackage("AAA"));
|
||||||
@@ -69,6 +71,8 @@ TEST_CASE("t30001", "[test-case][package]")
|
|||||||
|
|
||||||
using namespace json;
|
using namespace json;
|
||||||
|
|
||||||
|
REQUIRE(HasTitle(j, "Basic package diagram example"));
|
||||||
|
|
||||||
REQUIRE(IsPackage(j, "A"));
|
REQUIRE(IsPackage(j, "A"));
|
||||||
REQUIRE(IsPackage(j, "A::AA"));
|
REQUIRE(IsPackage(j, "A::AA"));
|
||||||
REQUIRE(IsPackage(j, "A::AA::AAA"));
|
REQUIRE(IsPackage(j, "A::AA::AAA"));
|
||||||
@@ -90,8 +94,11 @@ TEST_CASE("t30001", "[test-case][package]")
|
|||||||
using mermaid::HasComment;
|
using mermaid::HasComment;
|
||||||
using mermaid::HasLink;
|
using mermaid::HasLink;
|
||||||
using mermaid::HasPackageNote;
|
using mermaid::HasPackageNote;
|
||||||
|
using mermaid::HasTitle;
|
||||||
using mermaid::IsPackage;
|
using mermaid::IsPackage;
|
||||||
|
|
||||||
|
REQUIRE_THAT(src, HasTitle("Basic package diagram example"));
|
||||||
|
|
||||||
REQUIRE_THAT(src, IsPackage(_A("A")));
|
REQUIRE_THAT(src, IsPackage(_A("A")));
|
||||||
REQUIRE_THAT(src, IsPackage(_A("AAA")));
|
REQUIRE_THAT(src, IsPackage(_A("AAA")));
|
||||||
REQUIRE_THAT(src, IsPackage(_A("AAA")));
|
REQUIRE_THAT(src, IsPackage(_A("AAA")));
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ output_directory: diagrams
|
|||||||
diagrams:
|
diagrams:
|
||||||
t40001_include:
|
t40001_include:
|
||||||
type: include
|
type: include
|
||||||
|
title: Basic include diagram example
|
||||||
# Provide the files to parse in order to look
|
# Provide the files to parse in order to look
|
||||||
# for #include directives
|
# for #include directives
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -35,6 +35,7 @@ TEST_CASE("t40001", "[test-case][include]")
|
|||||||
|
|
||||||
REQUIRE_THAT(src, StartsWith("@startuml"));
|
REQUIRE_THAT(src, StartsWith("@startuml"));
|
||||||
REQUIRE_THAT(src, EndsWith("@enduml\n"));
|
REQUIRE_THAT(src, EndsWith("@enduml\n"));
|
||||||
|
REQUIRE_THAT(src, HasTitle("Basic include diagram example"));
|
||||||
|
|
||||||
REQUIRE_THAT(src, IsFolder("lib1"));
|
REQUIRE_THAT(src, IsFolder("lib1"));
|
||||||
REQUIRE_THAT(src, IsFile("lib1.h"));
|
REQUIRE_THAT(src, IsFile("lib1.h"));
|
||||||
@@ -60,6 +61,8 @@ TEST_CASE("t40001", "[test-case][include]")
|
|||||||
|
|
||||||
using namespace json;
|
using namespace json;
|
||||||
|
|
||||||
|
REQUIRE(HasTitle(j, "Basic include diagram example"));
|
||||||
|
|
||||||
REQUIRE(IsFolder(j, "include"));
|
REQUIRE(IsFolder(j, "include"));
|
||||||
REQUIRE(IsFolder(j, "include/lib1"));
|
REQUIRE(IsFolder(j, "include/lib1"));
|
||||||
REQUIRE(IsFolder(j, "src"));
|
REQUIRE(IsFolder(j, "src"));
|
||||||
@@ -84,10 +87,13 @@ TEST_CASE("t40001", "[test-case][include]")
|
|||||||
|
|
||||||
mermaid::AliasMatcher _A(src);
|
mermaid::AliasMatcher _A(src);
|
||||||
using mermaid::HasComment;
|
using mermaid::HasComment;
|
||||||
|
using mermaid::HasTitle;
|
||||||
using mermaid::IsFile;
|
using mermaid::IsFile;
|
||||||
using mermaid::IsFolder;
|
using mermaid::IsFolder;
|
||||||
using mermaid::IsIncludeDependency;
|
using mermaid::IsIncludeDependency;
|
||||||
|
|
||||||
|
REQUIRE_THAT(src, HasTitle("Basic include diagram example"));
|
||||||
|
|
||||||
REQUIRE_THAT(src, IsFolder(_A("lib1")));
|
REQUIRE_THAT(src, IsFolder(_A("lib1")));
|
||||||
REQUIRE_THAT(src, IsFile(_A("lib1.h")));
|
REQUIRE_THAT(src, IsFile(_A("lib1.h")));
|
||||||
REQUIRE_THAT(src, IsFile(_A("t40001.cc")));
|
REQUIRE_THAT(src, IsFile(_A("t40001.cc")));
|
||||||
|
|||||||
@@ -494,6 +494,20 @@ struct SequenceDiagramAliasMatcher {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ContainsMatcher HasTitle(std::string const &str,
|
||||||
|
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
||||||
|
{
|
||||||
|
return ContainsMatcher(CasedString("title " + str, caseSensitivity));
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace mermaid {
|
||||||
|
ContainsMatcher HasTitle(std::string const &str,
|
||||||
|
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
||||||
|
{
|
||||||
|
return ContainsMatcher(CasedString("title: " + str, caseSensitivity));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ContainsMatcher IsClass(std::string const &str,
|
ContainsMatcher IsClass(std::string const &str,
|
||||||
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes)
|
||||||
{
|
{
|
||||||
@@ -1231,6 +1245,11 @@ std::string expand_name(const nlohmann::json &j, const std::string &name)
|
|||||||
return fmt::format("{}::{}", j["using_namespace"].get<std::string>(), name);
|
return fmt::format("{}::{}", j["using_namespace"].get<std::string>(), name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool HasTitle(const nlohmann::json &j, const std::string &title)
|
||||||
|
{
|
||||||
|
return j.contains("title") && j["title"] == title;
|
||||||
|
}
|
||||||
|
|
||||||
bool IsClass(const nlohmann::json &j, const std::string &name)
|
bool IsClass(const nlohmann::json &j, const std::string &name)
|
||||||
{
|
{
|
||||||
auto e = get_element(j, expand_name(j, name));
|
auto e = get_element(j, expand_name(j, name));
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Translation unit AST visitors
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
- src/docs/architecture.cc
|
- src/docs/architecture.cc
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Class diagram model
|
||||||
include_relations_also_as_members: false
|
include_relations_also_as_members: false
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
@@ -14,6 +15,3 @@ exclude:
|
|||||||
- dependency
|
- dependency
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml class diagram model'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Comment visitor class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/common/visitor/comment/*.cc
|
- src/common/visitor/comment/*.cc
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Common diagram model
|
||||||
include_relations_also_as_members: false
|
include_relations_also_as_members: false
|
||||||
glob:
|
glob:
|
||||||
- src/common/model/*.cc
|
- src/common/model/*.cc
|
||||||
@@ -16,7 +17,5 @@ exclude:
|
|||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml::common::model
|
- clanguml::common::model
|
||||||
plantuml:
|
plantuml:
|
||||||
before:
|
|
||||||
- 'title clang-uml common diagram model'
|
|
||||||
after:
|
after:
|
||||||
- 'note top of {{ alias("diagram") }}: Common class for specific diagram types'
|
- 'note top of {{ alias("diagram") }}: Common class for specific diagram types'
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Compilation database context diagram
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: false
|
generate_packages: false
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Configuration model
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/config/config.cc
|
- src/config/config.cc
|
||||||
@@ -15,8 +16,6 @@ exclude:
|
|||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml::config
|
- clanguml::config
|
||||||
plantuml:
|
plantuml:
|
||||||
before:
|
|
||||||
- 'title clang-uml configuration model'
|
|
||||||
after:
|
after:
|
||||||
- 'note left of {{ alias("inheritable_diagram_options") }}: Options common to all diagram types.'
|
- 'note left of {{ alias("inheritable_diagram_options") }}: Options common to all diagram types.'
|
||||||
- 'note right of {{ alias("config") }}: General options not used by diagrams.'
|
- 'note right of {{ alias("config") }}: General options not used by diagrams.'
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: clanguml::config::config context diagram
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/config/config.cc
|
- src/config/config.cc
|
||||||
@@ -9,6 +10,3 @@ include:
|
|||||||
- clanguml::config::config
|
- clanguml::config::config
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml::config
|
- clanguml::config
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clanguml::config::config context diagram'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Decorated diagram element class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Diagram element decorators model
|
||||||
include_relations_also_as_members: false
|
include_relations_also_as_members: false
|
||||||
glob:
|
glob:
|
||||||
- src/decorators/decorators.cc
|
- src/decorators/decorators.cc
|
||||||
@@ -7,6 +8,3 @@ include:
|
|||||||
- clanguml::decorators
|
- clanguml::decorators
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml::decorators
|
- clanguml::decorators
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml decorators model'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Configuration model class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
@@ -14,6 +15,3 @@ exclude:
|
|||||||
access: [public, protected, private]
|
access: [public, protected, private]
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clanguml::config::diagram class hierarchy'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Diagram element class hierarchy
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
- src/common/model/*.cc
|
- src/common/model/*.cc
|
||||||
@@ -23,6 +24,3 @@ exclude:
|
|||||||
- protected
|
- protected
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml diagram element class inheritance model'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Diagram filter context model
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: false
|
generate_packages: false
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Diagram type class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Diagram model
|
||||||
include_relations_also_as_members: false
|
include_relations_also_as_members: false
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
glob:
|
glob:
|
||||||
@@ -17,6 +18,3 @@ exclude:
|
|||||||
- dependency
|
- dependency
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml diagram model'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Diagram filter visitor class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Configuration model inheritable options context
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/config/config.cc
|
- src/config/config.cc
|
||||||
@@ -11,5 +12,4 @@ using_namespace:
|
|||||||
- clanguml::config
|
- clanguml::config
|
||||||
plantuml:
|
plantuml:
|
||||||
before:
|
before:
|
||||||
- title clanguml::config::config context diagram
|
|
||||||
- left to right direction
|
- left to right direction
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Nested trait model class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/common/model/*.cc
|
- src/common/model/*.cc
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Package diagram class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/common/model/package.cc
|
- src/common/model/package.cc
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Package diagram model
|
||||||
include_relations_also_as_members: false
|
include_relations_also_as_members: false
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
glob:
|
glob:
|
||||||
@@ -13,6 +14,3 @@ using_namespace:
|
|||||||
exclude:
|
exclude:
|
||||||
relationships:
|
relationships:
|
||||||
- dependency
|
- dependency
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml package diagram model'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Relationship model context
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Sequence diagram model
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
@@ -24,6 +25,3 @@ exclude:
|
|||||||
- operator
|
- operator
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml sequence diagram model'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Source file model class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
glob:
|
glob:
|
||||||
- src/common/model/source_file.cc
|
- src/common/model/source_file.cc
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Source location model class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Stylable diagram element class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: class
|
type: class
|
||||||
|
title: Template trait diagram element model class hierarchy
|
||||||
include_relations_also_as_members: true
|
include_relations_also_as_members: true
|
||||||
generate_packages: true
|
generate_packages: true
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
type: include
|
type: include
|
||||||
|
title: Include graph
|
||||||
glob:
|
glob:
|
||||||
- src/config/*.cc
|
- src/config/*.cc
|
||||||
relative_to: .
|
relative_to: .
|
||||||
include:
|
include:
|
||||||
paths:
|
paths:
|
||||||
- src
|
- src
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- "title clang-uml include graph diagram"
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: package
|
type: package
|
||||||
|
title: High-level namespace dependencies in clang-uml
|
||||||
glob:
|
glob:
|
||||||
- src/config/config.cc
|
- src/config/config.cc
|
||||||
- src/common/model/diagram.cc
|
- src/common/model/diagram.cc
|
||||||
@@ -16,6 +17,3 @@ include:
|
|||||||
- r: "clanguml::.+::model"
|
- r: "clanguml::.+::model"
|
||||||
- r: "clanguml::.+::visitor"
|
- r: "clanguml::.+::visitor"
|
||||||
- r: "clanguml::.+::generators"
|
- r: "clanguml::.+::generators"
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml top level packages'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: package
|
type: package
|
||||||
|
title: Namespace (package) diagram
|
||||||
glob:
|
glob:
|
||||||
- src/**/*.cc
|
- src/**/*.cc
|
||||||
include:
|
include:
|
||||||
@@ -6,6 +7,3 @@ include:
|
|||||||
- clanguml
|
- clanguml
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml namespaces'
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: PlantUML diagram generator sequence diagram
|
||||||
glob:
|
glob:
|
||||||
- src/class_diagram/generators/plantuml/*.cc
|
- src/class_diagram/generators/plantuml/*.cc
|
||||||
include:
|
include:
|
||||||
@@ -6,8 +7,5 @@ include:
|
|||||||
- clanguml
|
- clanguml
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml::class_diagram::generators::plantuml
|
- clanguml::class_diagram::generators::plantuml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml clanguml::class_diagram::generators::plantuml::generator sequence diagram'
|
|
||||||
from:
|
from:
|
||||||
- function: "clanguml::common::generators::plantuml::generator<clanguml::config::class_diagram,clanguml::class_diagram::model::diagram>::generate(std::ostream &) const"
|
- function: "clanguml::common::generators::plantuml::generator<clanguml::config::class_diagram,clanguml::class_diagram::model::diagram>::generate(std::ostream &) const"
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: CLI options handling sequence diagram
|
||||||
combine_free_functions_into_file_participants: true
|
combine_free_functions_into_file_participants: true
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
debug_mode: true
|
debug_mode: true
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: Common sequence diagram generator sequence diagram
|
||||||
combine_free_functions_into_file_participants: true
|
combine_free_functions_into_file_participants: true
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: Configuration file loading sequence diagram
|
||||||
combine_free_functions_into_file_participants: true
|
combine_free_functions_into_file_participants: true
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
glob:
|
glob:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: main() function sequence diagram
|
||||||
# Group free functions into one participant per file
|
# Group free functions into one participant per file
|
||||||
combine_free_functions_into_file_participants: true
|
combine_free_functions_into_file_participants: true
|
||||||
# Do not generate method or function arguments
|
# Do not generate method or function arguments
|
||||||
@@ -19,9 +20,6 @@ exclude:
|
|||||||
- src/util/util.h
|
- src/util/util.h
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml main function sequence diagram'
|
|
||||||
# Use clang-uml main function as entry point for this diagram
|
# Use clang-uml main function as entry point for this diagram
|
||||||
from:
|
from:
|
||||||
- function: main(int,const char **)
|
- function: main(int,const char **)
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: Sequence diagram AST visitor sequence diagram
|
||||||
# Group free functions into one participant per file
|
# Group free functions into one participant per file
|
||||||
combine_free_functions_into_file_participants: true
|
combine_free_functions_into_file_participants: true
|
||||||
# Do not generate method or function arguments
|
# Do not generate method or function arguments
|
||||||
@@ -21,8 +22,5 @@ exclude:
|
|||||||
- src/common/model/source_location.h
|
- src/common/model/source_location.h
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml sequence_diagram::visitor::translation_unit_visitor::VisitCXXRecordDecl sequence diagram'
|
|
||||||
from:
|
from:
|
||||||
- function: "clanguml::sequence_diagram::visitor::translation_unit_visitor::VisitCXXRecordDecl(clang::CXXRecordDecl *)"
|
- function: "clanguml::sequence_diagram::visitor::translation_unit_visitor::VisitCXXRecordDecl(clang::CXXRecordDecl *)"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
type: sequence
|
type: sequence
|
||||||
|
title: Diagram element template builder sequence diagram
|
||||||
combine_free_functions_into_file_participants: true
|
combine_free_functions_into_file_participants: true
|
||||||
generate_method_arguments: none
|
generate_method_arguments: none
|
||||||
glob:
|
glob:
|
||||||
@@ -14,8 +15,5 @@ exclude:
|
|||||||
- src/common/model/source_location.h
|
- src/common/model/source_location.h
|
||||||
using_namespace:
|
using_namespace:
|
||||||
- clanguml
|
- clanguml
|
||||||
plantuml:
|
|
||||||
before:
|
|
||||||
- 'title clang-uml class_diagram::visitor::template_builder::build sequence diagram'
|
|
||||||
from:
|
from:
|
||||||
- function: "clanguml::class_diagram::visitor::template_builder::build(const clang::NamedDecl *,const clang::TemplateSpecializationType &,std::optional<class_diagram::model::class_ *>)"
|
- function: "clanguml::class_diagram::visitor::template_builder::build(const clang::NamedDecl *,const clang::TemplateSpecializationType &,std::optional<class_diagram::model::class_ *>)"
|
||||||
|
|||||||
Reference in New Issue
Block a user