summaryrefslogtreecommitdiffstats
path: root/external_libs/python/pyzmq-14.7.0/buildutils/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'external_libs/python/pyzmq-14.7.0/buildutils/config.py')
-rw-r--r--external_libs/python/pyzmq-14.7.0/buildutils/config.py157
1 files changed, 0 insertions, 157 deletions
diff --git a/external_libs/python/pyzmq-14.7.0/buildutils/config.py b/external_libs/python/pyzmq-14.7.0/buildutils/config.py
deleted file mode 100644
index c674655a..00000000
--- a/external_libs/python/pyzmq-14.7.0/buildutils/config.py
+++ /dev/null
@@ -1,157 +0,0 @@
-"""Config functions"""
-#-----------------------------------------------------------------------------
-# Copyright (C) PyZMQ Developers
-#
-# This file is part of pyzmq, copied and adapted from h5py.
-# h5py source used under the New BSD license
-#
-# h5py: <http://code.google.com/p/h5py/>
-#
-# Distributed under the terms of the New BSD License. The full license is in
-# the file COPYING.BSD, distributed as part of this software.
-#-----------------------------------------------------------------------------
-
-import sys
-import os
-import json
-
-try:
- from configparser import ConfigParser
-except:
- from ConfigParser import ConfigParser
-
-pjoin = os.path.join
-from .msg import debug, fatal, warn
-
-#-----------------------------------------------------------------------------
-# Utility functions (adapted from h5py: http://h5py.googlecode.com)
-#-----------------------------------------------------------------------------
-
-
-def load_config(name, base='conf'):
- """Load config dict from JSON"""
- fname = pjoin(base, name + '.json')
- if not os.path.exists(fname):
- return {}
- try:
- with open(fname) as f:
- cfg = json.load(f)
- except Exception as e:
- warn("Couldn't load %s: %s" % (fname, e))
- cfg = {}
- return cfg
-
-
-def save_config(name, data, base='conf'):
- """Save config dict to JSON"""
- if not os.path.exists(base):
- os.mkdir(base)
- fname = pjoin(base, name+'.json')
- with open(fname, 'w') as f:
- json.dump(data, f, indent=2)
-
-
-def v_str(v_tuple):
- """turn (2,0,1) into '2.0.1'."""
- return ".".join(str(x) for x in v_tuple)
-
-def get_eargs():
- """ Look for options in environment vars """
-
- settings = {}
-
- zmq = os.environ.get("ZMQ_PREFIX", None)
- if zmq is not None:
- debug("Found environ var ZMQ_PREFIX=%s" % zmq)
- settings['zmq_prefix'] = zmq
-
- return settings
-
-def cfg2dict(cfg):
- """turn a ConfigParser into a nested dict
-
- because ConfigParser objects are dumb.
- """
- d = {}
- for section in cfg.sections():
- d[section] = dict(cfg.items(section))
- return d
-
-def get_cfg_args():
- """ Look for options in setup.cfg """
-
- if not os.path.exists('setup.cfg'):
- return {}
- cfg = ConfigParser()
- cfg.read('setup.cfg')
- cfg = cfg2dict(cfg)
-
- g = cfg.setdefault('global', {})
- # boolean keys:
- for key in ['libzmq_extension',
- 'bundle_libzmq_dylib',
- 'no_libzmq_extension',
- 'have_sys_un_h',
- 'skip_check_zmq',
- ]:
- if key in g:
- g[key] = eval(g[key])
-
- # globals go to top level
- cfg.update(cfg.pop('global'))
- return cfg
-
-def config_from_prefix(prefix):
- """Get config from zmq prefix"""
- settings = {}
- if prefix.lower() in ('default', 'auto', ''):
- settings['zmq_prefix'] = ''
- settings['libzmq_extension'] = False
- settings['no_libzmq_extension'] = False
- elif prefix.lower() in ('bundled', 'extension'):
- settings['zmq_prefix'] = ''
- settings['libzmq_extension'] = True
- settings['no_libzmq_extension'] = False
- else:
- settings['zmq_prefix'] = prefix
- settings['libzmq_extension'] = False
- settings['no_libzmq_extension'] = True
- return settings
-
-def merge(into, d):
- """merge two containers
-
- into is updated, d has priority
- """
- if isinstance(into, dict):
- for key in d.keys():
- if key not in into:
- into[key] = d[key]
- else:
- into[key] = merge(into[key], d[key])
- return into
- elif isinstance(into, list):
- return into + d
- else:
- return d
-
-def discover_settings(conf_base=None):
- """ Discover custom settings for ZMQ path"""
- settings = {
- 'zmq_prefix': '',
- 'libzmq_extension': False,
- 'no_libzmq_extension': False,
- 'skip_check_zmq': False,
- 'build_ext': {},
- 'bdist_egg': {},
- }
- if sys.platform.startswith('win'):
- settings['have_sys_un_h'] = False
-
- if conf_base:
- # lowest priority
- merge(settings, load_config('config', conf_base))
- merge(settings, get_cfg_args())
- merge(settings, get_eargs())
-
- return settings