tree_node.cpp
Go to the documentation of this file.
1 /* Copyright (C) 2015-2018 Michele Colledanchise - All Rights Reserved
2  * Copyright (C) 2018-2020 Davide Faconti, Eurecat - All Rights Reserved
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
5 * to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
6 * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
10 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
11 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12 */
13 
15 #include <cstring>
16 
17 namespace BT
18 {
19 static uint16_t getUID()
20 {
21  static uint16_t uid = 1;
22  return uid++;
23 }
24 
25 TreeNode::TreeNode(std::string name, NodeConfiguration config) :
26  name_(std::move(name)),
27  status_(NodeStatus::IDLE),
28  uid_(getUID()),
29  config_(std::move(config))
30 {}
31 
33 {
34  NodeStatus new_status = status_;
35  // a pre-condition may return the new status.
36  // In this case it override the actual tick()
38  {
39  if (auto res = pre_condition_callback_(*this, status_))
40  {
41  new_status = res.value();
42  }
43  }
44  else
45  {
46  new_status = tick();
47  }
48 
49  // a post-condition may overwrite the result of the tick
50  // with its own result.
52  {
53  if (auto res = post_condition_callback_(*this, status_, new_status))
54  {
55  new_status = res.value();
56  }
57  }
58 
59  setStatus(new_status);
60  return new_status;
61 }
62 
64 {
65  NodeStatus prev_status;
66  {
67  std::unique_lock<std::mutex> UniqueLock(state_mutex_);
68  prev_status = status_;
69  status_ = new_status;
70  }
71  if (prev_status != new_status)
72  {
73  state_condition_variable_.notify_all();
74  state_change_signal_.notify(std::chrono::high_resolution_clock::now(), *this,
75  prev_status, new_status);
76  }
77 }
78 
80 {
82 }
83 
85 {
86  std::lock_guard<std::mutex> lock(state_mutex_);
87  return status_;
88 }
89 
91 {
92  std::unique_lock<std::mutex> lock(state_mutex_);
93 
94  while (isHalted())
95  {
96  state_condition_variable_.wait(lock);
97  }
98  return status_;
99 }
100 
101 const std::string& TreeNode::name() const
102 {
103  return name_;
104 }
105 
106 bool TreeNode::isHalted() const
107 {
108  return status_ == NodeStatus::IDLE;
109 }
110 
113 {
114  return state_change_signal_.subscribe(std::move(callback));
115 }
116 
117 uint16_t TreeNode::UID() const
118 {
119  return uid_;
120 }
121 
122 const std::string& TreeNode::registrationName() const
123 {
124  return registration_ID_;
125 }
126 
128 {
129  return config_;
130 }
131 
132 StringView TreeNode::getRawPortValue(const std::string& key) const
133 {
134  auto remap_it = config_.input_ports.find(key);
135  if (remap_it == config_.input_ports.end())
136  {
137  throw std::logic_error(StrCat("getInput() failed because "
138  "NodeConfiguration::input_ports "
139  "does not contain the key: [",
140  key, "]"));
141  }
142  return remap_it->second;
143 }
144 
146 {
147  const auto size = str.size();
148  if (size >= 3 && str.back() == '}')
149  {
150  if (str[0] == '{')
151  {
152  return true;
153  }
154  if (size >= 4 && str[0] == '$' && str[1] == '{')
155  {
156  return true;
157  }
158  }
159  return false;
160 }
161 
163 {
164  const auto size = str.size();
165  if (size >= 3 && str.back() == '}')
166  {
167  if (str[0] == '{')
168  {
169  return str.substr(1, size - 2);
170  }
171  if (str[0] == '$' && str[1] == '{')
172  {
173  return str.substr(2, size - 3);
174  }
175  }
176  return {};
177 }
178 
180  StringView remapping_value)
181 {
182  if (remapping_value == "=")
183  {
184  return {port_name};
185  }
186  if (isBlackboardPointer(remapping_value))
187  {
188  return {stripBlackboardPointer(remapping_value)};
189  }
190  return nonstd::make_unexpected("Not a blackboard pointer");
191 }
192 
194 {
195  if (wake_up_)
196  {
197  wake_up_->emitSignal();
198  }
199 }
200 
202 {
203  registration_ID_.assign(ID.data(), ID.size());
204 }
205 
206 void TreeNode::setWakeUpInstance(std::shared_ptr<WakeUpSignal> instance)
207 {
208  wake_up_ = instance;
209 }
210 
212 {
213  for (const auto& new_it : new_remapping)
214  {
215  auto it = config_.input_ports.find(new_it.first);
216  if (it != config_.input_ports.end())
217  {
218  it->second = new_it.second;
219  }
220  it = config_.output_ports.find(new_it.first);
221  if (it != config_.output_ports.end())
222  {
223  it->second = new_it.second;
224  }
225  }
226 }
227 
228 } // namespace BT
void resetStatus()
Equivalent to setStatus(NodeStatus::IDLE)
Definition: tree_node.cpp:79
std::string registration_ID_
Definition: tree_node.h:221
uint16_t UID() const
Definition: tree_node.cpp:117
std::condition_variable state_condition_variable_
Definition: tree_node.h:211
NodeConfiguration config_
Definition: tree_node.h:219
const uint16_t uid_
Definition: tree_node.h:217
StatusChangeSignal::Subscriber StatusChangeSubscriber
Definition: tree_node.h:95
PostTickOverrideCallback post_condition_callback_
Definition: tree_node.h:225
const NodeConfiguration & config() const
Definition: tree_node.cpp:127
void notify(CallableArgs... args)
Definition: signal.h:21
const std::string name_
Definition: tree_node.h:207
StatusChangeSignal::CallableFunction StatusChangeCallback
Definition: tree_node.h:96
NodeStatus status() const
Definition: tree_node.cpp:84
std::shared_ptr< WakeUpSignal > wake_up_
Definition: tree_node.h:227
Definition: any.hpp:455
void setWakeUpInstance(std::shared_ptr< WakeUpSignal > instance)
Definition: tree_node.cpp:206
StatusChangeSubscriber subscribeToStatusChange(StatusChangeCallback callback)
subscribeToStatusChange is used to attach a callback to a status change. When StatusChangeSubscriber ...
Definition: tree_node.cpp:112
std::mutex state_mutex_
Definition: tree_node.h:213
static uint16_t getUID()
Definition: tree_node.cpp:19
bool isHalted() const
Definition: tree_node.cpp:106
const std::string & name() const
Name of the instance, not the type.
Definition: tree_node.cpp:101
std::string StrCat()
Definition: strcat.hpp:47
TreeNode(std::string name, NodeConfiguration config)
TreeNode main constructor.
Definition: tree_node.cpp:25
PreTickOverrideCallback pre_condition_callback_
Definition: tree_node.h:223
nonstd::string_view StringView
Definition: basic_types.h:55
const std::string & registrationName() const
registrationName is the ID used by BehaviorTreeFactory to create an instance.
Definition: tree_node.cpp:122
NodeStatus status_
Definition: tree_node.h:209
void modifyPortsRemapping(const PortsRemapping &new_remapping)
Definition: tree_node.cpp:211
PortsRemapping output_ports
Definition: tree_node.h:51
StatusChangeSignal state_change_signal_
Definition: tree_node.h:215
static StringView stripBlackboardPointer(StringView str)
Definition: tree_node.cpp:162
nonstd::expected< T, std::string > Optional
Definition: basic_types.h:197
void setRegistrationID(StringView ID)
Definition: tree_node.cpp:201
void emitStateChanged()
Definition: tree_node.cpp:193
static bool isBlackboardPointer(StringView str)
Definition: tree_node.cpp:145
NodeStatus
Definition: basic_types.h:35
StringView getRawPortValue(const std::string &key) const
Definition: tree_node.cpp:132
virtual BT::NodeStatus executeTick()
The method that should be used to invoke tick() and setStatus();.
Definition: tree_node.cpp:32
Subscriber subscribe(CallableFunction func)
Definition: signal.h:37
BT::NodeStatus waitValidStatus()
Definition: tree_node.cpp:90
virtual BT::NodeStatus tick()=0
Method to be implemented by the user.
void setStatus(NodeStatus new_status)
Definition: tree_node.cpp:63
PortsRemapping input_ports
Definition: tree_node.h:50
static Optional< StringView > getRemappedKey(StringView port_name, StringView remapping_value)
Definition: tree_node.cpp:179
std::unordered_map< std::string, std::string > PortsRemapping
Definition: tree_node.h:42


behaviortree_cpp_v3
Author(s): Michele Colledanchise, Davide Faconti
autogenerated on Mon Jul 3 2023 02:50:14