Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #include "mp_default_main.h"
00033 #include "log_wrapper.h"
00034 #include "tcp_server.h"
00035 #include "message_manager.h"
00036 #include "input_handler.h"
00037 #include "joint_motion_handler.h"
00038 #include "joint_data.h"
00039 #include "joint_message.h"
00040 #include "simple_message.h"
00041 #include "ros_conversion.h"
00042 #include "mp_wrapper.h"
00043
00044 #include "motoPlus.h"
00045
00046
00047 namespace motoman
00048 {
00049 namespace mp_default_main
00050 {
00051
00052 void motionServer(void)
00053
00054 {
00055
00056 using namespace industrial::simple_socket;
00057 using namespace industrial::tcp_server;
00058 using namespace industrial::message_manager;
00059 using namespace industrial::simple_message;
00060 using namespace motoman::joint_motion_handler;
00061
00062 TcpServer connection;
00063 JointMotionHandler jmHandler;
00064
00065 MessageManager manager;
00066
00067 connection.init(StandardSocketPorts::MOTION);
00068
00069
00070 connection.makeConnect();
00071
00072 manager.init(&connection);
00073
00074 jmHandler.init(StandardMsgTypes::JOINT, &connection);
00075 manager.add(&jmHandler);
00076 manager.spin();
00077
00078
00079 }
00080
00081
00082 void systemServer(void)
00083
00084 {
00085
00086 using namespace industrial::simple_socket;
00087 using namespace industrial::tcp_server;
00088 using namespace industrial::message_manager;
00089
00090 TcpServer connection;
00091 MessageManager manager;
00092
00093 connection.init(StandardSocketPorts::SYSTEM);
00094 connection.makeConnect();
00095
00096 manager.init(&connection);
00097 manager.spin();
00098
00099 }
00100
00101
00102
00103 void stateServer(void)
00104 {
00105
00106 using namespace industrial::simple_socket;
00107 using namespace industrial::tcp_server;
00108 using namespace industrial::joint_message;
00109 using namespace industrial::joint_data;
00110 using namespace industrial::simple_message;
00111 using namespace motoman::ros_conversion;
00112 using namespace motoman::mp_wrapper;
00113
00114
00115 TcpServer connection;
00116 JointData rosJoints;
00117 JointMessage msg;
00118 SimpleMessage simpMsg;
00119
00120 const int period = 100;
00121
00122 connection.init(StandardSocketPorts::STATE);
00123
00124 FOREVER
00125 {
00126 connection.makeConnect();
00127
00128 while(connection.isConnected())
00129 {
00130 getRosFbPos(rosJoints);
00131 msg.init(0, rosJoints);
00132 msg.toTopic(simpMsg);
00133 connection.sendMsg(simpMsg);
00134
00135 mpTaskDelay(period);
00136
00137
00138 }
00139
00140
00141 }
00142
00143 }
00144
00145
00146
00147 void ioServer(void)
00148 {
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172 }
00173
00174
00175 }
00176 }