当前位置:网站首页>ros多客户端请求服务
ros多客户端请求服务
2022-08-02 02:20:00 【诺有缸的高飞鸟】
写在前面
1、本文内容
一个节点的多个服务被请求时产生消息阻塞,使用多线程来解决
2、平台
ubuntu1804, ros melodic
3、转载请注明出处:
https://blog.csdn.net/qq_41102371/article/details/125846107
代码
Service.srv
string client_name
---
string result
service_5.cpp
#include <ros/ros.h>
#include "service_5/Service.h"
#include <thread>
bool func_in=false;
// service回调函数,输入参数req,输出参数res
bool serviceCallback1(service_5::Service::Request &req,
service_5::Service::Response &res)
{
// 显示请求数据
ROS_INFO("client: name:%s\n", req.client_name.c_str());
for(int i=0;i<5;++i){
std::cout<<req.client_name<<": "<<i<<std::endl;
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
}
// // sleep(1);
// std::this_thread::sleep_for(std::chrono::milliseconds(1000));
// 设置反馈数据
res.result = "OK";
return true;
}
int main(int argc, char **argv)
{
// ROS节点初始化
ros::init(argc, argv, "server_5");
// 创建节点句柄
ros::NodeHandle n;
// 创建server,注册回调函数
ros::ServiceServer service1 = n.advertiseService("/my_server1", serviceCallback1);
ros::ServiceServer service2 = n.advertiseService("/my_server2", serviceCallback1);
ros::ServiceServer service3 = n.advertiseService("/my_server3", serviceCallback1);
ros::ServiceServer service4 = n.advertiseService("/my_server4", serviceCallback1);
ros::ServiceServer service5 = n.advertiseService("/my_server5", serviceCallback1);
// // 循环等待回调函数
ROS_INFO("Ready.");
//方法1
// ros::MultiThreadedSpinner s(5);
// s.spin();
// // ros::spin(s);
//方法2
ros::AsyncSpinner spinner(5); // Use4 threads
spinner.start();
ros::waitForShutdown();
//直接spin消息阻塞
//ros::spin();
return 0;
}
使用
在不同命令行窗口请求服务
rosservice call /my_server3 "client_name: 'client3'"
rosservice call /my_server2 "client_name: 'client2'"
直接spin消息阻塞,client2等client3完了才开始
多线程结果(方法2)
参考
ROS多线程订阅消息(ros::asyncspinner) https://blog.csdn.net/weixin_28900531/article/details/79431192
rosspin、rosspinOnce及多线程订阅 https://blog.csdn.net/yaked/article/details/50776224
边栏推荐
- 【ORB_SLAM2】void Frame::AssignFeaturesToGrid()
- Redis for distributed applications in Golang
- CodeTon Round 2 D. Magical Array 规律
- 790. 数的三次方根
- Centos7 安装postgresql并开启远程访问
- Outsourcing worked for three years, it was abolished...
- MySQL optimization strategy
- NIO's Sword
- 接口测试神器Apifox究竟有多香?
- LeetCode brushing diary: 33. Search and rotate sorted array
猜你喜欢
字典常用方法
十字光标太小怎么调节、CAD梦想画图算量技巧
永磁同步电机36问(三)——SVPWM代码实现
Fundamentals of Cryptography: X.690 and Corresponding BER CER DER Encodings
[LeetCode Daily Question]——654. The largest binary tree
项目后台技术Express
Data transfer at the data link layer
Safety (2)
"NetEase Internship" Weekly Diary (1)
"NetEase Internship" Weekly Diary (3)
随机推荐
Handwriting a blogging platform ~ Day 3
字典常用方法
【LeetCode Daily Question】——704. Binary Search
Pinduoduo leverages the consumer expo to promote the upgrading of domestic agricultural products brands and keep pace with international high-quality agricultural products
to-be-read list
swift project, sqlcipher3 -> 4, cannot open legacy database is there a way to fix it
Centos7 install postgresql and enable remote access
ALCCIKERS Shane 20191114
使用DBeaver进行mysql数据备份与恢复
Safety (2)
Ringtone 1161. Maximum In-Layer Elements and
记一个gorm初始化的坑
leetcode/字符串中的变位词-s1字符串的某个排列是s2的子串
AI目标分割能力,无需绿幕即可实现快速视频抠图
LeetCode刷题日记:74. 搜索二维矩阵
JVM调优实战
Speed up your programs with bitwise operations
2022年NPDP考完多久出成绩?怎么查询?
Golang分布式应用之定时任务
【LeetCode每日一题】——103.二叉树的锯齿形层序遍历