20 #ifndef ABSTRACT_PROPERTY_H
21 #define ABSTRACT_PROPERTY_H
26 #include <tulip/tulipconf.h>
27 #include <tulip/StoredType.h>
28 #include <tulip/MutableContainer.h>
29 #include <tulip/PropertyInterface.h>
30 #include <tulip/Iterator.h>
31 #include <tulip/DataSet.h>
32 #include <tulip/Graph.h>
54 template <
class Tnode,
class Tedge,
class Tprop = PropertyInterface>
57 friend class GraphView;
66 typename Tnode::RealType getNodeDefaultValue()
const;
72 typename Tedge::RealType getEdgeDefaultValue()
const;
82 typename tlp::StoredType<typename Tnode::RealType>::ReturnedConstValue
83 getNodeValue(
const node n)
const;
93 typename tlp::StoredType<typename Tedge::RealType>::ReturnedConstValue
94 getEdgeValue(
const edge e)
const;
102 getNodesEqualTo(
typename tlp::StoredType<typename Tnode::RealType>::ReturnedConstValue v,
103 const Graph *g =
nullptr)
const;
111 getEdgesEqualTo(
typename tlp::StoredType<typename Tedge::RealType>::ReturnedConstValue v,
112 const Graph *g =
nullptr)
const;
121 setNodeValue(
const node n,
122 typename tlp::StoredType<typename Tnode::RealType>::ReturnedConstValue v);
131 setEdgeValue(
const edge e,
132 typename tlp::StoredType<typename Tedge::RealType>::ReturnedConstValue v);
143 setAllNodeValue(
typename tlp::StoredType<typename Tnode::RealType>::ReturnedConstValue v);
156 setNodeDefaultValue(
typename tlp::StoredType<typename Tnode::RealType>::ReturnedConstValue v);
175 setValueToGraphNodes(
typename tlp::StoredType<typename Tnode::RealType>::ReturnedConstValue v,
189 setEdgeDefaultValue(
typename tlp::StoredType<typename Tedge::RealType>::ReturnedConstValue v);
200 setAllEdgeValue(
typename tlp::StoredType<typename Tedge::RealType>::ReturnedConstValue v);
219 setValueToGraphEdges(
typename tlp::StoredType<typename Tedge::RealType>::ReturnedConstValue v,
230 setNodeValue(n, nodeDefaultValue);
241 setEdgeValue(e, edgeDefaultValue);
258 if (Tprop::graph ==
nullptr)
259 Tprop::graph = prop.Tprop::graph;
261 if (Tprop::graph == prop.Tprop::graph) {
275 for (
auto n : Tprop::graph->nodes()) {
276 if (prop.Tprop::graph->isElement(n))
280 for (
auto e : Tprop::graph->edges()) {
281 if (prop.Tprop::graph->isElement(e))
294 typename Tnode::RealType v = getNodeDefaultValue();
295 return Tnode::toString(v);
298 typename Tedge::RealType v = getEdgeDefaultValue();
299 return Tedge::toString(v);
302 typename Tnode::RealType v = getNodeValue(n);
303 return Tnode::toString(v);
306 typename Tedge::RealType v = getEdgeValue(e);
307 return Tedge::toString(v);
310 typename Tnode::RealType v;
312 if (!Tnode::fromString(v, inV))
315 setNodeValue(inN, v);
319 typename Tedge::RealType v;
321 if (!Tedge::fromString(v, inV))
324 setEdgeValue(inE, v);
328 typename Tnode::RealType v;
330 if (!Tnode::fromString(v, inV))
333 setNodeDefaultValue(v);
337 typename Tnode::RealType v;
339 if (!Tnode::fromString(v, inV))
346 typename Tnode::RealType v;
348 if (!Tnode::fromString(v, inV))
351 setValueToGraphNodes(v, graph);
355 typename Tedge::RealType v;
357 if (!Tedge::fromString(v, inV))
360 setEdgeDefaultValue(v);
364 typename Tedge::RealType v;
366 if (!Tedge::fromString(v, inV))
373 typename Tedge::RealType v;
375 if (!Tedge::fromString(v, inV))
378 setValueToGraphEdges(v, graph);
382 bool hasNonDefaultValuatedNodes(
const Graph *g =
nullptr)
const override;
383 unsigned int numberOfNonDefaultValuatedNodes(
const Graph *g =
nullptr)
const override;
384 unsigned int nodeValueSize()
const override;
385 void writeNodeDefaultValue(std::ostream &)
const override;
386 void writeNodeValue(std::ostream &,
node)
const override;
387 bool readNodeDefaultValue(std::istream &)
override;
388 bool readNodeValue(std::istream &,
node)
override;
390 bool hasNonDefaultValuatedEdges(
const Graph *g =
nullptr)
const override;
391 unsigned int numberOfNonDefaultValuatedEdges(
const Graph * =
nullptr)
const override;
392 unsigned int edgeValueSize()
const override;
393 void writeEdgeDefaultValue(std::ostream &)
const override;
394 void writeEdgeValue(std::ostream &,
edge)
const override;
395 bool readEdgeDefaultValue(std::istream &)
override;
396 bool readEdgeValue(std::istream &,
edge)
override;
398 bool ifNotDefault =
false)
override {
399 if (property ==
nullptr)
406 typename StoredType<typename Tnode::RealType>::ReturnedValue value =
407 tp->nodeProperties.get(source.
id, notDefault);
409 if (ifNotDefault && !notDefault)
412 setNodeValue(destination, value);
416 bool ifNotDefault =
false)
override {
417 if (property ==
nullptr)
424 typename StoredType<typename Tedge::RealType>::ReturnedValue value =
425 tp->edgeProperties.get(source.
id, notDefault);
427 if (ifNotDefault && !notDefault)
430 setEdgeValue(destination, value);
436 assert(prop !=
nullptr);
441 return new TypedValueContainer<typename Tnode::RealType>(getNodeDefaultValue());
444 return new TypedValueContainer<typename Tedge::RealType>(getEdgeDefaultValue());
447 return new TypedValueContainer<typename Tnode::RealType>(getNodeValue(n));
450 return new TypedValueContainer<typename Tedge::RealType>(getEdgeValue(e));
454 typename StoredType<typename Tnode::RealType>::ReturnedValue value =
455 nodeProperties.get(n.
id, notDefault);
458 return new TypedValueContainer<typename Tnode::RealType>(value);
464 typename StoredType<typename Tedge::RealType>::ReturnedValue value =
465 edgeProperties.get(e.
id, notDefault);
468 return new TypedValueContainer<typename Tedge::RealType>(value);
473 setNodeValue(n,
static_cast<const TypedValueContainer<typename Tnode::RealType> *
>(v)->value);
476 setEdgeValue(e,
static_cast<const TypedValueContainer<typename Tedge::RealType> *
>(v)->value);
479 setAllNodeValue(
static_cast<const TypedValueContainer<typename Tnode::RealType> *
>(v)->value);
482 setAllEdgeValue(
static_cast<const TypedValueContainer<typename Tedge::RealType> *
>(v)->value);
489 if (Tprop::metaValueCalculator)
491 Tprop::metaValueCalculator)
492 ->computeMetaValue(
this, n, sg, mg);
497 if (Tprop::metaValueCalculator)
499 Tprop::metaValueCalculator)
500 ->computeMetaValue(
this, e, itE, mg);
507 <<
"Warning : " << __PRETTY_FUNCTION__ <<
" ... invalid conversion of "
508 <<
typeid(mvCalc).name() <<
"into "
515 Tprop::metaValueCalculator = mvCalc;
518 int compare(
const node n1,
const node n2)
const override;
519 int compare(
const edge e1,
const edge e2)
const override;
545 MutableContainer<typename Tnode::RealType> nodeProperties;
546 MutableContainer<typename Tedge::RealType> edgeProperties;
547 typename Tnode::RealType nodeDefaultValue;
548 typename Tedge::RealType edgeDefaultValue;
551 template <
typename vectType,
typename eltType,
typename propType = VectorPropertyInterface>
552 class TLP_SCOPE AbstractVectorProperty :
public AbstractProperty<vectType, vectType, propType> {
554 AbstractVectorProperty(Graph *,
const std::string &name =
"");
555 using AbstractProperty<vectType, vectType, propType>::operator=;
558 bool tokenize(
const std::string &str, std::vector<std::string> &vect,
char openChar =
'(',
559 char sepChar =
',',
char closeChar =
')')
override;
561 bool setNodeStringValueAsVector(
const node n,
const std::vector<std::string> &values)
override;
563 bool setNodeStringValueAsVector(
const node,
const std::string &,
char,
char,
char)
override;
565 bool setEdgeStringValueAsVector(
const edge e,
const std::vector<std::string> &values)
override;
567 bool setEdgeStringValueAsVector(
const edge,
const std::string &,
char,
char,
char)
override;
577 void setNodeEltValue(
const node n,
unsigned int i,
578 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
586 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue
587 getNodeEltValue(
const node n,
unsigned int i)
const;
597 pushBackNodeEltValue(
const node n,
598 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
606 void popBackNodeEltValue(
const node n);
616 void resizeNodeValue(
const node n,
size_t size,
617 typename eltType::RealType elt = eltType::defaultValue());
626 void setEdgeEltValue(
const edge e,
unsigned int i,
627 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
635 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue
636 getEdgeEltValue(
const edge n,
unsigned int i)
const;
646 pushBackEdgeEltValue(
const edge e,
647 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
655 void popBackEdgeEltValue(
const edge e);
665 void resizeEdgeValue(
const edge e,
size_t size,
666 typename eltType::RealType elt = eltType::defaultValue());
669 #if !defined(_MSC_VER) || defined(DLL_TULIP)
672 #include "cxx/AbstractProperty.cxx"
This class extends upon PropertyInterface, and adds type-safe methods to get and set the node and edg...
void erase(const edge e) override
Resets the value of an edge to the default value.
virtual void clone_handler(AbstractProperty< Tnode, Tedge, Tprop > &)
Enable to clone part of sub_class.
bool setNodeStringValue(const node inN, const std::string &inV) override
Sets a new value on the node, represented by the string parameter.
void setNodeDataMemValue(const node n, const DataMem *v) override
Sets the node value.
bool setStringValueToGraphNodes(const std::string &inV, const Graph *graph) override
Sets all the nodes value to the value represented by the string for a graph. For some types,...
tlp::Iterator< node > * getNonDefaultValuatedNodes(const Graph *g=nullptr) const override
Gets an Iterator on all non-default valuated nodes. When given a Graph as parameter,...
void setMetaValueCalculator(PropertyInterface::MetaValueCalculator *mvCalc) override
Sets the Calculator for meta nodes and edges.
bool setAllNodeStringValue(const std::string &inV) override
Sets all the nodes value to the value represented by the string. For some types, some parsing will be...
void setEdgeDataMemValue(const edge e, const DataMem *v) override
Sets the edge value.
bool setStringValueToGraphEdges(const std::string &inV, const Graph *graph) override
Sets all the edges value to the value represented by the string for a graph. For some types,...
tlp::StoredType< typename Tnode::RealType >::ReturnedConstValue getNodeValue(const node n) const
Returns the value associated with the node n in this property. If there is no value,...
virtual AbstractProperty< Tnode, Tedge, Tprop > & operator=(AbstractProperty< Tnode, Tedge, Tprop > &prop)
This operator overload allows to copy a property using the following syntax :
DataMem * getNodeDefaultDataMemValue() const override
Gets a pointer to the tlp::DataMem structure that contains the node default value.
bool setEdgeStringValue(const edge inE, const std::string &inV) override
Sets a new value on the edge, represented by the string parameter.
void setAllNodeDataMemValue(const DataMem *v) override
Sets all the nodes value to the value contained in the given DataMem structure. All previous values a...
void computeMetaValue(node n, Graph *sg, Graph *mg) override
Sets the value of the metanode to a computed value.
bool setAllEdgeStringValue(const std::string &inV) override
Sets all the edges value to the value represented by the string. For some types, some parsing will be...
bool setNodeDefaultStringValue(const std::string &inV) override
Sets the value assigned as the default one to the future added nodes from a string representation.
std::string getNodeDefaultStringValue() const override
Gets a string representation of the node default value.
DataMem * getEdgeDataMemValue(const edge e) const override
Gets the edge value, contained in a tlp::DataMem structure.
void setAllEdgeDataMemValue(const DataMem *v) override
Sets all the edges value to the value contained in the given DataMem structure. All previous values a...
tlp::StoredType< typename Tedge::RealType >::ReturnedConstValue getEdgeValue(const edge e) const
Returns the value associated to the edge e in this property. If there is no value,...
bool setEdgeDefaultStringValue(const std::string &inV) override
Sets the value assigned as the default one to the future added edges from a string representation.
std::string getNodeStringValue(const node n) const override
Gets a string representation of the node value.
Tnode::RealType getNodeDefaultValue() const
Gets the default node value of the property.
void erase(const node n) override
Resets the value of a node to the default value.
bool copy(const edge destination, const edge source, PropertyInterface *property, bool ifNotDefault=false) override
Copies the value of an edge in another property to an edge in this property.
void computeMetaValue(edge e, tlp::Iterator< edge > *itE, Graph *mg) override
Sets the value of the metaedge to a computed value.
std::string getEdgeStringValue(const edge e) const override
Gets a string representation of the edge value.
DataMem * getNonDefaultDataMemValue(const node n) const override
Returns the value in a DataMem if it is not default, otherwise returns nullptr.
bool copy(const node destination, const node source, PropertyInterface *property, bool ifNotDefault=false) override
Copies the value of a node in another property to a node in this property.
Tedge::RealType getEdgeDefaultValue() const
Gets the default edge value of the property.
void copy(PropertyInterface *property) override
Copies the values of the source property to this property.
tlp::Iterator< edge > * getNonDefaultValuatedEdges(const Graph *g=nullptr) const override
Gets an Iterator on all non-default valuated edges. When given a Graph as parameter,...
DataMem * getNodeDataMemValue(const node n) const override
Gets the node value, contained in a tlp::DataMem structure.
DataMem * getEdgeDefaultDataMemValue() const override
Gets a pointer to the tlp::DataMem structure that contains the edge default value.
std::string getEdgeDefaultStringValue() const override
Gets a string representation of the edge default value.
DataMem * getNonDefaultDataMemValue(const edge e) const override
Returns the value in a DataMem if it is not default, otherwise returns nullptr.
PropertyInterface describes the interface of a graph property.
Interface for Tulip iterators. Allows basic iteration operations only.
The edge struct represents an edge in a Graph object.
unsigned int id
id The identifier of the edge.
The node struct represents a node in a Graph object.
unsigned int id
id The identifier of the node.