summaryrefslogtreecommitdiff
path: root/noncore/settings/packagemanager/opackagemanager.cpp
Unidiff
Diffstat (limited to 'noncore/settings/packagemanager/opackagemanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/packagemanager/opackagemanager.cpp101
1 files changed, 95 insertions, 6 deletions
diff --git a/noncore/settings/packagemanager/opackagemanager.cpp b/noncore/settings/packagemanager/opackagemanager.cpp
index ad2fe02..3633e05 100644
--- a/noncore/settings/packagemanager/opackagemanager.cpp
+++ b/noncore/settings/packagemanager/opackagemanager.cpp
@@ -8,48 +8,50 @@
8 _;:,     .>    :=|. This program is free software; you can 8 _;:,     .>    :=|. This program is free software; you can
9.> <`_,   >  .   <= redistribute it and/or modify it under 9.> <`_,   >  .   <= redistribute it and/or modify it under
10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 10:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
11.="- .-=="i,     .._ License as published by the Free Software 11.="- .-=="i,     .._ License as published by the Free Software
12 - .   .-<_>     .<> Foundation; either version 2 of the License, 12 - .   .-<_>     .<> Foundation; either version 2 of the License,
13     ._= =}       : or (at your option) any later version. 13     ._= =}       : or (at your option) any later version.
14    .%`+i>       _;_. 14    .%`+i>       _;_.
15    .i_,=:_.      -<s. This program is distributed in the hope that 15    .i_,=:_.      -<s. This program is distributed in the hope that
16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 16     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
17    : ..    .:,     . . . without even the implied warranty of 17    : ..    .:,     . . . without even the implied warranty of
18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 18    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 19  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
20..}^=.=       =       ; Library General Public License for more 20..}^=.=       =       ; Library General Public License for more
21++=   -.     .`     .: details. 21++=   -.     .`     .: details.
22 :     =  ...= . :.=- 22 :     =  ...= . :.=-
23 -.   .:....=;==+<; You should have received a copy of the GNU 23 -.   .:....=;==+<; You should have received a copy of the GNU
24  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29 29
30*/ 30*/
31 31
32#include <ctype.h>
33
32#include <qpe/qpeapplication.h> 34#include <qpe/qpeapplication.h>
33 35
34#include "opackagemanager.h" 36#include "opackagemanager.h"
35#include "oipkgconfigdlg.h" 37#include "oipkgconfigdlg.h"
36 38
37OPackageManager::OPackageManager( Config *config, QObject *parent, const char *name ) 39OPackageManager::OPackageManager( Config *config, QObject *parent, const char *name )
38 : QObject( parent, name ) 40 : QObject( parent, name )
39 , m_config( config ) 41 , m_config( config )
40 , m_ipkg( m_config, this ) 42 , m_ipkg( m_config, this )
41 , m_packages( 9973 ) 43 , m_packages( 9973 )
42 , m_categories() 44 , m_categories()
43{ 45{
44 m_packages.setAutoDelete( true ); 46 m_packages.setAutoDelete( true );
45} 47}
46 48
47void OPackageManager::loadAvailablePackages() 49void OPackageManager::loadAvailablePackages()
48{ 50{
49 m_packages.clear(); 51 m_packages.clear();
50 52
51 OConfItemList *serverList = m_ipkg.servers(); 53 OConfItemList *serverList = m_ipkg.servers();
52 54
53 if ( serverList ) 55 if ( serverList )
54 { 56 {
55 // Initialize status messaging 57 // Initialize status messaging
@@ -272,52 +274,139 @@ OConfItem *OPackageManager::findConfItem( OConfItem::Type type, const QString &n
272 if ( confList ) 274 if ( confList )
273 { 275 {
274 for ( OConfItemListIterator confIt( *confList ); confIt.current(); ++confIt ) 276 for ( OConfItemListIterator confIt( *confList ); confIt.current(); ++confIt )
275 { 277 {
276 OConfItem *conf = confIt.current(); 278 OConfItem *conf = confIt.current();
277 279
278 // Add only active confinations 280 // Add only active confinations
279 if ( conf->type() == type && conf->name() == name ) 281 if ( conf->type() == type && conf->name() == name )
280 { 282 {
281 confItem = conf; 283 confItem = conf;
282 break; 284 break;
283 } 285 }
284 } 286 }
285 } 287 }
286 288
287 return confItem; 289 return confItem;
288 290
289} 291}
290 292
291OPackage *OPackageManager::findPackage( const QString &name ) 293OPackage *OPackageManager::findPackage( const QString &name )
292{ 294{
293 return m_packages[ name ]; 295 return m_packages[ name ];
294} 296}
295 297
296int OPackageManager::compareVersions( const QString &version1, const QString &version2 ) 298int OPackageManager::compareVersions( const QString &ver1, const QString &ver2 )
297{ 299{
298 // TODO - do proper compare! 300 // TODO - should this be in OIpkg???
299 if ( version1 < version2 ) 301
300 return -1; 302 int epoch1, epoch2;
301 else if ( version1 > version2 ) 303 QString version1, revision1;
304 QString version2, revision2;
305
306 parseVersion( ver1, &epoch1, &version1, &revision1 );
307 parseVersion( ver2, &epoch2, &version2, &revision2 );
308
309 if ( epoch1 > epoch2 )
302 return 1; 310 return 1;
311 else if ( epoch1 < epoch2 )
312 return -1;
303 313
304 return 0; 314 int r = verrevcmp( version1.latin1(), version2.latin1() );
315 if (r)
316 return r;
317
318 r = verrevcmp( revision1.latin1(), revision2.latin1() );
319 return r;
305} 320}
306 321
307bool OPackageManager::configureDlg( bool installOptions ) 322bool OPackageManager::configureDlg( bool installOptions )
308{ 323{
309 OIpkgConfigDlg dlg( &m_ipkg, installOptions, static_cast<QWidget *>(parent()) ); 324 OIpkgConfigDlg dlg( &m_ipkg, installOptions, static_cast<QWidget *>(parent()) );
310 return ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted ); 325 return ( QPEApplication::execDialog( &dlg ) == QDialog::Accepted );
311} 326}
312 327
313void OPackageManager::saveSettings() 328void OPackageManager::saveSettings()
314{ 329{
315 m_ipkg.saveSettings(); 330 m_ipkg.saveSettings();
316} 331}
317 332
318bool OPackageManager::executeCommand( OPackage::Command command, QStringList *packages, 333bool OPackageManager::executeCommand( OPackage::Command command, QStringList *packages,
319 const QString &destination, const QObject *receiver, 334 const QString &destination, const QObject *receiver,
320 const char *slotOutput, bool rawOutput ) 335 const char *slotOutput, bool rawOutput )
321{ 336{
322 return m_ipkg.executeCommand( command, packages, destination, receiver, slotOutput, rawOutput ); 337 return m_ipkg.executeCommand( command, packages, destination, receiver, slotOutput, rawOutput );
323} 338}
339
340void OPackageManager::parseVersion( const QString &verstr, int *epoch, QString *version,
341 QString *revision )
342{
343 *epoch = 0;
344 *revision = QString::null;
345
346 // Version string is in the format "ee:vv-rv", where ee=epoch, vv=version, rv=revision
347
348 // Get epoch
349 int colonpos = verstr.find( ':' );
350 if ( colonpos > -1 )
351 {
352 *epoch = verstr.left( colonpos ).toInt();
353 }
354
355 // Get version and revision
356 int hyphenpos = verstr.find( '-', colonpos + 1 );
357 int verlen = verstr.length();
358 if ( hyphenpos > -1 )
359 {
360 *version = verstr.mid( colonpos + 1, hyphenpos - colonpos - 1 );
361 *revision = verstr.right( verlen - hyphenpos - 1 );
362 }
363 else
364 {
365 *version = verstr.right( verlen - colonpos );
366 }
367}
368
369/*
370 * libdpkg - Debian packaging suite library routines
371 * vercmp.c - comparison of version numbers
372 *
373 * Copyright (C) 1995 Ian Jackson <iwj10@cus.cam.ac.uk>
374 */
375int OPackageManager::verrevcmp( const char *val, const char *ref )
376{
377 int vc, rc;
378 long vl, rl;
379 const char *vp, *rp;
380 const char *vsep, *rsep;
381
382 if (!val) val= "";
383 if (!ref) ref= "";
384 for (;;) {
385 vp= val; while (*vp && !isdigit(*vp)) vp++;
386 rp= ref; while (*rp && !isdigit(*rp)) rp++;
387 for (;;) {
388 vc= (val == vp) ? 0 : *val++;
389 rc= (ref == rp) ? 0 : *ref++;
390 if (!rc && !vc) break;
391 if (vc && !isalpha(vc)) vc += 256; /* assumes ASCII character set */
392 if (rc && !isalpha(rc)) rc += 256;
393 if (vc != rc) return vc - rc;
394 }
395 val= vp;
396 ref= rp;
397 vl=0; if (isdigit(*vp)) vl= strtol(val,(char**)&val,10);
398 rl=0; if (isdigit(*rp)) rl= strtol(ref,(char**)&ref,10);
399 if (vl != rl) return vl - rl;
400
401 vc = *val;
402 rc = *ref;
403 vsep = strchr(".-", vc);
404 rsep = strchr(".-", rc);
405 if (vsep && !rsep) return -1;
406 if (!vsep && rsep) return +1;
407
408 if (!*val && !*ref) return 0;
409 if (!*val) return -1;
410 if (!*ref) return +1;
411 }
412}