SMACC2
Loading...
Searching...
No Matches
component.hpp
Go to the documentation of this file.
1// Copyright 2021 RobosoftAI Inc.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15/*****************************************************************************************************************
16 *
17 * Authors: Pablo Inigo Blasco, Brett Aldrich
18 *
19 ******************************************************************************************************************/
20#pragma once
21
22#include <string>
23
24#include <boost/optional.hpp>
25#include <smacc2/common.hpp>
26
27namespace smacc2
28{
30{
31public:
33
34 virtual ~ISmaccComponent();
35
36 // Returns a custom identifier defined by the specific plugin implementation
37 virtual std::string getName() const;
38
39protected:
40 // this is the basic initialization method that each specific component should
41 // implement. The owner and the node are already available when it is invoked by the client.
42 virtual void onInitialize();
43
44 // component initialization with type information of the orthogonal and client that owns it
45 template <typename TOrthogonal, typename TClient>
47
48 template <typename EventType>
49 void postEvent(const EventType & ev);
50
51 template <typename EventType>
52 void postEvent();
53
54 template <typename TOrthogonal, typename TSourceObject>
58
59 template <typename TComponent>
61 TComponent *& requiredComponentStorage,
63
64 template <typename TComponent>
66 std::string name, TComponent *& requiredComponentStorage,
68
69 template <typename TClient>
70 void requiresClient(TClient *& requiredClientStorage);
71
72 template <typename SmaccComponentType, typename TOrthogonal, typename TClient, typename... TArgs>
73 SmaccComponentType * createSiblingComponent(TArgs... targs);
74
75 template <typename SmaccComponentType, typename TOrthogonal, typename TClient, typename... TArgs>
76 SmaccComponentType * createSiblingNamedComponent(std::string name, TArgs... targs);
77
78 rclcpp::Node::SharedPtr getNode();
79
80 rclcpp::Logger getLogger() const;
81
82 //inline
84
85 // A reference to the state machine object that owns this resource
87
89
90private:
91 // friend method invoked by the client.
92 void initialize(ISmaccClient * owner);
93
94 // friend method invoked by the client.
95 // Assigns the owner of this resource to the given state machine parameter object
96 void setStateMachine(ISmaccStateMachine * stateMachine);
97
98 friend class ISmaccOrthogonal;
99 friend class ISmaccClient;
100};
101} // namespace smacc2
ISmaccClient * owner_
Definition component.hpp:88
ISmaccStateMachine * getStateMachine()
void requiresClient(TClient *&requiredClientStorage)
SmaccComponentType * createSiblingComponent(TArgs... targs)
SmaccComponentType * createSiblingNamedComponent(std::string name, TArgs... targs)
virtual std::string getName() const
void initialize(ISmaccClient *owner)
rclcpp::Logger getLogger() const
ISmaccStateMachine * stateMachine_
Definition component.hpp:86
void requiresComponent(TComponent *&requiredComponentStorage, ComponentRequirement requirementType=ComponentRequirement::SOFT)
rclcpp::Node::SharedPtr getNode()
void setStateMachine(ISmaccStateMachine *stateMachine)
ComponentRequirement
Definition common.hpp:75