2003-10-22 20:45:13 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
## common/thread.py
|
|
|
|
##
|
|
|
|
## Gajim Team:
|
|
|
|
## - Yann Le Boulanger <asterix@crans.org>
|
|
|
|
## - Vincent Hanquez <tab@tuxfamily.org>
|
2003-10-23 11:54:19 +02:00
|
|
|
## - David Ferlier <david@yazzy.org>
|
2003-10-22 20:45:13 +02:00
|
|
|
##
|
|
|
|
## Copyright (C) 2003 Gajim Team
|
|
|
|
##
|
|
|
|
## 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; version 2 only.
|
|
|
|
##
|
|
|
|
## 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.
|
|
|
|
##
|
|
|
|
|
|
|
|
import threading
|
|
|
|
import socket
|
|
|
|
import sys
|
|
|
|
import time
|
2003-11-30 16:50:23 +01:00
|
|
|
|
|
|
|
sys.path.append("..")
|
|
|
|
|
2003-10-22 20:45:13 +02:00
|
|
|
class GajimThread(threading.Thread):
|
|
|
|
def __init__(self, name = None, queueIn = None, queueOut = None):
|
|
|
|
self.queueIn = queueIn
|
|
|
|
self.queueOut = queueOut
|
|
|
|
threading.Thread.__init__(self, target = self.run, \
|
|
|
|
name = name, args = () )
|
|
|
|
self.start()
|
|
|
|
# END __init__
|
|
|
|
|
|
|
|
def run(self):
|
2003-11-30 16:50:23 +01:00
|
|
|
mod = compile("import plugins.%s" % self.getName(), \
|
|
|
|
self.getName(), "exec")
|
|
|
|
res = eval(mod)
|
2003-11-30 23:40:24 +01:00
|
|
|
mod = compile("plugins.%s.%s.plugin(self.queueIn, self.queueOut)" % (self.getName(),self.getName()), self.getName(), "exec")
|
|
|
|
res = eval(mod)
|
2003-10-22 20:45:13 +02:00
|
|
|
# END run
|
|
|
|
# END GajimThread
|