81 lines
1.8 KiB
C++
81 lines
1.8 KiB
C++
#include "mainwindow.h"
|
|
|
|
using namespace std;
|
|
|
|
#define READ 0
|
|
#define WRITE 1
|
|
|
|
extern QMap<int, QString> rsyncErrorStrings;
|
|
|
|
//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
|
|
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;
|
|
}
|
|
|
|
// test return code of rsync
|
|
bool testRsyncReturn(MainWindow * w, QProcess * myProcess)
|
|
{
|
|
if (myProcess->exitStatus() != 0)
|
|
{
|
|
QMessageBox::warning(
|
|
NULL,
|
|
"RsyncUI",
|
|
myProcess->errorString(),
|
|
QMessageBox::Ok,
|
|
QMessageBox::Ok);
|
|
return true;
|
|
}else if (myProcess->exitCode() == 5)
|
|
{
|
|
w->loginDialog.show();
|
|
}else if (myProcess->exitCode() != 0)
|
|
{
|
|
QMessageBox::warning(
|
|
NULL,
|
|
"RsyncUI",
|
|
rsyncErrorStrings[myProcess->exitCode()],
|
|
QMessageBox::Ok,
|
|
QMessageBox::Ok);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
QString getFileType(QString filename)
|
|
{
|
|
QMimeDatabase db;
|
|
QMimeType mime = db.mimeTypeForFile(filename);
|
|
QString returnValue = mime.name().section('/',1 ,1);
|
|
return returnValue;
|
|
}
|