PauseProvider.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package VisionX::PointCloud
19  * @author Markus Grotz ( markus dot grotz at kit dot edu )
20  * @date 2015
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 
25 #include "PauseProvider.h"
26 
27 #include "PointCloudStatechartContext.generated.h"
28 
29 namespace armarx::PointCloud
30 {
31  // DO NOT EDIT NEXT LINE
32  PauseProvider::SubClassRegistry PauseProvider::Registry(PauseProvider::GetName(), &PauseProvider::CreateInstance);
33 
34 
35 
37  XMLStateTemplate<PauseProvider>(stateData), PauseProviderGeneratedBase<PauseProvider>(stateData)
38  {
39  }
40 
42  {
43 
44  std::string providerName = in.getProviderName();
45  PointCloudStatechartContext* context = getContext<PointCloudStatechartContext>();
46 
47  visionx::CapturingPointCloudProviderInterfacePrx providerPrx;
48 
49  try
50  {
51  providerPrx = context->getIceManager()->getProxy<visionx::CapturingPointCloudProviderInterfacePrx>(providerName);
52  }
53  catch (...)
54  {
55 
56  }
57 
58  if (providerPrx)
59  {
60  providerPrx->stopCapture();
61  emitSuccess();
62  }
63  else
64  {
65  emitFailure();
66  }
67  }
68 
69 
70 
71  // DO NOT EDIT NEXT FUNCTION
73  {
74  return XMLStateFactoryBasePtr(new PauseProvider(stateData));
75  }
76 }
armarx::XMLStateConstructorParams
Definition: XMLState.h:50
armarx::PointCloud::PauseProvider::onEnter
void onEnter() override
Definition: PauseProvider.cpp:41
IceInternal::Handle
Definition: forward_declarations.h:8
armarx::XMLStateTemplate
Class for legacy to stay compatible with old statecharts.
Definition: XMLState.h:137
armarx::PointCloud::PauseProvider::PauseProvider
PauseProvider(const XMLStateConstructorParams &stateData)
Definition: PauseProvider.cpp:36
armarx::PointCloud::PauseProvider
Definition: PauseProvider.h:33
PauseProvider.h
armarx::XMLStateFactoryBasePtr
IceInternal::Handle< XMLStateFactoryBase > XMLStateFactoryBasePtr
Definition: XMLState.h:65
armarx::PointCloud::PauseProvider::Registry
static SubClassRegistry Registry
Definition: PauseProvider.h:44
armarx::PointCloud::PauseProvider::CreateInstance
static XMLStateFactoryBasePtr CreateInstance(XMLStateConstructorParams stateData)
Definition: PauseProvider.cpp:72
armarx::PointCloud
Definition: CaptureNumberOfFrames.cpp:25