ctdb-tests: Fix signed/unsigned comparison by declaring as unsigned
[Samba.git] / python / samba / compat.py
blobd7603d3964ebf057d744d6be179f5162b56a52aa
1 # module which helps with porting to Python 3
3 # Copyright (C) Lumir Balhar <lbalhar@redhat.com> 2017
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 """module which helps with porting to Python 3"""
20 import sys
22 PY3 = sys.version_info[0] == 3
24 if PY3:
25 # Sometimes in PY3 we have variables whose content can be 'bytes' or
26 # 'str' and we can't be sure which. Generally this is because the
27 # code variable can be initialised (or reassigned) a value from different
28 # api(s) or functions depending on complex conditions or logic. Or another
29 # common case is in PY2 the variable is 'type <str>' and in PY3 it is
30 # 'class <str>' and the function to use e.g. b64encode requires 'bytes'
31 # in PY3. In such cases it would be nice to avoid excessive testing in
32 # the client code. Calling such a helper function should be avoided
33 # if possible but sometimes this just isn't possible.
34 # If a 'str' object is passed in it is encoded using 'utf8' or if 'bytes'
35 # is passed in it is returned unchanged.
36 # Using this function is PY2/PY3 code should ensure in most cases
37 # the PY2 code runs unchanged in PY2 whereas the code in PY3 possibly
38 # encodes the variable (see PY2 implementation of this function below)
39 def get_bytes(bytesorstring):
40 tmp = bytesorstring
41 if isinstance(bytesorstring, str):
42 tmp = bytesorstring.encode('utf8')
43 elif not isinstance(bytesorstring, bytes):
44 raise ValueError('Expected byte or string for %s:%s' % (type(bytesorstring), bytesorstring))
45 return tmp
47 # helper function to get a string from a variable that maybe 'str' or
48 # 'bytes' if 'bytes' then it is decoded using 'utf8'. If 'str' is passed
49 # it is returned unchanged
50 # Using this function is PY2/PY3 code should ensure in most cases
51 # the PY2 code runs unchanged in PY2 whereas the code in PY3 possibly
52 # decodes the variable (see PY2 implementation of this function below)
53 def get_string(bytesorstring):
54 tmp = bytesorstring
55 if isinstance(bytesorstring, bytes):
56 tmp = bytesorstring.decode('utf8')
57 elif not isinstance(bytesorstring, str):
58 raise ValueError('Expected byte of string for %s:%s' % (type(bytesorstring), bytesorstring))
59 return tmp
61 def cmp_fn(x, y):
62 """
63 Replacement for built-in function cmp that was removed in Python 3
65 Compare the two objects x and y and return an integer according to
66 the outcome. The return value is negative if x < y, zero if x == y
67 and strictly positive if x > y.
68 """
70 return (x > y) - (x < y)
71 # compat functions
72 from urllib.parse import quote as urllib_quote
73 from urllib.parse import urljoin as urllib_join
74 from urllib.request import urlopen as urllib_urlopen
75 from functools import cmp_to_key as cmp_to_key_fn
76 import socketserver as SocketServer
78 # compat types
79 integer_types = int,
80 string_types = str
81 text_type = str
82 binary_type = bytes
84 # alias
85 import io
86 StringIO = io.StringIO
87 def ConfigParser(defaults=None, dict_type=dict, allow_no_value=False):
88 from configparser import ConfigParser
89 return ConfigParser(defaults, dict_type, allow_no_value, interpolation=None)
90 else:
91 # Helper function to return bytes.
92 # if 'unicode' is passed in then it is decoded using 'utf8' and
93 # the result returned. If 'str' is passed then it is returned unchanged.
94 # Using this function is PY2/PY3 code should ensure in most cases
95 # the PY2 code runs unchanged in PY2 whereas the code in PY3 possibly
96 # encodes the variable (see PY3 implementation of this function above)
97 def get_bytes(bytesorstring):
98 tmp = bytesorstring
99 if isinstance(bytesorstring, unicode):
100 tmp = bytesorstring.encode('utf8')
101 elif not isinstance(bytesorstring, str):
102 raise ValueError('Expected string for %s:%s' % (type(bytesorstring), bytesorstring))
103 return tmp
105 # Helper function to return string.
106 # if 'str' or 'unicode' passed in they are returned unchanged
107 # otherwise an exception is generated
108 # Using this function is PY2/PY3 code should ensure in most cases
109 # the PY2 code runs unchanged in PY2 whereas the code in PY3 possibly
110 # decodes the variable (see PY3 implementation of this function above)
111 def get_string(bytesorstring):
112 tmp = bytesorstring
113 if not(isinstance(bytesorstring, str) or isinstance(bytesorstring, unicode)):
114 raise ValueError('Expected str or unicode for %s:%s' % (type(bytesorstring), bytesorstring))
115 return tmp
118 if sys.version_info < (2, 7):
119 def cmp_to_key_fn(mycmp):
121 """Convert a cmp= function into a key= function"""
122 class K(object):
123 __slots__ = ['obj']
125 def __init__(self, obj, *args):
126 self.obj = obj
128 def __lt__(self, other):
129 return mycmp(self.obj, other.obj) < 0
131 def __gt__(self, other):
132 return mycmp(self.obj, other.obj) > 0
134 def __eq__(self, other):
135 return mycmp(self.obj, other.obj) == 0
137 def __le__(self, other):
138 return mycmp(self.obj, other.obj) <= 0
140 def __ge__(self, other):
141 return mycmp(self.obj, other.obj) >= 0
143 def __ne__(self, other):
144 return mycmp(self.obj, other.obj) != 0
146 def __hash__(self):
147 raise TypeError('hash not implemented')
148 return K
149 else:
150 from functools import cmp_to_key as cmp_to_key_fn
151 # compat functions
152 from urllib import quote as urllib_quote
153 from urllib import urlopen as urllib_urlopen
154 from urlparse import urljoin as urllib_join
155 import SocketServer as SocketServer
157 # compat types
158 integer_types = (int, long)
159 string_types = basestring
160 text_type = unicode
161 binary_type = str
163 # alias
164 import cStringIO
165 StringIO = cStringIO.StringIO
166 from ConfigParser import ConfigParser
167 cmp_fn = cmp