forked from openkylin/ukui-search
Add a systembus iface for add inotify_max_user_instance, avoid inotify_init fail.
This commit is contained in:
parent
316a4ae815
commit
2daf23f7bd
|
@ -133,9 +133,17 @@ void InotifyWatch::run()
|
||||||
if (m_inotifyFd > 0) {
|
if (m_inotifyFd > 0) {
|
||||||
qDebug()<<"Inotify init success!";
|
qDebug()<<"Inotify init success!";
|
||||||
} else {
|
} else {
|
||||||
printf("errno=%d\n",errno);
|
qWarning() << "Inotify init fail! Now try add inotify_user_instances.";
|
||||||
printf("Mesg:%s\n",strerror(errno));
|
UkuiSearchQDBus usQDBus;
|
||||||
Q_ASSERT_X(0, "InotifyWatch", "Failed to initialize inotify");
|
usQDBus.addInotifyUserInstances(128);
|
||||||
|
m_inotifyFd = inotify_init();
|
||||||
|
if (m_inotifyFd > 0) {
|
||||||
|
qDebug()<<"Inotify init success!";
|
||||||
|
} else {
|
||||||
|
printf("errno=%d\n",errno);
|
||||||
|
printf("Mesg:%s\n",strerror(errno));
|
||||||
|
Q_ASSERT_X(0, "InotifyWatch", "Failed to initialize inotify");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this->addWatch(QStandardPaths::writableLocation(QStandardPaths::HomeLocation));
|
this->addWatch(QStandardPaths::writableLocation(QStandardPaths::HomeLocation));
|
||||||
|
|
|
@ -42,5 +42,15 @@ void UkuiSearchQDBus::setInotifyMaxUserWatches() {
|
||||||
// sysctl
|
// sysctl
|
||||||
this->tmpSystemQDBusInterface->call("setInotifyMaxUserWatchesStep2");
|
this->tmpSystemQDBusInterface->call("setInotifyMaxUserWatchesStep2");
|
||||||
// /etc/sysctl.conf
|
// /etc/sysctl.conf
|
||||||
// this->tmpSystemQDBusInterface->call("setInotifyMaxUserWatchesStep3");
|
// this->tmpSystemQDBusInterface->call("setInotifyMaxUserWatchesStep3");
|
||||||
|
}
|
||||||
|
|
||||||
|
int UkuiSearchQDBus::addInotifyUserInstances(int addNum)
|
||||||
|
{
|
||||||
|
QDBusReply<int> reply = tmpSystemQDBusInterface->call("AddInotifyMaxUserInstance", addNum);
|
||||||
|
if(reply.isValid()) {
|
||||||
|
qDebug() << "Set inotify_max_user_instances to" << reply.value();
|
||||||
|
} else {
|
||||||
|
qWarning() << "Call AddInotifyMaxUserInstance failed!";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,12 +21,14 @@
|
||||||
#define UKUISEARCHQDBUS_H
|
#define UKUISEARCHQDBUS_H
|
||||||
|
|
||||||
#include <QDBusInterface>
|
#include <QDBusInterface>
|
||||||
|
#include <QDBusReply>
|
||||||
namespace Zeeker {
|
namespace Zeeker {
|
||||||
class UkuiSearchQDBus {
|
class UkuiSearchQDBus {
|
||||||
public:
|
public:
|
||||||
UkuiSearchQDBus();
|
UkuiSearchQDBus();
|
||||||
~UkuiSearchQDBus();
|
~UkuiSearchQDBus();
|
||||||
void setInotifyMaxUserWatches();
|
void setInotifyMaxUserWatches();
|
||||||
|
int addInotifyUserInstances(int addNum);
|
||||||
private:
|
private:
|
||||||
QDBusInterface* tmpSystemQDBusInterface;
|
QDBusInterface* tmpSystemQDBusInterface;
|
||||||
};
|
};
|
||||||
|
|
|
@ -102,6 +102,36 @@ QString SysdbusRegister::setInotifyMaxUserWatchesStep3() {
|
||||||
return QString(ba);
|
return QString(ba);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int SysdbusRegister::AddInotifyMaxUserInstance(int addNum)
|
||||||
|
{
|
||||||
|
QFile file("/proc/sys/fs/inotify/max_user_instances");
|
||||||
|
if(!file.open(QIODevice::ReadOnly | QIODevice::Text))
|
||||||
|
return -1;
|
||||||
|
QTextStream ts(&file);
|
||||||
|
QString s = ts.read(512);
|
||||||
|
int instances = s.toInt() + addNum;
|
||||||
|
|
||||||
|
QByteArray ba;
|
||||||
|
FILE * fp = NULL;
|
||||||
|
char cmd[128];
|
||||||
|
char buf[1024];
|
||||||
|
sprintf(cmd, "sysctl -w fs.inotify.max_user_instances=\"%d\"", instances);
|
||||||
|
if((fp = popen(cmd, "r")) != NULL) {
|
||||||
|
rewind(fp);
|
||||||
|
while(!feof(fp)) {
|
||||||
|
fgets(buf, sizeof(buf), fp);
|
||||||
|
ba.append(buf);
|
||||||
|
}
|
||||||
|
pclose(fp);
|
||||||
|
fp = NULL;
|
||||||
|
} else {
|
||||||
|
qWarning() << "popen open failed";
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return instances;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
//The following example comes from control center
|
//The following example comes from control center
|
||||||
|
|
||||||
//void SysdbusRegister::setAutoLoginStatus(QString username) {
|
//void SysdbusRegister::setAutoLoginStatus(QString username) {
|
||||||
|
|
|
@ -52,6 +52,7 @@ public slots:
|
||||||
Q_SCRIPTABLE QString setInotifyMaxUserWatchesStep1();
|
Q_SCRIPTABLE QString setInotifyMaxUserWatchesStep1();
|
||||||
Q_SCRIPTABLE QString setInotifyMaxUserWatchesStep2();
|
Q_SCRIPTABLE QString setInotifyMaxUserWatchesStep2();
|
||||||
Q_SCRIPTABLE QString setInotifyMaxUserWatchesStep3();
|
Q_SCRIPTABLE QString setInotifyMaxUserWatchesStep3();
|
||||||
|
Q_SCRIPTABLE int AddInotifyMaxUserInstance(int addNum);
|
||||||
|
|
||||||
// // 设置免密登录状态
|
// // 设置免密登录状态
|
||||||
// Q_SCRIPTABLE void setNoPwdLoginStatus();
|
// Q_SCRIPTABLE void setNoPwdLoginStatus();
|
||||||
|
|
Loading…
Reference in New Issue