[FIX] res_user: typo in exception message
[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 - OpenERP s.a.
31 """
32
33 #----------------------------------------------------------
34 # python imports
35 #----------------------------------------------------------
36 import logging
37 import os
38 import signal
39 import sys
40 import threading
41 import traceback
42
43 import release
44 __author__ = release.author
45 __version__ = release.version
46
47 if os.name == 'posix':
48     import pwd
49     # We DON't log this using the standard logger, because we might mess
50     # with the logfile's permissions. Just do a quick exit here.
51     if pwd.getpwuid(os.getuid())[0] == 'root' :
52         sys.stderr.write("Attempted to run OpenERP server as root. This is not good, aborting.\n")
53         sys.exit(1)
54
55 #----------------------------------------------------------
56 # get logger
57 #----------------------------------------------------------
58 import netsvc
59 logger = logging.getLogger('server')
60
61 #-----------------------------------------------------------------------
62 # import the tools module so that the commandline parameters are parsed
63 #-----------------------------------------------------------------------
64 import tools
65 logger.info("OpenERP version - %s", release.version)
66 for name, value in [('addons_path', tools.config['addons_path']),
67                     ('database hostname', tools.config['db_host'] or 'localhost'),
68                     ('database port', tools.config['db_port'] or '5432'),
69                     ('database user', tools.config['db_user'])]:
70     logger.info("%s - %s", name, value)
71
72 # Don't allow if the connection to PostgreSQL done by postgres user
73 if tools.config['db_user'] == 'postgres':
74     logger.error("Connecting to the database as 'postgres' user is forbidden, as it present major security issues. Shutting down.")
75     sys.exit(1)
76
77 import time
78
79 #----------------------------------------------------------
80 # init net service
81 #----------------------------------------------------------
82 logger.info('initialising distributed objects services')
83
84 #---------------------------------------------------------------
85 # connect to the database and initialize it with base if needed
86 #---------------------------------------------------------------
87 import pooler
88
89 #----------------------------------------------------------
90 # import basic modules
91 #----------------------------------------------------------
92 import osv
93 import workflow
94 import report
95 import service
96
97 #----------------------------------------------------------
98 # import addons
99 #----------------------------------------------------------
100
101 import addons
102
103 #----------------------------------------------------------
104 # Load and update databases if requested
105 #----------------------------------------------------------
106
107 import service.http_server
108
109 if not ( tools.config["stop_after_init"] or \
110     tools.config["translate_in"] or \
111     tools.config["translate_out"] ):
112     service.http_server.init_servers()
113     service.http_server.init_xmlrpc()
114     service.http_server.init_static_http()
115
116     import service.netrpc_server
117     service.netrpc_server.init_servers()
118
119 if tools.config['db_name']:
120     for dbname in tools.config['db_name'].split(','):
121         db,pool = pooler.get_db_and_pool(dbname, update_module=tools.config['init'] or tools.config['update'], pooljobs=False)
122         cr = db.cursor()
123
124         if tools.config["test_file"]:
125             logger.info('loading test file %s', tools.config["test_file"])
126             tools.convert_yaml_import(cr, 'base', file(tools.config["test_file"]), {}, 'test', True)
127             cr.rollback()
128
129         pool.get('ir.cron')._poolJobs(db.dbname)
130
131         cr.close()
132
133 #----------------------------------------------------------
134 # translation stuff
135 #----------------------------------------------------------
136 if tools.config["translate_out"]:
137     import csv
138
139     if tools.config["language"]:
140         msg = "language %s" % (tools.config["language"],)
141     else:
142         msg = "new language"
143     logger.info('writing translation file for %s to %s', msg, tools.config["translate_out"])
144
145     fileformat = os.path.splitext(tools.config["translate_out"])[-1][1:].lower()
146     buf = file(tools.config["translate_out"], "w")
147     tools.trans_export(tools.config["language"], tools.config["translate_modules"], buf, fileformat)
148     buf.close()
149
150     logger.info('translation file written successfully')
151     sys.exit(0)
152
153 if tools.config["translate_in"]:
154     context = {'overwrite': tools.config["overwrite_existing_translations"]}
155     tools.trans_load(tools.config["db_name"], 
156                      tools.config["translate_in"], 
157                      tools.config["language"],
158                      context=context)
159     sys.exit(0)
160
161 #----------------------------------------------------------------------------------
162 # if we don't want the server to continue to run after initialization, we quit here
163 #----------------------------------------------------------------------------------
164 if tools.config["stop_after_init"]:
165     sys.exit(0)
166
167
168 #----------------------------------------------------------
169 # Launch Servers
170 #----------------------------------------------------------
171
172 LST_SIGNALS = ['SIGINT', 'SIGTERM']
173
174 SIGNALS = dict(
175     [(getattr(signal, sign), sign) for sign in LST_SIGNALS]
176 )
177
178 netsvc.quit_signals_received = 0
179
180 def handler(signum, frame):
181     """
182     :param signum: the signal number
183     :param frame: the interrupted stack frame or None
184     """
185     netsvc.quit_signals_received += 1
186     if netsvc.quit_signals_received > 1:
187         sys.stderr.write("Forced shutdown.\n")
188         os._exit(0)
189
190 def dumpstacks(signum, frame):
191     # code from http://stackoverflow.com/questions/132058/getting-stack-trace-from-a-running-python-application#answer-2569696
192     # modified for python 2.5 compatibility
193     thread_map = dict(threading._active, **threading._limbo)
194     id2name = dict([(threadId, thread.getName()) for threadId, thread in thread_map.items()])
195     code = []
196     for threadId, stack in sys._current_frames().items():
197         code.append("\n# Thread: %s(%d)" % (id2name[threadId], threadId))
198         for filename, lineno, name, line in traceback.extract_stack(stack):
199             code.append('File: "%s", line %d, in %s' % (filename, lineno, name))
200             if line:
201                 code.append("  %s" % (line.strip()))
202     logging.getLogger('dumpstacks').info("\n".join(code))
203
204 for signum in SIGNALS:
205     signal.signal(signum, handler)
206
207 if os.name == 'posix':
208     signal.signal(signal.SIGQUIT, dumpstacks)
209
210 def quit():
211     netsvc.Agent.quit()
212     netsvc.Server.quitAll()
213     if tools.config['pidfile']:
214         os.unlink(tools.config['pidfile'])
215     logger = logging.getLogger('shutdown')
216     logger.info("Initiating OpenERP Server shutdown")
217     logger.info("Hit CTRL-C again or send a second signal to immediately terminate the server...")
218     logging.shutdown()
219
220     # manually join() all threads before calling sys.exit() to allow a second signal
221     # to trigger _force_quit() in case some non-daemon threads won't exit cleanly.
222     # threading.Thread.join() should not mask signals (at least in python 2.5)
223     for thread in threading.enumerate():
224         if thread != threading.currentThread() and not thread.isDaemon():
225             while thread.isAlive():
226                 # need a busyloop here as thread.join() masks signals
227                 # and would present the forced shutdown
228                 thread.join(0.05)
229                 time.sleep(0.05)
230     sys.exit(0)
231
232 if tools.config['pidfile']:
233     fd = open(tools.config['pidfile'], 'w')
234     pidtext = "%d" % (os.getpid())
235     fd.write(pidtext)
236     fd.close()
237
238 netsvc.Server.startAll()
239
240 logger.info('OpenERP server is running, waiting for connections...')
241
242 while netsvc.quit_signals_received == 0:
243     time.sleep(60)
244
245 quit()
246
247 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: