mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
168 lines
6.7 KiB
C++
168 lines
6.7 KiB
C++
/*
|
|
* File: FairMQParser.cxx
|
|
* Author: winckler
|
|
*
|
|
* Created on May 14, 2015, 5:01 PM
|
|
*/
|
|
|
|
#include "FairMQParser.h"
|
|
#include "FairMQLogger.h"
|
|
|
|
// WARNING : pragma commands to hide boost (1.54.0) warning
|
|
// TODO : remove these pragma commands when boost will fix this issue in future release
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wshadow"
|
|
#include <boost/property_tree/json_parser.hpp>
|
|
#pragma clang diagnostic pop
|
|
|
|
namespace FairMQParser
|
|
{
|
|
|
|
// TODO : add key-value map<string,string> parameter for replacing/updating values from keys
|
|
// function that convert property tree (given the xml or json structure) to FairMQMap
|
|
FairMQMap ptreeToMQMap(const boost::property_tree::ptree& pt, const std::string& device_id, const std::string& root_node, const std::string& format_flag)
|
|
{
|
|
// Create fair mq map
|
|
FairMQMap MQChannelMap;
|
|
|
|
// variables to create key for the mq map. Note: maybe device name and id useless here
|
|
std::string kdevice_id;
|
|
std::string kchannel;
|
|
|
|
// do a first loop just to print the device-id in xml/json input
|
|
for(const auto& p : pt.get_child(root_node))
|
|
{
|
|
if (p.first != "device")
|
|
continue;
|
|
|
|
//get id attribute to choose the device
|
|
if(format_flag=="xml")
|
|
{
|
|
kdevice_id=p.second.get<std::string>("<xmlattr>.id");
|
|
MQLOG(DEBUG)<<"Found device id '"<< kdevice_id <<"' in XML input";
|
|
}
|
|
|
|
if(format_flag=="json")
|
|
{
|
|
kdevice_id=p.second.get<std::string>("id");
|
|
MQLOG(DEBUG)<<"Found device id '"<< kdevice_id <<"' in JSON input";
|
|
}
|
|
}
|
|
|
|
// Extract value from boost::property_tree
|
|
// For each device in fairMQOptions
|
|
for(const auto& p : pt.get_child(root_node))
|
|
{
|
|
if (p.first != "device")
|
|
continue;
|
|
|
|
//get id attribute to choose the device
|
|
if(format_flag=="xml")
|
|
kdevice_id=p.second.get<std::string>("<xmlattr>.id");
|
|
|
|
if(format_flag=="json")
|
|
kdevice_id=p.second.get<std::string>("id");
|
|
// if not correct device id, do not fill MQMap
|
|
if(device_id != kdevice_id)
|
|
continue;
|
|
|
|
// print if DEBUG log level set
|
|
std::stringstream ss_device;
|
|
ss_device << "[node = " << p.first
|
|
<< "] id = " << kdevice_id;
|
|
MQLOG(DEBUG)<<ss_device.str();
|
|
|
|
// for each channel in device
|
|
for(const auto& q : p.second.get_child(""))
|
|
{
|
|
if (q.first != "channel")
|
|
continue;
|
|
|
|
//get name attribute to form key
|
|
if(format_flag=="xml")
|
|
kchannel=q.second.get<std::string>("<xmlattr>.name");
|
|
|
|
if(format_flag=="json")
|
|
kchannel=q.second.get<std::string>("name");
|
|
|
|
// print if DEBUG log level set
|
|
std::stringstream ss_chan;
|
|
ss_chan << "\t [node = " << q.first
|
|
<< "] name = " << kchannel;
|
|
MQLOG(DEBUG)<<ss_chan.str();
|
|
|
|
// temporary FairMQChannel container
|
|
std::vector<FairMQChannel> channel_list;
|
|
|
|
int count_socket=0;
|
|
// for each socket in channel
|
|
for(const auto& r : q.second.get_child(""))
|
|
{
|
|
if (r.first != "socket")
|
|
continue;
|
|
|
|
count_socket++;
|
|
FairMQChannel channel;
|
|
|
|
// print if DEBUG log level set
|
|
std::stringstream ss_sock;
|
|
ss_sock << "\t \t [node = " << r.first
|
|
<< "] socket index = " << count_socket;
|
|
MQLOG(DEBUG)<<ss_sock.str();
|
|
MQLOG(DEBUG)<< "\t \t \t type = " << r.second.get<std::string>("type",channel.fType);
|
|
MQLOG(DEBUG)<< "\t \t \t method = " << r.second.get<std::string>("method",channel.fMethod);
|
|
MQLOG(DEBUG)<< "\t \t \t address = " << r.second.get<std::string>("address",channel.fAddress);
|
|
MQLOG(DEBUG)<< "\t \t \t sndBufSize = " << r.second.get<int>("sndBufSize",channel.fSndBufSize);
|
|
MQLOG(DEBUG)<< "\t \t \t rcvBufSize = " << r.second.get<int>("rcvBufSize",channel.fRcvBufSize);
|
|
MQLOG(DEBUG)<< "\t \t \t rateLogging = " << r.second.get<int>("rateLogging",channel.fRateLogging);
|
|
|
|
|
|
channel.fType = r.second.get<std::string>("type",channel.fType);
|
|
channel.fMethod = r.second.get<std::string>("method",channel.fMethod);
|
|
channel.fAddress = r.second.get<std::string>("address",channel.fAddress);
|
|
channel.fSndBufSize = r.second.get<int>("sndBufSize",channel.fSndBufSize);//int
|
|
channel.fRcvBufSize = r.second.get<int>("rcvBufSize",channel.fRcvBufSize);//int
|
|
channel.fRateLogging = r.second.get<int>("rateLogging",channel.fRateLogging);//int
|
|
|
|
channel_list.push_back(channel);
|
|
}// end socket loop
|
|
|
|
//fill mq map option
|
|
MQChannelMap.insert(std::make_pair(kchannel,std::move(channel_list)));
|
|
}
|
|
}
|
|
|
|
if(MQChannelMap.size()>0)
|
|
{
|
|
MQLOG(DEBUG)<<"---- Channel-keys found are :";
|
|
for(const auto& p : MQChannelMap)
|
|
MQLOG(DEBUG)<<p.first;
|
|
}
|
|
else
|
|
{
|
|
MQLOG(WARN)<<"---- No channel-keys found for device-id "<<device_id;
|
|
MQLOG(WARN)<<"---- Check the "<< format_flag <<" inputs and/or command line inputs";
|
|
}
|
|
return MQChannelMap;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
FairMQMap JSON::UserParser(const std::string& filename, const std::string& device_id, const std::string& root_node)
|
|
{
|
|
boost::property_tree::ptree pt;
|
|
boost::property_tree::read_json(filename, pt);
|
|
return ptreeToMQMap(pt,device_id,root_node,"json");
|
|
}
|
|
|
|
FairMQMap JSON::UserParser(std::stringstream& input_ss, const std::string& device_id, const std::string& root_node)
|
|
{
|
|
boost::property_tree::ptree pt;
|
|
boost::property_tree::read_json(input_ss, pt);
|
|
return ptreeToMQMap(pt,device_id,root_node,"json");
|
|
}
|
|
|
|
} // end FairMQParser namespace
|