2024-06-13 15:41:40 +08:00
|
|
|
#include "Application.h"
|
|
|
|
#include "AsyncEvent.h"
|
|
|
|
#include "BoostLog.h"
|
|
|
|
#include "CategoryLogSinkBackend.h"
|
2024-08-05 17:42:27 +08:00
|
|
|
#include "CdcUpdater.h"
|
2024-06-21 11:33:11 +08:00
|
|
|
#include "Configuration.h"
|
2024-06-13 15:41:40 +08:00
|
|
|
#include "Database.h"
|
2024-07-15 17:47:19 +08:00
|
|
|
#include "DateTime.h"
|
|
|
|
#include "ImageDecoder.h"
|
|
|
|
#include "StringUtility.h"
|
2024-06-13 15:41:40 +08:00
|
|
|
#include "VideoFrameProvider.h"
|
|
|
|
#include "VideoPlayer.h"
|
2024-08-08 17:05:32 +08:00
|
|
|
#include <QFile>
|
2024-06-13 15:41:40 +08:00
|
|
|
#include <QFont>
|
2024-09-05 16:36:54 +08:00
|
|
|
#include <QGuiApplication>
|
2024-06-13 15:41:40 +08:00
|
|
|
#include <QImage>
|
|
|
|
#include <QQmlApplicationEngine>
|
|
|
|
#include <QSerialPortInfo>
|
|
|
|
#include <QTimer>
|
2024-07-15 17:47:19 +08:00
|
|
|
#include <filesystem>
|
2024-06-20 21:28:30 +08:00
|
|
|
#include <fstream>
|
|
|
|
#include <mbedtls/md5.h>
|
2024-09-03 23:30:45 +08:00
|
|
|
#ifdef WIN32
|
|
|
|
#include "DeviceDiscovery.h"
|
|
|
|
#endif
|
2024-06-20 21:28:30 +08:00
|
|
|
|
2024-08-07 11:45:13 +08:00
|
|
|
constexpr uint32_t ImageSliceSize = (4000 - 32);
|
2024-06-13 15:41:40 +08:00
|
|
|
|
2024-09-05 16:36:54 +08:00
|
|
|
Application::Application(int &argc, char **argv) : m_app(std::make_shared<QGuiApplication>(argc, argv)) {
|
2024-06-21 18:08:23 +08:00
|
|
|
m_app->setApplicationName(APPLICATION_NAME);
|
2024-06-21 11:33:11 +08:00
|
|
|
m_app->setApplicationVersion(QString("v%1_%2 build: %3 %4").arg(APP_VERSION, GIT_COMMIT_ID, __DATE__, __TIME__));
|
2024-06-13 15:41:40 +08:00
|
|
|
QFont font;
|
2024-09-05 16:36:54 +08:00
|
|
|
font.setPointSize(12);
|
2024-06-13 15:41:40 +08:00
|
|
|
m_app->setFont(font);
|
|
|
|
|
|
|
|
m_verifyTimer = new QTimer(this);
|
|
|
|
m_verifyTimer->setSingleShot(true);
|
|
|
|
connect(m_verifyTimer, &QTimer::timeout, this, &Application::onVerifyTimeout);
|
|
|
|
|
|
|
|
m_database = std::make_shared<Database>();
|
|
|
|
QTimer::singleShot(0, this, [this]() {
|
|
|
|
if (!m_database->open("database.db")) {
|
|
|
|
LOG(error) << "open database failed.";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
m_videoFrameProvider = new VideoFrameProvider();
|
2024-07-15 17:47:19 +08:00
|
|
|
if (!std::filesystem::exists(JpgPath)) {
|
|
|
|
std::filesystem::create_directory(JpgPath);
|
|
|
|
}
|
|
|
|
if (!std::filesystem::exists(YuvPath)) {
|
|
|
|
std::filesystem::create_directory(YuvPath);
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
|
2024-08-07 11:45:13 +08:00
|
|
|
void Application::onNewEnrollResult(uint16_t userid) {
|
|
|
|
m_palmId = userid;
|
|
|
|
QTimer::singleShot(0, this, [this, userid]() {
|
2024-09-05 16:36:54 +08:00
|
|
|
emit newStatusTip(Info, "录入成功", QString("用户: %1, ID: %2").arg(m_palmUsername).arg(userid));
|
2024-08-07 11:45:13 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-07-01 15:07:13 +08:00
|
|
|
void Application::onNewVerifyResult(uint16_t userid, const QString &username, uint16_t elapsed) {
|
2024-07-31 16:08:38 +08:00
|
|
|
m_palmUsername = username;
|
2024-08-07 11:45:13 +08:00
|
|
|
m_palmId = userid;
|
2024-07-01 15:07:13 +08:00
|
|
|
QTimer::singleShot(0, this, [this, userid, username, elapsed]() {
|
2024-06-13 15:41:40 +08:00
|
|
|
emit newStatusTip(Info, QString("%1,识别耗时: %2ms")
|
|
|
|
.arg(userid == ModuleCommunication::InvalidUserId ? "未录入用户" : username)
|
2024-07-01 15:07:13 +08:00
|
|
|
.arg(elapsed));
|
2024-06-13 15:41:40 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::initializeLogger() {
|
|
|
|
auto backend = boost::make_shared<CategoryLogSinkBackend>("GUI", [this](const std::string &log) {
|
|
|
|
Amass::executeAtObjectThread(this, [this, log]() { emit newLog(QString::fromStdString(log)); });
|
|
|
|
});
|
|
|
|
using SynchronousCategorySink = boost::log::sinks::synchronous_sink<CategoryLogSinkBackend>;
|
|
|
|
auto sink = boost::make_shared<SynchronousCategorySink>(backend);
|
|
|
|
boost::log::core::get()->add_sink(sink);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Application::exec() {
|
|
|
|
QQmlApplicationEngine engine;
|
|
|
|
engine.addImageProvider("videoframe", m_videoFrameProvider);
|
2024-08-29 11:12:14 +08:00
|
|
|
const QUrl url(QStringLiteral("qrc:/qt/qml/Analyser/qml/Main.qml"));
|
2024-06-13 15:41:40 +08:00
|
|
|
QObject::connect(
|
|
|
|
&engine, &QQmlApplicationEngine::objectCreationFailed, m_app.get(), []() { QCoreApplication::exit(-1); },
|
|
|
|
Qt::QueuedConnection);
|
|
|
|
engine.load(url);
|
|
|
|
|
|
|
|
return m_app->exec();
|
|
|
|
}
|
|
|
|
|
2024-08-31 11:37:20 +08:00
|
|
|
Application *Application::create(QQmlEngine *qmlEngine, QJSEngine *jsEngine) {
|
|
|
|
Application *ret = nullptr;
|
|
|
|
auto app = Amass::Singleton<Application>::instance();
|
|
|
|
if (app) {
|
|
|
|
ret = app.get();
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
QJSEngine::setObjectOwnership(ret, QJSEngine::CppOwnership);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-06-13 15:41:40 +08:00
|
|
|
QStringList Application::availableSerialPorts() const {
|
|
|
|
QStringList ret;
|
|
|
|
auto ports = QSerialPortInfo::availablePorts();
|
2024-09-05 16:36:54 +08:00
|
|
|
auto iterator = std::find_if(ports.cbegin(), ports.cend(), [](const QSerialPortInfo &info) {
|
|
|
|
return (info.productIdentifier() == ModuleCommunication::ProductIdentifier) &&
|
|
|
|
(info.vendorIdentifier() == ModuleCommunication::VendorIdentifier);
|
|
|
|
});
|
|
|
|
if (iterator != ports.cend()) {
|
|
|
|
ret << iterator->portName();
|
|
|
|
ports.erase(iterator);
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
for (auto &port : ports) {
|
|
|
|
if (port.description() == "蓝牙链接上的标准串行") continue;
|
|
|
|
ret << port.portName();
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList Application::availableUsbVideoCameras() const {
|
|
|
|
QStringList ret;
|
2024-09-03 23:30:45 +08:00
|
|
|
#ifdef WIN32
|
2024-06-13 15:41:40 +08:00
|
|
|
DeviceDiscovery d;
|
|
|
|
auto devices = d.devices();
|
|
|
|
for (auto &device : devices) {
|
|
|
|
ret << QString::fromStdString(device);
|
|
|
|
}
|
2024-09-03 23:30:45 +08:00
|
|
|
#endif
|
2024-06-13 15:41:40 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::open(const QString &portName, int baudRate) {
|
|
|
|
m_communication = std::make_shared<ModuleCommunication>();
|
|
|
|
connect(m_communication.get(), &ModuleCommunication::commandStarted, this, &Application::onCommandStarted);
|
|
|
|
connect(m_communication.get(), &ModuleCommunication::commandFinished, this, &Application::onCommandFinished);
|
2024-08-07 11:45:13 +08:00
|
|
|
connect(m_communication.get(), &ModuleCommunication::newEnrollResult, this, &Application::onNewEnrollResult);
|
2024-06-13 15:41:40 +08:00
|
|
|
connect(m_communication.get(), &ModuleCommunication::newVerifyResult, this, &Application::onNewVerifyResult);
|
|
|
|
connect(m_communication.get(), &ModuleCommunication::newPalmFeature, this, &Application::onNewPalmFeature);
|
2024-07-31 16:08:38 +08:00
|
|
|
connect(m_communication.get(), &ModuleCommunication::newImageInfo, this, &Application::onNewImageInfo);
|
2024-06-13 15:41:40 +08:00
|
|
|
connect(m_communication.get(), &ModuleCommunication::newImageSliceData, this, &Application::onNewImageSliceData);
|
|
|
|
connect(m_communication.get(), &ModuleCommunication::errorOccurred, this, &Application::onErrorOccurred);
|
|
|
|
emit connectedChanged();
|
|
|
|
|
|
|
|
auto status = m_communication->open(portName, baudRate);
|
|
|
|
emit newStatusTip(status ? Tip : Error, status ? "串口打开成功" : "串口打开失败");
|
2024-08-16 11:34:21 +08:00
|
|
|
if (status) {
|
|
|
|
QTimer::singleShot(0, this, [this]() { m_communication->requestVersion(); });
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::openUVC(const QString &deviceName) {
|
|
|
|
m_videoPlayer = std::make_shared<VideoPlayer>();
|
|
|
|
m_videoPlayer->setFrameCallback([this](const QImage &image) {
|
|
|
|
Amass::executeAtObjectThread(this, [this, image]() {
|
|
|
|
m_videoFrameProvider->setImage(image);
|
|
|
|
emit newVideoFrame();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
m_videoPlayer->setErrorCallback([this](int error, const std::string &message) {
|
|
|
|
LOG_CAT(info, GUI) << "UVC错误: " << message;
|
|
|
|
Amass::executeAtObjectThread(this, [this, error]() {
|
|
|
|
if (error == -EIO) {
|
|
|
|
closeUVC();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
bool status = m_videoPlayer->open(deviceName.toStdString());
|
|
|
|
if (!status) {
|
|
|
|
m_videoPlayer.reset();
|
|
|
|
}
|
|
|
|
emit uvcOpenedChanged();
|
|
|
|
emit newStatusTip(status ? Tip : Error, status ? "UVC打开成功" : "UVC打开失败");
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::close() {
|
|
|
|
m_communication.reset();
|
|
|
|
emit connectedChanged();
|
|
|
|
|
|
|
|
m_persistenceModeStarted = false;
|
|
|
|
m_verifyTimer->stop();
|
|
|
|
emit isVerifyingChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::closeUVC() {
|
|
|
|
m_videoFrameProvider->reset();
|
|
|
|
emit newVideoFrame();
|
|
|
|
|
|
|
|
m_videoPlayer.reset();
|
|
|
|
emit uvcOpenedChanged();
|
|
|
|
}
|
|
|
|
|
2024-07-31 16:08:38 +08:00
|
|
|
void Application::verify(bool captureImage, uint8_t timeout) {
|
2024-06-13 15:41:40 +08:00
|
|
|
if (m_communication->currentMessageId() != ModuleCommunication::Idle) {
|
|
|
|
m_communication->reset();
|
|
|
|
}
|
2024-07-31 16:08:38 +08:00
|
|
|
if (captureImage) {
|
|
|
|
m_communication->verifyExtended(captureImage, timeout);
|
|
|
|
} else {
|
|
|
|
m_communication->verify(timeout);
|
|
|
|
}
|
|
|
|
m_verifyExtendedMode = captureImage;
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
|
2024-09-11 15:45:19 +08:00
|
|
|
void Application::enroll(const QString &username, bool strictMode, uint8_t excludeMode, bool persistence,
|
|
|
|
uint8_t timeout) {
|
2024-06-13 15:41:40 +08:00
|
|
|
if (m_communication->currentMessageId() != ModuleCommunication::Idle) {
|
|
|
|
m_communication->reset();
|
|
|
|
}
|
2024-09-11 15:45:19 +08:00
|
|
|
m_communication->enroll(username.toStdString(), strictMode, excludeMode, persistence, timeout);
|
2024-07-31 16:08:38 +08:00
|
|
|
m_palmUsername = username;
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::deleteUser(uint16_t userid) {
|
|
|
|
if (m_communication->currentMessageId() != ModuleCommunication::Idle) {
|
|
|
|
m_communication->reset();
|
|
|
|
}
|
|
|
|
m_communication->deleteUser(userid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::deleteAll() {
|
|
|
|
if (m_communication->currentMessageId() != ModuleCommunication::Idle) {
|
|
|
|
m_communication->reset();
|
|
|
|
}
|
|
|
|
m_communication->deleteAll();
|
|
|
|
}
|
|
|
|
|
2024-09-11 15:45:19 +08:00
|
|
|
void Application::enrollExtended(const QString &username, bool strictMode, uint8_t excludeMode, bool persistence,
|
|
|
|
uint8_t timeout) {
|
2024-06-19 16:02:58 +08:00
|
|
|
if (m_communication->currentMessageId() != ModuleCommunication::Idle) {
|
|
|
|
m_communication->reset();
|
|
|
|
}
|
2024-09-11 15:45:19 +08:00
|
|
|
m_communication->enrollExtended(username.toStdString(), strictMode, excludeMode, persistence, timeout);
|
2024-07-31 16:08:38 +08:00
|
|
|
m_palmUsername = username;
|
2024-06-19 16:02:58 +08:00
|
|
|
}
|
|
|
|
|
2024-08-16 19:05:50 +08:00
|
|
|
void Application::uploadImage(const QString &path, const QString &username, int operation) {
|
2024-06-20 21:28:30 +08:00
|
|
|
m_uploadImageSendedSize = 0;
|
2024-08-12 10:20:37 +08:00
|
|
|
ModuleCommunication::UploadImageInformation request;
|
2024-08-07 11:45:13 +08:00
|
|
|
if (path.endsWith(".jpg")) {
|
2024-08-14 19:51:37 +08:00
|
|
|
auto image = ImageDecoder::extractJpegYComponent(Amass::StringUtility::UTF8ToGBK(path.toStdString()));
|
2024-08-07 11:45:13 +08:00
|
|
|
if (!image) {
|
|
|
|
LOG(error) << "decode failed.";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_uploadBuffer = image->data;
|
2024-08-16 19:05:50 +08:00
|
|
|
LOG(info) << path.toStdString() << ", width: " << image->width << ", height: " << image->height;
|
2024-08-12 10:20:37 +08:00
|
|
|
request.width = image->width;
|
|
|
|
request.height = image->height;
|
2024-08-07 11:45:13 +08:00
|
|
|
} else if (path.endsWith(".yuv")) {
|
|
|
|
std::ifstream ifs(Amass::StringUtility::UTF8ToGBK(path.toStdString()), std::ofstream::binary);
|
|
|
|
m_uploadBuffer = std::vector<uint8_t>((std::istreambuf_iterator<char>(ifs)), std::istreambuf_iterator<char>());
|
|
|
|
if (m_uploadBuffer.empty()) {
|
|
|
|
LOG(error) << "file is empty.";
|
|
|
|
}
|
2024-08-12 10:20:37 +08:00
|
|
|
request.width = 600;
|
|
|
|
request.height = 800;
|
2024-08-07 11:45:13 +08:00
|
|
|
} else {
|
|
|
|
LOG(error) << "not supported format.";
|
2024-07-15 17:47:19 +08:00
|
|
|
return;
|
|
|
|
}
|
2024-06-20 21:28:30 +08:00
|
|
|
|
|
|
|
mbedtls_md5_context context;
|
|
|
|
mbedtls_md5_init(&context);
|
|
|
|
mbedtls_md5_starts(&context);
|
2024-07-15 17:47:19 +08:00
|
|
|
mbedtls_md5_update(&context, m_uploadBuffer.data(), m_uploadBuffer.size());
|
2024-06-20 21:28:30 +08:00
|
|
|
mbedtls_md5_finish(&context, request.md5);
|
|
|
|
mbedtls_md5_free(&context);
|
|
|
|
|
2024-08-07 11:45:13 +08:00
|
|
|
request.operation = operation;
|
2024-06-20 21:28:30 +08:00
|
|
|
request.size = m_uploadBuffer.size();
|
2024-08-16 19:05:50 +08:00
|
|
|
strncpy(request.username, username.toStdString().c_str(), sizeof(request.username));
|
2024-06-20 21:28:30 +08:00
|
|
|
m_communication->uploadImageInfo(request);
|
|
|
|
LOG(info) << "upload image, md5: "
|
|
|
|
<< ModuleCommunication::protocolDataFormatString(request.md5, sizeof(request.md5));
|
2024-08-14 19:51:37 +08:00
|
|
|
m_imageUploadling = true;
|
2024-08-16 19:05:50 +08:00
|
|
|
m_uploadPath = path;
|
|
|
|
m_uploadUsername = username;
|
|
|
|
m_currentUploadOperation = operation;
|
2024-06-20 21:28:30 +08:00
|
|
|
m_startUploadTime = std::chrono::system_clock::now();
|
|
|
|
}
|
|
|
|
|
2024-06-13 15:41:40 +08:00
|
|
|
ModuleCommunication *Application::module() const {
|
|
|
|
return m_communication.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::connected() const {
|
|
|
|
return static_cast<bool>(m_communication);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::uvcOpened() const {
|
|
|
|
return static_cast<bool>(m_videoPlayer);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::persistenceMode() const {
|
|
|
|
return m_persistenceMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::setPersistenceMode(bool enabled) {
|
|
|
|
if (m_persistenceMode != enabled) {
|
|
|
|
m_persistenceMode = enabled;
|
|
|
|
emit persistenceModeChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-16 19:05:50 +08:00
|
|
|
bool Application::imageUploadPersistenceMode() const {
|
|
|
|
return m_imageUploadPersistenceMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::setImageUploadPersistenceMode(bool enabled) {
|
|
|
|
if (m_imageUploadPersistenceMode != enabled) {
|
|
|
|
m_imageUploadPersistenceMode = enabled;
|
|
|
|
emit imageUploadPersistenceModeChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-13 15:41:40 +08:00
|
|
|
int Application::persistenceVerifyInterval() const {
|
|
|
|
return m_persistenceVerifyInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::setPersistenceVerifyInterval(int interval) {
|
|
|
|
if (m_persistenceVerifyInterval != interval) {
|
|
|
|
m_persistenceVerifyInterval = interval;
|
|
|
|
emit persistenceVerifyIntervalChanged();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Application::isVerifying() const {
|
|
|
|
if (!m_communication) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return (m_persistenceMode && m_persistenceModeStarted) ||
|
2024-07-31 16:08:38 +08:00
|
|
|
(m_communication->currentMessageId() == ModuleCommunication::Verify) ||
|
|
|
|
(m_communication->currentMessageId() == ModuleCommunication::VerifyExtended);
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::onNewPalmFeature(const PalmFeature &feature) {
|
|
|
|
auto palms = m_database->palmFeatures();
|
|
|
|
if (std::find(palms.cbegin(), palms.cend(), feature) != palms.cend()) {
|
|
|
|
LOG(warning) << "本地数据库已有相同特征数据。";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!m_database->addPalmFeature(feature)) {
|
|
|
|
LOG(error) << "add palm feature failed.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-05 16:36:54 +08:00
|
|
|
void Application::onErrorOccurred(ModuleCommunication::NoteId note, const QString &error,
|
|
|
|
const QString &detailMessage) {
|
|
|
|
TipType type = Tip;
|
|
|
|
if (note == ModuleCommunication::NoteId::DeviceError) {
|
|
|
|
type = Error;
|
|
|
|
QTimer::singleShot(0, this, [this]() { close(); });
|
|
|
|
} else if (note == ModuleCommunication::NoteId::InteractWarning) {
|
|
|
|
type = Warnging;
|
|
|
|
} else {
|
|
|
|
type = Warnging;
|
|
|
|
}
|
|
|
|
emit newStatusTip(type, error, detailMessage);
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
|
2024-07-31 16:08:38 +08:00
|
|
|
void Application::onNewImageInfo(ModuleCommunication::MessageId messageId, uint32_t size, const uint8_t *md5) {
|
2024-06-13 15:41:40 +08:00
|
|
|
using namespace std::chrono;
|
2024-07-31 16:08:38 +08:00
|
|
|
m_palmImageId = messageId;
|
|
|
|
m_palmImageSize = size;
|
2024-06-20 21:28:30 +08:00
|
|
|
m_communication->requestEnrolledImage(0, ImageSliceSize);
|
2024-07-31 16:08:38 +08:00
|
|
|
m_palmYImageBuffer.clear();
|
2024-06-13 15:41:40 +08:00
|
|
|
m_startUploadTime = system_clock::now();
|
2024-08-05 17:42:27 +08:00
|
|
|
if (messageId == ModuleCommunication::Note) {
|
|
|
|
emit newStatusTip(Error, "活体未通过照片");
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::onNewImageSliceData(const std::vector<uint8_t> &data) {
|
|
|
|
using namespace std::chrono;
|
2024-07-31 16:08:38 +08:00
|
|
|
// LOG(info) << "onNewImageSliceData:" << data.size() << ", already received: " << m_palmYImageBuffer.size()
|
|
|
|
// << ", total size: " << m_palmImageSize;
|
|
|
|
m_palmYImageBuffer.append(reinterpret_cast<const char *>(data.data()), data.size());
|
|
|
|
if (m_palmYImageBuffer.size() < m_palmImageSize) {
|
|
|
|
m_communication->requestEnrolledImage(m_palmYImageBuffer.size(), ImageSliceSize);
|
2024-06-13 15:41:40 +08:00
|
|
|
} else {
|
2024-07-31 16:08:38 +08:00
|
|
|
auto username = m_palmUsername.toStdString();
|
|
|
|
auto way = (m_palmImageId == ModuleCommunication::VerifyExtended) ? "verify" : "enroll";
|
2024-08-05 17:42:27 +08:00
|
|
|
if (m_palmImageId == ModuleCommunication::Note) {
|
|
|
|
way = "no_alive";
|
|
|
|
}
|
2024-08-07 11:45:13 +08:00
|
|
|
LOG(info) << "request image finished, username: " << username << ", userid: " << m_palmId
|
2024-07-15 17:47:19 +08:00
|
|
|
<< ", elapsed: " << duration_cast<milliseconds>(system_clock::now() - m_startUploadTime);
|
|
|
|
std::ostringstream oss;
|
2024-08-07 11:45:13 +08:00
|
|
|
oss << YuvPath << "/" << username << "_" << m_palmId << "_" << way << "_"
|
2024-07-31 16:08:38 +08:00
|
|
|
<< DateTime::toString(std::chrono::system_clock::now(), "%Y%m%d%H%M%S") << ".yuv";
|
2024-07-15 17:47:19 +08:00
|
|
|
std::ofstream ofs(Amass::StringUtility::UTF8ToGBK(oss.str()), std::ofstream::binary);
|
2024-07-31 16:08:38 +08:00
|
|
|
ofs.write(m_palmYImageBuffer.data(), m_palmYImageBuffer.size());
|
2024-07-15 17:47:19 +08:00
|
|
|
|
2024-07-31 16:08:38 +08:00
|
|
|
QImage image(reinterpret_cast<const uint8_t *>(m_palmYImageBuffer.data()), 600, 800, QImage::Format_Grayscale8);
|
2024-07-15 17:47:19 +08:00
|
|
|
oss.str("");
|
2024-08-07 11:45:13 +08:00
|
|
|
oss << JpgPath << "/" << username << "_" << m_palmId << "_" << way << "_"
|
2024-07-31 16:08:38 +08:00
|
|
|
<< DateTime::toString(std::chrono::system_clock::now(), "%Y%m%d%H%M%S") << ".jpg";
|
2024-08-31 11:37:20 +08:00
|
|
|
image.save(QString::fromStdString(oss.str()), "jpg", 80);
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::onCommandStarted(ModuleCommunication::MessageId messageId) {
|
|
|
|
using namespace std::chrono;
|
|
|
|
emit isVerifyingChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::onCommandFinished(ModuleCommunication::MessageId messageId,
|
|
|
|
ModuleCommunication::MessageStatus status) {
|
2024-06-20 21:28:30 +08:00
|
|
|
// LOG(info) << m_persistenceMode << " " << m_persistenceModeStarted << " " << m_persistenceVerifyInterval;
|
2024-06-13 15:41:40 +08:00
|
|
|
using namespace std::chrono;
|
2024-06-20 21:28:30 +08:00
|
|
|
if (messageId == ModuleCommunication::UploadImageInfo) {
|
2024-07-15 17:47:19 +08:00
|
|
|
m_communication->uploadImageData(m_uploadImageSendedSize, m_uploadBuffer.data() + m_uploadImageSendedSize,
|
|
|
|
ImageSliceSize);
|
2024-06-20 21:28:30 +08:00
|
|
|
} else if (messageId == ModuleCommunication::UploadImageData) {
|
|
|
|
m_uploadImageSendedSize += ImageSliceSize;
|
|
|
|
if (m_uploadImageSendedSize < m_uploadBuffer.size()) {
|
|
|
|
auto remainSize = m_uploadBuffer.size() - m_uploadImageSendedSize;
|
|
|
|
m_communication->uploadImageData(m_uploadImageSendedSize,
|
|
|
|
(const uint8_t *)m_uploadBuffer.data() + m_uploadImageSendedSize,
|
|
|
|
remainSize < ImageSliceSize ? remainSize : ImageSliceSize);
|
2024-08-14 19:51:37 +08:00
|
|
|
m_imageUploadling = true;
|
2024-08-16 19:05:50 +08:00
|
|
|
}
|
|
|
|
if (status != ModuleCommunication::Needmore) {
|
|
|
|
LOG(info) << "upload image finished, status: " << static_cast<int>(status)
|
|
|
|
<< ", elapsed: " << duration_cast<milliseconds>(system_clock::now() - m_startUploadTime);
|
2024-08-14 19:51:37 +08:00
|
|
|
m_imageUploadling = false;
|
2024-08-16 19:05:50 +08:00
|
|
|
if (m_imageUploadPersistenceMode) {
|
|
|
|
QTimer::singleShot(1, this,
|
|
|
|
[this]() { uploadImage(m_uploadPath, m_uploadUsername, m_currentUploadOperation); });
|
|
|
|
}
|
2024-06-20 21:28:30 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-31 16:08:38 +08:00
|
|
|
if (((messageId == ModuleCommunication::Verify) || (messageId == ModuleCommunication::VerifyExtended)) &&
|
|
|
|
m_persistenceMode) { // 持续识别逻辑
|
2024-06-13 15:41:40 +08:00
|
|
|
m_persistenceModeStarted = true;
|
|
|
|
} else if (messageId == ModuleCommunication::Reset) {
|
|
|
|
m_persistenceModeStarted = false;
|
|
|
|
m_verifyTimer->stop();
|
|
|
|
}
|
|
|
|
|
2024-07-31 16:08:38 +08:00
|
|
|
if (m_persistenceMode && m_persistenceModeStarted &&
|
|
|
|
((messageId == ModuleCommunication::Verify) || (messageId == ModuleCommunication::VerifyExtended)) &&
|
2024-06-13 15:41:40 +08:00
|
|
|
((status == ModuleCommunication::Success) || (status == ModuleCommunication::Failed4UnknownUser) ||
|
2024-08-16 19:05:50 +08:00
|
|
|
(status == ModuleCommunication::Failed4Timeout) || (status == ModuleCommunication::Failed4UnknownReason) ||
|
|
|
|
(status == ModuleCommunication::Failed4LivenessCheck))) {
|
2024-06-13 15:41:40 +08:00
|
|
|
m_verifyTimer->start(m_persistenceVerifyInterval * 1000);
|
|
|
|
}
|
|
|
|
emit isVerifyingChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Application::onVerifyTimeout() {
|
2024-07-31 16:08:38 +08:00
|
|
|
if (m_verifyExtendedMode) {
|
|
|
|
m_communication->verifyExtended(m_verifyExtendedMode, 120);
|
|
|
|
} else {
|
|
|
|
m_communication->verify(120);
|
|
|
|
}
|
2024-06-13 15:41:40 +08:00
|
|
|
}
|
2024-08-05 17:42:27 +08:00
|
|
|
|
2024-08-08 17:05:32 +08:00
|
|
|
bool Application::startOta(const QString &path) {
|
|
|
|
if (!QFile::exists(path)) {
|
|
|
|
emit otaMessage("文件不存在");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto device = CdcUpdater::searchDevice();
|
|
|
|
if (device) {
|
|
|
|
LOG(info) << "device already in ota mode.";
|
|
|
|
} else {
|
|
|
|
if (m_communication) {
|
|
|
|
m_communication->startOta();
|
|
|
|
} else {
|
|
|
|
emit otaMessage("请先打开设备");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2024-08-05 17:42:27 +08:00
|
|
|
LOG(info) << "start ota, ota path: " << path.toStdString();
|
|
|
|
m_updater = std::make_shared<CdcUpdater>();
|
|
|
|
connect(m_updater.get(), &CdcUpdater::deviceDiscovered, this, &Application::onCdcDeviceDiscovered);
|
|
|
|
connect(m_updater.get(), &CdcUpdater::updateFinished, this, &Application::updateFinished);
|
|
|
|
connect(m_updater.get(), &CdcUpdater::progressChanged, this, &Application::otaProgressChanged);
|
|
|
|
connect(m_updater.get(), &CdcUpdater::message, this, &Application::otaMessage);
|
|
|
|
|
2024-08-08 17:05:32 +08:00
|
|
|
m_updater->start(path, device ? *device : QSerialPortInfo());
|
|
|
|
return true;
|
2024-08-05 17:42:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Application::onCdcDeviceDiscovered(const QSerialPortInfo &info) {
|
|
|
|
auto status = m_updater->open(info);
|
|
|
|
LOG(info) << "open cdc port: " << info.portName().toStdString() << ", status: " << status;
|
2024-08-14 19:51:37 +08:00
|
|
|
if (!status) {
|
|
|
|
QTimer::singleShot(0, this, [this]() { m_updater->startSearchDevice(); });
|
|
|
|
}
|
2024-08-05 17:42:27 +08:00
|
|
|
}
|