AntiClipSettings/Application.cpp

300 lines
12 KiB
C++
Raw Normal View History

2024-08-13 20:06:10 +08:00
#include "Application.h"
#include "BoostLog.h"
#include "Configuration.h"
#include "H264Palyer.h"
#include "VideoFrameProvider.h"
2024-08-22 15:32:58 +08:00
#include <QFileInfo>
2024-08-14 20:01:38 +08:00
#include <QFont>
2024-08-13 20:06:10 +08:00
#include <QGuiApplication>
#include <QQmlApplicationEngine>
Application::Application(int &argc, char **argv)
: m_app(std::make_shared<QGuiApplication>(argc, argv)), m_videoFrameProvider(new VideoFrameProvider()),
2024-08-21 09:26:06 +08:00
m_player(std::make_shared<H264Palyer>()), m_devices(new DeviceListModel(this)),
m_collector(new DataCollection(this)) {
2024-08-14 20:01:38 +08:00
QFont font;
font.setPointSize(16);
m_app->setFont(font);
2024-08-13 20:06:10 +08:00
m_app->setApplicationName(APPLICATION_NAME);
m_app->setApplicationVersion(QString("v%1_%2 build: %3 %4").arg(APP_VERSION, GIT_COMMIT_ID, __DATE__, __TIME__));
m_player->open();
}
2024-08-16 16:24:15 +08:00
DeviceConnection::AreaWay Application::currentOpenDoorAreaWay() const {
return m_currentOpenDoorAreaWay;
2024-08-14 20:01:38 +08:00
}
2024-08-16 16:24:15 +08:00
void Application::setCurrentOpenDoorAreaWay(DeviceConnection::AreaWay way) {
if (m_currentOpenDoorAreaWay == way) return;
m_currentOpenDoorAreaWay = way;
if (m_currentOpenDoorAreaWay == DeviceConnection::Quadrangle) {
if ((m_currentOpenDoorAreaPoints.size() < 4) || (m_currentOpenDoorAreaPoints == FullArea)) {
m_currentOpenDoorAreaPoints.clear();
m_currentOpenDoorAreaPoints << QPointF(68, 6) << QPointF(570, 6) << QPointF(570, 354) << QPointF(68, 354);
emit currentOpenDoorAreaPointsChanged();
2024-08-14 20:01:38 +08:00
}
2024-08-16 16:24:15 +08:00
} else if (m_currentOpenDoorAreaWay == DeviceConnection::FullArea) {
m_currentOpenDoorAreaPoints.clear();
m_currentOpenDoorAreaPoints = FullArea;
emit currentOpenDoorAreaPointsChanged();
}
emit currentOpenDoorAreaWayChanged();
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
device->updateOpenDoorAreaPoints(m_currentOpenDoorAreaWay, m_currentOpenDoorAreaPoints);
2024-08-14 20:01:38 +08:00
}
}
2024-08-13 20:06:10 +08:00
QList<QPointF> Application::currentOpenDoorAreaPoints() const {
return m_currentOpenDoorAreaPoints;
}
void Application::setCurrentOpenDoorAreaPoints(const QList<QPointF> &points) {
if (m_currentOpenDoorAreaPoints != points) {
m_currentOpenDoorAreaPoints = points;
emit currentOpenDoorAreaPointsChanged();
}
}
2024-08-16 16:24:15 +08:00
NetworkInfomation Application::currentNetworkInfomation() const {
return m_currentNetworkInfomation;
}
2024-08-14 20:01:38 +08:00
bool Application::currentShieldedAreaEnabled() const {
return m_currentShieldedAreaEnabled;
}
void Application::setCurrentShieldedAreaEnabled(bool enabled) {
if (m_currentShieldedAreaEnabled != enabled) {
m_currentShieldedAreaEnabled = enabled;
emit currentShieldedAreaEnabledChanged();
2024-08-16 16:24:15 +08:00
if (m_currentShieldedAreaPoints.size() < 4) {
m_currentShieldedAreaPoints.clear();
m_currentShieldedAreaPoints << QPointF(6, 6) << QPointF(40, 60) << QPointF(590, 6) << QPointF(630, 60);
emit currentShieldedAreaPointsChanged();
}
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
device->updateShieldedAreaPoints(m_currentShieldedAreaEnabled, m_currentShieldedAreaPoints);
2024-08-14 20:01:38 +08:00
}
}
}
QList<QPointF> Application::currentShieldedAreaPoints() const {
return m_currentShieldedAreaPoints;
}
void Application::setCurrentShieldedAreaPoints(const QList<QPointF> &points) {
if (m_currentShieldedAreaPoints != points) {
m_currentShieldedAreaPoints = points;
emit currentShieldedAreaPointsChanged();
}
}
bool Application::currentAntiClipAreaEnabled() const {
return m_currentAntiClipAreaEnabled;
}
void Application::setCurrentAntiClipAreaEnabled(bool enabled) {
if (m_currentAntiClipAreaEnabled != enabled) {
m_currentAntiClipAreaEnabled = enabled;
emit currentAntiClipAreaEnabledChanged();
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
device->updateAntiClipAreaPoints(m_currentAntiClipAreaEnabled, m_currentAntiClipAreaPoints);
2024-08-14 20:01:38 +08:00
}
}
}
QList<QPointF> Application::currentAntiClipAreaPoints() const {
return m_currentAntiClipAreaPoints;
}
void Application::setCurrentAntiClipAreaPoints(const QList<QPointF> &points) {
if (m_currentAntiClipAreaPoints != points) {
m_currentAntiClipAreaPoints = points;
emit currentAntiClipAreaPointsChanged();
}
}
void Application::updateOpenDoorAreaPoints(const QList<QPointF> &points) {
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
device->updateOpenDoorAreaPoints(m_currentOpenDoorAreaWay, points);
2024-08-16 16:24:15 +08:00
}
2024-08-14 20:01:38 +08:00
}
void Application::updateAntiClipAreaPoints(const QList<QPointF> &points) {
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
device->updateAntiClipAreaPoints(m_currentAntiClipAreaEnabled, points);
}
2024-08-14 20:01:38 +08:00
}
void Application::updateShieldedAreaPoints(const QList<QPointF> &points) {
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
device->updateShieldedAreaPoints(m_currentShieldedAreaEnabled, points);
}
2024-08-14 20:01:38 +08:00
}
2024-08-22 10:48:28 +08:00
void Application::updateNetworkInfomation(bool dhcp, const QString &ip, const QString &netmask, const QString &gateway,
const QString &dns) {
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
2024-08-22 10:48:28 +08:00
device->updateNetworkInfomation(dhcp, ip, netmask, gateway, dns);
emit newMessage(1, "网络设置", "设置成功,请重新搜索并连接设备!");
2024-08-16 16:24:15 +08:00
}
}
2024-08-20 09:29:49 +08:00
void Application::connectToDevice(int index) {
if (!m_device.expired()) {
auto device = m_device.lock();
2024-08-21 09:26:06 +08:00
disconnect(device.get(), &DeviceConnection::openDoorAreaChanged, this, &Application::onDeviceOpenDoorArea);
disconnect(device.get(), &DeviceConnection::shieldedAreaChanged, this, &Application::onDeviceShieldedArea);
disconnect(device.get(), &DeviceConnection::antiClipAreaChanged, this, &Application::onDeviceAntiClipArea);
disconnect(device.get(), &DeviceConnection::networkInfomationChanged, this,
2024-08-20 09:29:49 +08:00
&Application::onDeviceNetworkInfomation);
2024-08-21 16:03:49 +08:00
disconnect(device.get(), &DeviceConnection::firmwareChanged, this, &Application::onDeviceFirmware);
2024-08-21 09:26:06 +08:00
disconnect(device.get(), &DeviceConnection::otaProgressChanged, this,
&Application::currentDeviceOtaProgressChanged);
2024-08-22 10:48:28 +08:00
disconnect(device.get(), &DeviceConnection::connected, this, &Application::onDeviceConnected);
disconnect(device.get(), &DeviceConnection::disconnected, this, &Application::onDeviceDisconnected);
2024-08-20 09:29:49 +08:00
device->setH264FrameCallback(DeviceConnection::H264FrameCallback());
device->setLiveStreamEnabled(false);
2024-08-21 16:03:49 +08:00
if (!m_currentFirmware.isEmpty()) {
m_currentFirmware.clear();
}
2024-08-22 10:48:28 +08:00
m_currentDeviceConnected = false;
2024-08-16 16:24:15 +08:00
}
2024-08-21 09:26:06 +08:00
if (index >= 0) {
auto device = m_devices->device(index);
m_device = device;
connect(device.get(), &DeviceConnection::openDoorAreaChanged, this, &Application::onDeviceOpenDoorArea);
connect(device.get(), &DeviceConnection::shieldedAreaChanged, this, &Application::onDeviceShieldedArea);
connect(device.get(), &DeviceConnection::antiClipAreaChanged, this, &Application::onDeviceAntiClipArea);
connect(device.get(), &DeviceConnection::networkInfomationChanged, this,
&Application::onDeviceNetworkInfomation);
2024-08-21 16:03:49 +08:00
connect(device.get(), &DeviceConnection::firmwareChanged, this, &Application::onDeviceFirmware);
2024-08-21 09:26:06 +08:00
connect(device.get(), &DeviceConnection::otaProgressChanged, this,
&Application::currentDeviceOtaProgressChanged);
2024-08-22 10:48:28 +08:00
connect(device.get(), &DeviceConnection::connected, this, &Application::onDeviceConnected);
connect(device.get(), &DeviceConnection::disconnected, this, &Application::onDeviceDisconnected);
2024-08-21 09:26:06 +08:00
device->setH264FrameCallback([this](const char *data, uint32_t size) {
auto image = m_player->decode((const uint8_t *)data, size);
if (image) {
m_videoFrameProvider->setImage(*image);
emit newVideoFrame();
}
});
device->setLiveStreamEnabled(true);
auto area = device->area();
m_currentOpenDoorAreaWay = area.openDoorAreaWay;
m_currentOpenDoorAreaPoints = area.openDoorArea;
m_currentShieldedAreaEnabled = area.shieldedAreaEnabled;
m_currentShieldedAreaPoints = area.shieldedArea;
m_currentAntiClipAreaEnabled = area.antiClipAreaEnabled;
m_currentAntiClipAreaPoints = area.antiClipArea;
m_currentNetworkInfomation = device->networkInfomation();
2024-08-21 16:03:49 +08:00
m_currentFirmware = device->infomation().firmwareVersion;
2024-08-22 10:48:28 +08:00
m_currentDeviceConnected = device->isConnected();
2024-08-21 09:26:06 +08:00
emit currentOpenDoorAreaPointsChanged();
emit currentShieldedAreaPointsChanged();
emit currentAntiClipAreaPointsChanged();
emit currentOpenDoorAreaWayChanged();
emit currentShieldedAreaEnabledChanged();
emit currentAntiClipAreaEnabledChanged();
emit currentNetworkInfomationChanged();
}
2024-08-21 16:03:49 +08:00
emit currentFirmwareChanged();
2024-08-22 10:48:28 +08:00
emit currentDeviceConnectedChanged();
2024-08-21 09:26:06 +08:00
}
void Application::startSearchDevice() {
connectToDevice(-1);
m_devices->startSearchDevice();
2024-08-16 16:24:15 +08:00
}
2024-08-19 09:33:04 +08:00
void Application::upgradeDevice(const QString &file) {
2024-08-22 15:32:58 +08:00
constexpr auto versionPrefix = "RD_T009";
constexpr auto version = "RD_T009_V21R003B013";
QFileInfo fileInfo(file);
QString baseName = fileInfo.baseName();
int position = baseName.indexOf(versionPrefix);
if (position < 0 || ((baseName.length() - position) < std::strlen(version))) {
emit newMessage(2, "OTA升级", "文件名格式不合法!");
return;
}
QString firmware = baseName.mid(position, std::strlen(version));
2024-08-20 09:29:49 +08:00
if (!m_device.expired()) {
auto device = m_device.lock();
2024-08-22 10:48:28 +08:00
if (device->isConnected()) {
2024-08-22 15:32:58 +08:00
device->requestOta(firmware, file);
2024-08-22 10:48:28 +08:00
} else {
emit newMessage(2, "OTA升级", "设备已离线,请重新连接设备!");
}
2024-08-19 09:33:04 +08:00
}
}
2024-08-16 16:24:15 +08:00
void Application::onDeviceOpenDoorArea(DeviceConnection::AreaWay way, const QList<QPointF> &points) {
setCurrentOpenDoorAreaWay(way);
2024-08-13 20:06:10 +08:00
setCurrentOpenDoorAreaPoints(points);
}
2024-08-14 20:01:38 +08:00
void Application::onDeviceShieldedArea(bool enabled, const QList<QPointF> &points) {
setCurrentShieldedAreaEnabled(enabled);
setCurrentShieldedAreaPoints(points);
}
void Application::onDeviceAntiClipArea(bool enabled, const QList<QPointF> &points) {
setCurrentAntiClipAreaEnabled(enabled);
setCurrentAntiClipAreaPoints(points);
}
2024-08-16 16:24:15 +08:00
void Application::onDeviceNetworkInfomation(const NetworkInfomation &info) {
m_currentNetworkInfomation = info;
emit currentNetworkInfomationChanged();
}
2024-08-21 16:03:49 +08:00
void Application::onDeviceFirmware(const QString &firmware) {
if (m_currentFirmware != firmware) {
m_currentFirmware = firmware;
emit currentFirmwareChanged();
}
}
2024-08-22 10:48:28 +08:00
void Application::onDeviceConnected() {
m_currentDeviceConnected = true;
emit currentDeviceConnectedChanged();
}
void Application::onDeviceDisconnected() {
m_currentDeviceConnected = false;
emit currentDeviceConnectedChanged();
m_collector->stop();
}
2024-08-13 20:06:10 +08:00
int Application::exec() {
QQmlApplicationEngine engine;
engine.addImageProvider("videoframe", m_videoFrameProvider);
QObject::connect(
&engine, &QQmlApplicationEngine::objectCreationFailed, this, []() { QCoreApplication::exit(-1); },
Qt::QueuedConnection);
engine.loadFromModule("AntiClipSettings", "Main");
return m_app->exec();
}
Application *Application::create(QQmlEngine *qmlEngine, QJSEngine *jsEngine) {
Application *ret = nullptr;
auto app = Amass::Singleton<Application>::instance();
if (app) {
ret = app.get();
QJSEngine::setObjectOwnership(ret, QJSEngine::CppOwnership);
}
return ret;
}