morphbr@453: '''
morphbr@453: # GMyth-Stream
morphbr@453: #
morphbr@453: # @file main.py
morphbr@453: #
morphbr@453: # @brief
Plugin for GMyth-Stream
morphbr@453: #
morphbr@453: # Copyright (C) 2007 INdT - Instituto Nokia de Tecnologia.
morphbr@453: # @author Artur Duque de Souza
morphbr@453: #
morphbr@453: #
morphbr@453: # This program is free software; you can redistribute it and/or modify
morphbr@453: # it under the terms of the GNU Lesser General Public License as published by
morphbr@453: # the Free Software Foundation; either version 2 of the License, or
morphbr@453: # (at your option) any later version.
morphbr@453: #
morphbr@453: # This program is distributed in the hope that it will be useful,
morphbr@453: # but WITHOUT ANY WARRANTY; without even the implied warranty of
morphbr@453: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
morphbr@453: # GNU General Public License for more details.
morphbr@453: #
morphbr@453: # You should have received a copy of the GNU Lesser General Public License
morphbr@453: # along with this program; if not, write to the Free Software
morphbr@453: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
morphbr@453: #
morphbr@453: '''
morphbr@453:
morphbr@453: import time
morphbr@453: import socket
morphbr@453:
morphbr@453: class Server:
morphbr@453:
morphbr@453: def __init__(self, config):
morphbr@453: self.host = ''
morphbr@453: self.port = int(config.get("Comm", "port"))
morphbr@453: self.finish = 0
morphbr@453:
morphbr@453: self.tcp = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
morphbr@453: self.tcp.bind( (self.host, self.port) )
morphbr@453: self.tcp.listen(1)
morphbr@453:
morphbr@453: def now(self):
morphbr@453: return time.strftime("%Y-%m-%d %H:%M:%S");
morphbr@453:
morphbr@453: def getMsg(self, size):
morphbr@453: con = self.data[0]
morphbr@453: return con.recv(size)
morphbr@453:
morphbr@453: def getRequest(self):
morphbr@453: self.data = self.tcp.accept()
morphbr@453: print "[%s] Received request from ip=%s" % (self.now(), self.data[1] )
morphbr@453: return self.data
morphbr@453:
morphbr@453: def disconnect_client(self, connection):
morphbr@453: connection.close()
morphbr@453:
morphbr@453: def stop(self):
morphbr@453: self.tcp.close()