-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.cpp
110 lines (100 loc) · 3.14 KB
/
common.cpp
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
#include "common.h"
#include <QStandardPaths>
QString desktopPath=QStandardPaths::writableLocation(QStandardPaths::DesktopLocation);;
QString workspacePath=desktopPath+"/bsign_workspace";
QString optoolFilePath =workspacePath+"/sign/optool";
Common::Common()
{
}
//读取本地电脑安装的证书
QStringList Common::readCert(){
QProcess *process = new QProcess;
QStringList shellOptions;
shellOptions << "-c";
shellOptions << "security find-identity -v | awk 'NR!=1{print p}{p=$0}' | awk -F '\"' '{print $2}'";
process->start("/bin/bash",shellOptions);
process->waitForFinished();
QString result = process->readAllStandardOutput();
process->close();
QStringList ccNamesList=result.split("\n");
ccNamesList.removeAt(ccNamesList.size()-1);
// QStringList ccNames;
// for(QString ccName:ccNamesList){
// QString cName=ccName.mid(0,20);
// if(cName =="iPhone Distribution:"){
// ccNames.append(ccName);
// }
// }
// return ccNames;
return ccNamesList;
}
//读取本地电脑序列号
QString Common::readSN(){
QStringList snParams;
snParams << "-c";
snParams << "ioreg -rd1 -c IOPlatformExpertDevice | awk '/IOPlatformSerialNumber/ { print $3; }'";
QProcess *p = new QProcess;
p->start("/bin/bash",snParams);
p->waitForFinished();
QString sn=p->readAllStandardOutput().trimmed().replace("\"","");
return sn;
}
QString Common::execShell(QString cmd){
qDebug() << "执行shell命令:"+cmd;
QProcess *process = new QProcess;
QStringList shellOptions;
shellOptions << "-c";
shellOptions << cmd;
process->start("/bin/bash",shellOptions);
process->waitForFinished();
QString result = process->readAllStandardOutput();
process->close();
return result.replace("\n","");
}
QString Common::getMobileProvisionPath(QString cnName,bool isPush){
qDebug() << "工作空间:"+workspacePath;
cnName=cnName.replace(QRegExp("/"), ":");
QFileInfoList fileInfoList=GetFileList(workspacePath+"/"+cnName);
if(fileInfoList.size()<1){
return "";
}
QString filePath;
for(QFileInfo fileInfo:fileInfoList){
QString baseName=fileInfo.baseName();
QString suffix=fileInfo.suffix();
if(suffix!="mobileprovision"){
continue;
}
QString pushFlag=baseName.mid(baseName.size()-5);
if(isPush){
if(pushFlag=="_push"){
filePath = fileInfo.filePath();
break;
}
}else{
if(pushFlag!="_push"){
filePath = fileInfo.filePath();
break;
}
}
}
return filePath;
}
bool Common::deleteDirectory(const QString &path)
{
if (path.isEmpty())
return false;
QDir dir(path);
if(!dir.exists())
return true;
dir.setFilter(QDir::AllEntries | QDir::NoDotAndDotDot);
QFileInfoList fileList = dir.entryInfoList();
foreach (QFileInfo fi, fileList)
{
if (fi.isFile())
fi.dir().remove(fi.fileName());
else
deleteDirectory(fi.absoluteFilePath());
}
return dir.rmpath(dir.absolutePath());
}