pysandboxを使用して、ユーザーがサーバー上でコードを実行できるようにしたいと考えています。このリクエストハンドラーでDjangoの内部サーバー(manage.py runserver)を使用しています:
def try_sandbox(request):
from sandbox import Sandbox
def func(a, b):
return a + b
sandbox = Sandbox()
result = sandbox.call(func, 1, 2)
return HttpResponse(result)
ページにアクセスすると、ValueError が発生します。
Request Method: GET
Exception Type: ValueError
Exception Value: signal only works in main thread
Exception Location: /Library/Python/2.7/site-packages/sandbox/timeout.py in limitedTime, line 45
Python Executable: /usr/bin/python
Traceback:
Django Version: 1.3.1
Python Version: 2.7.1
File "[...]views.py" in try_sandbox
77. result = sandbox.call(func, 1, 2)
File "/Library/Python/2.7/site-packages/sandbox/sandbox_class.py" in call
44. return self._call(func, args, kw)
File "/Library/Python/2.7/site-packages/sandbox/sandbox_class.py" in _call
31. return limitedTime(timeout, func, *args, **kw)
File "/Library/Python/2.7/site-packages/sandbox/timeout.py" in limitedTime
45. old_alarm = signal(SIGALRM, signalHandler)
この環境でpysandboxを使用することは可能ですか?
(私はpysandbox 1.1を使用していると思います-それはダウンロードのversion.pyが言うことです。ダウンロードフォルダーには1.0.1と書かれています。私はMac OS 10.7.2を実行しています。)