26#include "auto_apms_behavior_tree_core/definitions.hpp"
27#include "auto_apms_behavior_tree_core/node/node_manifest.hpp"
28#include "auto_apms_behavior_tree_core/node/node_registration_loader.hpp"
29#include "auto_apms_behavior_tree_core/node/node_registration_options.hpp"
30#include "auto_apms_behavior_tree_core/tree/script.hpp"
31#include "behaviortree_cpp/bt_factory.h"
32#include "behaviortree_cpp/tree_node.h"
33#include "rclcpp/rclcpp.hpp"
142 using XMLElement = tinyxml2::XMLElement;
144 inline static const std::string LOGGER_NAME =
"tree_document";
147 static inline const char BTCPP_FORMAT_ATTRIBUTE_NAME[] =
"BTCPP_format";
148 static inline const char BTCPP_FORMAT_DEFAULT_VERSION[] =
"4";
149 static inline const char ROOT_ELEMENT_NAME[] =
"root";
150 static inline const char ROOT_TREE_ATTRIBUTE_NAME[] =
"main_tree_to_execute";
151 static inline const char TREE_ELEMENT_NAME[] =
"BehaviorTree";
152 static inline const char SUBTREE_ELEMENT_NAME[] =
"SubTree";
153 static inline const char TREE_NAME_ATTRIBUTE_NAME[] =
"ID";
154 static inline const char TREE_NODE_MODEL_ELEMENT_NAME[] =
"TreeNodesModel";
155 static inline const char NODE_INSTANCE_NAME_ATTRIBUTE_NAME[] =
"name";
156 static inline const char INCLUDE_ELEMENT_NAME[] =
"include";
157 static inline const char INCLUDE_PATH_ATTRIBUTE_NAME[] =
"path";
158 static inline const char INCLUDE_ROS_PKG_ATTRIBUTE_NAME[] =
"ros_pkg";
271 typename std::enable_if_t<std::is_base_of_v<NodeModelType, T> && !std::is_same_v<model::SubTree, T>, T>
insertNode(
289 template <
class SubTreeT>
291 const std::string & tree_name,
const NodeElement * before_this =
nullptr);
311 template <
class SubTreeT>
423 const std::string & tree_str,
const std::string & tree_name,
const NodeElement * before_this =
nullptr);
466 const std::string & path,
const std::string & tree_name,
const NodeElement * before_this =
nullptr);
573 const std::string & registration_name =
"",
const std::string & instance_name =
"",
574 bool deep_search =
false)
const;
599 typename std::enable_if_t<std::is_base_of_v<NodeModelType, T>, T>
getFirstNode(
600 const std::string & instance_name =
"",
bool deep_search =
false)
const;
624 const std::string & registration_name =
"",
const std::string & instance_name =
"",
625 bool deep_search =
false);
651 const std::string & instance_name =
"",
bool deep_search =
false);
744 virtual std::string
getName()
const;
815 friend class NodeElement;
818 using iterator_category = std::forward_iterator_tag;
819 using value_type = NodeElement;
820 using difference_type = std::ptrdiff_t;
821 using pointer = value_type *;
822 using reference = value_type;
843 tinyxml2::XMLElement * current_;
861 static void deepApplyImpl(
873 std::vector<std::string> port_names_;
887 friend class TreeDocument;
895 explicit TreeElement(TreeDocument * doc_ptr, XMLElement * ele_ptr);
926 std::string
getName()
const override;
954 BT::Result
verify()
const;
970 const std::string & registration_name =
"",
const std::string & instance_name =
"",
bool deep_search =
false);
978 const std::string & instance_name =
"",
bool deep_search =
false);
988 const std::vector<std::string> & getPortNames() =
delete;
1006 const std::string & format_version = BTCPP_FORMAT_DEFAULT_VERSION,
1007 NodeRegistrationLoader::SharedPtr tree_node_loader = NodeRegistrationLoader::make_shared());
1266 bool hasTreeName(
const std::string & tree_name)
const;
1355 const std::string & node_namespace,
1356 const std::string & sep = _AUTO_APMS_BEHAVIOR_TREE_CORE__NODE_NAMESPACE_DEFAULT_SEP);
1423 BT::Result
verify()
const;
1444 template <
typename ReturnT,
typename DocumentT>
1445 static ReturnT getXMLElementForTreeWithNameImpl(DocumentT & doc,
const std::string & tree_name);
1447 const XMLElement * getXMLElementForTreeWithName(
const std::string & tree_name)
const;
1449 XMLElement * getXMLElementForTreeWithName(
const std::string & tree_name);
1458 TreeDocument & mergeFileImpl(
const std::string & path,
bool adopt_root_tree, std::set<std::string> & include_stack);
1468 const XMLDocument & other,
bool adopt_root_tree, std::set<std::string> & include_stack);
1470 const std::map<std::string, std::string> all_node_classes_package_map_;
1471 const std::set<std::string> native_node_names_;
1472 std::string format_version_;
1473 NodeRegistrationLoader::SharedPtr tree_node_loader_ptr_;
1477 BT::BehaviorTreeFactory factory_;
1478 rclcpp::Logger logger_;
1479 rclcpp::Node::WeakPtr ros_node_wptr_;
1480 rclcpp::CallbackGroup::WeakPtr tree_node_waitables_callback_group_wptr_;
1481 rclcpp::executors::SingleThreadedExecutor::WeakPtr tree_node_waitables_executor_wptr_;
1482 bool only_non_ros_nodes_ =
false;
1490template <
typename T,
typename =
void>
1491struct has_static_method_registrationOptions : std::false_type
1495template <
typename T>
1496struct has_static_method_registrationOptions<
1497 T, typename std::enable_if_t<std::is_same_v<decltype(T::registrationOptions()), NodeRegistrationOptions>>>
1504inline typename std::enable_if_t<std::is_base_of_v<NodeModelType, T> && !std::is_same_v<model::SubTree, T>, T>
1509 if constexpr (has_static_method_registrationOptions<T>::value) {
1519inline typename std::enable_if_t<std::is_same_v<model::SubTree, T>,
model::SubTree>
1522 return insertSubTreeNode(tree_name, before_this);
1526inline typename std::enable_if_t<std::is_same_v<model::SubTree, T>,
model::SubTree>
1529 return insertSubTreeNode(tree, before_this);
1534 const std::string & instance_name,
bool deep_search)
const
1536 const NodeElement ele = getFirstNode(T::name(), instance_name, deep_search);
1537 return T(ele.doc_ptr_, ele.ele_ptr_);
1541inline typename std::enable_if_t<std::is_base_of_v<NodeModelType, T>, TreeDocument::NodeElement &>
1544 return removeFirstChild(T::name(), instance_name, deep_search);
1548inline typename std::enable_if_t<std::is_base_of_v<NodeModelType, T>, TreeDocument::TreeElement &>
1559#include "auto_apms_behavior_tree_core/node/node_model_type.hpp"
Data structure for information about which behavior tree node plugin to load and how to configure the...
Abstract base for all automatically generated behavior tree node model classes to be used in interact...
Class that encapsulates behavior tree script expressions.
Forward iterator for traversing the first-level children of a node.
ChildIterator & operator++()
Pre-increment: advance to the next sibling element.
ChildIterator()
Create a past-the-end iterator.
value_type operator*() const
Dereference the iterator to obtain a NodeElement handle for the current child.
Handle for a single node of a TreeDocument.
std::enable_if_t< std::is_base_of_v< NodeModelType, T >, T > getFirstNode(const std::string &instance_name="", bool deep_search=false) const
Get the first node with a particular instance name.
const TreeDocument & getParentDocument() const
Get a const view of this node's parent tree document.
NodeElement insertTreeFromResource(const TreeResource &resource, const std::string &tree_name, const NodeElement *before_this=nullptr)
Concatenate a tree from one of the installed package's behavior tree resources and add its first chil...
const std::vector< std::string > & getPortNames() const
Get the names of the data ports implemented by the node represented by this element.
virtual std::string getRegistrationName() const
Get the name of this node given during registration representing its dynamic type.
XMLElement * getXMLElement()
Get a pointer to the underlying tinyxml2::XMLElement of this node.
std::function< bool(const NodeElement &)> ConstDeepApplyCallback
Callback invoked for every node found under another node. It cannot modify the current node.
NodeElement & resetPorts()
Delete all currently specified port values and reset with the defaults.
NodeElement(const NodeElement &ele)=default
Copy constructor for a node element.
std::function< bool(NodeElement &)> DeepApplyCallback
Callback invoked for every node found under another node. It may modify the current node.
NodeElement & setPorts(const PortValues &port_values)
Populate the the node's data ports.
std::enable_if_t< std::is_same_v< model::SubTree, SubTreeT >, model::SubTree > insertNode(const TreeElement &tree, const NodeElement *before_this=nullptr)
Add a subtree node for a specific tree element to the children of this node.
virtual NodeElement & setName(const std::string &instance_name)
Assign a name for this specific node instance.
NodeElement(TreeDocument *doc_ptr, XMLElement *ele_ptr)
Protected constructor intended for internal use only.
std::map< std::string, std::string > PortValues
Mapping of port names and its respective value encoded as string.
const std::vector< NodeElement > deepApplyConst(ConstDeepApplyCallback apply_callback) const
Recursively apply a callback to this node's children.
TreeDocument * doc_ptr_
Pointer to the tree document that created the tree this node belongs to.
ChildIterator end() const
Get a past-the-end iterator for the children of this node.
virtual std::string getName() const
Get the name of this node given to this specific instance by the developer.
PortValues getPorts() const
Assemble the values given to each data port implemented by this node.
NodeElement & setConditionalScript(BT::PreCond type, const Script &script)
Specify a script that is evaluated before this node is ticked.
NodeElement insertTreeFromString(const std::string &tree_str, const std::string &tree_name, const NodeElement *before_this=nullptr)
Concatenate a tree from a document created from a string and add its first child node to the children...
std::enable_if_t< std::is_base_of_v< NodeModelType, T >, NodeElement & > removeFirstChild(const std::string &instance_name="", bool deep_search=false)
Remove the first node with a particular instance name.
tinyxml2::XMLElement * ele_ptr_
Pointer to the corresponding XMLElement of the base document.
NodeElement insertTree(const TreeElement &tree, const NodeElement *before_this=nullptr)
Concatenate a tree and add its first child node to the children of this node.
std::string getFullyQualifiedName() const
Create a string that uniquely identifies this node considering its registration and its instance name...
NodeElement insertTreeFromDocument(const TreeDocument &doc, const std::string &tree_name, const NodeElement *before_this=nullptr)
Concatenate a tree from a document and add its first child node to the children of this node.
model::SubTree insertSubTreeNode(const std::string &tree_name, const NodeElement *before_this=nullptr)
Add a subtree node for a specific tree element to the children of this node.
bool hasChildren() const
Determine whether any children have been given to this node.
std::enable_if_t< std::is_same_v< model::SubTree, SubTreeT >, model::SubTree > insertNode(const std::string &tree_name, const NodeElement *before_this=nullptr)
Add a subtree node for a specific tree element to the children of this node.
bool operator==(const NodeElement &other) const
Determine if two node elements refer to the same node.
NodeElement getFirstNode(const std::string ®istration_name="", const std::string &instance_name="", bool deep_search=false) const
Get the first node with a particular registration and instance name.
ChildIterator begin() const
Get an iterator to the first child of this node.
NodeElement insertNode(const std::string &name, const NodeElement *before_this=nullptr)
Add a new node to the children of this node.
NodeElement & removeFirstChild(const std::string ®istration_name="", const std::string &instance_name="", bool deep_search=false)
Remove the first node with a particular registration and instance name.
NodeElement insertTreeFromFile(const std::string &path, const std::string &tree_name, const NodeElement *before_this=nullptr)
Concatenate a tree from a document created from a file and add its first child node to the children o...
NodeElement & removeChildren()
Recursively remove all children of this node element.
NodeElement & operator=(const NodeElement &other)
Replace this node with another.
std::vector< NodeElement > deepApply(DeepApplyCallback apply_callback)
Recursively apply a callback to this node's children.
Handle for a single behavior tree of a TreeDocument.
TreeElement & removeFirstChild(const std::string ®istration_name="", const std::string &instance_name="", bool deep_search=false)
TreeElement & removeChildren()
TreeElement(TreeDocument *doc_ptr, XMLElement *ele_ptr)
Protected constructor intended to be used only by certain factory methods of TreeDocument.
std::string getName() const override
Get the name of the behavior tree.
BT::Result verify() const
Verify that this behavior tree is structured correctly and can be created successfully.
NodeManifest getRequiredNodeManifest() const
Assemble the node manifest that is required for successfully creating an instance of this tree.
TreeElement & makeRoot()
Set this behavior tree as the root tree of the parent document.
TreeElement & operator=(const TreeElement &other)
Replace the behavior tree represented by this element with another.
TreeElement & setName(const std::string &tree_name) override
Set the name of the behavior tree.
std::string writeToString() const
Write this behavior tree to an XML encoded in a string.
TreeElement(const TreeElement &ele)=default
Copy constructor for a tree element.
std::enable_if_t< std::is_base_of_v< NodeModelType, T >, TreeElement & > removeFirstChild(const std::string &instance_name="", bool deep_search=false)
TreeElement getRootTree()
Get the corresponding behavior tree element for the root tree of this document.
TreeDocument & mergeResource(const TreeResource &resource, bool adopt_root_tree=false)
Merge the behavior trees from one of the installed package's behavior tree resources.
std::string getRootTreeName() const
Get the name of this document's root tree.
TreeDocument & mergeTreeDocument(const XMLDocument &other, bool adopt_root_tree=false)
Merge another tree document with this one.
TreeDocument & mergeString(const std::string &tree_str, bool adopt_root_tree=false)
Create a tree document from a string and merge it with this one.
TreeElement newTreeFromDocument(const TreeDocument &other, const std::string &tree_name="")
Create a new behavior tree inside this document with the content of one found inside another tree doc...
void writeToFile(const std::string &path) const
Write the XML of this tree document to a file.
TreeElement newTreeFromFile(const std::string &path, const std::string &tree_name="")
Create a new behavior tree inside this document with the content of one found inside the XML file.
TreeDocument & applyNodeNamespace(const std::string &node_namespace, const std::string &sep=_AUTO_APMS_BEHAVIOR_TREE_CORE__NODE_NAMESPACE_DEFAULT_SEP)
Prepend a namespace to all nodes associated with this document.
BT::Result verify() const
Verify that all behavior trees of this document are structured correctly and can be created successfu...
NodeManifest getRequiredNodeManifest() const
Assemble the node manifest that is required for successfully creating an instance of any of the docum...
std::set< std::string > getRegisteredNodeNames(bool include_native=true) const
Get the names of all nodes that are known to this document.
TreeElement newTreeFromString(const std::string &tree_str, const std::string &tree_name="")
Create a new behavior tree inside this document with the content of one found inside the XML string.
TreeElement newTreeFromResource(const TreeResource &resource, const std::string &tree_name="")
Create a new behavior tree inside this document with the content of one the trees found inside a part...
TreeDocument & reset()
Clear this document and reset it to its initial state.
TreeElement getTree(const std::string &tree_name)
Get the corresponding behavior tree element for a tree inside this document.
virtual TreeDocument & registerNodes(const NodeManifest &tree_node_manifest, bool override=false)
Load behavior tree node plugins and register them with the internal behavior tree factory.
TreeDocument & setRootTreeName(const std::string &tree_name)
Define the root tree of this document.
bool hasTreeName(const std::string &tree_name) const
Determine if this document contains a behavior tree with a particular name.
TreeDocument & mergeFile(const std::string &path, bool adopt_root_tree=false)
Create a tree document from a file and merge it with this one.
std::vector< std::string > getAllTreeNames() const
Get the names of all behavior trees inside this document.
TreeDocument & addNodeModel(NodeModelMap model_map)
Add a behavior tree node model element to the document by parsing the contents of model_map.
TreeDocument & mergeTree(const TreeElement &tree, bool make_root_tree=false)
Merge an existing behavior tree with this tree document.
std::string writeToString() const
Write the XML of this tree document to a string.
bool hasRootTreeName() const
Determine if this document specifies which of its trees is the root tree.
TreeDocument & removeTree(const std::string &tree_name)
Remove a particular behavior tree from this document.
TreeDocument(const std::string &format_version=BTCPP_FORMAT_DEFAULT_VERSION, NodeRegistrationLoader::SharedPtr tree_node_loader=NodeRegistrationLoader::make_shared())
Create a an empty tree document.
static NodeModelMap getNodeModel(tinyxml2::XMLDocument &doc, const NodeManifest &manifest)
Convert a behavior tree node model document to the corresponding data structure.
TreeElement newTree(const std::string &tree_name)
Create a new behavior tree inside this document.
Class containing behavior tree resource data.
Subtree behavior tree node model.
Core API for AutoAPMS's behavior tree implementation.
Models for all available behavior tree nodes.
std::map< std::string, NodeModel > NodeModelMap
Mapping of node registration names and their implementation details.
Parameters for loading and registering a behavior tree node class from a shared library using e....