summaryrefslogtreecommitdiff
path: root/apt-pkg/version.h
blob: 27e8e1f1bc016c7644eb2ae0dfd585572d30a6df (plain)
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
// -*- mode: cpp; mode: fold -*-
// Description								/*{{{*/
// $Id: version.h,v 1.6 2001/02/20 07:03:17 jgg Exp $
/* ######################################################################

   Version - Versioning system..

   The versioning system represents how versions are compared, represented
   and how dependencies are evaluated. As a general rule versioning
   systems are not compatible unless specifically allowed by the 
   TestCompatibility query.
   
   The versions are stored in a global list of versions, but that is just
   so that they can be queried when someone does 'apt-get -v'. 
   pkgSystem provides the proper means to access the VS for the active
   system.
   
   ##################################################################### */
									/*}}}*/
#ifndef PKGLIB_VERSION_H
#define PKGLIB_VERSION_H

#ifdef __GNUG__
#pragma interface "apt-pkg/version.h"
#endif 

#include <string>

class pkgVersioningSystem
{
   public:
   // Global list of VS's
   static pkgVersioningSystem **GlobalList;
   static unsigned long GlobalListLen;
   static pkgVersioningSystem *GetVS(const char *Label);
   
   const char *Label;
   
   // Compare versions..
   virtual int DoCmpVersion(const char *A,const char *Aend,
			  const char *B,const char *Bend) = 0;   
   virtual bool CheckDep(const char *PkgVer,int Op,const char *DepVer) = 0;
   virtual int DoCmpReleaseVer(const char *A,const char *Aend,
			       const char *B,const char *Bend) = 0;
   virtual string UpstreamVersion(const char *A) = 0;
   
   // See if the given VS is compatible with this one.. 
   virtual bool TestCompatibility(pkgVersioningSystem const &Against) 
                {return this == &Against;};

   // Shortcuts
   inline int CmpVersion(const char *A, const char *B)
   {
      return DoCmpVersion(A,A+strlen(A),B,B+strlen(B));
   };
   inline int CmpVersion(string A,string B)
   {
      return DoCmpVersion(A.begin(),A.end(),B.begin(),B.end());
   };  
   inline int CmpReleaseVer(const char *A, const char *B)
   {
      return DoCmpReleaseVer(A,A+strlen(A),B,B+strlen(B));
   };
   inline int CmpReleaseVer(string A,string B)
   {
      return DoCmpReleaseVer(A.begin(),A.end(),B.begin(),B.end());
   };  
   
   pkgVersioningSystem();
   virtual ~pkgVersioningSystem() {};
};

#ifdef APT_COMPATIBILITY
#include <apt-pkg/debversion.h>
#endif

#endif