Spaces:
Sleeping
Sleeping
File size: 8,218 Bytes
ffaa9fc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
# -*- coding: utf-8 -*-
# Copyright (c) 2013, Mahmoud Hashemi
#
# 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.
#
# * The names of the contributors may not 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.
"""This module provides useful math functions on top of Python's
built-in :mod:`math` module.
"""
from __future__ import division
from math import ceil as _ceil, floor as _floor
import bisect
import binascii
def clamp(x, lower=float('-inf'), upper=float('inf')):
"""Limit a value to a given range.
Args:
x (int or float): Number to be clamped.
lower (int or float): Minimum value for x.
upper (int or float): Maximum value for x.
The returned value is guaranteed to be between *lower* and
*upper*. Integers, floats, and other comparable types can be
mixed.
>>> clamp(1.0, 0, 5)
1.0
>>> clamp(-1.0, 0, 5)
0
>>> clamp(101.0, 0, 5)
5
>>> clamp(123, upper=5)
5
Similar to `numpy's clip`_ function.
.. _numpy's clip: http://docs.scipy.org/doc/numpy/reference/generated/numpy.clip.html
"""
if upper < lower:
raise ValueError('expected upper bound (%r) >= lower bound (%r)'
% (upper, lower))
return min(max(x, lower), upper)
def ceil(x, options=None):
"""Return the ceiling of *x*. If *options* is set, return the smallest
integer or float from *options* that is greater than or equal to
*x*.
Args:
x (int or float): Number to be tested.
options (iterable): Optional iterable of arbitrary numbers
(ints or floats).
>>> VALID_CABLE_CSA = [1.5, 2.5, 4, 6, 10, 25, 35, 50]
>>> ceil(3.5, options=VALID_CABLE_CSA)
4
>>> ceil(4, options=VALID_CABLE_CSA)
4
"""
if options is None:
return _ceil(x)
options = sorted(options)
i = bisect.bisect_left(options, x)
if i == len(options):
raise ValueError("no ceil options greater than or equal to: %r" % x)
return options[i]
def floor(x, options=None):
"""Return the floor of *x*. If *options* is set, return the largest
integer or float from *options* that is less than or equal to
*x*.
Args:
x (int or float): Number to be tested.
options (iterable): Optional iterable of arbitrary numbers
(ints or floats).
>>> VALID_CABLE_CSA = [1.5, 2.5, 4, 6, 10, 25, 35, 50]
>>> floor(3.5, options=VALID_CABLE_CSA)
2.5
>>> floor(2.5, options=VALID_CABLE_CSA)
2.5
"""
if options is None:
return _floor(x)
options = sorted(options)
i = bisect.bisect_right(options, x)
if not i:
raise ValueError("no floor options less than or equal to: %r" % x)
return options[i - 1]
try:
_int_types = (int, long)
bytes = str
except NameError:
# py3 has no long
_int_types = (int,)
unicode = str
class Bits(object):
'''
An immutable bit-string or bit-array object.
Provides list-like access to bits as bools,
as well as bitwise masking and shifting operators.
Bits also make it easy to convert between many
different useful representations:
* bytes -- good for serializing raw binary data
* int -- good for incrementing (e.g. to try all possible values)
* list of bools -- good for iterating over or treating as flags
* hex/bin string -- good for human readability
'''
__slots__ = ('val', 'len')
def __init__(self, val=0, len_=None):
if type(val) not in _int_types:
if type(val) is list:
val = ''.join(['1' if e else '0' for e in val])
if type(val) is bytes:
val = val.decode('ascii')
if type(val) is unicode:
if len_ is None:
len_ = len(val)
if val.startswith('0x'):
len_ = (len_ - 2) * 4
if val.startswith('0x'):
val = int(val, 16)
else:
if val:
val = int(val, 2)
else:
val = 0
if type(val) not in _int_types:
raise TypeError('initialized with bad type: {0}'.format(type(val).__name__))
if val < 0:
raise ValueError('Bits cannot represent negative values')
if len_ is None:
len_ = len('{0:b}'.format(val))
if val > 2 ** len_:
raise ValueError('value {0} cannot be represented with {1} bits'.format(val, len_))
self.val = val # data is stored internally as integer
self.len = len_
def __getitem__(self, k):
if type(k) is slice:
return Bits(self.as_bin()[k])
if type(k) is int:
if k >= self.len:
raise IndexError(k)
return bool((1 << (self.len - k - 1)) & self.val)
raise TypeError(type(k))
def __len__(self):
return self.len
def __eq__(self, other):
if type(self) is not type(other):
return NotImplemented
return self.val == other.val and self.len == other.len
def __or__(self, other):
if type(self) is not type(other):
return NotImplemented
return Bits(self.val | other.val, max(self.len, other.len))
def __and__(self, other):
if type(self) is not type(other):
return NotImplemented
return Bits(self.val & other.val, max(self.len, other.len))
def __lshift__(self, other):
return Bits(self.val << other, self.len + other)
def __rshift__(self, other):
return Bits(self.val >> other, self.len - other)
def __hash__(self):
return hash(self.val)
def as_list(self):
return [c == '1' for c in self.as_bin()]
def as_bin(self):
return '{{0:0{0}b}}'.format(self.len).format(self.val)
def as_hex(self):
# make template to pad out to number of bytes necessary to represent bits
tmpl = '%0{0}X'.format(2 * (self.len // 8 + ((self.len % 8) != 0)))
ret = tmpl % self.val
return ret
def as_int(self):
return self.val
def as_bytes(self):
return binascii.unhexlify(self.as_hex())
@classmethod
def from_list(cls, list_):
return cls(list_)
@classmethod
def from_bin(cls, bin):
return cls(bin)
@classmethod
def from_hex(cls, hex):
if isinstance(hex, bytes):
hex = hex.decode('ascii')
if not hex.startswith('0x'):
hex = '0x' + hex
return cls(hex)
@classmethod
def from_int(cls, int_, len_=None):
return cls(int_, len_)
@classmethod
def from_bytes(cls, bytes_):
return cls.from_hex(binascii.hexlify(bytes_))
def __repr__(self):
cn = self.__class__.__name__
return "{0}('{1}')".format(cn, self.as_bin())
|