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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "MainUI.h"
#include "ui_MainUI.h"
#include <QMessageBox>
#include <QFileDialog>
#include <LuminaXDG.h>
#include <LUtils.h>
#include "imgDialog.h"
#include <unistd.h>
#include <QDebug>
MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){
ui->setupUi(this);
delayClose = new QTimer(this);
delayClose->setInterval(500);
delayClose->setSingleShot(true);
connect(delayClose, SIGNAL(timeout()), this, SLOT(close()) );
QString title = tr("Archive Manager");
if( getuid()==0){ title.append(" ("+tr("Admin Mode")+")"); }
this->setWindowTitle(title);
BACKEND = new Backend(this);
connect(BACKEND, SIGNAL(ProcessStarting()), this, SLOT(ProcStarting()) );
connect(BACKEND, SIGNAL(ProcessFinished(bool, QString)), this, SLOT(ProcFinished(bool, QString)) );
connect(BACKEND, SIGNAL(ProgressUpdate(int, QString)), this, SLOT(ProcUpdate(int, QString)) );
//Add a spacer between toolbar items
QWidget *spacer = new QWidget(this);
spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
ui->toolBar->insertWidget(ui->actionAdd_File, spacer);
//Connect the UI signals/slots
connect(ui->action_New, SIGNAL(triggered()), this, SLOT(NewArchive()) );
connect(ui->action_Open, SIGNAL(triggered()), this, SLOT(OpenArchive()) );
connect(ui->action_Quit, SIGNAL(triggered()), this, SLOT(close()) );
connect(ui->actionAdd_File, SIGNAL(triggered()), this, SLOT(addFiles()) );
connect(ui->actionRemove_File, SIGNAL(triggered()), this, SLOT(remFiles()) );
connect(ui->actionExtract_All, SIGNAL(triggered()), this, SLOT(extractFiles()) );
connect(ui->actionExtract_Sel, SIGNAL(triggered()), this, SLOT(extractSelection()) );
connect(ui->actionAdd_Dirs, SIGNAL(triggered()), this, SLOT(addDirs()) );
connect(ui->tree_contents, SIGNAL(itemDoubleClicked(QTreeWidgetItem*, int)), this, SLOT(ViewFile(QTreeWidgetItem*)) );
connect(ui->actionUSB_Image, SIGNAL(triggered()), this, SLOT(BurnImgToUSB()) );
connect(ui->tree_contents, SIGNAL(itemSelectionChanged()), this, SLOT(selectionChanged()) );
//Set Keyboard Shortcuts
ui->action_New->setShortcut(tr("CTRL+N"));
ui->action_Open->setShortcut(tr("CTRL+O"));
ui->action_Quit->setShortcut(tr("CTRL+Q"));
ui->actionExtract_All->setShortcut(tr("CTRL+E"));
ui->progressBar->setVisible(false);
ui->label_progress->setVisible(false);
ui->label_progress_icon->setVisible(false);
ui->actionAdd_File->setEnabled(false);
ui->actionRemove_File->setEnabled(false);
ui->actionExtract_All->setEnabled(false);
ui->actionAdd_Dirs->setEnabled(false);
ui->actionUSB_Image->setEnabled(false);
loadIcons();
ui->tree_contents->setHeaderLabels( QStringList() << tr("File") << tr("MimeType") << tr("Size")+" " );
preservePaths = false;
}
MainUI::~MainUI(){
}
void MainUI::LoadArguments(QStringList args){
int action = -1; // 0: burnIMG, 1: autoExtract, 2: autoArchive
QStringList files;
for(int i=0; i<args.length(); i++){
if(args[i].startsWith("--") ){
if(action>=0){ break; }
else if(args[i]=="--burn-img"){ action = 0; continue; }
else if(args[i]=="--ax"){ action = 1; continue; }
else if(args[i]=="--aa"){ action = 2; continue; }
else if(args[i]=="--sx"){ action = 3; continue; }
}else{
files << args[i];
}
}
if(files.isEmpty()){ return; }
//Now go through and do any actions as needed
ui->label_progress->setText(tr("Opening Archive..."));
if(action==1){
//qDebug() << "blah";
connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) );
connect(BACKEND, SIGNAL(ExtractSuccessful()), delayClose, SLOT(start()) );
}else if(action==2){
aaFileList = files;
aaFileList.removeFirst();
//for(int j=1; j<files.length(); j++){ aaFileList << files[j]; }
qDebug() << "AA Files:" << aaFileList;
connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoArchiveFiles()) );
connect(BACKEND, SIGNAL(ArchivalSuccessful()), delayClose, SLOT(start()) );
}else if(action==3 && files.length()==2){
sxFile = files[0];
sxPath = files[1];
connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(simpleExtractFiles()) );
connect(BACKEND, SIGNAL(ExtractSuccessful()), delayClose, SLOT(start()) );
}
BACKEND->loadFile(files[0]);
ui->actionUSB_Image->setEnabled(files[0].simplified().endsWith(".img") || files[0].simplified().endsWith(".iso"));
if(action==0){ BurnImgToUSB(); } //Go ahead and launch the burn dialog right away
}
void MainUI::loadIcons(){
this->setWindowIcon( LXDG::findIcon("utilities-file-archiver","") );
ui->action_New->setIcon( LXDG::findIcon("file-new", "document-new") );
ui->action_Open->setIcon( LXDG::findIcon("file-open","document-open") );
ui->action_Quit->setIcon( LXDG::findIcon("application-exit", "dialog-close") );
ui->actionAdd_File->setIcon( LXDG::findIcon("archive-insert", "") );
ui->actionAdd_Dirs->setIcon( LXDG::findIcon("archive-insert-directory","") );
ui->actionRemove_File->setIcon( LXDG::findIcon("archive-remove","") );
ui->actionExtract_All->setIcon( LXDG::findIcon("archive-extract","") );
ui->actionExtract_Sel->setIcon( LXDG::findIcon("edit-select-all","") );
ui->actionUSB_Image->setIcon( LXDG::findIcon("drive-removable-media-usb-pendrive","drive-removable-media-usb") );
}
//===================
// PRIVATE
//===================
QTreeWidgetItem* MainUI::findItem(QString path, QTreeWidgetItem *start){
if(start==0){
for(int i=0; i<ui->tree_contents->topLevelItemCount(); i++){
if(ui->tree_contents->topLevelItem(i)->whatsThis(0) == path){ return ui->tree_contents->topLevelItem(i); }
else if(path.startsWith(ui->tree_contents->topLevelItem(i)->whatsThis(0)+"/")){ return findItem(path, ui->tree_contents->topLevelItem(i)); }
}
}else{
for(int i=0; i<start->childCount(); i++){
if(start->child(i)->whatsThis(0) == path){ return start->child(i); }
else if(path.startsWith(start->child(i)->whatsThis(0)+"/")){ return findItem(path, start->child(i)); }
}
}
return 0; //nothing found
}
bool MainUI::cleanItems(QStringList list, QTreeWidgetItem *start){
//Quick detection for an empty list
if(list.isEmpty() && ui->tree_contents->topLevelItemCount()>0){
ui->tree_contents->clear();
return true;
}
//Recursive resolution of items
bool changed = false;
if(start==0){
for(int i=0; i<ui->tree_contents->topLevelItemCount(); i++){
changed = changed || cleanItems(list, ui->tree_contents->topLevelItem(i));
if(!list.contains(ui->tree_contents->topLevelItem(i)->whatsThis(0)) ){
delete ui->tree_contents->topLevelItem(i);
changed = true;
}
}
}else{
for(int i=0; i<start->childCount(); i++){
changed = changed || cleanItems(list, start->child(i));
if(!list.contains(start->child(i)->whatsThis(0)) ){
delete start->child(i);
changed = true;
}
}
}
return changed;
}
//Functions for setting the valid file extensions ("tar" limitations)
QString MainUI::CreateFileTypes(){
QStringList types;
types << QString(tr("All Types %1")).arg("(*.tar.gz *.tar.xz *.tar.bz *.tar.bz2 *.tar.lzma *.tar *.zip *.tgz *.txz *.tbz *.tbz2 *.tlz *.cpio *.pax *.ar *.shar *.7z)");
types << tr("Uncompressed Archive (*.tar)");
types << tr("GZip Compressed Archive (*.tar.gz *.tgz)");
types << tr("BZip Compressed Archive (*.tar.bz *.tbz)");
types << tr("BZip2 Compressed Archive (*.tar.bz2 *.tbz2)");
types << tr("LMZA Compressed Archive (*.tar.lzma *.tlz)");
types << tr("XZ Compressed Archive (*.tar.xz *.txz)");
types << tr("CPIO Archive (*.cpio)");
types << tr("PAX Archive (*.pax)");
types << tr("AR Archive (*.ar)");
types << tr("SHAR Archive (*.shar)");
types << tr("Zip Archive (*.zip)");
types << tr("7-Zip Archive (*.7z)");
return types.join(";;");
}
QString MainUI::OpenFileTypes(){
QStringList types;
types << QString(tr("All Known Types %1")).arg("(*.tar.gz *.tar.xz *.tar.bz *.tar.bz2 *.tar.lzma *.tar *.zip *.tgz *.txz *.tbz *.tbz2 *.tlz *.cpio *.pax *.ar *.shar *.7z *.iso *.img *.xar *.jar *.rpm)");
types << tr("Uncompressed Archive (*.tar)");
types << tr("GZip Compressed Archive (*.tar.gz *.tgz)");
types << tr("BZip Compressed Archive (*.tar.bz *.tbz)");
types << tr("BZip2 Compressed Archive (*.tar.bz2 *.tbz2)");
types << tr("XZ Compressed Archive (*.tar.xz *.txz)");
types << tr("LMZA Compressed Archive (*.tar.lzma *.tlz)");
types << tr("CPIO Archive (*.cpio)");
types << tr("PAX Archive (*.pax)");
types << tr("AR Archive (*.ar)");
types << tr("SHAR Archive (*.shar)");
types << tr("Zip Archive (*.zip)");
types << tr("7-Zip Archive (*.7z)");
types << tr("READ-ONLY: ISO image (*.iso *.img)");
types << tr("READ-ONLY: XAR archive (*.xar)");
types << tr("READ-ONLY: Java archive (*.jar)");
types << tr("READ-ONLY: RedHat Package (*.rpm)");
types << tr("Show All Files (*)");
return types.join(";;");
}
//===================
// PRIVATE SLOTS
//===================
void MainUI::NewArchive(){
QString file = QFileDialog::getSaveFileName(this, tr("Create Archive"), QDir::homePath(), CreateFileTypes() );
if(file.isEmpty()){ return; }
if(QFile::exists(file)){
if( !QFile::remove(file) ){ QMessageBox::warning(this, tr("Error"), QString(tr("Could not overwrite file:"))+"\n"+file); }
}
ui->label_progress->setText(""); //just clear it (this action is instant)
BACKEND->loadFile(file);
ui->actionUSB_Image->setEnabled(file.endsWith(".img"));
}
void MainUI::OpenArchive(){
QString file = QFileDialog::getOpenFileName(this, tr("Open Archive"), QDir::homePath(), OpenFileTypes() );
if(file.isEmpty()){ return; }
ui->label_progress->setText(tr("Opening Archive..."));
BACKEND->loadFile(file);
ui->actionUSB_Image->setEnabled(file.endsWith(".img"));
}
void MainUI::addFiles(){
QStringList files = QFileDialog::getOpenFileNames(this, tr("Add to Archive"), QDir::homePath() );
if(files.isEmpty()){ return; }
ui->label_progress->setText(tr("Adding Items..."));
BACKEND->startAdd(files);
}
void MainUI::addDirs(){
QString dirs = QFileDialog::getExistingDirectory(this, tr("Add to Archive"), QDir::homePath() );
if(dirs.isEmpty()){ return; }
ui->label_progress->setText(tr("Adding Items..."));
BACKEND->startAdd(QStringList() << dirs);
}
void MainUI::remFiles(){
QList<QTreeWidgetItem*> sel = ui->tree_contents->selectedItems();
QStringList items;
for(int i=0; i<sel.length(); i++){
items << sel[i]->whatsThis(0);
}
items.removeDuplicates();
ui->label_progress->setText(tr("Removing Items..."));
BACKEND->startRemove(items);
}
void MainUI::extractFiles(){
QString dir = QFileDialog::getExistingDirectory(this, tr("Extract Into Directory"), QDir::homePath() );
if(dir.isEmpty()){ return; }
ui->label_progress->setText(tr("Extracting..."));
BACKEND->startExtract(dir, true);
}
void MainUI::autoextractFiles(){
disconnect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) );
QString dir = BACKEND->currentFile().section("/",0,-2); //parent directory of the archive
if(dir.isEmpty()){ return; }
QDir tmp(dir);
QString name = BACKEND->currentFile().section("/",-1).section(".",0,0);
if(QFile::exists(dir+"/"+name)){
int num = 1;
while( QFile::exists(dir+"/"+name+"_"+QString::number(num))){ num++; }
name = name+"_"+QString::number(num);
}
if(tmp.mkdir(name) ){
dir.append("/"+name); //created sub directory
}
ui->label_progress->setText(tr("Extracting..."));
BACKEND->startExtract(dir, true);
}
void MainUI::simpleExtractFiles(){
disconnect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) );
QString dir = sxPath;
ui->label_progress->setText(tr("Extracting..."));
BACKEND->startExtract(dir, true);
}
void MainUI::autoArchiveFiles(){
qDebug() << "Auto Archive Files:" << aaFileList;
ui->label_progress->setText(tr("Adding Items..."));
BACKEND->startAdd(aaFileList, true);
}
void MainUI::extractSelection(){
if(ui->tree_contents->currentItem()==0){ return; } //nothing selected
QList<QTreeWidgetItem*> sel = ui->tree_contents->selectedItems();
if(sel.isEmpty()){ sel << ui->tree_contents->currentItem(); }
QStringList selList;
for(int i=0; i<sel.length(); i++){ selList << sel[i]->whatsThis(0); }
selList.removeDuplicates();
QString dir = QFileDialog::getExistingDirectory(this, tr("Extract Into Directory"), QDir::homePath() );
if(dir.isEmpty()){ return; }
ui->label_progress->setText(tr("Extracting..."));
BACKEND->startExtract(dir, true, selList);
}
void MainUI::ViewFile(QTreeWidgetItem *it){
if(it->childCount()>0){ return; } //directory - not viewable
/*QString newfile = QDir::tempPath()+"/"+it->whatsThis(0).section("/",-1);
if(QFile::exists(newfile)){
if(QMessageBox::Yes != QMessageBox::question(this, tr("File exists"), tr("A temporary file with the same name already exists, do you want to overwrite it?")+"\n\n"+newfile, QMessageBox::Yes | QMessageBox::No, QMessageBox::No) ){
return; //cancelled
}
}*/
ui->label_progress->setText(tr("Extracting..."));
BACKEND->startViewFile(it->whatsThis(0));
}
void MainUI::UpdateTree(){
this->setEnabled(false);
ui->tree_contents->setHeaderLabels( QStringList() << tr("File") << tr("MimeType") << tr("Size")+" " );
QStringList files = BACKEND->heirarchy();
files.sort();
//Remove any entries for file no longer in the archive
bool changed = cleanItems(files);
for(int i=0; i<files.length(); i++){
if(0 != findItem(files[i]) ){ continue; } //already in the tree widget
QString mime = LXDG::findAppMimeForFile(files[i].section("/",-1), false); //first match only
QTreeWidgetItem *it = new QTreeWidgetItem();
it->setText(0, files[i].section("/",-1) );
if(!BACKEND->isLink(files[i])){
it->setText(1, LXDG::findAppMimeForFile(files[i].section("/",-1), false) );
it->setText(2, LUtils::BytesToDisplaySize( BACKEND->size(files[i])) );
}else{
it->setText(1, QString(tr("Link To: %1")).arg(BACKEND->linkTo(files[i]) ) );
}
it->setWhatsThis(0, files[i]);
if(BACKEND->isDir(files[i])){
it->setIcon(0, LXDG::findIcon("folder",""));
it->setText(1,""); //clear the mimetype
}else if(BACKEND->isLink(files[i])){
it->setIcon(0, LXDG::findIcon("emblem-symbolic-link","") );
}else{
it->setIcon(0, LXDG::findMimeIcon(files[i].section("/",-1)) );
}
//Now find which item to add this too
if(files[i].contains("/")){
QTreeWidgetItem *parent = findItem(files[i].section("/",0,-2));
QList<QTreeWidgetItem*> list = ui->tree_contents->findItems(files[i].section("/",-3,-2), Qt::MatchExactly, 0);
if(parent==0){ ui->tree_contents->addTopLevelItem(it); }
else{ parent->addChild(it); }
}else{
ui->tree_contents->addTopLevelItem(it);
QApplication::processEvents();
}
changed = true;
}
if(changed){
int wid = ui->tree_contents->fontMetrics().width("W")*5;
ui->tree_contents->setColumnWidth(2, wid);
for(int i=1; i<2; i++){ui->tree_contents->resizeColumnToContents(i); QApplication::processEvents(); wid+= ui->tree_contents->columnWidth(i); }
//qDebug() << "Set column 0 width:" << wid << ui->tree_contents->viewport()->width();
ui->tree_contents->setColumnWidth(0, ui->tree_contents->viewport()->width()-wid);
}
ui->tree_contents->sortItems(0, Qt::AscendingOrder); //sort by name
ui->tree_contents->sortItems(1,Qt::AscendingOrder); //sort by mimetype (put dirs first - still organized by name)
this->setEnabled(true);
ui->tree_contents->setEnabled(true);
}
void MainUI::BurnImgToUSB(){
imgDialog dlg(this);
dlg.loadIMG(BACKEND->currentFile());
dlg.exec();
}
//Backend Handling
void MainUI::ProcStarting(){
ui->progressBar->setRange(0,0);
ui->progressBar->setValue(0);
ui->progressBar->setVisible(true);
ui->label_progress->setVisible(!ui->label_progress->text().isEmpty());
ui->label_progress_icon->setVisible(false);
ui->tree_contents->setEnabled(false);
ui->label_archive->setText(BACKEND->currentFile());
}
void MainUI::ProcFinished(bool success, QString msg){
if(ui->label_archive->text()!=BACKEND->currentFile()){
ui->label_archive->setText(BACKEND->currentFile());
this->setWindowTitle(BACKEND->currentFile().section("/",-1));
ui->tree_contents->clear();
}
UpdateTree();
ui->progressBar->setRange(0,0);
ui->progressBar->setValue(0);
ui->progressBar->setVisible(false);
ui->label_progress->setText(msg);
ui->label_progress->setVisible(!msg.isEmpty());
ui->label_progress_icon->setVisible(!msg.isEmpty());
if(success){ ui->label_progress_icon->setPixmap( LXDG::findIcon("task-done","").pixmap(32,32) );}
else{ ui->label_progress_icon->setPixmap( LXDG::findIcon("task-question","").pixmap(32,32) );}
QFileInfo info(BACKEND->currentFile());
bool canmodify = info.isWritable();
if(!info.exists()){ canmodify = QFileInfo(BACKEND->currentFile().section("/",0,-2)).isWritable(); }
canmodify = canmodify && BACKEND->canModify(); //also include the file type limitations
ui->actionAdd_File->setEnabled(canmodify);
ui->actionRemove_File->setEnabled(canmodify && info.exists());
ui->actionExtract_All->setEnabled(info.exists() && ui->tree_contents->topLevelItemCount()>0);
ui->actionExtract_Sel->setEnabled(info.exists() && !ui->tree_contents->selectedItems().isEmpty());
ui->actionAdd_Dirs->setEnabled(canmodify);
}
void MainUI::ProcUpdate(int percent, QString txt){
ui->progressBar->setMaximum( percent<0 ? 0 : 100 );
ui->progressBar->setValue(percent);
if(!txt.isEmpty()){ ui->label_progress->setText(txt); }
}
void MainUI::selectionChanged(){
ui->actionExtract_Sel->setEnabled(!ui->tree_contents->selectedItems().isEmpty());
}
|