]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/__init__.py
Merge pull request #120 from zancas/1634-dont-return-none_5
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / __init__.py
1 """
2 Decentralized storage grid.
3
4 community web site: U{https://tahoe-lafs.org/}
5 """
6
7 class PackagingError(EnvironmentError):
8     """
9     Raised when there is an error in packaging of Tahoe-LAFS or its
10     dependencies which makes it impossible to proceed safely.
11     """
12     pass
13
14 __version__ = "unknown"
15 try:
16     from allmydata._version import __version__
17 except ImportError:
18     # We're running in a tree that hasn't run update_version, and didn't
19     # come with a _version.py, so we don't know what our version is.
20     # This should not happen very often.
21     pass
22
23 full_version = "unknown"
24 branch = "unknown"
25 try:
26     from allmydata._version import full_version, branch
27 except ImportError:
28     # We're running in a tree that hasn't run update_version, and didn't
29     # come with a _version.py, so we don't know what our full version or
30     # branch is. This should not happen very often.
31     pass
32
33 __appname__ = "unknown"
34 try:
35     from allmydata._appname import __appname__
36 except ImportError:
37     # We're running in a tree that hasn't run "./setup.py".  This shouldn't happen.
38     pass
39
40 # __full_version__ is the one that you ought to use when identifying yourself in the
41 # "application" part of the Tahoe versioning scheme:
42 # https://tahoe-lafs.org/trac/tahoe-lafs/wiki/Versioning
43 __full_version__ = __appname__ + '/' + str(__version__)
44
45 import os, platform, re, subprocess, sys, traceback
46 _distributor_id_cmdline_re = re.compile("(?:Distributor ID:)\s*(.*)", re.I)
47 _release_cmdline_re = re.compile("(?:Release:)\s*(.*)", re.I)
48
49 _distributor_id_file_re = re.compile("(?:DISTRIB_ID\s*=)\s*(.*)", re.I)
50 _release_file_re = re.compile("(?:DISTRIB_RELEASE\s*=)\s*(.*)", re.I)
51
52 global _distname,_version
53 _distname = None
54 _version = None
55
56 def get_linux_distro():
57     """ Tries to determine the name of the Linux OS distribution name.
58
59     First, try to parse a file named "/etc/lsb-release".  If it exists, and
60     contains the "DISTRIB_ID=" line and the "DISTRIB_RELEASE=" line, then return
61     the strings parsed from that file.
62
63     If that doesn't work, then invoke platform.dist().
64
65     If that doesn't work, then try to execute "lsb_release", as standardized in
66     2001:
67
68     http://refspecs.freestandards.org/LSB_1.0.0/gLSB/lsbrelease.html
69
70     The current version of the standard is here:
71
72     http://refspecs.freestandards.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/lsbrelease.html
73
74     that lsb_release emitted, as strings.
75
76     Returns a tuple (distname,version). Distname is what LSB calls a
77     "distributor id", e.g. "Ubuntu".  Version is what LSB calls a "release",
78     e.g. "8.04".
79
80     A version of this has been submitted to python as a patch for the standard
81     library module "platform":
82
83     http://bugs.python.org/issue3937
84     """
85     global _distname,_version
86     if _distname and _version:
87         return (_distname, _version)
88
89     try:
90         etclsbrel = open("/etc/lsb-release", "rU")
91         for line in etclsbrel:
92             m = _distributor_id_file_re.search(line)
93             if m:
94                 _distname = m.group(1).strip()
95                 if _distname and _version:
96                     return (_distname, _version)
97             m = _release_file_re.search(line)
98             if m:
99                 _version = m.group(1).strip()
100                 if _distname and _version:
101                     return (_distname, _version)
102     except EnvironmentError:
103         pass
104
105     (_distname, _version) = platform.dist()[:2]
106     if _distname and _version:
107         return (_distname, _version)
108
109     if os.path.isfile("/usr/bin/lsb_release") or os.path.isfile("/bin/lsb_release"):
110         try:
111             p = subprocess.Popen(["lsb_release", "--all"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
112             rc = p.wait()
113             if rc == 0:
114                 for line in p.stdout.readlines():
115                     m = _distributor_id_cmdline_re.search(line)
116                     if m:
117                         _distname = m.group(1).strip()
118                         if _distname and _version:
119                             return (_distname, _version)
120
121                     m = _release_cmdline_re.search(p.stdout.read())
122                     if m:
123                         _version = m.group(1).strip()
124                         if _distname and _version:
125                             return (_distname, _version)
126         except EnvironmentError:
127             pass
128
129     if os.path.exists("/etc/arch-release"):
130         return ("Arch_Linux", "")
131
132     return (_distname,_version)
133
134 def get_platform():
135     # Our version of platform.platform(), telling us both less and more than the
136     # Python Standard Library's version does.
137     # We omit details such as the Linux kernel version number, but we add a
138     # more detailed and correct rendition of the Linux distribution and
139     # distribution-version.
140     if "linux" in platform.system().lower():
141         return platform.system()+"-"+"_".join(get_linux_distro())+"-"+platform.machine()+"-"+"_".join([x for x in platform.architecture() if x])
142     else:
143         return platform.platform()
144
145
146 from allmydata.util import verlib
147 def normalized_version(verstr, what=None):
148     try:
149         return verlib.NormalizedVersion(verlib.suggest_normalized_version(verstr))
150     except (StandardError, verlib.IrrationalVersionError):
151         cls, value, trace = sys.exc_info()
152         raise PackagingError, ("could not parse %s due to %s: %s"
153                                % (what or repr(verstr), cls.__name__, value)), trace
154
155
156 def get_package_versions_and_locations():
157     import warnings
158     from _auto_deps import package_imports, global_deprecation_messages, deprecation_messages, \
159         runtime_warning_messages, warning_imports
160
161     def package_dir(srcfile):
162         return os.path.dirname(os.path.dirname(os.path.normcase(os.path.realpath(srcfile))))
163
164     # pkg_resources.require returns the distribution that pkg_resources attempted to put
165     # on sys.path, which can differ from the one that we actually import due to #1258,
166     # or any other bug that causes sys.path to be set up incorrectly. Therefore we
167     # must import the packages in order to check their versions and paths.
168
169     # This is to suppress all UserWarnings and various DeprecationWarnings and RuntimeWarnings
170     # (listed in _auto_deps.py).
171
172     warnings.filterwarnings("ignore", category=UserWarning, append=True)
173
174     for msg in global_deprecation_messages + deprecation_messages:
175         warnings.filterwarnings("ignore", category=DeprecationWarning, message=msg, append=True)
176     for msg in runtime_warning_messages:
177         warnings.filterwarnings("ignore", category=RuntimeWarning, message=msg, append=True)
178     try:
179         for modulename in warning_imports:
180             try:
181                 __import__(modulename)
182             except ImportError:
183                 pass
184     finally:
185         # Leave suppressions for UserWarnings and global_deprecation_messages active.
186         for ign in runtime_warning_messages + deprecation_messages:
187             warnings.filters.pop()
188
189     packages = []
190
191     def get_version(module, attr):
192         return str(getattr(module, attr, 'unknown'))
193
194     for pkgname, modulename in [(__appname__, 'allmydata')] + package_imports:
195         if modulename:
196             try:
197                 __import__(modulename)
198                 module = sys.modules[modulename]
199             except ImportError:
200                 etype, emsg, etrace = sys.exc_info()
201                 trace_info = (etype, str(emsg), ([None] + traceback.extract_tb(etrace))[-1])
202                 packages.append( (pkgname, (None, None, trace_info)) )
203             else:
204                 comment = None
205                 if pkgname == __appname__:
206                     comment = "%s: %s" % (branch, full_version)
207                 elif pkgname == 'setuptools' and hasattr(module, '_distribute'):
208                     # distribute does not report its version in any module variables
209                     comment = 'distribute'
210                 packages.append( (pkgname, (get_version(module, '__version__'), package_dir(module.__file__), comment)) )
211         elif pkgname == 'python':
212             packages.append( (pkgname, (platform.python_version(), sys.executable, None)) )
213         elif pkgname == 'platform':
214             packages.append( (pkgname, (get_platform(), None, None)) )
215
216     return packages
217
218
219 def check_requirement(req, vers_and_locs):
220     # TODO: check [] options
221     # We support only disjunctions of <=, >=, and ==
222
223     reqlist = req.split(',')
224     name = reqlist[0].split('<=')[0].split('>=')[0].split('==')[0].strip(' ').split('[')[0]
225     if name not in vers_and_locs:
226         raise PackagingError("no version info for %s" % (name,))
227     if req.strip(' ') == name:
228         return
229     (actual, location, comment) = vers_and_locs[name]
230     if actual is None:
231         # comment is (type, message, (filename, line number, function name, text)) for the original ImportError
232         raise ImportError("for requirement %r: %s" % (req, comment))
233     if actual == 'unknown':
234         return
235     actualver = normalized_version(actual, what="actual version %r of %s from %r" % (actual, name, location))
236
237     for r in reqlist:
238         s = r.split('<=')
239         if len(s) == 2:
240             required = s[1].strip(' ')
241             if actualver <= normalized_version(required, what="required maximum version %r in %r" % (required, req)):
242                 return  # maximum requirement met
243         else:
244             s = r.split('>=')
245             if len(s) == 2:
246                 required = s[1].strip(' ')
247                 if actualver >= normalized_version(required, what="required minimum version %r in %r" % (required, req)):
248                     return  # minimum requirement met
249             else:
250                 s = r.split('==')
251                 if len(s) == 2:
252                     required = s[1].strip(' ')
253                     if actualver == normalized_version(required, what="required exact version %r in %r" % (required, req)):
254                         return  # exact requirement met
255                 else:
256                     raise PackagingError("no version info or could not understand requirement %r" % (req,))
257
258     msg = ("We require %s, but could only find version %s.\n" % (req, actual))
259     if location and location != 'unknown':
260         msg += "The version we found is from %r.\n" % (location,)
261     msg += ("To resolve this problem, uninstall that version, either using your\n"
262             "operating system's package manager or by moving aside the directory.")
263     raise PackagingError(msg)
264
265
266 _vers_and_locs_list = get_package_versions_and_locations()
267
268
269 def cross_check_pkg_resources_versus_import():
270     """This function returns a list of errors due to any failed cross-checks."""
271
272     import pkg_resources
273     from _auto_deps import install_requires
274
275     pkg_resources_vers_and_locs = dict([(p.project_name.lower(), (str(p.version), p.location))
276                                         for p in pkg_resources.require(install_requires)])
277
278     return cross_check(pkg_resources_vers_and_locs, _vers_and_locs_list)
279
280
281 def cross_check(pkg_resources_vers_and_locs, imported_vers_and_locs_list):
282     """This function returns a list of errors due to any failed cross-checks."""
283
284     from _auto_deps import not_import_versionable, ignorable
285
286     errors = []
287     not_pkg_resourceable = ['python', 'platform', __appname__.lower()]
288
289     for name, (imp_ver, imp_loc, imp_comment) in imported_vers_and_locs_list:
290         name = name.lower()
291         if name not in not_pkg_resourceable:
292             if name not in pkg_resources_vers_and_locs:
293                 if name == "setuptools" and "distribute" in pkg_resources_vers_and_locs:
294                     pr_ver, pr_loc = pkg_resources_vers_and_locs["distribute"]
295                     if not (os.path.normpath(os.path.realpath(pr_loc)) == os.path.normpath(os.path.realpath(imp_loc))
296                             and imp_comment == "distribute"):
297                         errors.append("Warning: dependency 'setuptools' found to be version %r of 'distribute' from %r "
298                                       "by pkg_resources, but 'import setuptools' gave version %r [%s] from %r. "
299                                       "A version mismatch is expected, but a location mismatch is not."
300                                       % (pr_ver, pr_loc, imp_ver, imp_comment or 'probably *not* distribute', imp_loc))
301                 else:
302                     errors.append("Warning: dependency %r (version %r imported from %r) was not found by pkg_resources."
303                                   % (name, imp_ver, imp_loc))
304                 continue
305
306             pr_ver, pr_loc = pkg_resources_vers_and_locs[name]
307             if imp_ver is None and imp_loc is None:
308                 errors.append("Warning: dependency %r could not be imported. pkg_resources thought it should be possible "
309                               "to import version %r from %r.\nThe exception trace was %r."
310                               % (name, pr_ver, pr_loc, imp_comment))
311                 continue
312
313             try:
314                 pr_normver = normalized_version(pr_ver)
315             except Exception, e:
316                 errors.append("Warning: version number %r found for dependency %r by pkg_resources could not be parsed. "
317                               "The version found by import was %r from %r. "
318                               "pkg_resources thought it should be found at %r. "
319                               "The exception was %s: %s"
320                               % (pr_ver, name, imp_ver, imp_loc, pr_loc, e.__class__.__name__, e))
321             else:
322                 if imp_ver == 'unknown':
323                     if name not in not_import_versionable:
324                         errors.append("Warning: unexpectedly could not find a version number for dependency %r imported from %r. "
325                                       "pkg_resources thought it should be version %r at %r."
326                                       % (name, imp_loc, pr_ver, pr_loc))
327                 else:
328                     try:
329                         imp_normver = normalized_version(imp_ver)
330                     except Exception, e:
331                         errors.append("Warning: version number %r found for dependency %r (imported from %r) could not be parsed. "
332                                       "pkg_resources thought it should be version %r at %r. "
333                                       "The exception was %s: %s"
334                                       % (imp_ver, name, imp_loc, pr_ver, pr_loc, e.__class__.__name__, e))
335                     else:
336                         if pr_ver == 'unknown' or (pr_normver != imp_normver):
337                             if not os.path.normpath(os.path.realpath(pr_loc)) == os.path.normpath(os.path.realpath(imp_loc)):
338                                 errors.append("Warning: dependency %r found to have version number %r (normalized to %r, from %r) "
339                                               "by pkg_resources, but version %r (normalized to %r, from %r) by import."
340                                               % (name, pr_ver, str(pr_normver), pr_loc, imp_ver, str(imp_normver), imp_loc))
341
342     imported_packages = set([p.lower() for (p, _) in imported_vers_and_locs_list])
343     for pr_name, (pr_ver, pr_loc) in pkg_resources_vers_and_locs.iteritems():
344         if pr_name not in imported_packages and pr_name not in ignorable:
345             errors.append("Warning: dependency %r (version %r) found by pkg_resources not found by import."
346                           % (pr_name, pr_ver))
347
348     return errors
349
350
351 def get_error_string(errors, debug=False):
352     from allmydata._auto_deps import install_requires
353
354     msg = "\n%s\n" % ("\n".join(errors),)
355     if debug:
356         msg += ("\n"
357                 "For debugging purposes, the PYTHONPATH was\n"
358                 "  %r\n"
359                 "install_requires was\n"
360                 "  %r\n"
361                 "sys.path after importing pkg_resources was\n"
362                 "  %s\n"
363                 % (os.environ.get('PYTHONPATH'), install_requires, (os.pathsep+"\n  ").join(sys.path)) )
364     return msg
365
366 def check_all_requirements():
367     """This function returns a list of errors due to any failed checks."""
368
369     from allmydata._auto_deps import install_requires
370
371     errors = []
372
373     # We require at least 2.6 on all platforms.
374     # (On Python 3, we'll have failed long before this point.)
375     if sys.version_info < (2, 6):
376         try:
377             version_string = ".".join(map(str, sys.version_info))
378         except Exception:
379             version_string = repr(sys.version_info)
380         errors.append("Tahoe-LAFS currently requires Python v2.6 or greater (but less than v3), not %s"
381                       % (version_string,))
382
383     vers_and_locs = dict(_vers_and_locs_list)
384     for requirement in install_requires:
385         try:
386             check_requirement(requirement, vers_and_locs)
387         except (ImportError, PackagingError), e:
388             errors.append("%s: %s" % (e.__class__.__name__, e))
389
390     if errors:
391         raise PackagingError(get_error_string(errors, debug=True))
392
393 check_all_requirements()
394
395
396 def get_package_versions():
397     return dict([(k, v) for k, (v, l, c) in _vers_and_locs_list])
398
399 def get_package_locations():
400     return dict([(k, l) for k, (v, l, c) in _vers_and_locs_list])
401
402 def get_package_versions_string(show_paths=False, debug=False):
403     res = []
404     for p, (v, loc, comment) in _vers_and_locs_list:
405         info = str(p) + ": " + str(v)
406         if comment:
407             info = info + " [%s]" % str(comment)
408         if show_paths:
409             info = info + " (%s)" % str(loc)
410         res.append(info)
411
412     output = "\n".join(res) + "\n"
413
414     if not hasattr(sys, 'frozen'):
415         errors = cross_check_pkg_resources_versus_import()
416         if errors:
417             output += get_error_string(errors, debug=debug)
418
419     return output