reworked executeProcess command

This commit is contained in:
Syping 2020-05-16 16:09:32 +02:00
parent f67f3c0365
commit 2879ae33ed

View file

@ -39,17 +39,9 @@ int LuaEngineOS::executeProcess(lua_State *L_p)
bool runInBackground = false;
bool processSuccessed = false;
if (getArgumentCount(L_p) >= 2) {
QVariantList arguments = getArguments(L_p);
QVariant lastArgument = arguments.last();
if (lastArgument.type() == QVariant::Bool) {
runInBackground = lastArgument.toBool();
arguments.removeLast();
}
if (arguments.length() >= 2) {
QStringList processArguments;
QString processPath = arguments.first().toString();
arguments.removeFirst();
for (const QVariant &argument : arguments) {
QString processPath = getVariant(L_p, 1).toString();
QVariant argument = getVariant(L_p, 2);
if ((QMetaType::Type)argument.type() == QMetaType::QVariantMap) {
QVariantMap argumentMap = argument.toMap();
QVariantMap::const_iterator it = argumentMap.constBegin();
@ -59,9 +51,17 @@ int LuaEngineOS::executeProcess(lua_State *L_p)
it++;
}
}
else if (argument.type() == QVariant::Bool) {
runInBackground = argument.toBool();
}
else {
processArguments << argument.toString();
}
if (getArgumentCount(L_p) >= 3) {
if (argument.type() == QVariant::Bool) {
processArguments << argument.toString();
}
runInBackground = getVariant(L_p, 3).toBool();
}
if (runInBackground) {
processSuccessed = QProcess::startDetached(processPath, processArguments);
@ -70,15 +70,6 @@ int LuaEngineOS::executeProcess(lua_State *L_p)
processReturn = QProcess::execute(processPath, processArguments);
}
}
else {
if (runInBackground) {
processSuccessed = QProcess::startDetached(arguments.first().toString());
}
else {
processReturn = QProcess::execute(arguments.first().toString());
}
}
}
else {
processReturn = QProcess::execute(getVariant(L_p, 1).toString());
}