Welcome to mirror list, hosted at ThFree Co, Russian Federation.

thread.py « common - dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e90ec1f2f714e9afd9c5e6c19efaa97691fc1e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
##	common/thread.py
##
## Gajim Team:
## 	- Yann Le Boulanger <asterix@crans.org>
## 	- Vincent Hanquez <tab@tuxfamily.org>
## 	- David Ferlier <david@yazzy.org>
##
##	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
import plugins

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):
	#This is VERY bad
		if self.getName() == 'gtkgui':
			plugins.gtkgui.plugin(self.queueIn, self.queueOut)
		elif self.getName() == 'logger':
			plugins.logger.plugin(self.queueIn, self.queueOut)
	# END run
# END GajimThread