我以前从未在Python中编程,所以请原谅我的代码。我有一个将在终端中运行的脚本,但我不能让它运行客户端。我在Appcelerator的Titanium应用程序中运行它。无论如何,我一直在对它进行故障排除,似乎根本没有运行线程。这是一个限制吗?有人知道吗?
<script type="text/python">
import os
import sys
import Queue
import threading
class FindThread ( threading.Thread ):
def run ( self ):
running = True
while running:
if jobPool.empty():
#print '<< CLOSING THREAD'
running = False
continue
job = jobPool.get()
window.document.getElementById('output').innerHTML += os.path.join(top, name)
if job != None:
dirSearch(job)
jobPool = Queue.Queue ( 0 )
def findPython():
#output = window.document.getElementById('output')
window.document.getElementById('output').innerHTML += "Starting"
dirSearch("/")
# Start 10 threads:
for x in xrange ( 10 ):
#print '>> OPENING THREAD'
FindThread().start()
def dirSearch(top = "."):
import os, stat, types
names = os.listdir(top)
for name in names:
try:
st = os.lstat(os.path.join(top, name))
except os.error:
continue
if stat.S_ISDIR(st.st_mode):
jobPool.put( os.path.join(top, name) )
else:
window.document.getElementById('output').innerHTML += os.path.join(top, name)
window.findPython = findPython
</script>
答案 0 :(得分:2)
答案,目前(2009年6月19日星期五)是肯定的,它可以运行线程,但除了主线程之外什么都不能访问JavaScript对象,这包括DOM。因此,如果您计划使用线程应用程序更新UI,则无法实现... YET。在Appcelerator团队为主线程创建某种队列之前,可以通过绑定系统实现。
请参阅appcelerator forums上的讨论。