2014-04-18 14:09:20 -07:00
|
|
|
#!/usr/bin/python
|
2014-07-22 11:15:56 -07:00
|
|
|
#
|
|
|
|
# Copyright 2014 Cumulus Networks, Inc. All rights reserved.
|
|
|
|
# Author: Roopa Prabhu, roopa@cumulusnetworks.com
|
|
|
|
#
|
|
|
|
# utils --
|
|
|
|
# helper class
|
|
|
|
#
|
2014-04-25 16:09:14 -07:00
|
|
|
import os
|
|
|
|
import fcntl
|
2014-10-09 12:58:16 -07:00
|
|
|
import re
|
2016-04-10 18:55:56 +02:00
|
|
|
import signal
|
|
|
|
|
|
|
|
from functools import partial
|
|
|
|
|
|
|
|
def signal_handler_f(ps, sig, frame):
|
|
|
|
if ps:
|
|
|
|
ps.send_signal(sig)
|
|
|
|
if sig == signal.SIGINT:
|
|
|
|
raise KeyboardInterrupt
|
2014-04-18 14:09:20 -07:00
|
|
|
|
|
|
|
class utils():
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def importName(cls, modulename, name):
|
|
|
|
""" Import a named object """
|
|
|
|
try:
|
|
|
|
module = __import__(modulename, globals(), locals(), [name])
|
|
|
|
except ImportError:
|
|
|
|
return None
|
|
|
|
return getattr(module, name)
|
2014-04-25 16:09:14 -07:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def lockFile(cls, lockfile):
|
|
|
|
try:
|
|
|
|
fp = os.open(lockfile, os.O_CREAT | os.O_TRUNC | os.O_WRONLY)
|
|
|
|
fcntl.flock(fp, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
|
|
|
except IOError:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2014-10-09 12:58:16 -07:00
|
|
|
@classmethod
|
|
|
|
def parse_iface_range(cls, name):
|
2014-10-24 10:11:07 -07:00
|
|
|
range_match = re.match("^([\w\.]+)\[([\d]+)-([\d]+)\]", name)
|
2014-10-09 12:58:16 -07:00
|
|
|
if range_match:
|
|
|
|
range_groups = range_match.groups()
|
|
|
|
if range_groups[1] and range_groups[2]:
|
|
|
|
return (range_groups[0], int(range_groups[1], 10),
|
|
|
|
int(range_groups[2], 10))
|
|
|
|
return None
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def expand_iface_range(cls, name):
|
|
|
|
ifacenames = []
|
|
|
|
iface_range = cls.parse_iface_range(name)
|
|
|
|
if iface_range:
|
|
|
|
for i in range(iface_range[1], iface_range[2]):
|
|
|
|
ifacenames.append('%s-%d' %(iface_range[0], i))
|
|
|
|
return ifacenames
|
|
|
|
|
2015-07-02 17:10:04 -04:00
|
|
|
@classmethod
|
|
|
|
def check_ifname_size_invalid(cls, name=''):
|
|
|
|
""" IFNAMSIZ in include/linux/if.h is 16 so we check this """
|
|
|
|
IFNAMSIZ = 16
|
|
|
|
if len(name) > IFNAMSIZ - 1:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
2014-04-25 16:09:14 -07:00
|
|
|
|
2016-04-10 18:55:56 +02:00
|
|
|
@classmethod
|
|
|
|
def enable_subprocess_signal_forwarding(cls, ps, sig):
|
|
|
|
signal.signal(sig, partial(signal_handler_f, ps))
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def disable_subprocess_signal_forwarding(cls, sig):
|
|
|
|
signal.signal(sig, signal.SIG_DFL)
|
|
|
|
|