123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- //
- // Created by zx on 23-2-22.
- //
- #include "mqttmsg.h"
- #include <string.h>
- #include <google/protobuf/util/json_util.h>
- using namespace google::protobuf;
- MqttMsg::MqttMsg()
- {
- data_= nullptr;
- length_=0;
- }
- MqttMsg::MqttMsg(char* data,const int length)
- {
- data_=(char*)malloc(length);
- memcpy(data_,data,length);
- length_=length;
- }
- MqttMsg::MqttMsg(const MqttMsg& msg)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- data_=(char*)malloc(msg.length_);
- memcpy(data_,msg.data_,msg.length_);
- length_=msg.length_;
- }
- MqttMsg& MqttMsg::operator=(const MqttMsg& msg)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- data_=(char*)malloc(msg.length_);
- memcpy(data_,msg.data_,msg.length_);
- length_=msg.length_;
- return *this;
- }
- char* MqttMsg::data()const{
- return data_;
- }
- int MqttMsg::length()const{
- return length_;
- }
- MqttMsg::~MqttMsg(){
- if(data_!= nullptr)
- {
- free(data_);
- data_ = nullptr;
- }
- length_=0;
- }
- /*
- void MqttMsg::fromStatu(double x, double y, double theta, double v, double vth)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- AGVStatu statu;
- statu.set_x(x);
- statu.set_y(y);
- statu.set_theta(theta);
- statu.set_v(v);
- statu.set_vth(vth);
- google::protobuf::util::JsonPrintOptions option;
- option.always_print_primitive_fields=true;
- std::string json_str;
- google::protobuf::util::MessageToJsonString(statu,&json_str,option);
- length_=json_str.length();
- data_=(char*)malloc(length_);
- memcpy(data_,json_str.c_str(),length_);
- }
- bool MqttMsg::toStatu(double &x, double &y, double &theta, double &v, double &vth)
- {
- if(strlen(data())<length_)
- return false;
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_== nullptr)
- return false;
- AGVStatu statu;
- util::Status ret;
- char* buf=(char*)malloc(length_+1);
- memset(buf,0,length_+1);
- memcpy(buf,data(),length_);
- try
- {
- ret = util::JsonStringToMessage(buf, &statu);
- }
- catch (std::exception &e)
- {
- printf(" exp:%s\n",e.what());
- }
- free(buf);
- if(ret.ok())
- {
- x=statu.x();
- y=statu.y();
- theta=statu.theta();
- v=statu.v();
- vth=statu.vth();
- }
- return ret.ok();
- }
- void MqttMsg::fromNavSpeed(const NavMessage::Speed& speed)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- google::protobuf::util::JsonPrintOptions option;
- option.always_print_primitive_fields=true;
- std::string json_str;
- google::protobuf::util::MessageToJsonString(speed,&json_str,option);
- length_=json_str.size();
- data_=(char*)malloc(length_);
- memcpy(data_,json_str.c_str(),length_);
- }
- bool MqttMsg::toNavSpeed(NavMessage::Speed& speed)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_== nullptr)
- return false;
- util::Status ret;
- char* buf=(char*)malloc(length_+1);
- memset(buf,0,length_+1);
- memcpy(buf,data(),length_);
- try
- {
- //printf("%s\n",buf);
- ret = util::JsonStringToMessage(buf, &speed);
- printf("change speed v:%f, vth:%f\n",speed.v(),speed.vth());
- }
- catch (std::exception &e)
- {
- printf(" exp:%s\n",e.what());
- }
- free(buf);
- return ret.ok();
- }
- void MqttMsg::fromNavCmd(const NavMessage::NavCmd& cmd)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- google::protobuf::util::JsonPrintOptions option;
- option.always_print_primitive_fields=true;
- std::string json_str;
- google::protobuf::util::MessageToJsonString(cmd,&json_str,option);
- length_=json_str.length();
- data_=(char*)malloc(length_);
- memcpy(data_,json_str.c_str(),length_);
- }
- bool MqttMsg::toNavCmd(NavMessage::NavCmd& cmd)
- {
- if(strlen(data())<length_)
- return false;
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_== nullptr)
- return false;
- util::Status ret;
- char* buf=(char*)malloc(length_+1);
- memset(buf,0,length_+1);
- memcpy(buf,data(),length_);
- try
- {
- ret = util::JsonStringToMessage(buf, &cmd);
- }
- catch (std::exception &e)
- {
- printf(" exp:%s\n",e.what());
- return false;
- }
- free(buf);
- return ret.ok();
- }
- void MqttMsg::fromNavStatu(const NavMessage::NavStatu &statu)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- google::protobuf::util::JsonPrintOptions option;
- option.always_print_primitive_fields=true;
- std::string json_str;
- google::protobuf::util::MessageToJsonString(statu,&json_str,option);
- length_=json_str.length();
- data_=(char*)malloc(length_);
- memcpy(data_,json_str.c_str(),length_);
- }
- bool MqttMsg::toNavStatu(NavMessage::NavStatu &statu)
- {
- if(strlen(data())<length_)
- return false;
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_== nullptr)
- return false;
- util::Status ret;
- char* buf=(char*)malloc(length_+1);
- memset(buf,0,length_+1);
- memcpy(buf,data(),length_);
- try
- {
- ret = util::JsonStringToMessage(buf, &statu);
- }
- catch (std::exception &e)
- {
- printf(" exp:%s\n",e.what());
- return false;
- }
- free(buf);
- return ret.ok();
- }
- */
- void MqttMsg::fromProtoMessage(const google::protobuf::Message& message)
- {
- std::lock_guard<std::mutex> lock(mutex_);
- if(data_)
- free(data_);
- google::protobuf::util::JsonPrintOptions option;
- option.always_print_primitive_fields=true;
- std::string json_str;
- google::protobuf::util::MessageToJsonString(message,&json_str,option);
- length_=json_str.size();
- data_=(char*)malloc(length_);
- memcpy(data_,json_str.c_str(),length_);
- }
- bool MqttMsg::toProtoMessage(google::protobuf::Message& message)const
- {
- if(data_== nullptr)
- return false;
- util::Status ret;
- char* buf=(char*)malloc(length_+1);
- memset(buf,0,length_+1);
- memcpy(buf,data(),length_);
- try
- {
- ret = util::JsonStringToMessage(buf, &message);
- }
- catch (std::exception &e)
- {
- printf(" exp:%s\n",e.what());
- }
- free(buf);
- return ret.ok();
- }
|