-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainwindow.cpp
More file actions
123 lines (110 loc) · 2.7 KB
/
Copy pathmainwindow.cpp
File metadata and controls
123 lines (110 loc) · 2.7 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
git_config();
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::git_config()
{
MainWindow::init_repositories();
ui->comboBox->addItems(MainWindow::git_repositories);
}
void MainWindow::init_repositories(){
// read line
std::string line;
std::ifstream file(QCoreApplication::applicationDirPath().toStdString()+"/repositories.ini");
while(std::getline(file,line)){
MainWindow::git_repositories.append(QString::fromStdString(line));
}
}
/**
* @brief executeLinuxCmd
* @param strCmd
* @return
*/
QString MainWindow::executeLinuxCmd(QString strCmd)
{
QProcess p;
p.start("bash", QStringList() << "-c" << strCmd);
p.waitForFinished();
QString strResult = p.readAllStandardOutput();
return strResult;
}
/**
* @brief isFloderExist
* @param path
* @return
*/
bool MainWindow::isFloderExist(QString path)
{
DIR *dp;
if ((dp = opendir(path.toStdString().data())) == NULL)
{
return false;
}
closedir(dp);
return true;
}
bool MainWindow::isFileExist(std::string path)
{
if (access(path.data(), F_OK) == -1)
{
return false;
}
return true;
}
/**
* @brief MainWindow::on_gitAdd_clicked
*/
void MainWindow::on_gitAdd_clicked()
{
if (!isFloderExist(ui->comboBox->currentText()))
{
ui->statusMsg->setText("path error!");
return;
}
QString strResult = executeLinuxCmd("git -C " + ui->comboBox->currentText() + " add .");
ui->statusMsg->setText(strResult);
}
/**
* @brief MainWindow::on_gitStatus_clicked
*/
void MainWindow::on_gitStatus_clicked()
{
if (!isFloderExist(ui->comboBox->currentText()))
{
ui->statusMsg->setText("path error!");
return;
}
QString strResult = executeLinuxCmd("git -C " + ui->comboBox->currentText() + " status");
ui->statusMsg->setText(strResult);
}
/**
* @brief MainWindow::on_gitCommit_clicked
*/
void MainWindow::on_gitCommit_clicked()
{
QString commit_msg = ui->commitMsg->text();
if (commit_msg.isEmpty())
{
ui->statusMsg->setText("commit context is empty!");
return;
}
QString strResult = executeLinuxCmd("git -C " + ui->comboBox->currentText() + " commit -m \"" + commit_msg + "\"");
ui->statusMsg->setText(strResult);
}
/**
* @brief MainWindow::on_gitPush_clicked
*/
void MainWindow::on_gitPush_clicked()
{
QString strResult = executeLinuxCmd("git -C " + ui->comboBox->currentText() + " push -u");
ui->statusMsg->setText(strResult);
ui->commitMsg->clear();
}