aboutsummaryrefslogtreecommitdiff
blob: 6586088b96d633f176d0c67bcd56e6388a23a390 (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
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
# R overlay --
# -*- coding: utf-8 -*-
# Copyright (C) 2013 André Erdmann <dywi@mailerd.de>
# Distributed under the terms of the GNU General Public License;
# either version 2 of the License, or (at your option) any later version.

import sys
import itertools

if sys.hexversion >= 0x3000000:
   _zip_longest = itertools.zip_longest
else:
   _zip_longest = itertools.izip_longest


# integer representation of version comparision
VMOD_NONE  = 0
VMOD_UNDEF = 1
VMOD_NOT   = 2
VMOD_EQ    = 4
VMOD_NE    = VMOD_NOT | VMOD_EQ
VMOD_GT    = 8
VMOD_GE    = VMOD_EQ | VMOD_GT
VMOD_LT    = 16
VMOD_LE    = VMOD_EQ | VMOD_LT

VMOD_INVERSE_MAP = {
   VMOD_EQ: VMOD_NE,
   VMOD_NE: VMOD_EQ,
   VMOD_LE: VMOD_GT,
   VMOD_LT: VMOD_GE,
   VMOD_GE: VMOD_LT,
   VMOD_GT: VMOD_LE,
}
VMOD_INVERSE_EQ_PRESERVE_MAP = {
   VMOD_EQ: VMOD_NE,
   VMOD_NE: VMOD_EQ,
   VMOD_LE: VMOD_GE,
   VMOD_LT: VMOD_GT,
   VMOD_GE: VMOD_LE,
   VMOD_GT: VMOD_LT,
}

def vmod_inverse ( vmod, keep_eq=True ):
   """Returns the inverse of vmod (== becomes !=, > becomes <=, ...).
   Returns VMOD_UNDEF if the operation is not supported.

   arguments:
   * vmod    -- int
   * keep_eq -- preserve VMOD_EQ
   """
   return (
      VMOD_INVERSE_EQ_PRESERVE_MAP if keep_eq else VMOD_INVERSE_MAP
   ).get ( vmod, VMOD_UNDEF )
# --- end of vmod_inverse (...) ---

def pkgver_decorator ( func ):
   def wrapped ( p, *args, **kwargs ):
      return func ( p._info ['version'], *args, **kwargs )
   # --- end of wrapped (...) ---
   wrapped.__name__ = func.__name__
   wrapped.__doc__  = func.__doc__
   wrapped.__dict__.update ( func.__dict__ )
   return wrapped
# --- end of pkgver_decorator (...) ---


class VersionTuple ( tuple ):

   def __init__ ( self, *args, **kwargs ):
      super ( VersionTuple, self ).__init__ ( *args, **kwargs )
   # --- end of __init__ (...) ---

   def get_comparator ( self, mode ):
      """Returns a function "this ~ other" that returns
      "<this version> <mode, e.g. VMOD_EQ> <other version>", e.g. <a> <= <b>.

      Returns None if mode is unknown / not supported.

      Note: Use vmod_inverse(mode) to get a comparator "other ~ this"

      arguments:
      * mode -- comparator 'mode' (VMOD_EQ, VMOD_NE, VMOD_LE, VMOD_GE,
                VMOD_LT, VMOD_GT)
      """
      if not mode or mode & VMOD_UNDEF:
         return None
      elif mode & VMOD_EQ:
         if mode == VMOD_EQ:
            return self.__eq__
         elif mode == VMOD_NE:
            return self.__ne__
         elif mode == VMOD_LE:
            return self.__le__
         elif mode == VMOD_GE:
            return self.__ge__
      elif mode == VMOD_LT:
         return self.__lt__
      elif mode == VMOD_GT:
         return self.__gt__

      return None
   # --- end of get_comparator (...) ---

   def get_package_comparator ( self, mode, keep_eq=True ):
      """Returns a function "package ~ this" that returns
      "<package version> <inversed mode> <this version>"

      Returns None if mode is unknown / not supported.

      arguments:
      * mode    -- comparator 'mode' that will be inversed
                   (see get_comparator() and vmod_inverse())
      * keep_eq -- preserve VMOD_EQ when determining the inverse of mode
                   (Example: '<' becomes '>' if True, else '>=')
      """
      f = self.get_comparator ( vmod_inverse ( mode, keep_eq=keep_eq ) )
      return pkgver_decorator ( f ) if f is not None else None
   # --- end of get_package_comparator (...) ---

   def set_default_compare ( self, mode ):
      """Sets the default comparator.

      arguments:
      * mode -- comparator mode
      """
      self._default_compare = self.get_comparator ( mode )
   # --- end of set_default_compare (...) ---

   def compare ( self, other ):
      """Uses the default comparator to compare this object with another one
      and returns the result.

      arguments:
      * other --
      """
      self._default_compare ( other )
   # --- end of compare (...) ---

# --- end of VersionTuple ---


class IntVersionTuple ( VersionTuple ):

   def iter_compare ( self, other ):
      return _zip_longest ( self, other, fillvalue=0 )
   # --- end of _iter_compare (...) ---

   def __eq__ ( self, other ):
      if isinstance ( other, self.__class__ ):
         return all ( a == b
            for a, b in _zip_longest ( self, other, fillvalue=0 )
         )
      else:
         return NotImplemented
   # --- end of __eq__ (...) ---

   def __ne__ ( self, other ):
      if isinstance ( other, self.__class__ ):
         return any ( a != b
            for a, b in _zip_longest ( self, other, fillvalue=0 )
         )
      else:
         return NotImplemented
   # --- end of __ne__ (...) ---

   def __le__ ( self, other ):
      if isinstance ( other, self.__class__ ):
         #
         # ( k0, k1, ..., kN ) x ( l0, l1, ..., lN )
         #
         # from left to right (high to low)
         # if k_j < l_j
         #    return True (k <= j)
         # elif k_j == l_j
         #    continue with next
         # else
         #    return False (k > j)
         #
         # return True if last pair was equal
         for a, b in _zip_longest ( self, other, fillvalue=0 ):
            if a < b:
               return True
            elif a > b:
               return False
         else:
            return True
      else:
         return NotImplemented
   # --- end of __le__ (...) ---

   def __ge__ ( self, other ):
      if isinstance ( other, self.__class__ ):
         for a, b in _zip_longest ( self, other, fillvalue=0 ):
            if a > b:
               return True
            elif a < b:
               return False
         else:
            return True
      else:
         return NotImplemented
   # --- end of __ge__ (...) ---

   def __lt__ ( self, other ):
      if isinstance ( other, self.__class__ ):
         for a, b in _zip_longest ( self, other, fillvalue=0 ):
            if a < b:
               return True
            elif a > b:
               return False
         else:
            return False
      else:
         return NotImplemented
   # --- end of __lt__ (...) ---

   def __gt__ ( self, other ):
      if isinstance ( other, self.__class__ ):
         for a, b in _zip_longest ( self, other, fillvalue=0 ):
            if a > b:
               return True
            elif a < b:
               return False
         else:
            return False
      else:
         return NotImplemented
   # --- end of __gt__ (...) ---

# --- end of IntVersionTuple ---