16 #include <type_traits>
19 #pragma GCC diagnostic push
20 #pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
21 #include <boost/graph/adjacency_list.hpp>
22 #include <boost/graph/graphviz.hpp>
23 #include <boost/graph/lookup_edge.hpp>
24 #pragma GCC diagnostic pop
45 std::unordered_set<T> make_unordered_set(std::vector<T> &&entries) {
46 std::unordered_set<T> u;
66 bool highlighted(
std::string const &module) {
return (m_highlightModules.find(module) != m_highlightModules.end()); }
71 "Unknown",
"Source",
"ESSource",
"ESProducer",
"EDAnalyzer",
"EDProducer",
"EDFilter",
"OutputModule"};
73 static constexpr
const char *shapes[]{
99 boost::subgraph<boost::adjacency_list<
106 boost::property<boost::vertex_attribute_t,
110 boost::property<boost::edge_index_t,
112 boost::property<boost::edge_attribute_t, GraphvizAttributes>>,
117 boost::property<boost::graph_graph_attribute_t,
119 boost::property<boost::graph_vertex_attribute_t,
121 boost::property<boost::graph_edge_attribute_t, GraphvizAttributes>>>>>>
144 EDMModuleType::ESSource,
146 EDMModuleType::EDAnalyzer,
147 EDMModuleType::EDProducer,
148 EDMModuleType::EDFilter,
149 EDMModuleType::OutputModule}) {
163 desc.addUntracked<std::vector<std::string>>(
"highlightModules", {});
164 desc.addUntracked<
bool>(
"showPathDependencies",
true);
165 descriptions.
add(
"DependencyGraph",
desc);
172 m_showPathDependencies(
config.getUntrackedParameter<
bool>(
"showPathDependencies")),
173 m_initialized(
false) {
180 template <
typename I>
183 using std::pair<I, I>::pair;
189 template <
typename I>
203 attributes[
"style"] =
"filled";
204 attributes[
"color"] =
"black";
212 edm::LogError(
"DependencyGraph") <<
"You have requested an instance of the DependencyGraph Service in the \""
214 <<
"\" SubProcess, which is not supported.\nPlease move it to the main process.";
221 boost::get_property(
m_graph, boost::graph_graph_attribute)[
"label"] =
"process " + context.
processName();
222 boost::get_property(
m_graph, boost::graph_graph_attribute)[
"labelloc"] =
"top";
226 for (
size_t i = 0;
i <
size; ++
i)
232 auto &graph =
m_graph.create_subgraph();
235 boost::get_property(graph, boost::graph_name) =
"cluster" + context.
processName();
236 boost::get_property(graph, boost::graph_graph_attribute)[
"label"] =
"subprocess " + context.
processName();
237 boost::get_property(graph, boost::graph_graph_attribute)[
"labelloc"] =
"top";
241 for (
size_t i = 0;
i <
size; ++
i)
242 boost::add_vertex(graph);
247 m_graph.m_graph[module->id()] = {
248 module->moduleLabel(), module->moduleName(), module->id(),
edmModuleTypeEnum(*module),
false};
251 attributes[
"label"] = module->moduleLabel();
252 attributes[
"tooltip"] = module->moduleName();
254 attributes[
"style"] =
"filled";
255 attributes[
"color"] =
"black";
256 attributes[
"fillcolor"] =
highlighted(module->moduleLabel()) ?
"green" :
"lightgrey";
261 auto const &endps = pathsAndConsumes.
endPaths();
266 edm::LogInfo(
"DependencyGraph") <<
"module " <<
consumer->moduleLabel() <<
" depends on module "
267 << module->moduleLabel();
268 auto edge_status = boost::add_edge(
consumer->id(), module->id(),
m_graph);
271 auto const &edge = edge_status.first;
273 attributes[
"color"] =
"darkgreen";
280 for (
unsigned int i = 0;
i <
paths.size(); ++
i) {
283 m_graph.m_graph[module->id()].scheduled =
true;
285 attributes[
"fillcolor"] =
highlighted(module->moduleLabel()) ?
"lightgreen" :
"white";
287 edm::LogInfo(
"DependencyGraph") <<
"module " << module->moduleLabel() <<
" follows module "
289 auto edge_status = boost::lookup_edge(module->id(), previous->
id(),
m_graph);
290 bool found = edge_status.second;
292 edge_status = boost::add_edge(module->id(), previous->
id(),
m_graph);
293 auto const &edge = edge_status.first;
295 edgeAttributes[
"style"] =
"dashed";
298 edgeAttributes[
"color"] =
"darkgreen";
304 for (
unsigned int i = 0;
i < endps.size(); ++
i) {
307 m_graph.m_graph[module->id()].scheduled =
true;
309 attributes[
"fillcolor"] =
highlighted(module->moduleLabel()) ?
"lightgreen" :
"white";
311 edm::LogInfo(
"DependencyGraph") <<
"module " << module->moduleLabel() <<
" follows module "
313 auto edge_status = boost::lookup_edge(module->id(), previous->
id(),
m_graph);
314 bool found = edge_status.second;
316 edge_status = boost::add_edge(module->id(), previous->
id(),
m_graph);
317 auto const &edge = edge_status.first;
319 edgeAttributes[
"style"] =
"dashed";
322 edgeAttributes[
"color"] =
"darkgreen";