2005-06-05 07:57:57 +02:00
|
|
|
# Copyright (c) 2005 The Regents of The University of Michigan
|
2010-11-23 23:08:41 +01:00
|
|
|
# Copyright (c) 2010 Advanced Micro Devices, Inc.
|
2005-06-05 07:57:57 +02:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are
|
|
|
|
# met: redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer;
|
|
|
|
# redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution;
|
|
|
|
# neither the name of the copyright holders nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived from
|
|
|
|
# this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
#
|
|
|
|
# Authors: Nathan Binkert
|
2010-11-23 23:08:41 +01:00
|
|
|
# Gabe Black
|
2005-06-05 07:57:57 +02:00
|
|
|
|
2005-03-12 00:47:11 +01:00
|
|
|
# metric prefixes
|
|
|
|
exa = 1.0e18
|
|
|
|
peta = 1.0e15
|
|
|
|
tera = 1.0e12
|
|
|
|
giga = 1.0e9
|
|
|
|
mega = 1.0e6
|
|
|
|
kilo = 1.0e3
|
|
|
|
|
|
|
|
milli = 1.0e-3
|
|
|
|
micro = 1.0e-6
|
|
|
|
nano = 1.0e-9
|
|
|
|
pico = 1.0e-12
|
|
|
|
femto = 1.0e-15
|
|
|
|
atto = 1.0e-18
|
|
|
|
|
|
|
|
# power of 2 prefixes
|
|
|
|
kibi = 1024
|
|
|
|
mebi = kibi * 1024
|
|
|
|
gibi = mebi * 1024
|
|
|
|
tebi = gibi * 1024
|
|
|
|
pebi = tebi * 1024
|
|
|
|
exbi = pebi * 1024
|
|
|
|
|
|
|
|
# memory size configuration stuff
|
2005-03-26 04:59:29 +01:00
|
|
|
def toFloat(value):
|
2005-03-12 00:47:11 +01:00
|
|
|
if not isinstance(value, str):
|
2005-03-26 04:59:29 +01:00
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('Ei'):
|
|
|
|
return float(value[:-2]) * exbi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Pi'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * pebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Ti'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * tebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Gi'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * gibi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Mi'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * mebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('ki'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * kibi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('E'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * exa
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('P'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * peta
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('T'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * tera
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('G'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * giga
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('M'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * mega
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('k'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * kilo
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('m'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * milli
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('u'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * micro
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('n'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * nano
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('p'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * pico
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('f'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1]) * femto
|
2005-03-12 00:47:11 +01:00
|
|
|
else:
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value)
|
|
|
|
|
|
|
|
def toInteger(value):
|
|
|
|
value = toFloat(value)
|
2005-11-01 20:11:54 +01:00
|
|
|
result = long(value)
|
2005-03-26 04:59:29 +01:00
|
|
|
if value != result:
|
|
|
|
raise ValueError, "cannot convert '%s' to integer" % value
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
return result
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-08-30 19:18:54 +02:00
|
|
|
_bool_dict = {
|
|
|
|
'true' : True, 't' : True, 'yes' : True, 'y' : True, '1' : True,
|
|
|
|
'false' : False, 'f' : False, 'no' : False, 'n' : False, '0' : False
|
|
|
|
}
|
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
def toBool(value):
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
value = value.lower()
|
2005-08-30 19:18:54 +02:00
|
|
|
result = _bool_dict.get(value, None)
|
|
|
|
if result == None:
|
|
|
|
raise ValueError, "cannot convert '%s' to bool" % value
|
|
|
|
return result
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-22 20:51:31 +01:00
|
|
|
def toFrequency(value):
|
2005-03-12 00:47:11 +01:00
|
|
|
if not isinstance(value, str):
|
2005-03-26 04:59:29 +01:00
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('THz'):
|
|
|
|
return float(value[:-3]) * tera
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('GHz'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-3]) * giga
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('MHz'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-3]) * mega
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('kHz'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-3]) * kilo
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Hz'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2])
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
raise ValueError, "cannot convert '%s' to frequency" % value
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-22 20:51:31 +01:00
|
|
|
def toLatency(value):
|
2005-03-12 00:47:11 +01:00
|
|
|
if not isinstance(value, str):
|
2005-03-26 04:59:29 +01:00
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('ps'):
|
|
|
|
return float(value[:-2]) * pico
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('ns'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * nano
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('us'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * micro
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('ms'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-2]) * milli
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('s'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-1])
|
|
|
|
|
|
|
|
raise ValueError, "cannot convert '%s' to latency" % value
|
|
|
|
|
2007-03-06 20:13:43 +01:00
|
|
|
def anyToLatency(value):
|
2005-03-26 04:59:29 +01:00
|
|
|
"""result is a clock period"""
|
|
|
|
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
try:
|
|
|
|
val = toFrequency(value)
|
|
|
|
if val != 0:
|
|
|
|
val = 1 / val
|
|
|
|
return val
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
val = toLatency(value)
|
|
|
|
return val
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
raise ValueError, "cannot convert '%s' to clock period" % value
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2007-03-06 20:13:43 +01:00
|
|
|
def anyToFrequency(value):
|
|
|
|
"""result is a clock period"""
|
|
|
|
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
try:
|
|
|
|
val = toFrequency(value)
|
|
|
|
return val
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
val = toLatency(value)
|
|
|
|
if val != 0:
|
|
|
|
val = 1 / val
|
|
|
|
return val
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
raise ValueError, "cannot convert '%s' to clock period" % value
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-22 20:51:31 +01:00
|
|
|
def toNetworkBandwidth(value):
|
2005-03-12 00:47:11 +01:00
|
|
|
if not isinstance(value, str):
|
2005-03-26 04:59:29 +01:00
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('Tbps'):
|
2005-04-06 23:59:31 +02:00
|
|
|
return float(value[:-4]) * tera
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Gbps'):
|
2005-04-06 23:59:31 +02:00
|
|
|
return float(value[:-4]) * giga
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('Mbps'):
|
2005-04-06 23:59:31 +02:00
|
|
|
return float(value[:-4]) * mega
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('kbps'):
|
2005-04-06 23:59:31 +02:00
|
|
|
return float(value[:-4]) * kilo
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('bps'):
|
2005-04-06 23:59:31 +02:00
|
|
|
return float(value[:-3])
|
2005-03-12 00:47:11 +01:00
|
|
|
else:
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value)
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
raise ValueError, "cannot convert '%s' to network bandwidth" % value
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-22 20:51:31 +01:00
|
|
|
def toMemoryBandwidth(value):
|
2005-03-12 00:47:11 +01:00
|
|
|
if not isinstance(value, str):
|
2005-03-26 04:59:29 +01:00
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('PB/s'):
|
|
|
|
return float(value[:-4]) * pebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('TB/s'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-4]) * tebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('GB/s'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-4]) * gibi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('MB/s'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-4]) * mebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('kB/s'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-4]) * kibi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('B/s'):
|
2005-03-26 04:59:29 +01:00
|
|
|
return float(value[:-3])
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
raise ValueError, "cannot convert '%s' to memory bandwidth" % value
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-22 20:51:31 +01:00
|
|
|
def toMemorySize(value):
|
2005-03-12 00:47:11 +01:00
|
|
|
if not isinstance(value, str):
|
2005-03-26 04:59:29 +01:00
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('PB'):
|
2005-11-01 20:11:54 +01:00
|
|
|
return long(value[:-2]) * pebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('TB'):
|
2005-11-01 20:11:54 +01:00
|
|
|
return long(value[:-2]) * tebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('GB'):
|
2005-11-01 20:11:54 +01:00
|
|
|
return long(value[:-2]) * gibi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('MB'):
|
2005-11-01 20:11:54 +01:00
|
|
|
return long(value[:-2]) * mebi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('kB'):
|
2005-11-01 20:11:54 +01:00
|
|
|
return long(value[:-2]) * kibi
|
2005-03-12 00:47:11 +01:00
|
|
|
elif value.endswith('B'):
|
2005-11-01 20:11:54 +01:00
|
|
|
return long(value[:-1])
|
2005-03-12 00:47:11 +01:00
|
|
|
|
2005-03-26 04:59:29 +01:00
|
|
|
raise ValueError, "cannot convert '%s' to memory size" % value
|
2010-11-23 21:54:43 +01:00
|
|
|
|
|
|
|
def toIpAddress(value):
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
bytes = value.split('.')
|
|
|
|
if len(bytes) != 4:
|
|
|
|
raise ValueError, 'invalid ip address %s' % value
|
|
|
|
|
|
|
|
for byte in bytes:
|
|
|
|
if not 0 <= int(byte) <= 0xff:
|
|
|
|
raise ValueError, 'invalid ip address %s' % value
|
|
|
|
|
|
|
|
return (int(bytes[0]) << 24) | (int(bytes[1]) << 16) | \
|
|
|
|
(int(bytes[2]) << 8) | (int(bytes[3]) << 0)
|
|
|
|
|
|
|
|
def toIpNetmask(value):
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
(ip, netmask) = value.split('/')
|
|
|
|
ip = toIpAddress(ip)
|
|
|
|
netmaskParts = netmask.split('.')
|
|
|
|
if len(netmaskParts) == 1:
|
|
|
|
if not 0 <= int(netmask) <= 32:
|
|
|
|
raise ValueError, 'invalid netmask %s' % netmask
|
|
|
|
return (ip, int(netmask))
|
|
|
|
elif len(netmaskParts) == 4:
|
|
|
|
netmaskNum = toIpAddress(netmask)
|
|
|
|
if netmaskNum == 0:
|
|
|
|
return (ip, 0)
|
|
|
|
testVal = 0
|
|
|
|
for i in range(32):
|
|
|
|
testVal |= (1 << (31 - i))
|
|
|
|
if testVal == netmaskNum:
|
|
|
|
return (ip, i + 1)
|
|
|
|
raise ValueError, 'invalid netmask %s' % netmask
|
|
|
|
else:
|
|
|
|
raise ValueError, 'invalid netmask %s' % netmask
|
|
|
|
|
|
|
|
def toIpWithPort(value):
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
(ip, port) = value.split(':')
|
|
|
|
ip = toIpAddress(ip)
|
|
|
|
if not 0 <= int(port) <= 0xffff:
|
|
|
|
raise ValueError, 'invalid port %s' % port
|
|
|
|
return (ip, int(port))
|
2013-08-19 09:52:28 +02:00
|
|
|
|
|
|
|
def toVoltage(value):
|
|
|
|
if not isinstance(value, str):
|
|
|
|
raise TypeError, "wrong type '%s' should be str" % type(value)
|
|
|
|
|
|
|
|
if value.endswith('mV'):
|
|
|
|
return float(value[:-2]) * milli
|
|
|
|
elif value.endswith('V'):
|
|
|
|
return float(value[:-1])
|
|
|
|
|
|
|
|
raise ValueError, "cannot convert '%s' to voltage" % value
|
|
|
|
|