Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
sample
controller
PA10Controller
PA10ControllerComp.cpp
Go to the documentation of this file.
1
// -*- C++ -*-
2
/*
3
* Copyright (c) 2008, AIST, the University of Tokyo and General Robotix Inc.
4
* All rights reserved. This program is made available under the terms of the
5
* Eclipse Public License v1.0 which accompanies this distribution, and is
6
* available at http://www.eclipse.org/legal/epl-v10.html
7
* Contributors:
8
* National Institute of Advanced Industrial Science and Technology (AIST)
9
* General Robotix Inc.
10
*/
19
#include <
rtm/Manager.h
>
20
#include <iostream>
21
#include <string>
22
#include "
PA10Controller.h
"
23
24
25
void
MyModuleInit
(
RTC::Manager
* manager)
26
{
27
PA10ControllerInit
(manager);
28
RTC::RtcBase
* comp;
29
30
// Create a component
31
comp = manager->
createComponent
(
"PA10Controller"
);
32
33
34
// Example
35
// The following procedure is examples how handle RT-Components.
36
// These should not be in this function.
37
38
// Get the component's object reference
39
//RTC::RTObject_var rtobj;
40
//rtobj = RTC::RTObject::_narrow(manager->getPOA()->servant_to_reference(comp));
41
42
// Get the port list of the component
43
//PortServiceList* portlist;
44
//portlist = rtobj->get_ports();
45
46
// getting port profiles
47
//std::cout << "Number of Ports: ";
48
//std::cout << portlist->length() << std::endl << std::endl;
49
//for (CORBA::ULong i(0), n(portlist->length()); i < n; ++i)
50
//{
51
//PortService_ptr port;
52
//port = (*portlist)[i];
53
//std::cout << "Port" << i << " (name): ";
54
//std::cout << port->get_port_profile()->name << std::endl;
55
56
//RTC::PortInterfaceProfileList iflist;
57
//iflist = port->get_port_profile()->interfaces;
58
//std::cout << "---interfaces---" << std::endl;
59
//for (CORBA::ULong i(0), n(iflist.length()); i < n; ++i)
60
//{
61
//std::cout << "I/F name: ";
62
//std::cout << iflist[i].instance_name << std::endl;
63
//std::cout << "I/F type: ";
64
//std::cout << iflist[i].type_name << std::endl;
65
//const char* pol;
66
//pol = iflist[i].polarity == 0 ? "PROVIDED" : "REQUIRED";
67
//std::cout << "Polarity: " << pol << std::endl;
68
//}
69
//std::cout << "---properties---" << std::endl;
70
//NVUtil::dump(port->get_port_profile()->properties);
71
//std::cout << "----------------" << std::endl << std::endl;
72
//}
73
74
return
;
75
}
76
77
int
main
(
int
argc,
char
** argv)
78
{
79
RTC::Manager
*
manager
;
80
manager =
RTC::Manager::init
(argc, argv);
81
82
// Initialize manager
83
manager->
init
(argc, argv);
84
85
// Set module initialization proceduer
86
// This procedure will be invoked in activateManager() function.
87
manager->
setModuleInitProc
(
MyModuleInit
);
88
89
// Activate manager and register to naming service
90
manager->
activateManager
();
91
92
// run the manager in blocking mode
93
// runManager(false) is the default.
94
manager->
runManager
();
95
96
// If you want to run the manager in non-blocking mode, do like this
97
// manager->runManager(true);
98
99
return
0;
100
}
RTC::Manager::createComponent
RTObject_impl * createComponent(const char *comp_args)
RTC::Manager
RTC::Manager::runManager
void runManager(bool no_block=false)
MyModuleInit
void MyModuleInit(RTC::Manager *manager)
Definition:
PA10ControllerComp.cpp:25
RTC::RTObject_impl
manager
manager
Manager.h
PA10ControllerInit
DLL_EXPORT void PA10ControllerInit(RTC::Manager *manager)
Definition:
PA10Controller.cpp:250
RTC::Manager::init
static Manager * init(int argc, char **argv)
RTC::Manager::activateManager
bool activateManager()
PA10Controller.h
Sample PD component.
RTC::Manager::setModuleInitProc
void setModuleInitProc(ModuleInitProc proc)
main
int main(int argc, char **argv)
Definition:
PA10ControllerComp.cpp:77
openhrp3
Author(s): AIST, General Robotix Inc., Nakamura Lab of Dept. of Mechano Informatics at University of Tokyo
autogenerated on Sat Apr 13 2019 02:14:24