DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
dbe::tool::graph::segregated_graph_write Class Reference

#include <segregate.hpp>

Public Member Functions

 segregated_graph_write (std::string const &ofn_prefix, size_t const minc=0, size_t const maxc=0)
int operator() (gtool const &) const

Private Attributes

std::string const this_dest_prefix
size_t const this_min_component_size
size_t const this_max_component_size

Detailed Description

Definition at line 26 of file segregate.hpp.

Constructor & Destructor Documentation

◆ segregated_graph_write()

dbe::tool::graph::segregated_graph_write::segregated_graph_write ( std::string const & ofn_prefix,
size_t const minc = 0,
size_t const maxc = 0 )

Construct an object from the filename prefix ,the mininimum and maximum size components to be included in the output. Separate files are generated for it component

Parameters
ofnis an std::string of the filename prefix
mincis the minimum size for a component to be considered
maxcis the maximum sized component to be included in the output

Definition at line 31 of file segregate.cpp.

Member Function Documentation

◆ operator()()

int dbe::tool::graph::segregated_graph_write::operator() ( gtool const & tool) const

Definition at line 41 of file segregate.cpp.

42{
43 typedef long unsigned int t_int;
44 gtool::t_graph const & G = tool.getgraph();
45 std::vector<t_int> compindices ( boost::num_vertices ( G ) );
46 t_int total_connected = boost::connected_components ( G, &compindices[0] );
47
48 std::vector<gtool::t_graph> components ( total_connected );
49 std::vector<gtool::t_registry> component_registries ( total_connected );
50
51 // Build the components as seperate graphs
52 for ( t_int vector_i = 0; vector_i != compindices.size(); ++vector_i )
53 {
54 t_int component_j = compindices[vector_i];
55 std::string oname = boost::get ( &gtool::vertex_label::uid, G ) [vector_i];
56 std::string cname = boost::get ( &gtool::vertex_label::cname, G ) [vector_i];
58 components[component_j],
60 { oname, cname } ),
61 component_registries[component_j] );
62 }
63
64 // from the graphs built output only those that are within the range specified
65
66 int max_punits = GTOOL_MAX_THREADS;
67
68 std::vector<std::future<void>> punits;
69
70 unsigned long long int c = 0;
71
72 for ( auto const & g : components )
73 {
74 size_t const component_size = g.vertex_set().size();
75
76 if ( component_size > this_min_component_size
77 and component_size < this_max_component_size )
78 {
79 if ( --max_punits )
80 {
81 std::string output_file
82 { this_dest_prefix + std::string ( "_" ) + std::to_string ( ++c ) + std::string ( ".dot" ) };
83
84 try
85 {
86 punits.push_back ( std::async ( std::launch::async, graph::write, g, output_file ) );
87 }
88 catch ( std::system_error const & e )
89 {
90 if ( e.code() == std::errc::resource_unavailable_try_again )
91 {
92
93 ERROR (
94 "Could not launch another thread", e.what(), "for file:", output_file,
95 "try to launch in deferred" );
96
97 punits.push_back (
98 std::async ( std::launch::deferred, graph::write, g, output_file ) );
99
100 WARN (
101 "File write policy change", "Program execution correction", " for file:",
102 output_file, " launched in deferred" );
103
104 }
105 else
106 {
107 throw e;
108 }
109 }
110 }
111 else
112 {
113 // The standard dictates ( C++11 ) that wait is called on the destructor
114 // and the futures launched are either async or defered, which puts them
115 // always in a valid state. All that is needed to do is clear the vector
116 // of futures to initiate calling the destructors.
117 punits.clear();
118 max_punits = GTOOL_MAX_THREADS;
119 }
120 }
121 }
122
123 return EXIT_SUCCESS;
124}
static configobject::tref get(dbe::cokey const &desc)
boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS, vertex_label > t_graph
Definition gtool.hpp:55
static t_vertex add_object_and_friends(t_graph &, tref const &, t_registry &registry)
Definition gtool.cpp:166
#define ERROR(...)
Definition messenger.hpp:93
#define WARN(...)
Definition messenger.hpp:85
void write(gtool::t_graph const &, std::string const &)
Definition gtool.cpp:226
#define GTOOL_MAX_THREADS
Definition segregate.cpp:22

Member Data Documentation

◆ this_dest_prefix

std::string const dbe::tool::graph::segregated_graph_write::this_dest_prefix
private

Definition at line 43 of file segregate.hpp.

◆ this_max_component_size

size_t const dbe::tool::graph::segregated_graph_write::this_max_component_size
private

Definition at line 45 of file segregate.hpp.

◆ this_min_component_size

size_t const dbe::tool::graph::segregated_graph_write::this_min_component_size
private

Definition at line 44 of file segregate.hpp.


The documentation for this class was generated from the following files: