前言
如果熟悉爱智和看过我之前文章的朋友见到这篇文章一定会有很大疑问,SDDC 作为智能设备发现控制协议,怎么会用在 windows 上?
这一切还是源自于我巨大的脑洞,因为这段在搞 Windows 开发,突发奇想能不能把电脑也接入到爱智上,于是就把嵌入式设备使用的 SDDC 协议移植到了 Windows 上,本文就介绍下基于 QT 移植的 libsddc 库,其实我还移植到了 VS2022 上了,这个之后再介绍吧。
软硬件选择
这里使用 windows 开发,除了电脑也不需要其他额外的硬件了。
软件的话,使用的是 QT 5.9.0 版本,官网下载太慢了,推荐大家下载这个清华大学开源镜像站的资源:https://mirrors.tuna.tsinghua.edu.cn/qt/archive/qt/5.9/5.9.0/qt-opensource-windows-x86-5.9.0.exe
代码获取与解析
代码可以从我的 gitee 仓库直接获取:
https://gitee.com/inspiration-desktop/windows-libsddc.git
打开 libsddc 项目如下:
其中 SDDC 相关代码都已基于 windows环境进行兼容修改,具体修改内容可以全局搜索 __WINDOWS__
宏来查看,其中主要的差异是 windows 和嵌入式系统的 socket 相关实现上,还有就是多线程,QT本身就支持 pthread ,这个给移植带来了很大的便利,不像 VS 为了支持 pthread 还需要一顿折腾,对于VS的移植之后的文章再介绍吧。
main.cpp 代码解析,主要内容是获取uuid作为设备唯一标识(其实还是我没找到合适的获取 windows MAC 地址的接口...);
#include "mainwindow.h"
#include <QApplication>
#include "sddc_message_example.h"
#include "sddc.h"
#include "test_thread.h"
#include "cJSON.h"
#include <QUuid>
#include <QFile>
#include <iostream>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// 启动可视化窗口,暂时用不到
//MainWindow w;
//w.show();
char * uuid_str;
char buffer[128];
QString uuidstr;
QUuid uuid;
// 获取uuid作为设备唯一标识
QFile file("uuid.txt");
if(file.exists()){
std::cout << "file exist\n";
if(!file.open(QIODevice::ReadWrite)){
std::cout << "open file failed\n";
}else{
//读取文件
//判断文件是否已经读到末尾了
while(!file.atEnd()){
//读取数据
memset(buffer,0,sizeof(buffer));
qint64 length = file.readLine(buffer,128);
if(length != -1){
uuid_str = (char*)&buffer;
std::cout << "read success\n";
}
}
file.close();
}
}else{
if(!file.open(QIODevice::ReadWrite)){
std::cout << "open file failed\n";
}else{
uuid = QUuid::createUuid();
uuidstr = uuid.toString();
uuid_str = (char *)uuidstr.remove("{").remove("}").remove("-").toStdString().data();
memset(buffer,0,sizeof(buffer));
memcpy(buffer,uuid_str,strlen(uuid_str));
uuid_str = buffer;
std::cout << uuid_str << std::endl;
qint64 length = -1;
length = file.write(uuid_str);
if(length == -1){
std::cout << "write file failed\n";
}else{
std::cout << "write file success\n";
}
file.close();
}
}
std::cout << uuid_str << std::endl;
// 启动一个新线程进行其他业务处理
//test_thread *thread1 = new test_thread();
//thread1->start();
// 启动 SDDC 协议
sddc_main(uuid_str);
a.exec();
return 0;
}
效果
点击左下角的绿色三角运行程序;
可以在爱智设备搜索中发现对应设备并添加;