mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2217135336
* Correct stopEnableAttemptsTimer thread affinity * Restart correctly, if running as service * Add instance# in API response * Qt6 updates * Update fallthrough guide * Update Compile warning
94 lines
2.0 KiB
C++
94 lines
2.0 KiB
C++
#ifdef _WIN32
|
|
#include <QCoreApplication>
|
|
#include <QProcess>
|
|
#include <utils/Logger.h>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
|
|
namespace Process {
|
|
|
|
void restartHyperion(int exitCode)
|
|
{
|
|
Logger* log = Logger::getInstance("Process");
|
|
Info(log, "Restarting hyperion ...");
|
|
|
|
auto arguments = QCoreApplication::arguments();
|
|
if (!arguments.contains("--wait-hyperion"))
|
|
arguments << "--wait-hyperion";
|
|
|
|
QProcess::startDetached(QCoreApplication::applicationFilePath(), arguments);
|
|
|
|
//Exit with non-zero code to ensure service deamon restarts hyperion
|
|
QCoreApplication::exit(exitCode);
|
|
}
|
|
|
|
QByteArray command_exec(const QString& /*cmd*/, const QByteArray& /*data*/)
|
|
{
|
|
return QSTRING_CSTR(QString());
|
|
}
|
|
};
|
|
|
|
#else
|
|
|
|
#include <utils/Process.h>
|
|
#include <utils/Logger.h>
|
|
|
|
#include <QCoreApplication>
|
|
#include <QProcess>
|
|
#include <QStringList>
|
|
|
|
#include <unistd.h>
|
|
#include <cstdio>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <stdexcept>
|
|
|
|
#include <csignal>
|
|
|
|
#include <QDebug>
|
|
#include <QMetaObject>
|
|
|
|
namespace Process {
|
|
|
|
|
|
void restartHyperion(int exitCode)
|
|
{
|
|
Logger* log = Logger::getInstance("Process");
|
|
Info(log, "Restarting hyperion ...");
|
|
|
|
std::cout << std::endl
|
|
<< " *******************************************" << std::endl
|
|
<< " * hyperion will restart now *" << std::endl
|
|
<< " *******************************************" << std::endl << std::endl;
|
|
|
|
auto arguments = QCoreApplication::arguments();
|
|
if (!arguments.contains("--wait-hyperion"))
|
|
arguments << "--wait-hyperion";
|
|
|
|
QProcess::startDetached(QCoreApplication::applicationFilePath(), arguments);
|
|
|
|
//Exit with non-zero code to ensure service deamon restarts hyperion
|
|
QCoreApplication::exit(exitCode);
|
|
}
|
|
|
|
QByteArray command_exec(const QString& cmd, const QByteArray& /*data*/)
|
|
{
|
|
char buffer[128];
|
|
QString result;
|
|
|
|
std::shared_ptr<FILE> pipe(popen(cmd.toLocal8Bit().constData(), "r"), pclose);
|
|
if (pipe)
|
|
{
|
|
while (!feof(pipe.get()))
|
|
{
|
|
if (fgets(buffer, 128, pipe.get()) != nullptr)
|
|
result += buffer;
|
|
}
|
|
}
|
|
return QSTRING_CSTR(result);
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|