document: fix regressions at storage and node_descriptor
[odoo/odoo.git] / bin / openerp-server.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 ##############################################################################
4 #    
5 #    OpenERP, Open Source Management Solution
6 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU Affero General Public License as
10 #    published by the Free Software Foundation, either version 3 of the
11 #    License, or (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.     
20 #
21 ##############################################################################
22
23 """
24 OpenERP - Server
25 OpenERP is an ERP+CRM program for small and medium businesses.
26
27 The whole source code is distributed under the terms of the
28 GNU Public Licence.
29
30 (c) 2003-TODAY, Fabien Pinckaers - Tiny sprl
31 """
32
33 #----------------------------------------------------------
34 # python imports
35 #----------------------------------------------------------
36 import sys
37 import os
38 import signal
39 import pwd
40
41 import release
42 __author__ = release.author
43 __version__ = release.version
44
45 # We DON't log this using the standard logger, because we might mess
46 # with the logfile's permissions. Just do a quick exit here.
47 if pwd.getpwuid(os.getuid())[0] == 'root' :
48     sys.stderr.write("Attempted to run OpenERP server as root. This is not good, aborting.\n")
49     sys.exit(1)
50
51 #----------------------------------------------------------
52 # get logger
53 #----------------------------------------------------------
54 import netsvc
55 logger = netsvc.Logger()
56
57 #-----------------------------------------------------------------------
58 # import the tools module so that the commandline parameters are parsed
59 #-----------------------------------------------------------------------
60 import tools
61
62 logger.notifyChannel("server", netsvc.LOG_INFO, "version - %s" % release.version )
63 for name, value in [('addons_path', tools.config['addons_path']),
64                     ('database hostname', tools.config['db_host'] or 'localhost'),
65                     ('database port', tools.config['db_port'] or '5432'),
66                     ('database user', tools.config['db_user'])]:
67     logger.notifyChannel("server", netsvc.LOG_INFO, "%s - %s" % ( name, value ))
68
69 import time
70
71 #----------------------------------------------------------
72 # init net service
73 #----------------------------------------------------------
74 logger.notifyChannel("objects", netsvc.LOG_INFO, 'initialising distributed objects services')
75
76 #---------------------------------------------------------------
77 # connect to the database and initialize it with base if needed
78 #---------------------------------------------------------------
79 import pooler
80
81 #----------------------------------------------------------
82 # import basic modules
83 #----------------------------------------------------------
84 import osv
85 import workflow
86 import report
87 import service
88
89 #----------------------------------------------------------
90 # import addons
91 #----------------------------------------------------------
92
93 import addons
94
95 #----------------------------------------------------------
96 # Load and update databases if requested
97 #----------------------------------------------------------
98
99 import service.http_server
100
101 if not ( tools.config["stop_after_init"] or \
102     tools.config["translate_in"] or \
103     tools.config["translate_out"] ):
104     service.http_server.init_servers()
105     service.http_server.init_xmlrpc()
106
107     import service.netrpc_server
108     service.netrpc_server.init_servers()
109
110 if tools.config['db_name']:
111     for db in tools.config['db_name'].split(','):
112         pooler.get_db_and_pool(db, update_module=tools.config['init'] or tools.config['update'])
113
114 #----------------------------------------------------------
115 # translation stuff
116 #----------------------------------------------------------
117 if tools.config["translate_out"]:
118     import csv
119
120     if tools.config["language"]:
121         msg = "language %s" % (tools.config["language"],)
122     else:
123         msg = "new language"
124     logger.notifyChannel("init", netsvc.LOG_INFO, 
125                          'writing translation file for %s to %s' % (msg, 
126                                                                     tools.config["translate_out"]))
127
128     fileformat = os.path.splitext(tools.config["translate_out"])[-1][1:].lower()
129     buf = file(tools.config["translate_out"], "w")
130     tools.trans_export(tools.config["language"], tools.config["translate_modules"], buf, fileformat)
131     buf.close()
132
133     logger.notifyChannel("init", netsvc.LOG_INFO, 'translation file written successfully')
134     sys.exit(0)
135
136 if tools.config["translate_in"]:
137     tools.trans_load(tools.config["db_name"], 
138                      tools.config["translate_in"], 
139                      tools.config["language"])
140     sys.exit(0)
141
142 #----------------------------------------------------------------------------------
143 # if we don't want the server to continue to run after initialization, we quit here
144 #----------------------------------------------------------------------------------
145 if tools.config["stop_after_init"]:
146     sys.exit(0)
147
148
149 #----------------------------------------------------------
150 # Launch Servers
151 #----------------------------------------------------------
152
153 LST_SIGNALS = ['SIGINT', 'SIGTERM']
154 if os.name == 'posix':
155     LST_SIGNALS.extend(['SIGUSR1','SIGQUIT'])
156
157
158 SIGNALS = dict(
159     [(getattr(signal, sign), sign) for sign in LST_SIGNALS]
160 )
161
162 def handler(signum, _):
163     """
164     :param signum: the signal number
165     :param _: 
166     """
167     netsvc.Agent.quit()
168     netsvc.Server.quitAll()
169     if tools.config['pidfile']:
170         os.unlink(tools.config['pidfile'])
171     logger.notifyChannel('shutdown', netsvc.LOG_INFO, 
172                          "Shutdown Server! - %s" % ( SIGNALS[signum], ))
173     logger.shutdown()
174     sys.exit(0)
175
176 for signum in SIGNALS:
177     signal.signal(signum, handler)
178
179 if tools.config['pidfile']:
180     fd = open(tools.config['pidfile'], 'w')
181     pidtext = "%d" % (os.getpid())
182     fd.write(pidtext)
183     fd.close()
184
185
186 netsvc.Server.startAll()
187
188 logger.notifyChannel("web-services", netsvc.LOG_INFO, 
189                      'the server is running, waiting for connections...')
190
191 while True:
192     time.sleep(60)
193
194 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: