Launchpad automatic translations update.
[odoo/odoo.git] / bin / service / netrpc_server.py
1 # -*- coding: utf-8 -*-
2
3 #
4 # Copyright P. Christeas <p_christ@hol.gr> 2008,2009
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
19 #
20 ##############################################################################
21
22 """ This file contains instance of the net-rpc server
23
24     
25 """
26 import netsvc
27 import threading
28 import tools
29 import os
30 import socket
31
32 import tiny_socket
33
34 class TinySocketClientThread(threading.Thread, netsvc.OpenERPDispatcher):
35     def __init__(self, sock, threads):
36         threading.Thread.__init__(self)
37         self.sock = sock
38         # Only at the server side, use a big timeout: close the
39         # clients connection when they're idle for 20min.
40         self.sock.settimeout(1200)
41         self.threads = threads
42
43     def __del__(self):
44         if self.sock:
45             try:
46                 self.socket.shutdown(
47                     getattr(socket, 'SHUT_RDWR', 2))
48             except: pass
49             # That should garbage-collect and close it, too
50             self.sock = None
51
52     def run(self):
53         # import select
54         self.running = True
55         try:
56             ts = tiny_socket.mysocket(self.sock)
57         except:
58             self.threads.remove(self)
59             self.running = False
60             return False
61         while self.running:
62             try:
63                 msg = ts.myreceive()
64             except:
65                 self.threads.remove(self)
66                 self.running = False
67                 return False
68             try:
69                 result = self.dispatch(msg[0], msg[1], msg[2:])
70                 ts.mysend(result)
71             except netsvc.OpenERPDispatcherException, e:
72                 try:
73                     new_e = Exception(tools.exception_to_unicode(e.exception)) # avoid problems of pickeling
74                     ts.mysend(new_e, exception=True, traceback=e.traceback)
75                 except:
76                     self.running = False
77                     break
78             except Exception, e:
79                 # this code should not be reachable, therefore we warn
80                 netsvc.Logger().notifyChannel("net-rpc", netsvc.LOG_WARNING, "exception: %s" % str(e))
81                 break
82
83         self.threads.remove(self)
84         self.running = False
85         return True
86
87     def stop(self):
88         self.running = False
89
90
91 class TinySocketServerThread(threading.Thread,netsvc.Server):
92     def __init__(self, interface, port, secure=False):
93         threading.Thread.__init__(self, name="Net-RPC socket")
94         netsvc.Server.__init__(self)
95         self.__port = port
96         self.__interface = interface
97         self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
98         self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
99         self.socket.bind((self.__interface, self.__port))
100         self.socket.listen(5)
101         self.threads = []
102         netsvc.Logger().notifyChannel("web-services", netsvc.LOG_INFO, 
103                          "starting NET-RPC service at %s port %d" % (interface or '0.0.0.0', port,))
104
105     def run(self):
106         # import select
107         try:
108             self.running = True
109             while self.running:
110                 (clientsocket, address) = self.socket.accept()
111                 ct = TinySocketClientThread(clientsocket, self.threads)
112                 clientsocket = None
113                 self.threads.append(ct)
114                 ct.start()
115                 lt = len(self.threads)
116                 if (lt > 10) and (lt % 10 == 0):
117                      # Not many threads should be serving at the same time, so log
118                      # their abuse.
119                      netsvc.Logger().notifyChannel("web-services", netsvc.LOG_DEBUG,
120                         "Netrpc: %d threads" % len(self.threads))
121             self.socket.close()
122         except Exception, e:
123             import logging
124             logging.getLogger('web-services').warning("Netrpc: closing because of exception %s" % str(e))
125             self.socket.close()
126             return False
127
128     def stop(self):
129         self.running = False
130         for t in self.threads:
131             t.stop()
132         try:
133             self.socket.shutdown(
134                 getattr(socket, 'SHUT_RDWR', 2))
135             self.socket.close()
136         except:
137             return False
138
139     def stats(self):
140         res = "Net-RPC: " + ( (self.running and "running") or  "stopped")
141         i = 0
142         for t in self.threads:
143             i += 1
144             res += "\nNet-RPC #%d: %s " % (i, t.name)
145             if t.isAlive():
146                 res += "running"
147             else:
148                 res += "finished"
149             if t.sock:
150                 res += ", socket"
151         return res
152
153 netrpcd = None
154
155 def init_servers():
156     global netrpcd
157     if tools.config.get_misc('netrpcd','enable', True):
158         netrpcd = TinySocketServerThread(tools.config.get_misc('netrpcd','interface', ''), \
159             int(tools.config.get_misc('netrpcd','port', tools.config.get('netport', 8070))))