.oO SearXNG Developer Documentation Oo.
Loading...
Searching...
No Matches
searx.plugins.calculator Namespace Reference

Classes

class  SXNGPlugin
 

Functions

 _eval_expr (expr)
 
 _eval (node)
 
 handler (multiprocessing.Queue q, func, args, **kwargs)
 
 timeout_func (timeout, func, *args, **kwargs)
 

Variables

 mp_fork = multiprocessing.get_context("fork")
 

Detailed Description

Calculate mathematical expressions using :py:obj:`ast.parse` (mode="eval").

Function Documentation

◆ _eval()

searx.plugins.calculator._eval ( node)
protected

Definition at line 122 of file calculator.py.

122def _eval(node):
123 if isinstance(node, ast.Constant) and isinstance(node.value, (int, float)):
124 return node.value
125
126 if isinstance(node, ast.BinOp):
127 return operators[type(node.op)](_eval(node.left), _eval(node.right))
128
129 if isinstance(node, ast.UnaryOp):
130 return operators[type(node.op)](_eval(node.operand))
131
132 raise TypeError(node)
133
134

References _eval().

Referenced by _eval(), and _eval_expr().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ _eval_expr()

searx.plugins.calculator._eval_expr ( expr)
protected
>>> _eval_expr('2^6')
64
>>> _eval_expr('2**6')
64
>>> _eval_expr('1 + 2*3**(4^5) / (6 + -7)')
-5.0

Definition at line 106 of file calculator.py.

106def _eval_expr(expr):
107 """
108 >>> _eval_expr('2^6')
109 64
110 >>> _eval_expr('2**6')
111 64
112 >>> _eval_expr('1 + 2*3**(4^5) / (6 + -7)')
113 -5.0
114 """
115 try:
116 return _eval(ast.parse(expr, mode='eval').body)
117 except ZeroDivisionError:
118 # This is undefined
119 return ""
120
121

References _eval().

+ Here is the call graph for this function:

◆ handler()

searx.plugins.calculator.handler ( multiprocessing.Queue q,
func,
args,
** kwargs )

Definition at line 135 of file calculator.py.

135def handler(q: multiprocessing.Queue, func, args, **kwargs): # pylint:disable=invalid-name
136 try:
137 q.put(func(*args, **kwargs))
138 except:
139 q.put(None)
140 raise
141
142

◆ timeout_func()

searx.plugins.calculator.timeout_func ( timeout,
func,
* args,
** kwargs )

Definition at line 143 of file calculator.py.

143def timeout_func(timeout, func, *args, **kwargs):
144
145 que = mp_fork.Queue()
146 p = mp_fork.Process(target=handler, args=(que, func, args), kwargs=kwargs)
147 p.start()
148 p.join(timeout=timeout)
149 ret_val = None
150 # pylint: disable=used-before-assignment,undefined-variable
151 if not p.is_alive():
152 ret_val = que.get()
153 else:
154 logger.debug("terminate function after timeout is exceeded") # type: ignore
155 p.terminate()
156 p.join()
157 p.close()
158 return ret_val

Referenced by searx.plugins.calculator.SXNGPlugin.post_search().

+ Here is the caller graph for this function:

Variable Documentation

◆ mp_fork

searx.plugins.calculator.mp_fork = multiprocessing.get_context("fork")

Definition at line 103 of file calculator.py.