21 #include "armor_msgs/ArmorDirective.h"
22 #include "armor_msgs/ArmorDirectiveList.h"
23 #include "armor_msgs/ArmorDirectiveReq.h"
24 #include "armor_msgs/ArmorDirectiveRes.h"
25 #include "armor_msgs/QueryItem.h"
32 #define ONTOLOGY_PARAM "cluedo_path_owlfile"
33 #define SERVICE_ARMOR_SINGLE_REQUEST "/armor_interface_srv"
34 #define SERVICE_ARMOR_MULTIPLE_REQUESTS "/armor_interface_serialized_srv"
35 #define ARMOR_CLIENT_NAME "robocluedo"
36 #define ARMOR_REFERENCE_NAME "cluedo_ontology"
37 #define ARMOR_CMD_LOAD "LOAD"
38 #define ARMOR_TIMEOUT 5.00
40 #define OUTLABEL "[test_armor] "
41 #define OUTLOG std::cout << OUTLABEL << " "
42 #define OUTERR OUTLOG << "ERROR: "
43 #define LOGSQUARE( str ) "[" << str << "] "
44 #define SS( this_string ) std::string( this_string )
45 #define SSS( this_thing ) std::to_string( this_thing )
50 return (std::ifstream(path)).good();
56 std::string arg2 =
"",
57 std::string arg3 =
"",
58 std::string arg4 =
"",
62 std::vector<std::string> to_return;
63 to_return.push_back( arg1 );
64 to_return.push_back( arg2 );
65 to_return.push_back( arg3 );
66 to_return.push_back( arg4 );
67 to_return.push_back( arg5 );
75 std::string reference,
77 std::string first_spec =
"",
78 std::string second_spec =
"",
79 std::vector<std::string> args = std::vector<std::string>(5,
"")
82 armor_msgs::ArmorDirective adsrv;
83 armor_msgs::ArmorDirectiveReq ad;
85 ad.client_name = client;
86 ad.reference_name = reference;
89 ad.primary_command_spec = first_spec;
90 ad.secondary_command_spec = second_spec;
93 adsrv.request.armor_request = ad;
101 std::string str =
SS(
OUTLABEL) +
SS(
"Print Request: \n");
102 armor_msgs::ArmorDirectiveReq r = d.request.armor_request;
104 str +=
SS(
"\tclient_name : ") +
SS( r.client_name ) +
SS(
"\n");
105 str +=
SS(
"\treference_name : ") +
SS( r.reference_name ) +
SS(
"\n");
106 str +=
SS(
"\tcommand : ") +
SS( r.command ) +
SS(
"\n");
107 str +=
SS(
"\tprimary_command_spec : ") +
SS( r.primary_command_spec ) +
SS(
"\n");
108 str +=
SS(
"\tsecondary_command_spec : ") +
SS( r.secondary_command_spec ) +
SS(
"\n");
110 str +=
SS(
"\targs : [");
111 for( std::string arg : r.args )
112 str +=
SS( arg ) +
SS(
" ");
115 str +=
SS(
"\n\t---" );
117 ROS_INFO_STREAM( str );
123 std::string str =
SS(
OUTLABEL) +
SS(
"Print Response: \n");
124 armor_msgs::ArmorDirectiveRes r = d.response.armor_response;
126 str +=
SS(
"\tsuccess : ") + ( r.success ?
SS(
"true") :
SS(
"false") ) +
SS(
"\n");
127 str +=
SS(
"\ttimeout : ") + ( r.timeout ?
SS(
"true") :
SS(
"false") ) +
SS(
"\n");
128 str +=
SS(
"\texit_code : ") +
SSS(r.exit_code) +
SS(
"\n");
129 str +=
SS(
"\terror_description : ") +
SS(r.error_description) +
SS(
"\n");
130 str +=
SS(
"\tis_consistent : ") + ( r.is_consistent ?
SS(
"true") :
SS(
"false") ) +
SS(
"\n");
132 str +=
SS(
"\tqueried_objects :\n");
133 for( std::string s : r.queried_objects )
134 str +=
SS(
"\t-\t") + s +
SS(
"\n");
136 str +=
SS(
"\tsparql_queried_objects : \n");
137 for( armor_msgs::QueryItem s : r.sparql_queried_objects )
138 str +=
SS(
"\t-\t") +
SS(
"key: ") +
SS( s.key ) +
SS(
" | value: " ) +
SS( s.value ) +
SS(
"\n");
140 str +=
SS(
"\t---" );
142 ROS_INFO_STREAM( str );
146 bool armorCallService( ros::ServiceClient& armorClient, armor_msgs::ArmorDirective& armorsrvdata )
148 if( armorClient.call( armorsrvdata ) )
180 std::vector<armor_msgs::ArmorDirective> directives;
211 for(
auto adsrv = directives.begin(); adsrv != directives.end(); ++adsrv )
220 int main(
int argc,
char* argv[] )
222 ros::init( argc, argv,
"test_armor" );
226 std::string ontology_file_path;
238 ROS_INFO_STREAM(
OUTLABEL <<
"Ontology found! " <<
LOGSQUARE( ontology_file_path ) );
243 if( !cl_single.waitForExistence( ros::Duration(
ARMOR_TIMEOUT ) ) )
245 ROS_INFO_STREAM(
OUTLABEL <<
"ERROR: unable to contact the server - timeout expired (" <<
ARMOR_TIMEOUT <<
"s) " );
253 if( !cl_single.waitForExistence( ros::Duration(
ARMOR_TIMEOUT ) ) )
255 ROS_INFO_STREAM(
OUTLABEL <<
"ERROR: unable to contact the server - timeout expired (" <<
ARMOR_TIMEOUT <<
"s) " );
263 ROS_INFO_STREAM(
OUTLABEL <<
"closing..." );