/usr/lib/python3/dist-packages/simpleeval.py is in python3-simpleeval 0.8.7-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | '''
SimpleEval - (C) 2013/2015 Daniel Fairhead
-------------------------------------
An short, easy to use, safe and reasonably extensible expression evaluator.
Designed for things like in a website where you want to allow the user to
generate a string, or a number from some other input, without allowing full
eval() or other unsafe or needlessly complex linguistics.
-------------------------------------
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-------------------------------------
Initial idea copied from J.F. Sebastian on Stack Overflow
( http://stackoverflow.com/a/9558001/1973500 ) with
modifications and many improvments.
-------------------------------------
Contributors:
- corro (Robin Baumgartner) (py3k)
- dratchkov (David R) (nested dicts)
- marky1991 (Mark Young) (slicing)
- T045T (Nils Berg) (!=, py3kstr, obj.attributes)
-------------------------------------
Usage:
>>> s = SimpleEval()
>>> s.eval("20 + 30")
50
You can add your own functions easily too:
if file.txt contents is "11"
>>> def get_file():
with open("file.txt",'r') as f:
return f.read()
s.functions["get_file"] = get_file
s.eval("int(get_file()) + 31")
42
For more information, see the full package documentation on pypi, or the github
repo.
-----------
If you don't need to re-use the evaluator (with it's names, functions, etc),
then you can use the simple_eval() function:
>>> simple_eval("21 + 19")
40
You can pass names, operators and functions to the simple_eval function as
well:
>>> simple_eval("40 + two", names={"two": 2})
42
'''
import ast
import sys
import operator as op
from random import random
import collections
########################################
# Module wide 'globals'
MAX_STRING_LENGTH = 100000
MAX_POWER = 4000000 # highest exponent
PYTHON3 = sys.version_info[0] == 3
########################################
# Exceptions:
class InvalidExpression(Exception):
''' Generic Exception '''
pass
class FunctionNotDefined(InvalidExpression):
''' sorry! That function isn't defined! '''
def __init__(self, func_name, expression):
self.message = "Function '{0}' not defined," \
" for expression '{1}'.".format( func_name, expression)
self.__name__ = func_name
self.expression = expression
# pylint: disable=bad-super-call
super(InvalidExpression, self).__init__(self.message)
class NameNotDefined(InvalidExpression):
''' a name isn't defined. '''
def __init__(self, name, expression):
self.message = "'{0}' is not defined for expression '{1}'".format(
name, expression)
self.name = name
self.expression = expression
# pylint: disable=bad-super-call
super(InvalidExpression, self).__init__(self.message)
class AttributeDoesNotExist(InvalidExpression):
'''attribute does not exist'''
def __init__(self, attr, expression):
self.message = "Attribute '{0}' does not exist in expression '{1}'".format(
attr, expression)
self.attr = attr
self.expression = expression
class FeatureNotAvailable(InvalidExpression):
''' What you're trying to do is not allowed. '''
pass
class NumberTooHigh(InvalidExpression):
''' Sorry! That number is too high. I don't want to spend the
next 10 years evaluating this expression! '''
pass
class StringTooLong(InvalidExpression):
''' That string is **way** too long, baby. '''
pass
########################################
# Default simple functions to include:
def random_int(top):
''' return a random int below <top> '''
return int(random() * top)
def safe_power(a, b): # pylint: disable=invalid-name
''' a limited exponent/to-the-power-of function, for safety reasons '''
if abs(a) > MAX_POWER or abs(b) > MAX_POWER:
raise NumberTooHigh("Sorry! I don't want to evaluate {0} ** {1}"
.format(a, b))
return a ** b
def safe_mult(a, b): # pylint: disable=invalid-name
''' limit the number of times a string can be repeated... '''
if isinstance(a, str) or isinstance(b, str):
if isinstance(a, int) and a*len(b) > MAX_STRING_LENGTH:
raise StringTooLong("Sorry, a string that long is not allowed")
elif isinstance(b, int) and b*len(a) > MAX_STRING_LENGTH:
raise StringTooLong("Sorry, a string that long is not allowed")
return a * b
def safe_add(a, b): # pylint: disable=invalid-name
''' string length limit again '''
if isinstance(a, str) and isinstance(b, str):
if len(a) + len(b) > MAX_STRING_LENGTH:
raise StringTooLong("Sorry, adding those two strings would"
" make a too long string.")
return a + b
########################################
# Defaults for the evaluator:
DEFAULT_OPERATORS = {ast.Add: safe_add, ast.Sub: op.sub, ast.Mult: safe_mult,
ast.Div: op.truediv, ast.Pow: safe_power, ast.Mod: op.mod,
ast.Eq: op.eq, ast.NotEq: op.ne, ast.Gt: op.gt, ast.Lt: op.lt,
ast.GtE: op.ge, ast.LtE: op.le, ast.USub: op.neg,
ast.UAdd: op.pos}
DEFAULT_FUNCTIONS = {"rand": random, "randint": random_int,
"int": int, "float": float, "str": str if PYTHON3 else str}
DEFAULT_NAMES = {"True": True, "False": False}
########################################
# And the actual evaluator:
class SimpleEval(object): # pylint: disable=too-few-public-methods
''' A very simple expression parser.
>>> s = SimpleEval()
>>> s.eval("20 + 30 - ( 10 * 5)")
0
'''
expr = ""
def __init__(self, operators=None, functions=None, names=None):
'''
Create the evaluator instance. Set up valid operators (+,-, etc)
functions (add, random, get_val, whatever) and names. '''
if not operators:
operators = DEFAULT_OPERATORS
if not functions:
functions = DEFAULT_FUNCTIONS
if not names:
names = DEFAULT_NAMES
self.operators = operators
self.functions = functions
self.names = names
def eval(self, expr):
''' evaluate an expresssion, using the operators, functions and
names previously set up. '''
# set a copy of the expression aside, so we can give nice errors...
self.expr = expr
# and evaluate:
return self._eval(ast.parse(expr).body[0].value)
# pylint: disable=too-many-return-statements, too-many-branches
def _eval(self, node):
''' The internal eval function used on each node in the parsed tree. '''
# literals:
if isinstance(node, ast.Num): # <number>
return node.n
elif isinstance(node, ast.Str): # <string>
if len(node.s) > MAX_STRING_LENGTH:
raise StringTooLong("String Literal in statement is too long!"
" ({0}, when {1} is max)".format(
len(node.s), MAX_STRING_LENGTH))
return node.s
# python 3 compatibility:
elif (hasattr(ast, 'NameConstant') and
isinstance(node, ast.NameConstant)): # <bool>
return node.value
# operators, functions, etc:
elif isinstance(node, ast.UnaryOp): # - and + etc.
return self.operators[type(node.op)](self._eval(node.operand))
elif isinstance(node, ast.BinOp): # <left> <operator> <right>
return self.operators[type(node.op)](self._eval(node.left),
self._eval(node.right))
elif isinstance(node, ast.BoolOp): # and & or...
if isinstance(node.op, ast.And):
return all((self._eval(v) for v in node.values))
elif isinstance(node.op, ast.Or):
return any((self._eval(v) for v in node.values))
elif isinstance(node, ast.Compare): # 1 < 2, a == b...
return self.operators[type(node.ops[0])](self._eval(node.left),
self._eval(node.comparators[0]))
elif isinstance(node, ast.IfExp): # x if y else z
return self._eval(node.body) if self._eval(node.test) \
else self._eval(node.orelse)
elif isinstance(node, ast.Call): # function...
try:
return self.functions[node.func.id](*(self._eval(a)
for a in node.args))
except KeyError:
raise FunctionNotDefined(node.func.id, self.expr)
# variables/names:
elif isinstance(node, ast.Name): # a, b, c...
try:
#This happens at least for slicing
#This is a safe thing to do because it is impossible
#that there is a true exression assigning to none
#(the compiler rejects it, so you can't even pass that to ast.parse)
if node.id == "None":
return None
elif isinstance(self.names, dict):
return self.names[node.id]
elif isinstance(self.names, collections.Callable):
return self.names(node)
else:
raise InvalidExpression('Trying to use name (variable) "{0}"'
' when no "names" defined for'
' evaluator'.format(node.id))
except KeyError:
raise NameNotDefined(node.id, self.expr)
elif isinstance(node, ast.Subscript): # b[1]
return self._eval(node.value)[self._eval(node.slice)]
elif isinstance(node, ast.Attribute): # a.b.c
try:
return self._eval(node.value)[node.attr]
except (KeyError, TypeError):
pass
# Maybe the base object is an actual object, not just a dict
try:
return getattr(self._eval(node.value), node.attr)
except (AttributeError, TypeError):
pass
# If it is neither, raise an exception
raise AttributeDoesNotExist(node.attr, self.expr)
elif isinstance(node, ast.Index):
return self._eval(node.value)
elif isinstance(node, ast.Slice):
lower = upper = step = None
if node.lower is not None:
lower = self._eval(node.lower)
if node.upper is not None:
upper = self._eval(node.upper)
if node.step is not None:
step = self._eval(node.step)
return slice(lower, upper, step)
else:
raise FeatureNotAvailable("Sorry, {0} is not available in this "
"evaluator".format(type(node).__name__ ))
def simple_eval(expr, operators=None, functions=None, names=None):
''' Simply evaluate an expresssion '''
s = SimpleEval(operators=operators,
functions=functions,
names=names)
return s.eval(expr)
|