forked from lmq3342xja/fcitx-qimpanel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.cpp
158 lines (129 loc) · 4.3 KB
/
main.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
* Copyright (C) 2013 National University of Defense Technology(NUDT) & Kylin Ltd.
*
* Authors:
* lenky gao [email protected]/[email protected]
*
* 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; version 3.
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include "config.h"
#include <QDBusConnection>
#include <QDBusReply>
#include <QDBusConnectionInterface>
#include <QDebug>
#include <QTranslator>
#include <QTextCodec>
#include <QApplication>
#include <libintl.h>
#include <locale.h>
#include <fcitx-utils/utils.h>
#include "main.h"
#include "main_controller.h"
#define BUFF_SIZE (512)
char filePath[BUFF_SIZE] = {0};
#define LOCKFILE "/tmp/fcitx-qimpanel:%d.pid"
#define LOCKMODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
int isRunning()
{
char buf[16];
struct flock fl;
snprintf(filePath, BUFF_SIZE, LOCKFILE, fcitx_utils_get_display_number());
int fd = open(filePath, O_RDWR|O_CREAT, LOCKMODE);
chmod(filePath,0666);
if (fd < 0) {
printf("Can not open %s: %s.\n", filePath, strerror(errno));
return -1;
}
chmod(filePath, 0666);
fl.l_type = F_WRLCK;
fl.l_start = 0;
fl.l_whence = SEEK_SET;
fl.l_len = 0;
if (fcntl(fd, F_SETLK, &fl) < 0) {
printf("Can not lock %s: %s.\n", filePath, strerror(errno));
return -1;
}
ftruncate(fd, 0);
sprintf(buf, "%d\n", getpid());
write(fd, buf, strlen(buf));
return 0;
}
char* getQimpanelSharePath(const char * const fileName)
{
strcpy(filePath, PREFIX "/share/fcitx-qimpanel/");
strcpy(filePath + strlen(PREFIX "/share/fcitx-qimpanel/"), fileName);
printf("%s\n", filePath);
return filePath;
}
char* getQimpanelBinPath(const char * const fileName)
{
strcpy(filePath, PREFIX "/bin/");
strcpy(filePath + strlen(PREFIX "/bin/"), fileName);
printf("%s\n", filePath);
return filePath;
}
#define FCITX_DBUS_SERVICE "org.fcitx.Fcitx"
int fcitxIsNotRunning()
{
char* servicename = NULL;
asprintf(&servicename, "%s-%d", FCITX_DBUS_SERVICE,
fcitx_utils_get_display_number());
QDBusConnection conn = QDBusConnection::sessionBus();
if (!conn.isConnected())
return -1;
// ?? Always return false...
//QDBusReply<boolean> reply = conn.interface()->call("NameHasOwner", servicename);
QDBusReply<QString> reply = conn.interface()->call("GetNameOwner", servicename);
qDebug() << "reply.value():" << reply.value();
return reply.value() == "";
}
int main(int argc, char** argv)
{
fcitx_utils_init_as_daemon();
if (isRunning()) {
exit(1);
}
#ifdef IS_QT_5
#endif
#ifdef IS_QT_4
QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
QTextCodec::setCodecForTr(QTextCodec::codecForName("UTF-8"));
QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8"));
#endif
QApplication *app = new QApplication(argc, argv);
setlocale(LC_ALL,"");
bindtextdomain ("fcitx-qimpanel", PREFIX "/share/locale"); //告诉gettext最终的生成的翻译文件mo的位置
bind_textdomain_codeset("fcitx-qimpanel","UTF-8"); //指定域消息条目(mo)中消息的字符编码
textdomain("fcitx-qimpanel");//设定翻译环境,即指定使用gettext的翻译。
app->setApplicationName("fcitx-qimpanel");
int waittTick = 0;
int waitTime = 10;
while (waittTick ++ < waitTime && fcitxIsNotRunning()) {
qDebug() << "Fcitx not running.";
sleep(1);
}
qDebug() << "fcitxIsNotRunning():" << fcitxIsNotRunning();
if (waittTick >= waitTime)
return -1;
MainController *ctrl = MainController::self();
app->setQuitOnLastWindowClosed(false);
app->exec();
delete ctrl;
delete app;
return 0;
}