21#include "glob/glob.hpp"
70 return "function_template";
76 return "objc_protocol";
78 return "objc_category";
80 return "objc_interface";
106 return "constructor";
129 return "constructor";
143 return "function_template";
147 return "cuda_kernel";
149 return "cuda_device";
242 if (
style.count(to_string(relationship_type)) == 0)
245 return style.at(to_string(relationship_type));
249 const std::string &element_type)
const
251 if (
style.count(element_type) == 0)
254 return style.at(element_type);
333 std::string full_name)
const
340 auto matched_in_iteration{
false};
341 for (
const auto &[pattern, replacement] : aliases) {
342 matched_in_iteration =
344 matched_in_iteration;
346 matched = matched_in_iteration;
359 const std::vector<std::string> &compilation_database_files,
364 std::vector<std::string> compilation_database_paths;
365 compilation_database_paths.reserve(compilation_database_files.size());
366 for (
const auto &cdf : compilation_database_files) {
367 std::filesystem::path p{cdf};
369 compilation_database_paths.emplace_back(p.string());
375 return compilation_database_paths;
380 std::vector<std::string> glob_matches{};
384 for (
const auto &g :
glob().include) {
386 LOG_DBG(
"Matching inclusive glob regex {}", g.to_string());
388 std::regex regex_pattern(
389 g.to_string(), std::regex_constants::optimize);
391 std::copy_if(compilation_database_paths.begin(),
392 compilation_database_paths.end(),
393 std::back_inserter(glob_matches),
394 [®ex_pattern](
const auto &tu) {
397 return exists(std::filesystem::path{tu}) &&
398 std::regex_search(tu, m, regex_pattern);
402 std::filesystem::path absolute_glob_path{g.to_string()};
405 if (!absolute_glob_path.has_root_name())
407 if (!absolute_glob_path.is_absolute())
411 LOG_DBG(
"Searching glob path {}", absolute_glob_path.string());
413 auto matches = glob::glob(absolute_glob_path.string(),
true,
false);
415 for (
const auto &match : matches) {
419 glob_matches.emplace_back(path.string());
424 if (glob().include.empty())
425 glob_matches = compilation_database_paths;
427 for (
const auto &g : glob().exclude) {
429 LOG_DBG(
"Matching exclusive glob regex {}", g.to_string());
431 std::regex regex_pattern(
432 g.to_string(), std::regex_constants::optimize);
434 for (
const auto &cdf : compilation_database_paths) {
436 if (std::regex_search(cdf, m, regex_pattern)) {
438 remove(begin(glob_matches), end(glob_matches), cdf),
444 std::filesystem::path absolute_glob_path{g.to_string()};
447 if (!absolute_glob_path.has_root_name())
449 if (!absolute_glob_path.is_absolute())
451 absolute_glob_path = root_directory() / absolute_glob_path;
453 LOG_DBG(
"Searching exclusive glob path {}",
454 absolute_glob_path.string());
456 auto matches = glob::glob(absolute_glob_path.string(),
true,
false);
458 for (
const auto &match : matches) {
460 std::filesystem::canonical(root_directory() / match);
462 glob_matches.erase(remove(begin(glob_matches),
463 end(glob_matches), path.string()),
470 std::vector<std::string> result;
471 for (
const auto &gm : glob_matches) {
472 std::filesystem::path gm_path{gm};
473 gm_path.make_preferred();
474 if (is_fixed ||
util::contains(compilation_database_paths, gm_path) ||
476 result.emplace_back(gm_path.string());
483std::filesystem::path diagram::make_path_relative(
484 const std::filesystem::path &p)
const
486 return relative(p, root_directory()).lexically_normal().string();
489std::vector<std::string> diagram::make_module_relative(
490 const std::optional<std::string> &maybe_module)
const
499 if (using_module.has_value) {
512std::optional<std::string> diagram::get_together_group(
513 const std::string &full_name)
const
515 const auto relative_name = using_namespace().relative(full_name);
517 for (
const auto &[hint_target, hints] : layout()) {
518 for (
const auto &hint : hints) {
519 if (hint.hint == hint_t::together) {
520 const auto &together_others =
521 std::get<std::vector<std::string>>(hint.entity);
523 if ((full_name == hint_target) ||
527 if ((relative_name == hint_target) ||
537void diagram::initialize_type_aliases()
539 if (type_aliases().count(
"std::basic_string<char>") == 0U) {
540 type_aliases().insert({
"std::basic_string<char>",
"std::string"});
542 if (type_aliases().count(
"std::basic_string<char,std::char_traits<"
543 "char>,std::allocator<char>>") == 0U) {
544 type_aliases().insert({
"std::basic_string<char,std::char_traits<"
545 "char>,std::allocator<char>>",
548 if (type_aliases().count(
"std::basic_string<wchar_t>") == 0U) {
549 type_aliases().insert({
"std::basic_string<wchar_t>",
"std::wstring"});
551 if (type_aliases().count(
"std::basic_string<char16_t>") == 0U) {
552 type_aliases().insert(
553 {
"std::basic_string<char16_t>",
"std::u16string"});
555 if (type_aliases().count(
"std::basic_string<char32_t>") == 0U) {
556 type_aliases().insert(
557 {
"std::basic_string<char32_t>",
"std::u32string"});
559 if (type_aliases().count(
"std::integral_constant<bool,true>") == 0U) {
560 type_aliases().insert(
561 {
"std::integral_constant<bool,true>",
"std::true_type"});
563 if (type_aliases().count(
"std::integral_constant<bool,false>") == 0U) {
564 type_aliases().insert(
565 {
"std::integral_constant<bool,false>",
"std::false_type"});
567#if LLVM_VERSION_MAJOR >= 16
568 if (type_aliases().count(
"std::basic_string") == 0U) {
569 type_aliases().insert({
"std::basic_string",
"std::string"});
594void class_diagram::initialize_relationship_hints()
598 if (relationship_hints().count(
"std::vector") == 0U) {
599 relationship_hints().insert({
"std::vector", {}});
601 if (relationship_hints().count(
"std::unique_ptr") == 0U) {
602 relationship_hints().insert({
"std::unique_ptr", {}});
604 if (relationship_hints().count(
"std::shared_ptr") == 0U) {
605 relationship_hints().insert(
606 {
"std::shared_ptr", {relationship_t::kAssociation}});
608 if (relationship_hints().count(
"std::weak_ptr") == 0U) {
609 relationship_hints().insert(
610 {
"std::weak_ptr", {relationship_t::kAssociation}});
612 if (relationship_hints().count(
"std::tuple") == 0U) {
613 relationship_hints().insert({
"std::tuple", {}});
615 if (relationship_hints().count(
"std::map") == 0U) {
618 relationship_hints().insert({
"std::tuple", std::move(hint)});