ModelCreator class. More...
#include "model-node-creator.h"
Public Member Functions | |
ModelCreator () | |
void | Build (GtkTreeStore *treestore) |
Allocate attribute tree. More... | |
Public Member Functions inherited from ns3::AttributeIterator | |
AttributeIterator () | |
virtual | ~AttributeIterator () |
void | Iterate (void) |
Start the process of iterating all objects from the root namespace object. More... | |
Private Member Functions | |
void | Add (ModelNode *node) |
Add item to attribute tree. More... | |
virtual void | DoEndVisitArrayAttribute (void) |
End the visit to the attribute of type ns3::ObjectVectorValue. More... | |
virtual void | DoEndVisitArrayItem (void) |
End the visit to the array item. More... | |
virtual void | DoEndVisitObject (void) |
This method is called to end the process of visiting the currently visited object. More... | |
virtual void | DoEndVisitPointerAttribute (void) |
End the visit to the attribute of type ns3::PointerValue. More... | |
virtual void | DoStartVisitArrayAttribute (Ptr< Object > object, std::string name, const ObjectPtrContainerValue &vector) |
Visit the attribute of type ns3::ObjectVectorValue, with the provided name, found on the object pointed to by the first argument. More... | |
virtual void | DoStartVisitArrayItem (const ObjectPtrContainerValue &vector, uint32_t index, Ptr< Object > item) |
Start to visit the object found in the input array at the provided index. More... | |
virtual void | DoStartVisitObject (Ptr< Object > object) |
This method is called to start the process of visiting the input object. More... | |
virtual void | DoStartVisitPointerAttribute (Ptr< Object > object, std::string name, Ptr< Object > value) |
Visit the attribute of type ns3::PointerValue, with the provided name, found on the object pointed to by the first argument. More... | |
virtual void | DoVisitAttribute (Ptr< Object > object, std::string name) |
This method visits and performs a config-store action (such as saving to a text file) on the attribute values corresponding to the input object pointer and attribute name. More... | |
void | Remove (void) |
Remove current tree item. More... | |
Private Attributes | |
std::vector< GtkTreeIter * > | m_iters |
attribute tree item More... | |
GtkTreeStore * | m_treestore |
attribute tree More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::AttributeIterator | |
std::string | GetCurrentPath (void) const |
Get the current attribute path. More... | |
ModelCreator class.
Definition at line 64 of file model-node-creator.h.
ns3::ModelCreator::ModelCreator | ( | ) |
Definition at line 23 of file model-node-creator.cc.
|
private |
Add item to attribute tree.
node | The model node |
Definition at line 40 of file model-node-creator.cc.
References ns3::COL_NODE, m_iters, and m_treestore.
Referenced by DoStartVisitArrayAttribute(), DoStartVisitObject(), DoStartVisitPointerAttribute(), and DoVisitAttribute().
void ns3::ModelCreator::Build | ( | GtkTreeStore * | treestore | ) |
Allocate attribute tree.
treestore | GtkTreeStore * |
Definition at line 28 of file model-node-creator.cc.
References ns3::AttributeIterator::Iterate(), m_iters, m_treestore, and NS_ASSERT.
Referenced by ns3::GtkConfigStore::ConfigureAttributes().
|
privatevirtual |
End the visit to the attribute of type ns3::ObjectVectorValue.
Reimplemented from ns3::AttributeIterator.
Definition at line 104 of file model-node-creator.cc.
References Remove().
|
privatevirtual |
End the visit to the array item.
Reimplemented from ns3::AttributeIterator.
Definition at line 124 of file model-node-creator.cc.
References m_iters.
|
privatevirtual |
This method is called to end the process of visiting the currently visited object.
Reimplemented from ns3::AttributeIterator.
Definition at line 76 of file model-node-creator.cc.
References Remove().
|
privatevirtual |
End the visit to the attribute of type ns3::PointerValue.
Reimplemented from ns3::AttributeIterator.
Definition at line 90 of file model-node-creator.cc.
References Remove().
|
privatevirtual |
Visit the attribute of type ns3::ObjectVectorValue, with the provided name, found on the object pointed to by the first argument.
object | the object on which the attribute of type ObjectVectorValue resides | |
name | the attribute name provided | |
[in] | vector | the ObjectPtrContainerValue corresponding to the named attribute |
Reimplemented from ns3::AttributeIterator.
Definition at line 95 of file model-node-creator.cc.
References Add(), ns3::ModelNode::name, ns3::ModelNode::NODE_VECTOR, ns3::ModelNode::object, and ns3::ModelNode::type.
|
privatevirtual |
Start to visit the object found in the input array at the provided index.
vector | the array | |
index | the index into the array | |
[in] | item | the array item to visit |
Reimplemented from ns3::AttributeIterator.
Definition at line 109 of file model-node-creator.cc.
References ns3::COL_NODE, ns3::ModelNode::index, m_iters, m_treestore, ns3::ModelNode::NODE_VECTOR_ITEM, ns3::ModelNode::object, and ns3::ModelNode::type.
This method is called to start the process of visiting the input object.
object | the object visited |
Reimplemented from ns3::AttributeIterator.
Definition at line 68 of file model-node-creator.cc.
References Add(), ns3::ModelNode::NODE_OBJECT, ns3::ModelNode::object, and ns3::ModelNode::type.
|
privatevirtual |
Visit the attribute of type ns3::PointerValue, with the provided name, found on the object pointed to by the first argument.
object | the object on which the attribute of type PointerValue resides | |
name | the attribute name provided | |
[in] | value | Ptr to the ns3::Object pointed to by the attribute |
Reimplemented from ns3::AttributeIterator.
Definition at line 81 of file model-node-creator.cc.
References Add(), ns3::ModelNode::name, ns3::ModelNode::NODE_POINTER, ns3::ModelNode::object, and ns3::ModelNode::type.
This method visits and performs a config-store action (such as saving to a text file) on the attribute values corresponding to the input object pointer and attribute name.
object | the object visited |
name | the attribute name |
Implements ns3::AttributeIterator.
Definition at line 58 of file model-node-creator.cc.
References Add(), ns3::ModelNode::name, ns3::ModelNode::NODE_ATTRIBUTE, ns3::ModelNode::object, Remove(), and ns3::ModelNode::type.
|
private |
Remove current tree item.
Definition at line 50 of file model-node-creator.cc.
References m_iters.
Referenced by DoEndVisitArrayAttribute(), DoEndVisitObject(), DoEndVisitPointerAttribute(), and DoVisitAttribute().
|
private |
attribute tree item
Definition at line 95 of file model-node-creator.h.
Referenced by Add(), Build(), DoEndVisitArrayItem(), DoStartVisitArrayItem(), and Remove().
|
private |
attribute tree
Definition at line 94 of file model-node-creator.h.
Referenced by Add(), Build(), and DoStartVisitArrayItem().