summaryrefslogtreecommitdiff
path: root/noncore/settings
Unidiff
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/networkpkgmgr.cpp65
1 files changed, 61 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp
index 06e2a03..0bc01df 100644
--- a/noncore/settings/aqpkg/networkpkgmgr.cpp
+++ b/noncore/settings/aqpkg/networkpkgmgr.cpp
@@ -23,24 +23,25 @@ using namespace std;
23#include <stdlib.h> 23#include <stdlib.h>
24#include <linux/limits.h> 24#include <linux/limits.h>
25 25
26#ifdef QWS 26#ifdef QWS
27#include <qpe/qpeapplication.h> 27#include <qpe/qpeapplication.h>
28#include <qpe/qcopenvelope_qws.h> 28#include <qpe/qcopenvelope_qws.h>
29#include <qpe/config.h> 29#include <qpe/config.h>
30#else 30#else
31#include <qapplication.h> 31#include <qapplication.h>
32#endif 32#endif
33#include <qlabel.h> 33#include <qlabel.h>
34#include <qfile.h> 34#include <qfile.h>
35#include <qmessagebox.h>
35 36
36#include "datamgr.h" 37#include "datamgr.h"
37#include "networkpkgmgr.h" 38#include "networkpkgmgr.h"
38#include "installdlgimpl.h" 39#include "installdlgimpl.h"
39#include "ipkg.h" 40#include "ipkg.h"
40#include "inputdlg.h" 41#include "inputdlg.h"
41 42
42#include "global.h" 43#include "global.h"
43 44
44NetworkPackageManager::NetworkPackageManager( DataManager *dataManager, QWidget *parent, const char *name) 45NetworkPackageManager::NetworkPackageManager( DataManager *dataManager, QWidget *parent, const char *name)
45 : QWidget(parent, name) 46 : QWidget(parent, name)
46{ 47{
@@ -88,53 +89,56 @@ void NetworkPackageManager :: updateData()
88 serversList->setCurrentItem( activeItem ); 89 serversList->setCurrentItem( activeItem );
89 serverSelected( 0 ); 90 serverSelected( 0 );
90} 91}
91 92
92 93
93void NetworkPackageManager :: initGui() 94void NetworkPackageManager :: initGui()
94{ 95{
95 QLabel *l = new QLabel( "Servers", this ); 96 QLabel *l = new QLabel( "Servers", this );
96 serversList = new QComboBox( this ); 97 serversList = new QComboBox( this );
97 packagesList = new QListView( this ); 98 packagesList = new QListView( this );
98 update = new QPushButton( "Refresh List", this ); 99 update = new QPushButton( "Refresh List", this );
99 download = new QPushButton( "Download", this ); 100 download = new QPushButton( "Download", this );
101 upgrade = new QPushButton( "Upgrade", this );
100 apply = new QPushButton( "Apply", this ); 102 apply = new QPushButton( "Apply", this );
101 103
102 QVBoxLayout *vbox = new QVBoxLayout( this, 0, -1, "VBox" ); 104 QVBoxLayout *vbox = new QVBoxLayout( this, 0, -1, "VBox" );
103 QHBoxLayout *hbox1 = new QHBoxLayout( vbox, -1, "HBox1" ); 105 QHBoxLayout *hbox1 = new QHBoxLayout( vbox, -1, "HBox1" );
104 hbox1->addWidget( l ); 106 hbox1->addWidget( l );
105 hbox1->addWidget( serversList ); 107 hbox1->addWidget( serversList );
106 108
107 vbox->addWidget( packagesList ); 109 vbox->addWidget( packagesList );
108 packagesList->addColumn( "Packages" ); 110 packagesList->addColumn( "Packages" );
109 111
110 QHBoxLayout *hbox2 = new QHBoxLayout( vbox, -1, "HBox2" ); 112 QHBoxLayout *hbox2 = new QHBoxLayout( vbox, -1, "HBox2" );
111 hbox2->addWidget( update ); 113 hbox2->addWidget( update );
112 hbox2->addWidget( download ); 114 hbox2->addWidget( download );
115 hbox2->addWidget( upgrade );
113 hbox2->addWidget( apply ); 116 hbox2->addWidget( apply );
114} 117}
115 118
116void NetworkPackageManager :: setupConnections() 119void NetworkPackageManager :: setupConnections()
117{ 120{
118 connect( serversList, SIGNAL(activated( int )), this, SLOT(serverSelected( int ))); 121 connect( serversList, SIGNAL(activated( int )), this, SLOT(serverSelected( int )));
119 connect( apply, SIGNAL(released()), this, SLOT(applyChanges()) ); 122 connect( apply, SIGNAL(released()), this, SLOT(applyChanges()) );
120 connect( download, SIGNAL(released()), this, SLOT(downloadPackage()) ); 123 connect( download, SIGNAL(released()), this, SLOT(downloadPackage()) );
124 connect( upgrade, SIGNAL( released()), this, SLOT(upgradePackages()) );
121 connect( update, SIGNAL(released()), this, SLOT(updateServer()) ); 125 connect( update, SIGNAL(released()), this, SLOT(updateServer()) );
122} 126}
123 127
124void NetworkPackageManager :: showProgressDialog() 128void NetworkPackageManager :: showProgressDialog( char *initialText )
125{ 129{
126 if ( !progressDlg ) 130 if ( !progressDlg )
127 progressDlg = new ProgressDlg( this, "Progress", false ); 131 progressDlg = new ProgressDlg( this, "Progress", false );
128 progressDlg->setText( "Reading installed packages" ); 132 progressDlg->setText( initialText );
129 progressDlg->show(); 133 progressDlg->show();
130} 134}
131 135
132 136
133void NetworkPackageManager :: serverSelected( int ) 137void NetworkPackageManager :: serverSelected( int )
134{ 138{
135 packagesList->clear(); 139 packagesList->clear();
136 140
137 // display packages 141 // display packages
138 QString serverName = serversList->currentText(); 142 QString serverName = serversList->currentText();
139 Server *s = dataMgr->getServer( serverName ); 143 Server *s = dataMgr->getServer( serverName );
140 dataMgr->setActiveServer( serverName ); 144 dataMgr->setActiveServer( serverName );
@@ -166,34 +170,42 @@ void NetworkPackageManager :: serverSelected( int )
166 new QCheckListItem( item, QString( "Filename - " ) + it->getFilename() ); 170 new QCheckListItem( item, QString( "Filename - " ) + it->getFilename() );
167 171
168 new QCheckListItem( item, QString( "V. Available - " ) + it->getVersion() ); 172 new QCheckListItem( item, QString( "V. Available - " ) + it->getVersion() );
169 if ( it->getLocalPackage() ) 173 if ( it->getLocalPackage() )
170 { 174 {
171 if ( it->isInstalled() ) 175 if ( it->isInstalled() )
172 new QCheckListItem( item, QString( "V. Installed - " ) + it->getInstalledVersion() ); 176 new QCheckListItem( item, QString( "V. Installed - " ) + it->getInstalledVersion() );
173 } 177 }
174 packagesList->insertItem( item ); 178 packagesList->insertItem( item );
175 } 179 }
176 180
177 // If the local server or the local ipkgs server disable the download button 181 // If the local server or the local ipkgs server disable the download button
178 download->setText( "Download" );
179 if ( serverName == LOCAL_SERVER ) 182 if ( serverName == LOCAL_SERVER )
183 {
184 upgrade->setEnabled( false );
185 download->setText( "Download" );
180 download->setEnabled( false ); 186 download->setEnabled( false );
187 }
181 else if ( serverName == LOCAL_IPKGS ) 188 else if ( serverName == LOCAL_IPKGS )
182 { 189 {
190 upgrade->setEnabled( false );
183 download->setEnabled( true ); 191 download->setEnabled( true );
184 download->setText( "Remove" ); 192 download->setText( "Remove" );
185 } 193 }
186 else 194 else
195 {
196 upgrade->setEnabled( true );
187 download->setEnabled( true ); 197 download->setEnabled( true );
198 download->setText( "Download" );
199 }
188} 200}
189 201
190void NetworkPackageManager :: updateServer() 202void NetworkPackageManager :: updateServer()
191{ 203{
192 QString serverName = serversList->currentText(); 204 QString serverName = serversList->currentText();
193 205
194 // Update the current server 206 // Update the current server
195 // Display dialog 207 // Display dialog
196 ProgressDlg *dlg = new ProgressDlg( this ); 208 ProgressDlg *dlg = new ProgressDlg( this );
197 QString status = "Updating package list for "; 209 QString status = "Updating package list for ";
198 status += serverName; 210 status += serverName;
199 dlg->show(); 211 dlg->show();
@@ -216,24 +228,52 @@ void NetworkPackageManager :: updateServer()
216 connect( &ipkg, SIGNAL(outputText(const QString &)), this, SLOT(displayText(const QString &))); 228 connect( &ipkg, SIGNAL(outputText(const QString &)), this, SLOT(displayText(const QString &)));
217 ipkg.setOption( option ); 229 ipkg.setOption( option );
218 230
219 ipkg.runIpkg( ); 231 ipkg.runIpkg( );
220 } 232 }
221 233
222 // Reload data 234 // Reload data
223 dataMgr->reloadServerData( serversList->currentText() ); 235 dataMgr->reloadServerData( serversList->currentText() );
224 serverSelected(-1); 236 serverSelected(-1);
225 delete dlg; 237 delete dlg;
226} 238}
227 239
240void NetworkPackageManager :: upgradePackages()
241{
242 // We're gonna do an upgrade of all packages
243 // First warn user that this isn't recommended
244 QString text = "WARNING: Upgrading while\nOpie/Qtopia is running\nis NOT recommended!\n\nAre you sure?\n";
245 QMessageBox warn("Warning", text, QMessageBox::Warning,
246 QMessageBox::Yes,
247 QMessageBox::No | QMessageBox::Escape | QMessageBox::Default ,
248 0, this );
249 warn.adjustSize();
250
251 if ( warn.exec() == QMessageBox::Yes )
252 {
253 // First, write out ipkg_conf file so that ipkg can use it
254 dataMgr->writeOutIpkgConf();
255
256 // Now run upgrade
257 InstallDlgImpl dlg( this, "Upgrade", true );
258 dlg.showDlg();
259
260 // Reload data
261 dataMgr->reloadServerData( LOCAL_SERVER );
262
263 dataMgr->reloadServerData( serversList->currentText() );
264 serverSelected(-1);
265 }
266}
267
228 268
229void NetworkPackageManager :: downloadPackage() 269void NetworkPackageManager :: downloadPackage()
230{ 270{
231 if ( download->text() == "Download" ) 271 if ( download->text() == "Download" )
232 { 272 {
233 // First, write out ipkg_conf file so that ipkg can use it 273 // First, write out ipkg_conf file so that ipkg can use it
234 dataMgr->writeOutIpkgConf(); 274 dataMgr->writeOutIpkgConf();
235 275
236 // Display dialog to user asking where to download the files to 276 // Display dialog to user asking where to download the files to
237 bool ok = FALSE; 277 bool ok = FALSE;
238 QString dir = ""; 278 QString dir = "";
239#ifdef QWS 279#ifdef QWS
@@ -334,24 +374,25 @@ void NetworkPackageManager :: applyChanges()
334 workingPackages.push_back( p ); 374 workingPackages.push_back( p );
335 } 375 }
336 376
337 item = (QCheckListItem *)item->nextSibling(); 377 item = (QCheckListItem *)item->nextSibling();
338 } while ( item ); 378 } while ( item );
339 379
340 // do the stuff 380 // do the stuff
341 InstallDlgImpl dlg( workingPackages, dataMgr, this, "Install", true ); 381 InstallDlgImpl dlg( workingPackages, dataMgr, this, "Install", true );
342 dlg.showDlg(); 382 dlg.showDlg();
343 383
344 // Reload data 384 // Reload data
345 dataMgr->reloadServerData( LOCAL_SERVER ); 385 dataMgr->reloadServerData( LOCAL_SERVER );
386
346 dataMgr->reloadServerData( serversList->currentText() ); 387 dataMgr->reloadServerData( serversList->currentText() );
347 serverSelected(-1); 388 serverSelected(-1);
348 389
349#ifdef QWS 390#ifdef QWS
350 // Finally let the main system update itself 391 // Finally let the main system update itself
351 QCopEnvelope e("QPE/System", "linkChanged(QString)"); 392 QCopEnvelope e("QPE/System", "linkChanged(QString)");
352 QString lf = QString::null; 393 QString lf = QString::null;
353 e << lf; 394 e << lf;
354#endif 395#endif
355} 396}
356 397
357// decide what to do - either remove, upgrade or install 398// decide what to do - either remove, upgrade or install
@@ -375,22 +416,38 @@ QString NetworkPackageManager :: dealWithItem( QCheckListItem *item )
375 Package *p = s->getPackage( name ); 416 Package *p = s->getPackage( name );
376 417
377 // If the package has a filename then it is a local file 418 // If the package has a filename then it is a local file
378 if ( p->isPackageStoredLocally() ) 419 if ( p->isPackageStoredLocally() )
379 name = p->getFilename(); 420 name = p->getFilename();
380 QString option; 421 QString option;
381 QString dest = "root"; 422 QString dest = "root";
382 if ( !p->isInstalled() ) 423 if ( !p->isInstalled() )
383 return QString( "I" ) + name; 424 return QString( "I" ) + name;
384 else 425 else
385 { 426 {
386 if ( p->getVersion() == p->getInstalledVersion() ) 427 if ( p->getVersion() == p->getInstalledVersion() )
387 return QString( "D" ) + name; 428 {
429 QString msgtext;
430 msgtext.sprintf( "Do you wish to remove or reinstall\n%s?", (const char *)name );
431 switch( QMessageBox::information( this, "Remove or ReInstall",
432 msgtext, "Remove", "ReInstall" ) )
433 {
434 case 0: // Try again or Enter
435 return QString( "D" ) + name;
436 break;
437 case 1: // Quit or Escape
438 return QString( "U" ) + name;
439 break;
440 }
441
442 // User hit cancel (on dlg - assume remove)
443 return QString( "D" ) + name;
444 }
388 else 445 else
389 return QString( "U" ) + name; 446 return QString( "U" ) + name;
390 } 447 }
391} 448}
392 449
393void NetworkPackageManager :: displayText( const QString &t ) 450void NetworkPackageManager :: displayText( const QString &t )
394{ 451{
395 cout << t << endl; 452 cout << t << endl;
396} 453}