summaryrefslogtreecommitdiffstats
path: root/thread_list.py
diff options
context:
space:
mode:
authorGravatar sebnapi <devnull@localhost> 2009-05-09 15:43:37 +0200
committerGravatar sebnapi <devnull@localhost> 2009-05-09 15:43:37 +0200
commitb863b5aa0af8cdbfa566923fc95009c357461ae6 (patch)
treee76836965c9cc0d836a33e1ba307297a5ae0c6db /thread_list.py
downloadpyload-b863b5aa0af8cdbfa566923fc95009c357461ae6.tar.xz
ordnung muss sein
Diffstat (limited to 'thread_list.py')
-rw-r--r--thread_list.py84
1 files changed, 84 insertions, 0 deletions
diff --git a/thread_list.py b/thread_list.py
new file mode 100644
index 000000000..427c0a080
--- /dev/null
+++ b/thread_list.py
@@ -0,0 +1,84 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+#Copyright (C) 2009 sp00b, sebnapi
+#
+#This program is free software; you can redistribute it and/or modify
+#it under the terms of the GNU General Public License as published by
+#the Free Software Foundation; either version 3 of the License,
+#or (at your option) any later version.
+#
+#This program is distributed in the hope that it will be useful,
+#but WITHOUT ANY WARRANTY; without even the implied warranty of
+#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+#See the GNU General Public License for more details.
+#
+#You should have received a copy of the GNU General Public License
+# along with this program; if not, see <http://www.gnu.org/licenses/>.
+#
+###
+#python
+from Queue import Queue
+
+#my
+from download_thread import Download_Thread
+
+class Thread_List(object):
+ def __init__(self, parent):
+ self.parent = parent
+ self.threads = []
+ self.max_threads = 3
+ self.py_load_files = []
+ self.download_queue = Queue()
+ self.status_queue = Queue()
+ self.f_relation = [0,0]
+ #self.lock = threading.Lock()
+
+ def create_thread(self):
+ """ creates thread for Py_Load_File and append thread to self.threads
+ """
+ if self.py_load_files:
+ thread = Download_Thread(self)
+ self.threads.append(thread)
+ return True
+
+ def get_loaded_urls(self):
+ loaded_urls = []
+ for file in self.py_load_files:
+ loaded_urls.append(file.url)
+ return loaded_urls
+
+ def remove_thread(self, thread):
+ #self.lock.acquire()
+ self.threads.remove(thread)
+
+ def status(self):
+ if not self.status_queue.empty():
+ while not self.status_queue.empty():
+ status = self.status_queue.get()
+ self.py_load_files[status.id].status = status
+
+ def extend_py_load_files(self):
+ pass
+
+ def select_thread(self):
+ """ select a thread
+ """
+ if len(self.threads) < self.max_threads:
+ self.create_thread()
+
+ def append_py_load_file(self, py_load_file):
+ py_load_file.id = len(self.py_load_files)
+ self.py_load_files.append(py_load_file)
+ self.download_queue.put(py_load_file)
+ self.f_relation[1] += 1
+ self.select_thread()
+
+ def reconnect():
+ reconn = subprocess.Popen(reconnectMethod)
+ reconn.wait()
+ ip = re.match(".*Current IP Address: (.*)</body>.*", urllib2.urlopen("http://checkip.dyndns.org/").read()).group(1) #versuchen neue ip aus zu lesen
+ while ip == "": #solange versuch bis neue ip ausgelesen
+ ip = re.match(".*Current IP Address: (.*)</body>.*", urllib2.urlopen("http://checkip.dyndns.org/").read()).group(1)
+ time.sleep(1)
+ #print "Neue IP: " + ip