From 03f0b8830598fbd67915035498a2f447d7b8efe4 Mon Sep 17 00:00:00 2001
From: stevemacenski <stevenmacenski@gmail.com>
Date: Thu, 14 Nov 2019 14:17:08 -0800
Subject: [PATCH] port plugin decorators

---
 .../plugins/decorator/rate_controller.cpp     | 108 ++++++++++++++++++
 1 file changed, 108 insertions(+)
 create mode 100644 nav2_behavior_tree/plugins/decorator/rate_controller.cpp

diff --git a/nav2_behavior_tree/plugins/decorator/rate_controller.cpp b/nav2_behavior_tree/plugins/decorator/rate_controller.cpp
new file mode 100644
index 00000000..460126fc
--- /dev/null
+++ b/nav2_behavior_tree/plugins/decorator/rate_controller.cpp
@@ -0,0 +1,108 @@
+// Copyright (c) 2018 Intel Corporation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+//     http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+#ifndef NAV2_BEHAVIOR_TREE__RATE_CONTROLLER_HPP_
+#define NAV2_BEHAVIOR_TREE__RATE_CONTROLLER_HPP_
+
+#include <chrono>
+#include <string>
+
+#include "behaviortree_cpp_v3/decorator_node.h"
+
+namespace nav2_behavior_tree
+{
+
+class RateController : public BT::DecoratorNode
+{
+public:
+  RateController(
+    const std::string & name,
+    const BT::NodeConfiguration & conf)
+  : BT::DecoratorNode(name, conf)
+  {
+    double hz = 1.0;
+    getInput("hz", hz);
+    period_ = 1.0 / hz;
+  }
+
+  // Any BT node that accepts parameters must provide a requiredNodeParameters method
+  static BT::PortsList providedPorts()
+  {
+    return {
+      BT::InputPort<double>("hz", 10.0, "Rate")
+    };
+  }
+
+private:
+  BT::NodeStatus tick() override;
+
+  std::chrono::time_point<std::chrono::high_resolution_clock> start_;
+  double period_;
+};
+
+static bool first_time{false};
+
+inline BT::NodeStatus RateController::tick()
+{
+  if (status() == BT::NodeStatus::IDLE) {
+    // Reset the starting point since we're starting a new iteration of
+    // the rate controller (moving from IDLE to RUNNING)
+    start_ = std::chrono::high_resolution_clock::now();
+    first_time = true;
+  }
+
+  setStatus(BT::NodeStatus::RUNNING);
+
+  // Determine how long its been since we've started this iteration
+  auto now = std::chrono::high_resolution_clock::now();
+  auto elapsed = now - start_;
+
+  // Now, get that in seconds
+  typedef std::chrono::duration<float> float_seconds;
+  auto seconds = std::chrono::duration_cast<float_seconds>(elapsed);
+
+  // If we've exceed the specified period, execute the child node
+  if (first_time || seconds.count() >= period_) {
+    first_time = false;
+    const BT::NodeStatus child_state = child_node_->executeTick();
+
+    switch (child_state) {
+      case BT::NodeStatus::RUNNING:
+        return BT::NodeStatus::RUNNING;
+
+      case BT::NodeStatus::SUCCESS:
+        child_node_->setStatus(BT::NodeStatus::IDLE);
+        start_ = std::chrono::high_resolution_clock::now();  // Reset the timer
+        return BT::NodeStatus::SUCCESS;
+
+      case BT::NodeStatus::FAILURE:
+      default:
+        child_node_->setStatus(BT::NodeStatus::IDLE);
+        return BT::NodeStatus::FAILURE;
+    }
+  }
+
+  return status();
+}
+
+}  // namespace nav2_behavior_tree
+
+#include "behaviortree_cpp_v3/bt_factory.h"
+BT_REGISTER_NODES(factory)
+{
+  factory.registerNodeType<nav2_behavior_tree::RateController>("RateController");
+}
+
+
+#endif  // NAV2_BEHAVIOR_TREE__RATE_CONTROLLER_HPP_
-- 
GitLab