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 template <typename EventType>
45 void postEvent(const EventType & ev);
46
47 template <typename EventType>
48 void postEvent();
49
50 template <typename TOrthogonal, typename TSourceObject>
52 {
53 }
54
55 template <typename TComponent>
57 TComponent *& requiredComponentStorage, bool throwExceptionIfNotExist = false);
58
59 template <typename TComponent>
61 std::string name, TComponent *& requiredComponentStorage,
62 bool throwExceptionIfNotExist = false);
63
64 template <typename TClient>
65 void requiresClient(TClient *& requiredClientStorage);
66
67 template <typename SmaccComponentType, typename TOrthogonal, typename TClient, typename... TArgs>
68 SmaccComponentType * createSiblingComponent(TArgs... targs);
69
70 template <typename SmaccComponentType, typename TOrthogonal, typename TClient, typename... TArgs>
71 SmaccComponentType * createSiblingNamedComponent(std::string name, TArgs... targs);
72
73 rclcpp::Node::SharedPtr getNode();
74
75 rclcpp::Logger getLogger() const;
76
77 //inline
79
80 // A reference to the state machine object that owns this resource
82
84
85private:
86 // friend method invoked by the client.
87 void initialize(ISmaccClient * owner);
88
89 // friend method invoked by the client.
90 // Assigns the owner of this resource to the given state machine parameter object
91 void setStateMachine(ISmaccStateMachine * stateMachine);
92
93 friend class ISmaccOrthogonal;
94 friend class ISmaccClient;
95};
96} // namespace smacc2
ISmaccClient * owner_
Definition: component.hpp:83
void requiresComponent(TComponent *&requiredComponentStorage, bool throwExceptionIfNotExist=false)
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:81
rclcpp::Node::SharedPtr getNode()
void setStateMachine(ISmaccStateMachine *stateMachine)