Newer
Older
Martin Christoph Hierholzer
committed
/*
* VariableNetworkNode.cc
*
* Created on: Jun 23, 2016
* Author: Martin Hierholzer
*/
#include <libxml++/libxml++.h>
#include "VariableNetworkNode.h"
#include "VariableNetwork.h"
#include "Application.h"
#include "EntityOwner.h"
Martin Christoph Hierholzer
committed
namespace ChimeraTK {
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
VariableNetworkNode::VariableNetworkNode(const VariableNetworkNode &other)
: pdata(other.pdata)
Martin Christoph Hierholzer
committed
{}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
VariableNetworkNode& VariableNetworkNode::operator=(const VariableNetworkNode &rightHandSide) {
pdata = rightHandSide.pdata;
return *this;
}
/*********************************************************************************************************************/
VariableNetworkNode::VariableNetworkNode(EntityOwner *owner, mtca4u::TransferElementAbstractor *accessorBridge,
const std::string &name,
Martin Christoph Hierholzer
committed
VariableDirection direction, std::string unit, size_t nElements, UpdateMode mode,
Martin Christoph Hierholzer
committed
const std::string &description, const std::type_info* valueType,
const std::unordered_set<std::string> &tags)
: pdata(boost::make_shared<VariableNetworkNode_data>())
Martin Christoph Hierholzer
committed
{
pdata->owningModule = owner;
Martin Christoph Hierholzer
committed
pdata->type = NodeType::Application;
Martin Christoph Hierholzer
committed
pdata->appNode = accessorBridge;
pdata->name = name;
pdata->qualifiedName = owner->getQualifiedName() + "/" + name;
Martin Christoph Hierholzer
committed
pdata->mode = mode;
pdata->direction = direction;
pdata->valueType = valueType;
pdata->unit = unit;
pdata->nElements = nElements;
pdata->description = description;
Martin Christoph Hierholzer
committed
pdata->tags = tags;
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
VariableNetworkNode::VariableNetworkNode(const std::string &devAlias, const std::string ®Name, UpdateMode mode,
Martin Christoph Hierholzer
committed
VariableDirection dir, const std::type_info &valTyp, size_t nElements)
: pdata(boost::make_shared<VariableNetworkNode_data>())
Martin Christoph Hierholzer
committed
{
pdata->type = NodeType::Device;
pdata->mode = mode;
Martin Christoph Hierholzer
committed
pdata->direction = dir;
pdata->valueType = &valTyp;
pdata->deviceAlias = devAlias;
pdata->registerName = regName;
Martin Christoph Hierholzer
committed
pdata->nElements = nElements;
Martin Christoph Hierholzer
committed
}
Martin Christoph Hierholzer
committed
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
VariableNetworkNode::VariableNetworkNode(std::string pubName, VariableDirection dir, const std::type_info &valTyp,
size_t nElements)
: pdata(boost::make_shared<VariableNetworkNode_data>())
Martin Christoph Hierholzer
committed
{
pdata->type = NodeType::ControlSystem;
pdata->mode = UpdateMode::push;
pdata->direction = dir;
pdata->valueType = &valTyp;
pdata->publicName = pubName;
Martin Christoph Hierholzer
committed
pdata->nElements = nElements;
Martin Christoph Hierholzer
committed
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
VariableNetworkNode::VariableNetworkNode(VariableNetworkNode& nodeToTrigger, int)
: pdata(boost::make_shared<VariableNetworkNode_data>())
Martin Christoph Hierholzer
committed
{
pdata->type = NodeType::TriggerReceiver;
pdata->direction = VariableDirection::consuming;
Martin Christoph Hierholzer
committed
pdata->nodeToTrigger = nodeToTrigger;
Martin Christoph Hierholzer
committed
pdata->name = "trigger:"+nodeToTrigger.getName();
Martin Christoph Hierholzer
committed
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
VariableNetworkNode::VariableNetworkNode(boost::shared_ptr<VariableNetworkNode_data> _pdata)
: pdata(_pdata)
{}
/*********************************************************************************************************************/
VariableNetworkNode::VariableNetworkNode()
: pdata(boost::make_shared<VariableNetworkNode_data>())
{}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
void VariableNetworkNode::setOwner(VariableNetwork *net) {
Martin Christoph Hierholzer
committed
assert(pdata->network == nullptr);
assert(pdata->type != NodeType::invalid);
pdata->network = net;
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
void VariableNetworkNode::clearOwner() {
pdata->network = nullptr;
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
bool VariableNetworkNode::hasImplementation() const {
Martin Christoph Hierholzer
committed
return pdata->type == NodeType::Device || pdata->type == NodeType::ControlSystem || pdata->type == NodeType::Constant;
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
void VariableNetworkNode::dump(std::ostream& stream) const {
if(pdata->type == NodeType::Application) stream << " type = Application ('" << pdata->name << "')";
if(pdata->type == NodeType::ControlSystem) stream << " type = ControlSystem ('" << pdata->publicName << "')";
if(pdata->type == NodeType::Device) stream << " type = Device (" << pdata->deviceAlias << ": " << pdata->registerName << ")";
if(pdata->type == NodeType::TriggerReceiver) stream << " type = TriggerReceiver";
if(pdata->type == NodeType::Constant) stream << " type = Constant";
if(pdata->type == NodeType::invalid) stream << " type = **invalid**";
Martin Christoph Hierholzer
committed
Martin Christoph Hierholzer
committed
if(pdata->mode == UpdateMode::push) stream << " pushing";
if(pdata->mode == UpdateMode::poll) stream << " polling";
Martin Christoph Hierholzer
committed
Martin Christoph Hierholzer
committed
stream << " data type: " << pdata->valueType->name();
stream << " length: " << pdata->nElements;
Martin Christoph Hierholzer
committed
Martin Christoph Hierholzer
committed
stream << " [ptr: " << &(*pdata) << "]";
Martin Christoph Hierholzer
committed
stream << " { ";
for(auto &tag : pdata->tags) stream << tag << " ";
stream << "}";
Martin Christoph Hierholzer
committed
stream << std::endl;
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
void VariableNetworkNode::createXML(xmlpp::Element *rootElement) const {
Martin Christoph Hierholzer
committed
if(pdata->type != NodeType::ControlSystem) return;
Martin Christoph Hierholzer
committed
// Create the directory for the path name in the XML document with all parent directories, if not yet existing:
// First split the publication name into components and loop over each component. For each component, try to find
// the directory node and create it it does not exist. After the loop, the "current" will point to the Element
// representing the directory.
// strip the variable name from the path
Martin Christoph Hierholzer
committed
mtca4u::RegisterPath directory(pdata->publicName);
Martin Christoph Hierholzer
committed
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
directory--;
// the namespace map is needed to properly refer to elements with an xpath expression in xmlpp::Element::find()
/// @todo TODO move this somewhere else, or at least take the namespace URI from a common place!
xmlpp::Node::PrefixNsMap nsMap{{"ac", "https://github.com/ChimeraTK/ApplicationCore"}};
// go through each directory path component
xmlpp::Element *current = rootElement;
for(auto pathComponent : directory.getComponents()) {
// find directory for this path component in the current directory
std::string xpath = std::string("ac:directory[@name='")+pathComponent+std::string("']");
auto list = current->find(xpath, nsMap);
if(list.size() == 0) { // not found: create it
xmlpp::Element *newChild = current->add_child("directory");
newChild->set_attribute("name",pathComponent);
current = newChild;
}
else {
assert(list.size() == 1);
current = dynamic_cast<xmlpp::Element*>(list[0]);
assert(current != nullptr);
}
}
// now add the variable to the directory
xmlpp::Element *variable = current->add_child("variable");
Martin Christoph Hierholzer
committed
mtca4u::RegisterPath pathName(pdata->publicName);
Martin Christoph Hierholzer
committed
auto pathComponents = pathName.getComponents();
// set the name attribute
variable->set_attribute("name",pathComponents[pathComponents.size()-1]);
// add sub-element containing the data type
std::string dataTypeName{"unknown"};
Martin Christoph Hierholzer
committed
if(pdata->network->getValueType() == typeid(int8_t)) { dataTypeName = "int8"; }
else if(pdata->network->getValueType() == typeid(uint8_t)) { dataTypeName = "uint8"; }
else if(pdata->network->getValueType() == typeid(int16_t)) { dataTypeName = "int16"; }
else if(pdata->network->getValueType() == typeid(uint16_t)) { dataTypeName = "uint16"; }
else if(pdata->network->getValueType() == typeid(int32_t)) { dataTypeName = "int32"; }
else if(pdata->network->getValueType() == typeid(uint32_t)) { dataTypeName = "uint32"; }
else if(pdata->network->getValueType() == typeid(float)) { dataTypeName = "float"; }
else if(pdata->network->getValueType() == typeid(double)) { dataTypeName = "double"; }
else if(pdata->network->getValueType() == typeid(std::string)) { dataTypeName = "string"; }
Martin Christoph Hierholzer
committed
xmlpp::Element *valueTypeElement = variable->add_child("value_type");
valueTypeElement->set_child_text(dataTypeName);
// add sub-element containing the data flow direction
std::string dataFlowName{"application_to_control_system"};
Martin Christoph Hierholzer
committed
if(pdata->network->getFeedingNode() == *this) { dataFlowName = "control_system_to_application"; }
Martin Christoph Hierholzer
committed
xmlpp::Element *directionElement = variable->add_child("direction");
directionElement->set_child_text(dataFlowName);
// add sub-element containing the engineering unit
xmlpp::Element *unitElement = variable->add_child("unit");
Martin Christoph Hierholzer
committed
unitElement->set_child_text(pdata->network->getUnit());
// add sub-element containing the description
xmlpp::Element *descriptionElement = variable->add_child("description");
descriptionElement->set_child_text(pdata->network->getDescription());
// add sub-element containing the description
xmlpp::Element *nElementsElement = variable->add_child("numberOfElements");
nElementsElement->set_child_text(std::to_string(pdata->network->getFeedingNode().getNumberOfElements()));
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
bool VariableNetworkNode::operator==(const VariableNetworkNode& other) const {
Martin Christoph Hierholzer
committed
return (other.pdata == pdata) || (pdata->type == NodeType::invalid && other.pdata->type == NodeType::invalid);
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
bool VariableNetworkNode::operator!=(const VariableNetworkNode& other) const {
return !operator==(other);
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
bool VariableNetworkNode::operator<(const VariableNetworkNode& other) const {
if(pdata->type == NodeType::invalid && other.pdata->type == NodeType::invalid) return false;
return (other.pdata < pdata);
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
VariableNetworkNode VariableNetworkNode::operator>>(VariableNetworkNode other) {
Martin Christoph Hierholzer
committed
if(pdata->direction == VariableDirection::invalid) {
if(!other.hasOwner()) {
pdata->direction = VariableDirection::feeding;
}
else {
if(other.getOwner().hasFeedingNode()) {
pdata->direction = VariableDirection::consuming;
if(getType() == NodeType::Device) { // special treatment for Device-type variables: consumers are push-type
pdata->mode = UpdateMode::push;
}
Martin Christoph Hierholzer
committed
}
else {
pdata->direction = VariableDirection::feeding;
}
}
}
if(other.pdata->direction == VariableDirection::invalid) {
if(!hasOwner()) {
other.pdata->direction = VariableDirection::consuming;
if(other.getType() == NodeType::Device) { // special treatment for Device-type variables: consumers are push-type
other.pdata->mode = UpdateMode::push;
}
Martin Christoph Hierholzer
committed
}
else {
if(getOwner().hasFeedingNode()) {
other.pdata->direction = VariableDirection::consuming;
if(other.getType() == NodeType::Device) { // special treatment for Device-type variables: consumers are push-type
other.pdata->mode = UpdateMode::push;
}
Martin Christoph Hierholzer
committed
}
else {
other.pdata->direction = VariableDirection::feeding;
}
}
}
Martin Christoph Hierholzer
committed
Application::getInstance().connect(*this, other);
return *this;
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
VariableNetworkNode VariableNetworkNode::operator[](VariableNetworkNode trigger) {
// check if node already has a trigger
Martin Christoph Hierholzer
committed
if(pdata->externalTrigger.getType() != NodeType::invalid) {
throw ApplicationExceptionWithID<ApplicationExceptionID::illegalVariableNetwork>(
"Only one external trigger per variable network is allowed.");
}
Martin Christoph Hierholzer
committed
// force direction of the node we are operating on to be feeding
Martin Christoph Hierholzer
committed
if(pdata->direction == VariableDirection::invalid) pdata->direction = VariableDirection::feeding;
assert(pdata->direction == VariableDirection::feeding);
Martin Christoph Hierholzer
committed
// force direction of the triggering node to be feeding
if(trigger.pdata->direction == VariableDirection::invalid) trigger.pdata->direction = VariableDirection::feeding;
assert(trigger.pdata->direction == VariableDirection::feeding);
Martin Christoph Hierholzer
committed
// check if already existing in map
if(pdata->nodeWithTrigger.count(trigger) > 0) {
return pdata->nodeWithTrigger[trigger];
}
// create copy of the node
pdata->nodeWithTrigger[trigger].pdata = boost::make_shared<VariableNetworkNode_data>(*pdata);
// add ourselves as a trigger receiver to the other network
if(!trigger.hasOwner()) {
Application::getInstance().createNetwork().addNode(trigger);
Martin Christoph Hierholzer
committed
}
trigger.getOwner().addNodeToTrigger(pdata->nodeWithTrigger[trigger]);
// set flag and store pointer to other network
Martin Christoph Hierholzer
committed
pdata->nodeWithTrigger[trigger].pdata->externalTrigger = trigger;
// return the new node
Martin Christoph Hierholzer
committed
return pdata->nodeWithTrigger[trigger];
Martin Christoph Hierholzer
committed
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
void VariableNetworkNode::setValueType(const std::type_info& newType) const {
assert(*pdata->valueType == typeid(AnyType));
pdata->valueType = &newType;
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
bool VariableNetworkNode::hasExternalTrigger() const {
return pdata->externalTrigger.getType() != NodeType::invalid;
}
Martin Christoph Hierholzer
committed
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/*********************************************************************************************************************/
VariableNetworkNode VariableNetworkNode::getExternalTrigger() {
assert(pdata->externalTrigger.getType() != NodeType::invalid);
return pdata->externalTrigger;
}
/*********************************************************************************************************************/
bool VariableNetworkNode::hasOwner() const {
return pdata->network != nullptr;
}
/*********************************************************************************************************************/
NodeType VariableNetworkNode::getType() const {
if(!pdata) return NodeType::invalid;
return pdata->type;
}
/*********************************************************************************************************************/
UpdateMode VariableNetworkNode::getMode() const {
return pdata->mode;
}
/*********************************************************************************************************************/
VariableDirection VariableNetworkNode::getDirection() const {
return pdata->direction;
}
/*********************************************************************************************************************/
const std::type_info& VariableNetworkNode::getValueType() const {
return *(pdata->valueType);
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
std::string VariableNetworkNode::getName() const {
if(pdata->type == NodeType::ControlSystem) {
return pdata->publicName;
}
else if(pdata->type == NodeType::Device) {
return pdata->deviceAlias+":"+pdata->registerName;
}
else {
return pdata->name;
}
Martin Christoph Hierholzer
committed
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
std::string VariableNetworkNode::getQualifiedName() const {
return pdata->qualifiedName;
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
const std::string& VariableNetworkNode::getUnit() const {
return pdata->unit;
}
/*********************************************************************************************************************/
const std::string& VariableNetworkNode::getDescription() const {
return pdata->description;
}
/*********************************************************************************************************************/
VariableNetwork& VariableNetworkNode::getOwner() const {
assert(pdata->network != nullptr);
return *(pdata->network);
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
VariableNetworkNode VariableNetworkNode::getNodeToTrigger() {
assert(pdata->nodeToTrigger.getType() != NodeType::invalid);
return pdata->nodeToTrigger;
Martin Christoph Hierholzer
committed
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
}
/*********************************************************************************************************************/
const std::string& VariableNetworkNode::getPublicName() const {
assert(pdata->type == NodeType::ControlSystem);
return pdata->publicName;
}
/*********************************************************************************************************************/
const std::string& VariableNetworkNode::getDeviceAlias() const {
assert(pdata->type == NodeType::Device);
return pdata->deviceAlias;
}
/*********************************************************************************************************************/
const std::string& VariableNetworkNode::getRegisterName() const {
assert(pdata->type == NodeType::Device);
return pdata->registerName;
}
/*********************************************************************************************************************/
void VariableNetworkNode::setNumberOfElements(size_t nElements) {
pdata->nElements = nElements;
}
/*********************************************************************************************************************/
size_t VariableNetworkNode::getNumberOfElements() const {
return pdata->nElements;
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
mtca4u::TransferElementAbstractor& VariableNetworkNode::getAppAccessorNoType() {
Martin Christoph Hierholzer
committed
return *(pdata->appNode);
}
Martin Christoph Hierholzer
committed
/*********************************************************************************************************************/
void VariableNetworkNode::setMetaData(const std::string &name, const std::string &unit,
const std::string &description) {
Martin Christoph Hierholzer
committed
if(getType() != NodeType::Application) {
throw ApplicationExceptionWithID<ApplicationExceptionID::illegalParameter>(
"Calling VariableNetworkNode::updateMetaData() is not allowed for non-application type nodes.");
}
pdata->name = name;
pdata->qualifiedName = pdata->owningModule->getQualifiedName()+"/"+name;
Martin Christoph Hierholzer
committed
pdata->unit = unit;
pdata->description = description;
}
/*********************************************************************************************************************/
void VariableNetworkNode::setMetaData(const std::string &name, const std::string &unit,
Martin Christoph Hierholzer
committed
const std::string &description, const std::unordered_set<std::string> &tags) {
setMetaData(name, unit, description);
Martin Christoph Hierholzer
committed
pdata->tags = tags;
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
void VariableNetworkNode::addTag(const std::string &tag) {
pdata->tags.insert(tag);
}
/*********************************************************************************************************************/
Martin Christoph Hierholzer
committed
const std::unordered_set<std::string>& VariableNetworkNode::getTags() const {
return pdata->tags;
}
/*********************************************************************************************************************/
void VariableNetworkNode::setAppAccessorPointer(mtca4u::TransferElementAbstractor *accessor) {
assert(getType() == NodeType::Application);
pdata->appNode = accessor;
}
/*********************************************************************************************************************/
EntityOwner* VariableNetworkNode::getOwningModule() const {
return pdata->owningModule;
}
/*********************************************************************************************************************/
void VariableNetworkNode::setOwningModule(EntityOwner *newOwner) const {
pdata->owningModule = newOwner;
}