Skip to content

Commit

Permalink
added cb to deactivate a lifecycle node on exit (#546)
Browse files Browse the repository at this point in the history
Co-authored-by: Sukhraj Klair <sukhraj.k@radskunkworks.com>
  • Loading branch information
sukhrajklair and sKlairRad committed Jun 22, 2024
1 parent 344ff3c commit 5eb5e2f
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
#include <lifecyclenode_client/client_behaviors/cb_cleanup.hpp>
#include <lifecyclenode_client/client_behaviors/cb_configure.hpp>
#include <lifecyclenode_client/client_behaviors/cb_deactivate.hpp>
#include <lifecyclenode_client/client_behaviors/cb_deactivate_on_exit.hpp>
#include <lifecyclenode_client/client_behaviors/cb_shutdown.hpp>
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
// Copyright 2021 RobosoftAI Inc.
//
// 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.

/*****************************************************************************************************************
*
* Authors: Pablo Inigo Blasco, Brett Aldrich
*
******************************************************************************************************************/

#pragma once

#include <lifecyclenode_client/lifecyclenode_client.hpp>
#include <smacc2/smacc_asynchronous_client_behavior.hpp>

namespace cl_lifecyclenode
{
class CbDeactivateOnExit : public smacc2::SmaccAsyncClientBehavior
{
public:
CbDeactivateOnExit() {}
virtual ~CbDeactivateOnExit() {}

template <typename TOrthogonal, typename TSourceObject>
void onOrthogonalAllocation()
{
smacc2::SmaccAsyncClientBehavior::onOrthogonalAllocation<TOrthogonal, TSourceObject>();

this->requiresClient(this->lifecycleNodeClient_);

lifecycleNodeClient_->onTransitionOnDeactivateSuccess_.connect([this]()
{ this->postSuccessEvent(); });
lifecycleNodeClient_->onTransitionOnDeactivateFailure_.connect([this]()
{ this->postFailureEvent(); });
lifecycleNodeClient_->onTransitionOnDeactivateError_.connect([this]()
{ this->postFailureEvent(); });
}

virtual void onExit() override { lifecycleNodeClient_->deactivate(); }

private:
ClLifecycleNode * lifecycleNodeClient_;
};
} // namespace cl_lifecyclenode

0 comments on commit 5eb5e2f

Please sign in to comment.