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 =
"");
557 bool tokenize(
const std::string &str, std::vector<std::string> &vect,
char openChar =
'(',
558 char sepChar =
',',
char closeChar =
')')
override;
560 bool setNodeStringValueAsVector(
const node n,
const std::vector<std::string> &values)
override;
562 bool setNodeStringValueAsVector(
const node,
const std::string &,
char,
char,
char)
override;
564 bool setEdgeStringValueAsVector(
const edge e,
const std::vector<std::string> &values)
override;
566 bool setEdgeStringValueAsVector(
const edge,
const std::string &,
char,
char,
char)
override;
576 void setNodeEltValue(
const node n,
unsigned int i,
577 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
585 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue
586 getNodeEltValue(
const node n,
unsigned int i)
const;
596 pushBackNodeEltValue(
const node n,
597 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
605 void popBackNodeEltValue(
const node n);
615 void resizeNodeValue(
const node n,
size_t size,
616 typename eltType::RealType elt = eltType::defaultValue());
625 void setEdgeEltValue(
const edge e,
unsigned int i,
626 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
634 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue
635 getEdgeEltValue(
const edge n,
unsigned int i)
const;
645 pushBackEdgeEltValue(
const edge e,
646 typename tlp::StoredType<typename eltType::RealType>::ReturnedConstValue v);
654 void popBackEdgeEltValue(
const edge e);
664 void resizeEdgeValue(
const edge e,
size_t size,
665 typename eltType::RealType elt = eltType::defaultValue());
668 #if !defined(_MSC_VER) || defined(DLL_TULIP) // When using VC++, we only want to include this when
671 #include "cxx/AbstractProperty.cxx"