mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-02 17:29:22 +01:00
commands.py: Add heap_size argument to process().
This commit is contained in:
parent
33cc9bc6b8
commit
918b8a3c01
@ -40,6 +40,11 @@ import threading
|
||||
import multiprocessing #python2.6 or later!
|
||||
import Queue
|
||||
|
||||
try:
|
||||
import resource
|
||||
except ImportError: # Windows!
|
||||
resource = None
|
||||
|
||||
import supybot.log as log
|
||||
import supybot.conf as conf
|
||||
import supybot.utils as utils
|
||||
@ -84,6 +89,7 @@ def process(f, *args, **kwargs):
|
||||
<timeout>, if supplied, limits the length of execution of target
|
||||
function to <timeout> seconds."""
|
||||
timeout = kwargs.pop('timeout', None)
|
||||
heap_size = kwargs.pop('heap_size', resource.RLIM_INFINITY)
|
||||
|
||||
if conf.disableMultiprocessing:
|
||||
pn = kwargs.pop('pn', 'Unknown')
|
||||
@ -95,6 +101,9 @@ def process(f, *args, **kwargs):
|
||||
|
||||
q = multiprocessing.Queue()
|
||||
def newf(f, q, *args, **kwargs):
|
||||
if resource:
|
||||
rsrc = resource.RLIMIT_DATA
|
||||
resource.setrlimit(rsrc, (heap_size, heap_size))
|
||||
try:
|
||||
r = f(*args, **kwargs)
|
||||
q.put(r)
|
||||
@ -111,9 +120,10 @@ def process(f, *args, **kwargs):
|
||||
try:
|
||||
v = q.get(block=False)
|
||||
except Queue.Empty:
|
||||
v = "Nothing returned."
|
||||
return None
|
||||
if isinstance(v, Exception):
|
||||
v = "Error: " + str(v)
|
||||
raise v
|
||||
else:
|
||||
return v
|
||||
|
||||
def regexp_wrapper(s, reobj, timeout, plugin_name, fcn_name):
|
||||
|
Loading…
Reference in New Issue
Block a user