2023-01-15 13:26:14 +01:00
|
|
|
#include "mainwindow.h"
|
2023-01-07 12:44:45 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#define READ 0
|
|
|
|
#define WRITE 1
|
|
|
|
|
2023-02-10 21:32:20 +01:00
|
|
|
extern QMap<int, QString> rsyncErrorStrings;
|
|
|
|
|
2023-01-23 23:42:20 +01:00
|
|
|
//Take a string and explode it in array
|
|
|
|
// s => string to explode
|
|
|
|
// c => character separator
|
|
|
|
// n => number of results in array, the last is the rest of string to end
|
2023-01-07 12:44:45 +01:00
|
|
|
const vector<string> explode(const string& s, const char& c, int n = 0)
|
|
|
|
{
|
|
|
|
string buff;
|
|
|
|
vector<string> v;
|
|
|
|
size_t pos = 0;
|
|
|
|
size_t ppos = 0;
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
while (i < n - 1)
|
|
|
|
{
|
|
|
|
pos = s.find(c, ppos);
|
|
|
|
if (pos != string::npos)
|
|
|
|
{
|
|
|
|
buff = s.substr(ppos, pos - ppos);
|
|
|
|
if (buff != "")
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
v.push_back(s.substr(ppos, pos - ppos));
|
|
|
|
}
|
|
|
|
ppos = pos + 1;
|
|
|
|
}else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ppos < s.size())
|
|
|
|
{
|
|
|
|
v.push_back(s.substr(ppos));
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2023-02-10 23:27:44 +01:00
|
|
|
// test return code of rsync
|
2023-02-10 21:32:20 +01:00
|
|
|
bool testRsyncReturn(QProcess * myProcess)
|
2023-01-07 12:44:45 +01:00
|
|
|
{
|
2023-02-10 21:32:20 +01:00
|
|
|
if (myProcess->exitStatus() != 0)
|
2023-01-07 12:44:45 +01:00
|
|
|
{
|
2023-01-18 23:12:21 +01:00
|
|
|
QMessageBox::warning(
|
2023-02-10 21:32:20 +01:00
|
|
|
NULL,
|
|
|
|
"RsyncUI",
|
|
|
|
myProcess->errorString(),
|
|
|
|
QMessageBox::Ok,
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return true;
|
|
|
|
}else if (myProcess->exitCode() != 0)
|
2023-01-07 12:44:45 +01:00
|
|
|
{
|
2023-02-10 21:32:20 +01:00
|
|
|
QMessageBox::warning(
|
|
|
|
NULL,
|
|
|
|
"RsyncUI",
|
|
|
|
rsyncErrorStrings[myProcess->exitCode()],
|
|
|
|
QMessageBox::Ok,
|
|
|
|
QMessageBox::Ok);
|
|
|
|
return true;
|
2023-01-07 12:44:45 +01:00
|
|
|
}
|
2023-02-10 21:32:20 +01:00
|
|
|
return false;
|
2023-01-07 12:44:45 +01:00
|
|
|
}
|