humotion / src / server / server.cpp @ 95dd1012
History | View | Annotate | Download (5.224 KB)
1 |
/*
|
---|---|
2 |
* This file is part of humotion
|
3 |
*
|
4 |
* Copyright(c) sschulz <AT> techfak.uni-bielefeld.de
|
5 |
* http://opensource.cit-ec.de/projects/humotion
|
6 |
*
|
7 |
* This file may be licensed under the terms of the
|
8 |
* GNU Lesser General Public License Version 3 (the ``LGPL''),
|
9 |
* or (at your option) any later version.
|
10 |
*
|
11 |
* Software distributed under the License is distributed
|
12 |
* on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
|
13 |
* express or implied. See the LGPL for the specific language
|
14 |
* governing rights and limitations.
|
15 |
*
|
16 |
* You should have received a copy of the LGPL along with this
|
17 |
* program. If not, go to http://www.gnu.org/licenses/lgpl.html
|
18 |
* or write to the Free Software Foundation, Inc.,
|
19 |
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
20 |
*
|
21 |
* The development of this software was supported by the
|
22 |
* Excellence Cluster EXC 277 Cognitive Interaction Technology.
|
23 |
* The Excellence Cluster EXC 277 is a grant of the Deutsche
|
24 |
* Forschungsgemeinschaft (DFG) in the context of the German
|
25 |
* Excellence Initiative.
|
26 |
*/
|
27 |
|
28 |
#include <boost/algorithm/string.hpp> |
29 |
|
30 |
#include <string> |
31 |
|
32 |
#include "humotion/server/middleware_ros.h" |
33 |
#include "humotion/server/server.h" |
34 |
|
35 |
using humotion::server::Server;
|
36 |
|
37 |
//! set up constant for updaterate (50Hz)
|
38 |
const float Server::MOTION_UPDATERATE = 50.0; |
39 |
|
40 |
//! constructor
|
41 |
//! open a new server instance.
|
42 |
Server::Server(std::string scope, std::string mw, JointInterface *_joint_interface) { |
43 |
// convert mw to uppercase
|
44 |
boost::to_upper(mw); |
45 |
|
46 |
printf("> initializing humotion server (on %s, middleware=%s)\n", scope.c_str(), mw.c_str());
|
47 |
|
48 |
// store pointer to joint interface
|
49 |
joint_interface_ = _joint_interface; |
50 |
|
51 |
// tell joint interface our framerate
|
52 |
joint_interface_->set_framerate(MOTION_UPDATERATE); |
53 |
|
54 |
// create controller
|
55 |
controller_ = new Controller(joint_interface_);
|
56 |
controller_->init_motion_generators(); |
57 |
|
58 |
// start middleware
|
59 |
if (mw == "ROS") { |
60 |
middleware_ = new MiddlewareROS(scope, controller_);
|
61 |
} else {
|
62 |
printf("> ERROR: invalid mw '%s' given. RSB support was dropped. Please use ROS\n\n",
|
63 |
mw.c_str()); |
64 |
exit(EXIT_FAILURE); |
65 |
} |
66 |
|
67 |
// start motion generation thread
|
68 |
start_motion_generation_thread(); |
69 |
} |
70 |
|
71 |
//! destructor
|
72 |
Server::~Server() { |
73 |
} |
74 |
|
75 |
//! middleware still running?
|
76 |
bool Server::ok() {
|
77 |
return middleware_->ok();
|
78 |
} |
79 |
|
80 |
//! start main thread
|
81 |
void Server::start_motion_generation_thread() {
|
82 |
motion_generation_thread_ptr_ = new boost::thread(boost::bind(
|
83 |
&Server::motion_generation_thread, this));
|
84 |
} |
85 |
|
86 |
//! main thread that handles all data in/out
|
87 |
//! this thread will take care of gathering all input data and
|
88 |
//! then generate the output targets at a fixed rate of \sa MOTION_UPDATERATE
|
89 |
void Server::motion_generation_thread() {
|
90 |
unsigned int incoming_data_count_invalid = 0; |
91 |
|
92 |
printf("> started motion generation thread\n");
|
93 |
|
94 |
// calculate loop delay
|
95 |
float loop_delay = 1000.0 / MOTION_UPDATERATE; |
96 |
boost::system_time timeout = boost::get_system_time() + |
97 |
boost::posix_time::milliseconds(loop_delay); |
98 |
printf("> one loop = %3.1fms\n", loop_delay);
|
99 |
|
100 |
// wait for incoming joint data
|
101 |
while (middleware_->ok()) {
|
102 |
// mw tick
|
103 |
middleware_->tick(); |
104 |
|
105 |
unsigned int incoming_data_count = |
106 |
joint_interface_->get_and_clear_incoming_position_count(); |
107 |
|
108 |
if (incoming_data_count == 0) { |
109 |
incoming_data_count_invalid++; |
110 |
if (incoming_data_count_invalid >= MOTION_UPDATERATE) {
|
111 |
printf("> waiting for valid incoming joint data (position+velocity)\n");
|
112 |
incoming_data_count_invalid = 0;
|
113 |
} |
114 |
} else {
|
115 |
// fine, joint data is arriving, exit waiting loop
|
116 |
break;
|
117 |
} |
118 |
|
119 |
boost::thread::sleep(timeout); |
120 |
timeout = boost::get_system_time() + boost::posix_time::milliseconds(loop_delay); |
121 |
} |
122 |
|
123 |
printf("> joint data arrived, control loop active.\n");
|
124 |
controller_->set_activated(); |
125 |
|
126 |
// fine, data is arriving, activate and run control loop
|
127 |
while (middleware_->ok()) {
|
128 |
// mw tick
|
129 |
middleware_->tick(); |
130 |
|
131 |
// do some logging
|
132 |
// controller->dump_angles();
|
133 |
|
134 |
// calculate all targets
|
135 |
controller_->calculate_targets(); |
136 |
|
137 |
// publish data to joints
|
138 |
controller_->publish_targets(); |
139 |
|
140 |
// finally execute the movement
|
141 |
joint_interface_->execute_motion(); |
142 |
|
143 |
// check if we received joint information in the last step
|
144 |
unsigned int incoming_data_count = |
145 |
joint_interface_->get_and_clear_incoming_position_count(); |
146 |
|
147 |
if (incoming_data_count == 0) { |
148 |
// printf("> WARNING: no incoming joint data during the last iteration...\n");
|
149 |
incoming_data_count_invalid++; |
150 |
if (incoming_data_count_invalid >= MOTION_UPDATERATE) {
|
151 |
printf("> ERROR: no incoming joint data for >1 second -> will exit now\n");
|
152 |
exit(EXIT_FAILURE); |
153 |
} |
154 |
} else {
|
155 |
incoming_data_count_invalid = 0;
|
156 |
} |
157 |
|
158 |
boost::thread::sleep(timeout); |
159 |
timeout = boost::get_system_time() + boost::posix_time::milliseconds(loop_delay); |
160 |
} |
161 |
|
162 |
printf("> motion generation thread exited.\n");
|
163 |
} |