util.py
119 lines
| 3.6 KiB
| text/x-python
|
PythonLexer
MinRK
|
r3598 | """some generic utilities""" | ||
MinRK
|
r3603 | import re | ||
MinRK
|
r3614 | import socket | ||
MinRK
|
r3598 | |||
class ReverseDict(dict): | ||||
"""simple double-keyed subset of dict methods.""" | ||||
def __init__(self, *args, **kwargs): | ||||
dict.__init__(self, *args, **kwargs) | ||||
self._reverse = dict() | ||||
for key, value in self.iteritems(): | ||||
self._reverse[value] = key | ||||
def __getitem__(self, key): | ||||
try: | ||||
return dict.__getitem__(self, key) | ||||
except KeyError: | ||||
return self._reverse[key] | ||||
def __setitem__(self, key, value): | ||||
if key in self._reverse: | ||||
raise KeyError("Can't have key %r on both sides!"%key) | ||||
dict.__setitem__(self, key, value) | ||||
self._reverse[value] = key | ||||
def pop(self, key): | ||||
value = dict.pop(self, key) | ||||
MinRK
|
r3612 | self._reverse.pop(value) | ||
MinRK
|
r3598 | return value | ||
def get(self, key, default=None): | ||||
try: | ||||
return self[key] | ||||
except KeyError: | ||||
return default | ||||
MinRK
|
r3603 | def validate_url(url): | ||
"""validate a url for zeromq""" | ||||
if not isinstance(url, basestring): | ||||
raise TypeError("url must be a string, not %r"%type(url)) | ||||
url = url.lower() | ||||
proto_addr = url.split('://') | ||||
assert len(proto_addr) == 2, 'Invalid url: %r'%url | ||||
proto, addr = proto_addr | ||||
assert proto in ['tcp','pgm','epgm','ipc','inproc'], "Invalid protocol: %r"%proto | ||||
# domain pattern adapted from http://www.regexlib.com/REDetails.aspx?regexp_id=391 | ||||
# author: Remi Sabourin | ||||
pat = re.compile(r'^([\w\d]([\w\d\-]{0,61}[\w\d])?\.)*[\w\d]([\w\d\-]{0,61}[\w\d])?$') | ||||
if proto == 'tcp': | ||||
lis = addr.split(':') | ||||
assert len(lis) == 2, 'Invalid url: %r'%url | ||||
addr,s_port = lis | ||||
try: | ||||
port = int(s_port) | ||||
except ValueError: | ||||
raise AssertionError("Invalid port %r in url: %r"%(port, url)) | ||||
MinRK
|
r3635 | assert addr == '*' or pat.match(addr) is not None, 'Invalid url: %r'%url | ||
MinRK
|
r3603 | |||
else: | ||||
# only validate tcp urls currently | ||||
pass | ||||
return True | ||||
def validate_url_container(container): | ||||
"""validate a potentially nested collection of urls.""" | ||||
if isinstance(container, basestring): | ||||
url = container | ||||
return validate_url(url) | ||||
elif isinstance(container, dict): | ||||
container = container.itervalues() | ||||
for element in container: | ||||
MinRK
|
r3614 | validate_url_container(element) | ||
def split_url(url): | ||||
"""split a zmq url (tcp://ip:port) into ('tcp','ip','port').""" | ||||
proto_addr = url.split('://') | ||||
assert len(proto_addr) == 2, 'Invalid url: %r'%url | ||||
proto, addr = proto_addr | ||||
lis = addr.split(':') | ||||
assert len(lis) == 2, 'Invalid url: %r'%url | ||||
addr,s_port = lis | ||||
return proto,addr,s_port | ||||
def disambiguate_ip_address(ip, location=None): | ||||
"""turn multi-ip interfaces '0.0.0.0' and '*' into connectable | ||||
ones, based on the location (default interpretation of location is localhost).""" | ||||
if ip in ('0.0.0.0', '*'): | ||||
external_ips = socket.gethostbyname_ex(socket.gethostname())[2] | ||||
if location is None or location in external_ips: | ||||
ip='127.0.0.1' | ||||
MinRK
|
r3622 | elif location: | ||
return location | ||||
MinRK
|
r3614 | return ip | ||
def disambiguate_url(url, location=None): | ||||
"""turn multi-ip interfaces '0.0.0.0' and '*' into connectable | ||||
ones, based on the location (default interpretation is localhost). | ||||
This is for zeromq urls, such as tcp://*:10101.""" | ||||
try: | ||||
proto,ip,port = split_url(url) | ||||
except AssertionError: | ||||
# probably not tcp url; could be ipc, etc. | ||||
return url | ||||
ip = disambiguate_ip_address(ip,location) | ||||
return "%s://%s:%s"%(proto,ip,port) | ||||