UavUdpSocket

该模块主要用于和无人机地面站通信单元进行数据的收发,基于udpsocket.

cpp 复制代码
#pragma once
#include <QObject>
#include "libCore.h"
#include "LkCommonStruct.h"

class LkUavUdpSocket : public LkUdpSocket
{
	Q_OBJECT
public:
	LkUavUdpSocket(QObject *parent = 0);
	~LkUavUdpSocket();	

	//向无人机发送命令
	template <class T>
	int cmdToUav(T cmd, MsgHeader type)
	{
		int len = cmd.ByteSize();
		char* buff;
		buff = new char[len];
		memset(buff, 0, len);
		cmd.SerializeToArray(buff, len);
		QByteArray sendTo;
		LittleEndianStream(out, sendTo);

		out << int(type);
		out.writeRawData(buff, len);
		delete buff;
		//qDebug() << QString("cmdToUav:Type %1: %2").arg(type).arg(QDateTime::currentDateTime().toString("hh:mm:ss:.zzz"));
		int r =  mSendSocket->writeDatagram(sendTo.data(), sendTo.size(), QHostAddress(mUavComIp), mUavSendPort);
		//qDebug() << QString("cmdToUav:End %1: %2").arg(type).arg(QDateTime::currentDateTime().toString("hh:mm:ss:.zzz"));
		return r;
	}
	void init(QString ip, int port);
private:
	void parse(QByteArray &ba);
	
public slots:
	virtual void readPendingDatagrams();
signals:

public:
	QString mUavComIp;
	int mUavSendPort;
	QSharedPointer<LkUdpSocket> mSendSocket;
private:
};


```cpp
#include "LkUavUdpSocket.h"

LkUavUdpSocket::LkUavUdpSocket(QObject *parent)
	: LkUdpSocket(parent)
{
	connect(this, &LkUavUdpSocket::readyRead, this, &LkUavUdpSocket::readPendingDatagrams);
	mSendSocket = QSharedPointer<LkUdpSocket>::create();
}

LkUavUdpSocket::~LkUavUdpSocket()
{
}

void LkUavUdpSocket::init(QString ip, int port)
{	
	bool b = bind(QHostAddress::Any, port);
	mUavComIp = ip;	
}

void LkUavUdpSocket::readPendingDatagrams()
{
	while (hasPendingDatagrams())
	{
		QByteArray datagram;
		datagram.resize(pendingDatagramSize());
		QNetworkDatagram netDgm = receiveDatagram();
		QString senderIP = netDgm.senderAddress().toString();
		datagram = netDgm.data();
		parse(datagram);
	}
}

void LkUavUdpSocket::parse(QByteArray &ba)
{
	LittleEndianStream(in, ba);
	int msgId;
	in >> msgId;
	if (msgId > 0)
	{
		LkMessageEvent me(QString::number(msgId));
		me.setData(ba.size() - sizeof(int), ba.data() + sizeof(int));
		gNetListener->dispatch(me);
	}
}
复制代码
相关推荐
海绵波波10739 分钟前
Webserver(4.3)TCP通信实现
服务器·网络·tcp/ip
热爱跑步的恒川4 小时前
【论文复现】基于图卷积网络的轻量化推荐模型
网络·人工智能·开源·aigc·ai编程
云飞云共享云桌面5 小时前
8位机械工程师如何共享一台图形工作站算力?
linux·服务器·网络
捕鲸叉5 小时前
创建线程时传递参数给线程
开发语言·c++·算法
A charmer5 小时前
【C++】vector 类深度解析:探索动态数组的奥秘
开发语言·c++·算法
Peter_chq5 小时前
【操作系统】基于环形队列的生产消费模型
linux·c语言·开发语言·c++·后端
青花瓷7 小时前
C++__XCode工程中Debug版本库向Release版本库的切换
c++·xcode
音徽编程7 小时前
Rust异步运行时框架tokio保姆级教程
开发语言·网络·rust
幺零九零零8 小时前
【C++】socket套接字编程
linux·服务器·网络·c++
捕鲸叉8 小时前
MVC(Model-View-Controller)模式概述
开发语言·c++·设计模式