blob: 3e6cb15eae3efb5939552678c6c0754e519fa23a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
// This is the backend class for interacting with the "git" utility
//===========================================
#ifndef _LUMINA_FM_GIT_COMPAT_H
#define _LUMINA_FM_GIT_COMPAT_H
#include <QProcess>
#include <QString>
#include <QProcessEnvironment>
#include <QDebug>
#include <QTemporaryFile>
#include <LuminaUtils.h>
#include <unistd.h>
class GitProcess : public QProcess{
Q_OBJECT
private:
QString log;
QFile tmpfile;
public:
GitProcess();
~GitProcess();
//Optional Inputs
void setSSHPassword(QString pass); //This is only used for SSH access
private slots:
void cleanup();
//void printoutput(){ qDebug() << "Proc Output:" << this->readAllStandardOutput(); }
protected:
virtual void setupChildProcess(){
//Need to disable the controlling terminal within this process
setsid(); //Make current process new session leader - resulting in no controlling terminal for this session
}
};
class GIT{
public:
//Check if the git utility is installed and available
static bool isAvailable(){
QString bin = "git";
return LUtils::isValidBinary(bin);
}
//Return if the current directory is a git repository
static bool isRepo(QString dir){
QProcess P;
P.setProcessEnvironment(QProcessEnvironment::systemEnvironment());
P.setWorkingDirectory(dir);
P.start("git",QStringList() <<"status" << "--porcelain" );
P.waitForFinished();
return (0==P.exitCode());
}
//Return the current status of the repository
static QString status(QString dir){
QProcess P;
P.setProcessEnvironment(QProcessEnvironment::systemEnvironment());
P.setWorkingDirectory(dir);
P.setProcessChannelMode(QProcess::MergedChannels);
P.start("git",QStringList() <<"status" );
P.waitForFinished();
return P.readAllStandardOutput();
}
//Setup a process for running the clone operation (so the calling process can hook up any watchers and start it when ready)
static GitProcess* setupClone(QString indir, QString url, QString branch = "", int depth = -1){
//NOTE: The returned QProcess needs to be cleaned up when finished
GitProcess *P = new GitProcess();
P->setWorkingDirectory(indir);
P->setProgram("git");
QStringList args;
args << "clone" << "--progress";
if(!branch.isEmpty()){ args << "-b" << branch; }
if(depth>0){ args << "--depth" << QString::number(depth); }
args << url;
P->setArguments(args);
return P;
}
};
#endif
|