FACT++  1.0
virtual int DimLoggerCheck::Handler ( const EventImp evt)
inlineprivatevirtual

Definition at line 22 of file DimLoggerCheck.h.

References fCallback, DimDescribedService::GetServices(), EventImp::GetString(), StateMachineImp::kSM_KeepState, and Tools::Split().

Referenced by Subscribe().

23  {
24  using namespace std;
25 
26  const set<string> vserv = DimDescribedService::GetServices();
27  const vector<string> ltxt = Tools::Split(evt.GetString(), "\n");
28 
29  map<string, int> vsubs;
30  for (auto it=ltxt.begin(); it!=ltxt.end(); it++)
31  {
32  const vector<string> col = Tools::Split(*it, ",");
33 
34  if (col.size()==2 && col[0].substr(0, name.size()+1)==name+"/")
35  vsubs[col[0]] = atoi(col[1].c_str());
36  }
37 
38  list.clear();
39  for (auto it=vserv.begin(); it!=vserv.end(); it++)
40  {
41  const auto is = vsubs.find(*it);
42  list.insert(make_pair(it->substr(name.size()+1), is==vsubs.end() ? -2 : is->second));
43  }
44 
45  list.erase("STATE_LIST");
46 
47  return fCallback ? fCallback(list) : StateMachineImp::kSM_KeepState;
48  }
static const std::set< std::string > & GetServices()
Base class for a state machine implementation.
STL namespace.
std::string GetString() const
Definition: EventImp.cc:194
callback fCallback
std::map< const std::string, const int > list
std::map< std::string, std::string > Split(std::string &, bool=false)
Definition: tools.cc:230
const std::string name

+ Here is the call graph for this function:

+ Here is the caller graph for this function: