forked from linuxdeepin/deepin-face
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbusfaceservice.cpp
127 lines (96 loc) · 3.15 KB
/
dbusfaceservice.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#include "dbusfaceservice.h"
#include <iostream>
DbusFaceService::DbusFaceService(QObject *parent)
: QObject(parent)
, m_spDriverManger(new DriverManger())
, m_spTimer(new QTimer)
{
this->m_spDriverManger->init();
connect(m_spTimer, &QTimer::timeout, this, &DbusFaceService::exitApp);
m_spTimer->start(15 * 1000);
}
QDBusUnixFileDescriptor DbusFaceService::EnrollStart(QString chara,
qint32 charaType,
QString actionId)
{
qDebug() << "EnrollStart chara" << chara << " charaType" << charaType << " actionId"
<< actionId;
m_spTimer->stop();
ErrMsgInfo errMSsgInfo;
auto fileDescriptor = m_spDriverManger->enrollStart(chara, charaType, actionId, errMSsgInfo);
if (!errMSsgInfo.msg.isEmpty()) {
sendErrorReply(errMSsgInfo.errType, errMSsgInfo.msg);
return QDBusUnixFileDescriptor(-1);
}
return fileDescriptor;
}
void DbusFaceService::EnrollStop(QString actionId)
{
qDebug() << "EnrollStop action id: " << actionId;
m_spTimer->start();
ErrMsgInfo errMSsgInfo;
m_spDriverManger->enrollStop(actionId, errMSsgInfo);
if (!errMSsgInfo.msg.isEmpty()) {
sendErrorReply(errMSsgInfo.errType, errMSsgInfo.msg);
}
}
QDBusUnixFileDescriptor DbusFaceService::VerifyStart(QStringList charas, QString actionId)
{
qDebug() << "VerifyStart chara" << charas << " actionId" << actionId;
m_spTimer->stop();
ErrMsgInfo errMSsgInfo;
auto fileDescriptor = m_spDriverManger->verifyStart(charas, actionId, errMSsgInfo);
if (!errMSsgInfo.msg.isEmpty()) {
sendErrorReply(errMSsgInfo.errType, errMSsgInfo.msg);
return QDBusUnixFileDescriptor(-1);
}
return fileDescriptor;
}
void DbusFaceService::VerifyStop(QString actionId)
{
qDebug() << "VerifyStop actionId" << actionId;
m_spTimer->start();
ErrMsgInfo errMSsgInfo;
m_spDriverManger->verifyStop(actionId, errMSsgInfo);
if (!errMSsgInfo.msg.isEmpty()) {
sendErrorReply(errMSsgInfo.errType, errMSsgInfo.msg);
}
}
void DbusFaceService::Delete(QString chara)
{
qDebug() << "Delete chara" << chara;
m_spTimer->start();
ErrMsgInfo errMSsgInfo;
m_spDriverManger->deleteChara(chara, errMSsgInfo);
if (!errMSsgInfo.msg.isEmpty()) {
sendErrorReply(errMSsgInfo.errType, errMSsgInfo.msg);
}
}
bool DbusFaceService::getClaim() const
{
qDebug() << "getClaim";
m_spTimer->start();
return m_spDriverManger->getClaim();
}
QStringList DbusFaceService::getList() const
{
qDebug() << "getList";
m_spTimer->start();
return m_spDriverManger->getCharaList();
}
qint32 DbusFaceService::getCharaType() const
{
qDebug() << "getCharaType";
m_spTimer->start();
return m_spDriverManger->getCharaType();
}
void DbusFaceService::exitApp()
{
qDebug() << "idle time out exit app";
QDBusConnection connection = QDBusConnection::systemBus();
connection.unregisterService(SERVERNAME);
QCoreApplication::quit();
}