author | andyq <andyq> | 2002-10-25 18:58:30 (UTC) |
---|---|---|
committer | andyq <andyq> | 2002-10-25 18:58:30 (UTC) |
commit | 835fadbad01b725a46ffd68ca458fd39c7313ea0 (patch) (unidiff) | |
tree | 4fbc213e01292e4e850ad561c387f75098e2b059 | |
parent | 1d3135677f1f49b9cc87ebf01f1c4eaab3c450f4 (diff) | |
download | opie-835fadbad01b725a46ffd68ca458fd39c7313ea0.zip opie-835fadbad01b725a46ffd68ca458fd39c7313ea0.tar.gz opie-835fadbad01b725a46ffd68ca458fd39c7313ea0.tar.bz2 |
Added version handling
-rw-r--r-- | noncore/settings/aqpkg/aqpkg.pro | 4 | ||||
-rw-r--r-- | noncore/settings/aqpkg/installdlgimpl.cpp | 5 | ||||
-rw-r--r-- | noncore/settings/aqpkg/networkpkgmgr.cpp | 81 | ||||
-rw-r--r-- | noncore/settings/aqpkg/version.cpp | 214 |
4 files changed, 279 insertions, 25 deletions
diff --git a/noncore/settings/aqpkg/aqpkg.pro b/noncore/settings/aqpkg/aqpkg.pro index b869f32..99b82a1 100644 --- a/noncore/settings/aqpkg/aqpkg.pro +++ b/noncore/settings/aqpkg/aqpkg.pro | |||
@@ -1,44 +1,44 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on debug | 2 | CONFIG = qt warn_on debug |
3 | HEADERS = global.h \ | 3 | HEADERS = global.h \ |
4 | mainwin.h \ | 4 | mainwin.h \ |
5 | datamgr.h \ | 5 | datamgr.h \ |
6 | settingsimpl.h \ | 6 | settingsimpl.h \ |
7 | ipkg.h \ | 7 | ipkg.h \ |
8 | networkpkgmgr.h \ | 8 | networkpkgmgr.h \ |
9 | package.h \ | 9 | package.h \ |
10 | progressdlg.h \ | 10 | progressdlg.h \ |
11 | installdlgimpl.h \ | 11 | installdlgimpl.h \ |
12 | instoptionsimpl.h \ | 12 | instoptionsimpl.h \ |
13 | destination.h \ | 13 | destination.h \ |
14 | utils.h \ | 14 | utils.h \ |
15 | server.h \ | 15 | server.h \ |
16 | helpwindow.h \ | 16 | helpwindow.h \ |
17 | letterpushbutton.h \ | 17 | letterpushbutton.h \ |
18 | inputdlg.h | 18 | inputdlg.h |
19 | SOURCES = mainwin.cpp \ | 19 | SOURCES = mainwin.cpp \ |
20 | datamgr.cpp \ | 20 | datamgr.cpp \ |
21 | mem.cpp \ | 21 | mem.cpp \ |
22 | settingsimpl.cpp \ | 22 | settingsimpl.cpp \ |
23 | ipkg.cpp \ | 23 | ipkg.cpp \ |
24 | networkpkgmgr.cpp \ | 24 | networkpkgmgr.cpp \ |
25 | main.cpp \ | 25 | main.cpp \ |
26 | package.cpp \ | 26 | package.cpp \ |
27 | progressdlg.cpp \ | 27 | progressdlg.cpp \ |
28 | installdlgimpl.cpp \ | 28 | installdlgimpl.cpp \ |
29 | instoptionsimpl.cpp \ | 29 | instoptionsimpl.cpp \ |
30 | destination.cpp \ | 30 | destination.cpp \ |
31 | utils.cpp \ | 31 | utils.cpp \ |
32 | server.cpp \ | 32 | server.cpp \ |
33 | helpwindow.cpp \ | 33 | helpwindow.cpp \ |
34 | letterpushbutton.cpp \ | 34 | letterpushbutton.cpp \ |
35 | inputdlg.cpp | 35 | inputdlg.cpp \ |
36 | version.cpp | ||
36 | INTERFACES= settings.ui \ | 37 | INTERFACES= settings.ui \ |
37 | install.ui \ | 38 | install.ui \ |
38 | instoptions.ui | 39 | instoptions.ui |
39 | TARGET = aqpkg | 40 | TARGET = aqpkg |
40 | DESTDIR=$(OPIEDIR)/bin | ||
41 | INCLUDEPATH += $(OPIEDIR)/include | 41 | INCLUDEPATH += $(OPIEDIR)/include |
42 | DEPENDPATH += $(OPIEDIR)/include | 42 | DEPENDPATH += $(OPIEDIR)/include |
43 | LIBS += -lqpe -lstdc++ | 43 | LIBS += -lqpe -lstdc++ |
44 | 44 | ||
diff --git a/noncore/settings/aqpkg/installdlgimpl.cpp b/noncore/settings/aqpkg/installdlgimpl.cpp index 2ea70e0..b297437 100644 --- a/noncore/settings/aqpkg/installdlgimpl.cpp +++ b/noncore/settings/aqpkg/installdlgimpl.cpp | |||
@@ -47,97 +47,100 @@ InstallDlgImpl::InstallDlgImpl( vector<InstallData> &packageList, DataManager *d | |||
47 | defaultDest = cfg.readEntry( "dest", "root" ); | 47 | defaultDest = cfg.readEntry( "dest", "root" ); |
48 | 48 | ||
49 | // Grab flags - Turn MAKE_LINKS on by default (if no flags found) | 49 | // Grab flags - Turn MAKE_LINKS on by default (if no flags found) |
50 | flags = cfg.readNumEntry( "installFlags", 0 ); | 50 | flags = cfg.readNumEntry( "installFlags", 0 ); |
51 | #else | 51 | #else |
52 | flags = 0; | 52 | flags = 0; |
53 | #endif | 53 | #endif |
54 | 54 | ||
55 | // Output text is read only | 55 | // Output text is read only |
56 | output->setReadOnly( true ); | 56 | output->setReadOnly( true ); |
57 | QFont f( "helvetica" ); | 57 | QFont f( "helvetica" ); |
58 | f.setPointSize( 10 ); | 58 | f.setPointSize( 10 ); |
59 | output->setFont( f ); | 59 | output->setFont( f ); |
60 | 60 | ||
61 | 61 | ||
62 | // setup destination data | 62 | // setup destination data |
63 | int defIndex = 0; | 63 | int defIndex = 0; |
64 | int i; | 64 | int i; |
65 | for ( i = 0 , dit = dataMgr->getDestinationList().begin() ; dit != dataMgr->getDestinationList().end() ; ++dit, ++i ) | 65 | for ( i = 0 , dit = dataMgr->getDestinationList().begin() ; dit != dataMgr->getDestinationList().end() ; ++dit, ++i ) |
66 | { | 66 | { |
67 | destination->insertItem( dit->getDestinationName() ); | 67 | destination->insertItem( dit->getDestinationName() ); |
68 | if ( dit->getDestinationName() == defaultDest ) | 68 | if ( dit->getDestinationName() == defaultDest ) |
69 | defIndex = i; | 69 | defIndex = i; |
70 | } | 70 | } |
71 | 71 | ||
72 | destination->setCurrentItem( defIndex ); | 72 | destination->setCurrentItem( defIndex ); |
73 | 73 | ||
74 | vector<InstallData>::iterator it; | 74 | vector<InstallData>::iterator it; |
75 | // setup package data | 75 | // setup package data |
76 | QString remove = "Remove\n"; | 76 | QString remove = "Remove\n"; |
77 | QString install = "\nInstall\n"; | 77 | QString install = "\nInstall\n"; |
78 | QString upgrade = "\nUpgrade\n"; | 78 | QString upgrade = "\nUpgrade\n"; |
79 | for ( it = packageList.begin() ; it != packageList.end() ; ++it ) | 79 | for ( it = packageList.begin() ; it != packageList.end() ; ++it ) |
80 | { | 80 | { |
81 | InstallData item = *it; | 81 | InstallData item = *it; |
82 | if ( item.option == "I" ) | 82 | if ( item.option == "I" ) |
83 | { | 83 | { |
84 | installList.push_back( item ); | 84 | installList.push_back( item ); |
85 | install += " " + item.packageName + "\n"; | 85 | install += " " + item.packageName + "\n"; |
86 | } | 86 | } |
87 | else if ( item.option == "D" ) | 87 | else if ( item.option == "D" ) |
88 | { | 88 | { |
89 | removeList.push_back( item ); | 89 | removeList.push_back( item ); |
90 | remove += " " + item.packageName + "\n"; | 90 | remove += " " + item.packageName + "\n"; |
91 | } | 91 | } |
92 | else if ( item.option == "U" || item.option == "R" ) | 92 | else if ( item.option == "U" || item.option == "R" ) |
93 | { | 93 | { |
94 | updateList.push_back( item ); | 94 | updateList.push_back( item ); |
95 | upgrade += " " + item.packageName + "\n"; | 95 | QString type = " (Upgrade)"; |
96 | if ( item.option == "R" ) | ||
97 | type = " (ReInstall)"; | ||
98 | upgrade += " " + item.packageName + type + "\n"; | ||
96 | } | 99 | } |
97 | } | 100 | } |
98 | 101 | ||
99 | output->setText( remove + install + upgrade ); | 102 | output->setText( remove + install + upgrade ); |
100 | } | 103 | } |
101 | 104 | ||
102 | InstallDlgImpl::InstallDlgImpl( Ipkg *ipkg, QString initialText, QWidget *parent, const char *name, bool modal, WFlags fl ) | 105 | InstallDlgImpl::InstallDlgImpl( Ipkg *ipkg, QString initialText, QWidget *parent, const char *name, bool modal, WFlags fl ) |
103 | : InstallDlg( parent, name, modal, fl ) | 106 | : InstallDlg( parent, name, modal, fl ) |
104 | { | 107 | { |
105 | pIpkg = ipkg; | 108 | pIpkg = ipkg; |
106 | output->setText( initialText ); | 109 | output->setText( initialText ); |
107 | } | 110 | } |
108 | 111 | ||
109 | 112 | ||
110 | InstallDlgImpl::~InstallDlgImpl() | 113 | InstallDlgImpl::~InstallDlgImpl() |
111 | { | 114 | { |
112 | } | 115 | } |
113 | 116 | ||
114 | bool InstallDlgImpl :: showDlg() | 117 | bool InstallDlgImpl :: showDlg() |
115 | { | 118 | { |
116 | showMaximized(); | 119 | showMaximized(); |
117 | bool ret = exec(); | 120 | bool ret = exec(); |
118 | 121 | ||
119 | return ret; | 122 | return ret; |
120 | } | 123 | } |
121 | 124 | ||
122 | void InstallDlgImpl :: optionsSelected() | 125 | void InstallDlgImpl :: optionsSelected() |
123 | { | 126 | { |
124 | InstallOptionsDlgImpl opt( flags, this, "Option", true ); | 127 | InstallOptionsDlgImpl opt( flags, this, "Option", true ); |
125 | opt.exec(); | 128 | opt.exec(); |
126 | 129 | ||
127 | // set options selected from dialog | 130 | // set options selected from dialog |
128 | flags = 0; | 131 | flags = 0; |
129 | if ( opt.forceDepends->isChecked() ) | 132 | if ( opt.forceDepends->isChecked() ) |
130 | flags |= FORCE_DEPENDS; | 133 | flags |= FORCE_DEPENDS; |
131 | if ( opt.forceReinstall->isChecked() ) | 134 | if ( opt.forceReinstall->isChecked() ) |
132 | flags |= FORCE_REINSTALL; | 135 | flags |= FORCE_REINSTALL; |
133 | if ( opt.forceRemove->isChecked() ) | 136 | if ( opt.forceRemove->isChecked() ) |
134 | flags |= FORCE_REMOVE; | 137 | flags |= FORCE_REMOVE; |
135 | if ( opt.forceOverwrite->isChecked() ) | 138 | if ( opt.forceOverwrite->isChecked() ) |
136 | flags |= FORCE_OVERWRITE; | 139 | flags |= FORCE_OVERWRITE; |
137 | 140 | ||
138 | #ifdef QWS | 141 | #ifdef QWS |
139 | Config cfg( "aqpkg" ); | 142 | Config cfg( "aqpkg" ); |
140 | cfg.setGroup( "settings" ); | 143 | cfg.setGroup( "settings" ); |
141 | cfg.writeEntry( "installFlags", flags ); | 144 | cfg.writeEntry( "installFlags", flags ); |
142 | #endif | 145 | #endif |
143 | } | 146 | } |
diff --git a/noncore/settings/aqpkg/networkpkgmgr.cpp b/noncore/settings/aqpkg/networkpkgmgr.cpp index 3971aea..02e4e73 100644 --- a/noncore/settings/aqpkg/networkpkgmgr.cpp +++ b/noncore/settings/aqpkg/networkpkgmgr.cpp | |||
@@ -1,93 +1,95 @@ | |||
1 | /*************************************************************************** | 1 | /*************************************************************************** |
2 | networkpkgmgr.cpp - description | 2 | networkpkgmgr.cpp - description |
3 | ------------------- | 3 | ------------------- |
4 | begin : Mon Aug 26 13:32:30 BST 2002 | 4 | begin : Mon Aug 26 13:32:30 BST 2002 |
5 | copyright : (C) 2002 by Andy Qua | 5 | copyright : (C) 2002 by Andy Qua |
6 | email : andy.qua@blueyonder.co.uk | 6 | email : andy.qua@blueyonder.co.uk |
7 | ***************************************************************************/ | 7 | ***************************************************************************/ |
8 | 8 | ||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * (at your option) any later version. * | 14 | * (at your option) any later version. * |
15 | * * | 15 | * * |
16 | ***************************************************************************/ | 16 | ***************************************************************************/ |
17 | 17 | ||
18 | #include <fstream> | 18 | #include <fstream> |
19 | #include <iostream> | 19 | #include <iostream> |
20 | using namespace std; | 20 | using namespace std; |
21 | 21 | ||
22 | #include <unistd.h> | 22 | #include <unistd.h> |
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 | #include <qmessagebox.h> |
36 | 36 | ||
37 | #include "datamgr.h" | 37 | #include "datamgr.h" |
38 | #include "networkpkgmgr.h" | 38 | #include "networkpkgmgr.h" |
39 | #include "installdlgimpl.h" | 39 | #include "installdlgimpl.h" |
40 | #include "ipkg.h" | 40 | #include "ipkg.h" |
41 | #include "inputdlg.h" | 41 | #include "inputdlg.h" |
42 | #include "letterpushbutton.h" | 42 | #include "letterpushbutton.h" |
43 | 43 | ||
44 | #include "global.h" | 44 | #include "global.h" |
45 | 45 | ||
46 | extern int compareVersions( const char *v1, const char *v2 ); | ||
47 | |||
46 | NetworkPackageManager::NetworkPackageManager( DataManager *dataManager, QWidget *parent, const char *name) | 48 | NetworkPackageManager::NetworkPackageManager( DataManager *dataManager, QWidget *parent, const char *name) |
47 | : QWidget(parent, name) | 49 | : QWidget(parent, name) |
48 | { | 50 | { |
49 | dataMgr = dataManager; | 51 | dataMgr = dataManager; |
50 | 52 | ||
51 | #ifdef QWS | 53 | #ifdef QWS |
52 | // read download directory from config file | 54 | // read download directory from config file |
53 | Config cfg( "aqpkg" ); | 55 | Config cfg( "aqpkg" ); |
54 | cfg.setGroup( "settings" ); | 56 | cfg.setGroup( "settings" ); |
55 | currentlySelectedServer = cfg.readEntry( "selectedServer", "local" ); | 57 | currentlySelectedServer = cfg.readEntry( "selectedServer", "local" ); |
56 | showJumpTo = cfg.readBoolEntry( "showJumpTo", "true" ); | 58 | showJumpTo = cfg.readBoolEntry( "showJumpTo", "true" ); |
57 | #endif | 59 | #endif |
58 | 60 | ||
59 | 61 | ||
60 | initGui(); | 62 | initGui(); |
61 | setupConnections(); | 63 | setupConnections(); |
62 | 64 | ||
63 | updateData(); | 65 | updateData(); |
64 | // progressDlg = 0; | 66 | // progressDlg = 0; |
65 | // timerId = startTimer( 100 ); | 67 | // timerId = startTimer( 100 ); |
66 | } | 68 | } |
67 | 69 | ||
68 | NetworkPackageManager::~NetworkPackageManager() | 70 | NetworkPackageManager::~NetworkPackageManager() |
69 | { | 71 | { |
70 | } | 72 | } |
71 | 73 | ||
72 | void NetworkPackageManager :: timerEvent ( QTimerEvent * ) | 74 | void NetworkPackageManager :: timerEvent ( QTimerEvent * ) |
73 | { | 75 | { |
74 | killTimer( timerId ); | 76 | killTimer( timerId ); |
75 | 77 | ||
76 | // showProgressDialog(); | 78 | // showProgressDialog(); |
77 | // Add server names to listbox | 79 | // Add server names to listbox |
78 | updateData(); | 80 | updateData(); |
79 | 81 | ||
80 | // progressDlg->hide(); | 82 | // progressDlg->hide(); |
81 | } | 83 | } |
82 | 84 | ||
83 | void NetworkPackageManager :: updateData() | 85 | void NetworkPackageManager :: updateData() |
84 | { | 86 | { |
85 | serversList->clear(); | 87 | serversList->clear(); |
86 | packagesList->clear(); | 88 | packagesList->clear(); |
87 | 89 | ||
88 | 90 | ||
89 | vector<Server>::iterator it; | 91 | vector<Server>::iterator it; |
90 | int activeItem = -1; | 92 | int activeItem = -1; |
91 | int i; | 93 | int i; |
92 | for ( i = 0, it = dataMgr->getServerList().begin() ; it != dataMgr->getServerList().end() ; ++it, ++i ) | 94 | for ( i = 0, it = dataMgr->getServerList().begin() ; it != dataMgr->getServerList().end() ; ++it, ++i ) |
93 | { | 95 | { |
@@ -187,97 +189,100 @@ void NetworkPackageManager :: setupConnections() | |||
187 | connect( upgrade, SIGNAL( released()), this, SLOT(upgradePackages()) ); | 189 | connect( upgrade, SIGNAL( released()), this, SLOT(upgradePackages()) ); |
188 | connect( update, SIGNAL(released()), this, SLOT(updateServer()) ); | 190 | connect( update, SIGNAL(released()), this, SLOT(updateServer()) ); |
189 | } | 191 | } |
190 | 192 | ||
191 | void NetworkPackageManager :: showProgressDialog( char *initialText ) | 193 | void NetworkPackageManager :: showProgressDialog( char *initialText ) |
192 | { | 194 | { |
193 | if ( !progressDlg ) | 195 | if ( !progressDlg ) |
194 | progressDlg = new ProgressDlg( this, "Progress", false ); | 196 | progressDlg = new ProgressDlg( this, "Progress", false ); |
195 | progressDlg->setText( initialText ); | 197 | progressDlg->setText( initialText ); |
196 | progressDlg->show(); | 198 | progressDlg->show(); |
197 | } | 199 | } |
198 | 200 | ||
199 | 201 | ||
200 | void NetworkPackageManager :: serverSelected( int ) | 202 | void NetworkPackageManager :: serverSelected( int ) |
201 | { | 203 | { |
202 | packagesList->clear(); | 204 | packagesList->clear(); |
203 | 205 | ||
204 | // display packages | 206 | // display packages |
205 | QString serverName = serversList->currentText(); | 207 | QString serverName = serversList->currentText(); |
206 | currentlySelectedServer = serverName; | 208 | currentlySelectedServer = serverName; |
207 | 209 | ||
208 | #ifdef QWS | 210 | #ifdef QWS |
209 | // read download directory from config file | 211 | // read download directory from config file |
210 | Config cfg( "aqpkg" ); | 212 | Config cfg( "aqpkg" ); |
211 | cfg.setGroup( "settings" ); | 213 | cfg.setGroup( "settings" ); |
212 | cfg.writeEntry( "selectedServer", currentlySelectedServer ); | 214 | cfg.writeEntry( "selectedServer", currentlySelectedServer ); |
213 | #endif | 215 | #endif |
214 | 216 | ||
215 | Server *s = dataMgr->getServer( serverName ); | 217 | Server *s = dataMgr->getServer( serverName ); |
216 | // dataMgr->setActiveServer( serverName ); | 218 | // dataMgr->setActiveServer( serverName ); |
217 | 219 | ||
218 | vector<Package> &list = s->getPackageList(); | 220 | vector<Package> &list = s->getPackageList(); |
219 | vector<Package>::iterator it; | 221 | vector<Package>::iterator it; |
220 | for ( it = list.begin() ; it != list.end() ; ++it ) | 222 | for ( it = list.begin() ; it != list.end() ; ++it ) |
221 | { | 223 | { |
222 | QString text = ""; | 224 | QString text = ""; |
223 | 225 | ||
224 | // If the local server, only display installed packages | 226 | // If the local server, only display installed packages |
225 | if ( serverName == LOCAL_SERVER && !it->isInstalled() ) | 227 | if ( serverName == LOCAL_SERVER && !it->isInstalled() ) |
226 | continue; | 228 | continue; |
227 | 229 | ||
228 | text += it->getPackageName(); | 230 | text += it->getPackageName(); |
229 | if ( it->isInstalled() ) | 231 | if ( it->isInstalled() ) |
230 | { | 232 | { |
231 | text += " (installed)"; | 233 | text += " (installed)"; |
232 | 234 | ||
233 | // If a different version of package is available, postfix it with an * | 235 | // If a different version of package is available, postfix it with an * |
234 | if ( it->getVersion() != it->getInstalledVersion() ) | 236 | if ( it->getVersion() != it->getInstalledVersion() ) |
235 | text += "*"; | 237 | { |
238 | if ( compareVersions( it->getInstalledVersion(), it->getVersion() ) == 1 ) | ||
239 | text += "*"; | ||
240 | } | ||
236 | } | 241 | } |
237 | 242 | ||
238 | QCheckListItem *item = new QCheckListItem( packagesList, text, QCheckListItem::CheckBox ); | 243 | QCheckListItem *item = new QCheckListItem( packagesList, text, QCheckListItem::CheckBox ); |
239 | 244 | ||
240 | if ( it->isInstalled() ) | 245 | if ( it->isInstalled() ) |
241 | { | 246 | { |
242 | QString destName = ""; | 247 | QString destName = ""; |
243 | if ( it->getLocalPackage() ) | 248 | if ( it->getLocalPackage() ) |
244 | { | 249 | { |
245 | if ( it->getLocalPackage()->getInstalledTo() ) | 250 | if ( it->getLocalPackage()->getInstalledTo() ) |
246 | destName = it->getLocalPackage()->getInstalledTo()->getDestinationName(); | 251 | destName = it->getLocalPackage()->getInstalledTo()->getDestinationName(); |
247 | } | 252 | } |
248 | else | 253 | else |
249 | { | 254 | { |
250 | if ( it->getInstalledTo() ) | 255 | if ( it->getInstalledTo() ) |
251 | destName = it->getInstalledTo()->getDestinationName(); | 256 | destName = it->getInstalledTo()->getDestinationName(); |
252 | } | 257 | } |
253 | if ( destName != "" ) | 258 | if ( destName != "" ) |
254 | new QCheckListItem( item, QString( "Installed To - " ) + destName ); | 259 | new QCheckListItem( item, QString( "Installed To - " ) + destName ); |
255 | } | 260 | } |
256 | 261 | ||
257 | if ( !it->isPackageStoredLocally() ) | 262 | if ( !it->isPackageStoredLocally() ) |
258 | new QCheckListItem( item, QString( "Description - " ) + it->getDescription() ); | 263 | new QCheckListItem( item, QString( "Description - " ) + it->getDescription() ); |
259 | else | 264 | else |
260 | new QCheckListItem( item, QString( "Filename - " ) + it->getFilename() ); | 265 | new QCheckListItem( item, QString( "Filename - " ) + it->getFilename() ); |
261 | 266 | ||
262 | new QCheckListItem( item, QString( "V. Available - " ) + it->getVersion() ); | 267 | new QCheckListItem( item, QString( "V. Available - " ) + it->getVersion() ); |
263 | if ( it->getLocalPackage() ) | 268 | if ( it->getLocalPackage() ) |
264 | { | 269 | { |
265 | if ( it->isInstalled() ) | 270 | if ( it->isInstalled() ) |
266 | new QCheckListItem( item, QString( "V. Installed - " ) + it->getInstalledVersion() ); | 271 | new QCheckListItem( item, QString( "V. Installed - " ) + it->getInstalledVersion() ); |
267 | } | 272 | } |
268 | packagesList->insertItem( item ); | 273 | packagesList->insertItem( item ); |
269 | } | 274 | } |
270 | 275 | ||
271 | // If the local server or the local ipkgs server disable the download button | 276 | // If the local server or the local ipkgs server disable the download button |
272 | if ( serverName == LOCAL_SERVER ) | 277 | if ( serverName == LOCAL_SERVER ) |
273 | { | 278 | { |
274 | upgrade->setEnabled( false ); | 279 | upgrade->setEnabled( false ); |
275 | download->setText( "Download" ); | 280 | download->setText( "Download" ); |
276 | download->setEnabled( false ); | 281 | download->setEnabled( false ); |
277 | } | 282 | } |
278 | else if ( serverName == LOCAL_IPKGS ) | 283 | else if ( serverName == LOCAL_IPKGS ) |
279 | { | 284 | { |
280 | upgrade->setEnabled( false ); | 285 | upgrade->setEnabled( false ); |
281 | download->setEnabled( true ); | 286 | download->setEnabled( true ); |
282 | download->setText( "Remove" ); | 287 | download->setText( "Remove" ); |
283 | } | 288 | } |
@@ -488,123 +493,155 @@ void NetworkPackageManager :: applyChanges() | |||
488 | // decide what to do - either remove, upgrade or install | 493 | // decide what to do - either remove, upgrade or install |
489 | // Current rules: | 494 | // Current rules: |
490 | // If not installed - install | 495 | // If not installed - install |
491 | // If installed and different version available - upgrade | 496 | // If installed and different version available - upgrade |
492 | // If installed and version up to date - remove | 497 | // If installed and version up to date - remove |
493 | InstallData NetworkPackageManager :: dealWithItem( QCheckListItem *item ) | 498 | InstallData NetworkPackageManager :: dealWithItem( QCheckListItem *item ) |
494 | { | 499 | { |
495 | QString name = item->text(); | 500 | QString name = item->text(); |
496 | int pos = name.find( "*" ); | 501 | int pos = name.find( "*" ); |
497 | name.truncate( pos ); | 502 | name.truncate( pos ); |
498 | 503 | ||
499 | // if (there is a (installed), remove it | 504 | // if (there is a (installed), remove it |
500 | pos = name.find( "(installed)" ); | 505 | pos = name.find( "(installed)" ); |
501 | if ( pos > 0 ) | 506 | if ( pos > 0 ) |
502 | name.truncate( pos - 1 ); | 507 | name.truncate( pos - 1 ); |
503 | 508 | ||
504 | // Get package | 509 | // Get package |
505 | Server *s = dataMgr->getServer( serversList->currentText() ); | 510 | Server *s = dataMgr->getServer( serversList->currentText() ); |
506 | Package *p = s->getPackage( name ); | 511 | Package *p = s->getPackage( name ); |
507 | 512 | ||
508 | // If the package has a filename then it is a local file | 513 | // If the package has a filename then it is a local file |
509 | if ( p->isPackageStoredLocally() ) | 514 | if ( p->isPackageStoredLocally() ) |
510 | name = p->getFilename(); | 515 | name = p->getFilename(); |
511 | QString option; | 516 | QString option; |
512 | QString dest = "root"; | 517 | QString dest = "root"; |
513 | if ( !p->isInstalled() ) | 518 | if ( !p->isInstalled() ) |
514 | { | 519 | { |
515 | InstallData item; | 520 | InstallData item; |
516 | item.option = "I"; | 521 | item.option = "I"; |
517 | item.packageName = name; | 522 | item.packageName = name; |
518 | return item; | 523 | return item; |
519 | } | 524 | } |
520 | else | 525 | else |
521 | { | 526 | { |
522 | InstallData item; | 527 | InstallData item; |
523 | item.option = "D"; | 528 | item.option = "D"; |
524 | item.packageName = p->getInstalledPackageName(); | 529 | item.packageName = p->getInstalledPackageName(); |
525 | if ( p->getInstalledTo() ) | 530 | if ( p->getInstalledTo() ) |
526 | { | 531 | { |
527 | item.destination = p->getInstalledTo(); | 532 | item.destination = p->getInstalledTo(); |
528 | cout << "dest - " << p->getInstalledTo()->getDestinationName() << endl; | 533 | cout << "dest - " << p->getInstalledTo()->getDestinationName() << endl; |
529 | cout << "dest - " << p->getInstalledTo()->getDestinationPath() << endl; | 534 | cout << "dest - " << p->getInstalledTo()->getDestinationPath() << endl; |
530 | } | 535 | } |
531 | else | 536 | else |
532 | { | 537 | { |
533 | item.destination = p->getLocalPackage()->getInstalledTo(); | 538 | item.destination = p->getLocalPackage()->getInstalledTo(); |
534 | } | 539 | } |
535 | 540 | ||
536 | // Sticky option not implemented yet, but will eventually allow | 541 | // Now see if version is newer or not |
537 | // the user to say something like 'remove all' | 542 | int val = compareVersions( p->getInstalledVersion(), p->getVersion() ); |
538 | if ( stickyOption == "" ) | 543 | if ( val == -2 ) |
539 | { | 544 | { |
540 | QString msgtext; | 545 | // Error - should handle |
541 | msgtext.sprintf( "Do you wish to remove or reinstall\n%s?", (const char *)name ); | 546 | } |
542 | switch( QMessageBox::information( this, "Remove or ReInstall", | 547 | else if ( val == -1 ) |
543 | msgtext, "Remove", "ReInstall" ) ) | 548 | { |
544 | { | 549 | // Version available is older - remove only |
545 | case 0: // Try again or Enter | 550 | item.option = "R"; |
546 | item.option = "D"; | ||
547 | break; | ||
548 | case 1: // Quit or Escape | ||
549 | item.option = "U"; | ||
550 | break; | ||
551 | } | ||
552 | } | 551 | } |
553 | else | 552 | else |
554 | { | 553 | { |
555 | // item.option = stickyOption; | 554 | QString caption; |
555 | QString text; | ||
556 | QString secondButton; | ||
557 | QString secondOption; | ||
558 | if ( val == 0 ) | ||
559 | { | ||
560 | // Version available is the same - option to remove or reinstall | ||
561 | caption = "Do you wish to remove or reinstall\n%s?"; | ||
562 | text = "Remove or ReInstall"; | ||
563 | secondButton = "ReInstall"; | ||
564 | secondOption = "R"; | ||
565 | } | ||
566 | else if ( val == 1 ) | ||
567 | { | ||
568 | // Version available is newer - option to remove or upgrade | ||
569 | caption = "Do you wish to remove or upgrade\n%s?"; | ||
570 | text = "Remove or Upgrade"; | ||
571 | secondButton = "Upgrade"; | ||
572 | secondOption = "U"; | ||
573 | } | ||
574 | |||
575 | // Sticky option not implemented yet, but will eventually allow | ||
576 | // the user to say something like 'remove all' | ||
577 | if ( stickyOption == "" ) | ||
578 | { | ||
579 | QString msgtext; | ||
580 | msgtext.sprintf( caption, (const char *)name ); | ||
581 | switch( QMessageBox::information( this, text, | ||
582 | msgtext, "Remove", secondButton ) ) | ||
583 | { | ||
584 | case 0: // Try again or Enter | ||
585 | item.option = "D"; | ||
586 | break; | ||
587 | case 1: // Quit or Escape | ||
588 | item.option = secondOption; | ||
589 | break; | ||
590 | } | ||
591 | } | ||
592 | else | ||
593 | { | ||
594 | // item.option = stickyOption; | ||
595 | } | ||
556 | } | 596 | } |
597 | |||
557 | 598 | ||
558 | // Check if we are reinstalling the same version | 599 | // Check if we are reinstalling the same version |
559 | if ( p->getVersion() != p->getInstalledVersion() ) | 600 | if ( item.option != "R" ) |
560 | item.recreateLinks = true; | 601 | item.recreateLinks = true; |
561 | else | 602 | else |
562 | { | ||
563 | if ( item.option == "U" ) | ||
564 | item.option = "R"; | ||
565 | item.recreateLinks = false; | 603 | item.recreateLinks = false; |
566 | } | ||
567 | 604 | ||
568 | // User hit cancel (on dlg - assume remove) | 605 | // User hit cancel (on dlg - assume remove) |
569 | return item; | 606 | return item; |
570 | } | 607 | } |
571 | } | 608 | } |
572 | 609 | ||
573 | void NetworkPackageManager :: displayText( const QString &t ) | 610 | void NetworkPackageManager :: displayText( const QString &t ) |
574 | { | 611 | { |
575 | cout << t << endl; | 612 | cout << t << endl; |
576 | } | 613 | } |
577 | 614 | ||
578 | 615 | ||
579 | void NetworkPackageManager :: letterPushed( QString t ) | 616 | void NetworkPackageManager :: letterPushed( QString t ) |
580 | { | 617 | { |
581 | QCheckListItem *top = (QCheckListItem *)packagesList->firstChild(); | 618 | QCheckListItem *top = (QCheckListItem *)packagesList->firstChild(); |
582 | QCheckListItem *start = (QCheckListItem *)packagesList->currentItem(); | 619 | QCheckListItem *start = (QCheckListItem *)packagesList->currentItem(); |
583 | if ( packagesList->firstChild() == 0 ) | 620 | if ( packagesList->firstChild() == 0 ) |
584 | return; | 621 | return; |
585 | 622 | ||
586 | QCheckListItem *item; | 623 | QCheckListItem *item; |
587 | if ( start == 0 ) | 624 | if ( start == 0 ) |
588 | { | 625 | { |
589 | item = (QCheckListItem *)packagesList->firstChild(); | 626 | item = (QCheckListItem *)packagesList->firstChild(); |
590 | start = top; | 627 | start = top; |
591 | } | 628 | } |
592 | else | 629 | else |
593 | item = (QCheckListItem *)start->nextSibling(); | 630 | item = (QCheckListItem *)start->nextSibling(); |
594 | 631 | ||
595 | if ( item == 0 ) | 632 | if ( item == 0 ) |
596 | item = (QCheckListItem *)packagesList->firstChild(); | 633 | item = (QCheckListItem *)packagesList->firstChild(); |
597 | do | 634 | do |
598 | { | 635 | { |
599 | if ( item->text().lower().startsWith( t.lower() ) ) | 636 | if ( item->text().lower().startsWith( t.lower() ) ) |
600 | { | 637 | { |
601 | packagesList->setSelected( item, true ); | 638 | packagesList->setSelected( item, true ); |
602 | packagesList->ensureItemVisible( item ); | 639 | packagesList->ensureItemVisible( item ); |
603 | break; | 640 | break; |
604 | } | 641 | } |
605 | 642 | ||
606 | item = (QCheckListItem *)item->nextSibling(); | 643 | item = (QCheckListItem *)item->nextSibling(); |
607 | if ( !item ) | 644 | if ( !item ) |
608 | item = (QCheckListItem *)packagesList->firstChild(); | 645 | item = (QCheckListItem *)packagesList->firstChild(); |
609 | } while ( item != start); | 646 | } while ( item != start); |
610 | } | 647 | } |
diff --git a/noncore/settings/aqpkg/version.cpp b/noncore/settings/aqpkg/version.cpp new file mode 100644 index 0000000..e836da1 --- a/dev/null +++ b/noncore/settings/aqpkg/version.cpp | |||
@@ -0,0 +1,214 @@ | |||
1 | /* | ||
2 | * libdpkg - Debian packaging suite library routines | ||
3 | * vercmp.c - comparison of version numbers | ||
4 | * | ||
5 | * Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk> | ||
6 | * | ||
7 | * This is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as | ||
9 | * published by the Free Software Foundation; either version 2, | ||
10 | * or (at your option) any later version. | ||
11 | * | ||
12 | * This is distributed in the hope that it will be useful, but | ||
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public | ||
18 | * License along with dpkg; if not, write to the Free Software | ||
19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
20 | */ | ||
21 | #include <stdio.h> | ||
22 | #include <stdlib.h> | ||
23 | #include <ctype.h> | ||
24 | #include <string.h> | ||
25 | |||
26 | # define _(Text) Text | ||
27 | |||
28 | class versionrevision | ||
29 | { | ||
30 | public: | ||
31 | versionrevision() | ||
32 | { | ||
33 | version = 0; | ||
34 | } | ||
35 | |||
36 | ~versionrevision() | ||
37 | { | ||
38 | if ( version ) | ||
39 | delete version; | ||
40 | } | ||
41 | |||
42 | void setVersion( const char *str ) | ||
43 | { | ||
44 | version = new char[(strlen(str)+1)]; | ||
45 | strcpy( version, str ); | ||
46 | } | ||
47 | |||
48 | unsigned long epoch; | ||
49 | char *version; | ||
50 | const char *revision; | ||
51 | const char *familiar_revision; | ||
52 | }; | ||
53 | |||
54 | static int verrevcmp(const char *val, const char *ref) | ||
55 | { | ||
56 | int vc, rc; | ||
57 | long vl, rl; | ||
58 | const char *vp, *rp; | ||
59 | |||
60 | if (!val) val= ""; | ||
61 | if (!ref) ref= ""; | ||
62 | for (;;) { | ||
63 | vp= val; while (*vp && !isdigit(*vp)) vp++; | ||
64 | rp= ref; while (*rp && !isdigit(*rp)) rp++; | ||
65 | for (;;) { | ||
66 | vc= val == vp ? 0 : *val++; | ||
67 | rc= ref == rp ? 0 : *ref++; | ||
68 | if (!rc && !vc) break; | ||
69 | if (vc && !isalpha(vc)) vc += 256; /* assumes ASCII character set */ | ||
70 | if (rc && !isalpha(rc)) rc += 256; | ||
71 | if (vc != rc) return vc - rc; | ||
72 | } | ||
73 | val= vp; | ||
74 | ref= rp; | ||
75 | vl=0; if (isdigit(*vp)) vl= strtol(val,(char**)&val,10); | ||
76 | rl=0; if (isdigit(*rp)) rl= strtol(ref,(char**)&ref,10); | ||
77 | if (vl != rl) return vl - rl; | ||
78 | if (!*val && !*ref) return 0; | ||
79 | if (!*val) return -1; | ||
80 | if (!*ref) return +1; | ||
81 | } | ||
82 | } | ||
83 | |||
84 | int versioncompare(const struct versionrevision *version, | ||
85 | const struct versionrevision *refversion) | ||
86 | { | ||
87 | int r; | ||
88 | |||
89 | if (version->epoch > refversion->epoch) return 1; | ||
90 | if (version->epoch < refversion->epoch) return -1; | ||
91 | r= verrevcmp(version->version,refversion->version); if (r) return r; | ||
92 | r= verrevcmp(version->revision,refversion->revision); if (r) return r; | ||
93 | return verrevcmp(version->familiar_revision,refversion->familiar_revision); | ||
94 | } | ||
95 | |||
96 | int versionsatisfied3(const struct versionrevision *it, | ||
97 | const struct versionrevision *ref, | ||
98 | const char *op) | ||
99 | { | ||
100 | int r; | ||
101 | r= versioncompare(it,ref); | ||
102 | if (strcmp(op, "<=") == 0 || strcmp(op, "<") == 0) | ||
103 | return r <= 0; | ||
104 | if (strcmp(op, ">=") == 0 || strcmp(op, ">") == 0) | ||
105 | return r >= 0; | ||
106 | if (strcmp(op, "<<") == 0) | ||
107 | return r < 0; | ||
108 | if (strcmp(op, ">>") == 0) | ||
109 | return r > 0; | ||
110 | if (strcmp(op, "=") == 0) | ||
111 | return r == 0; | ||
112 | fprintf(stderr, "unknown operator: %s", op); | ||
113 | |||
114 | exit(1); | ||
115 | } | ||
116 | |||
117 | const char *parseversion(struct versionrevision *rversion, const char *string) | ||
118 | { | ||
119 | char *hyphen, *colon, *eepochcolon; | ||
120 | unsigned long epoch; | ||
121 | |||
122 | if (!*string) return _("version string is empty"); | ||
123 | |||
124 | colon= strchr(string,':'); | ||
125 | if (colon) { | ||
126 | epoch= strtoul(string,&eepochcolon,10); | ||
127 | if (colon != eepochcolon) return _("epoch in version is not number"); | ||
128 | if (!*++colon) return _("nothing after colon in version number"); | ||
129 | string= colon; | ||
130 | rversion->epoch= epoch; | ||
131 | } else { | ||
132 | rversion->epoch= 0; | ||
133 | } | ||
134 | |||
135 | rversion->revision = ""; | ||
136 | rversion->familiar_revision = ""; | ||
137 | |||
138 | rversion->setVersion( string ); | ||
139 | hyphen= strrchr(rversion->version,'-'); | ||
140 | if (hyphen) { | ||
141 | *hyphen++= 0; | ||
142 | if (strncmp("fam", hyphen, 3) == 0) { | ||
143 | rversion->familiar_revision=hyphen+3; | ||
144 | hyphen= strrchr(rversion->version,'-'); | ||
145 | if (hyphen) { | ||
146 | *hyphen++= 0; | ||
147 | rversion->revision = hyphen; | ||
148 | } | ||
149 | } else { | ||
150 | rversion->revision = hyphen; | ||
151 | } | ||
152 | } | ||
153 | /* | ||
154 | fprintf(stderr,"Parsed version: %lu, %s, %s, %s\n", | ||
155 | rversion->epoch, | ||
156 | rversion->version, | ||
157 | rversion->revision, | ||
158 | rversion->familiar_revision); | ||
159 | */ | ||
160 | return 0; | ||
161 | } | ||
162 | |||
163 | int compareVersions( const char *v1, const char *v2 ) | ||
164 | { | ||
165 | const char *err; | ||
166 | versionrevision ver, ref; | ||
167 | |||
168 | err = parseversion(&ref, v1); | ||
169 | if (err) { | ||
170 | fprintf(stderr, "Invalid version `%s': %s\n", v2, err); | ||
171 | return -2; | ||
172 | } | ||
173 | |||
174 | err = parseversion(&ver, v2); | ||
175 | if (err) { | ||
176 | fprintf(stderr, "Invalid version `%s': %s\n", v1, err); | ||
177 | return -2; | ||
178 | } | ||
179 | |||
180 | if ( versionsatisfied3( &ver, &ref, "=" ) ) | ||
181 | return 0; | ||
182 | else if ( versionsatisfied3( &ver, &ref, "<" ) ) | ||
183 | return -1; | ||
184 | else | ||
185 | return 1; | ||
186 | } | ||
187 | |||
188 | /* | ||
189 | int main(int argc, char *argv[]) | ||
190 | { | ||
191 | const char *err; | ||
192 | versionrevision ver, ref; | ||
193 | |||
194 | if (argc < 4) { | ||
195 | fprintf(stderr, "usage: %s: version op refversion\n", argv[0]); | ||
196 | return 2; | ||
197 | } | ||
198 | |||
199 | err = parseversion(&ver, argv[1]); | ||
200 | if (err) { | ||
201 | fprintf(stderr, "Invalid version `%s': %s\n", argv[1], err); | ||
202 | return 2; | ||
203 | } | ||
204 | |||
205 | err = parseversion(&ref, argv[3]); | ||
206 | if (err) { | ||
207 | fprintf(stderr, "Invalid version `%s': %s\n", argv[3], err); | ||
208 | return 2; | ||
209 | } | ||
210 | |||
211 | printf( "Result: %d\n", versionsatisfied3(&ver, &ref, argv[2]) ); | ||
212 | } | ||
213 | |||
214 | */ | ||