78 lines
2.5 KiB
C++
78 lines
2.5 KiB
C++
/*
|
|
* Copyright - See the COPYRIGHT that is included with this distribution.
|
|
* pvxs is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
*
|
|
* Author George S. McIntyre <george@level-n.com>, 2023
|
|
*
|
|
*/
|
|
|
|
#include <sstream>
|
|
#include <utility>
|
|
|
|
#include "field.h"
|
|
|
|
namespace pvxs {
|
|
namespace ioc {
|
|
|
|
/**
|
|
* Construct a Field from a field name and channel name
|
|
*
|
|
* @param stringFieldName the field name
|
|
* @param stringChannelName the channel name
|
|
*/
|
|
Field::Field(const std::string& stringFieldName, const std::string& stringChannelName, std::string id)
|
|
:id(std::move(id)), fieldName(stringFieldName), isMeta(false), allowProc(false), isArray(false),
|
|
value(stringChannelName),
|
|
properties(stringChannelName) {
|
|
|
|
if (!fieldName.fieldNameComponents.empty()) {
|
|
name = fieldName.fieldNameComponents[0].name;
|
|
fullName = std::string(fieldName.to_string());
|
|
|
|
if (fieldName.fieldNameComponents[fieldName.fieldNameComponents.size() - 1].isArray()) {
|
|
isArray = true;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Using the field components configured in this Field, walk down from the given value,
|
|
* to arrive at the part of the value referenced by this field.
|
|
*
|
|
* @param valueTarget the given value to search in
|
|
* @return the Value referenced by this field within the given value
|
|
*/
|
|
Value Field::findIn(Value valueTarget) const {
|
|
if (!fieldName.empty()) {
|
|
for (const auto& component: fieldName.fieldNameComponents) {
|
|
valueTarget = valueTarget[component.name];
|
|
if (component.isArray()) {
|
|
// Get required array capacity
|
|
auto index = component.index;
|
|
shared_array<const Value> constValueArray = valueTarget.as<shared_array<const Value>>();
|
|
valueTarget = shared_array<const Value>();
|
|
shared_array<Value> valueArray(constValueArray.thaw());
|
|
auto size = valueArray.size();
|
|
if ((index + 1) > size) {
|
|
valueArray.resize(index + 1);
|
|
}
|
|
|
|
// Put new data into array
|
|
auto newElement = valueArray[index];
|
|
if (!newElement) {
|
|
// Only allocate new member if it is not already allocated
|
|
valueArray[index] = newElement = valueTarget.allocMember();
|
|
}
|
|
valueTarget = valueArray.freeze();
|
|
valueTarget = newElement;
|
|
}
|
|
}
|
|
}
|
|
return valueTarget;
|
|
}
|
|
|
|
} // pvxs
|
|
} // ioc
|