File: emdaemon.cpp

package info (click to toggle)
kylin-display-switch 3.0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 524 kB
  • sloc: cpp: 3,821; xml: 24; makefile: 5
file content (106 lines) | stat: -rw-r--r-- 3,047 bytes parent folder | download
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
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * Copyright (C) 2019 Tianjin KYLIN Information Technology Co., Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 */
#include "emdaemon.h"

#include <X11/extensions/XInput.h>
#include <X11/Xatom.h>

EMDaemon::EMDaemon()
{

    iface = new QDBusInterface("org.ukui.kds", \
                               "/", \
                               "org.ukui.kds.interface", \
                               QDBusConnection::systemBus());

    QMap<QString, QString> keyWord1;
    QMap<QString, QString> keyWord2;
    QMap<QString, QString> keyWord3;
    keyWord1.insert("N: Name", "2 keyboard");
//    keyWord1.insert("P: Phys", "input0");
    keyWord2.insert("N: Name", "Hotkey");
    keyWord3.insert("N: Name", "SCI_EVT");

    QList<QMap<QString, QString>> filters;
    filters.append(keyWord1);
    filters.append(keyWord2);
    filters.append(keyWord3);


    for (QMap<QString, QString> k : filters){
        QThread * thrd = new QThread;
        EventMonitorThread * emt = new EventMonitorThread(k);

        emts.append(emt);

        connect(emt, &EventMonitorThread::eventMeet, this, [=](int code){

            iface->call("emitMediaKeyTrans", code);

        }, Qt::QueuedConnection);

        connect(emt, &EventMonitorThread::jobComplete, this, [=]{
            thrd->quit(); //退出事件循环
            thrd->wait(); //释放资源
        });

        connect(thrd, &QThread::started, emt, &EventMonitorThread::run);

        connect(thrd, &QThread::finished, emt, &EventMonitorThread::deleteLater);


        emt->moveToThread(thrd);

        thrd->start();
    }


    //rfkill monitor start
    thrd2 = new QThread;
    rmt = new RfkillMonitorthread;

    connect(rmt, &RfkillMonitorthread::statusChanged, this, [=]{
        iface->call("emitRfkillStatusChanged");
    }, Qt::QueuedConnection);

    connect(rmt, &RfkillMonitorthread::jobComplete, this, [=]{
        thrd2->quit();
        thrd2->wait();
    });

    connect(thrd2, &QThread::started, rmt, &RfkillMonitorthread::run);
    connect(thrd2, &QThread::finished, rmt, &RfkillMonitorthread::deleteLater);

    rmt->moveToThread(thrd2);

    thrd2->start();

}

EMDaemon::~EMDaemon(){

    for (EventMonitorThread * emt : emts){
        emt->callJobComplete();
    }

    rmt->callJobComplete();

    delete iface;
}