X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=bin%2Fopenerp-server.py;h=c61a22858c0484e193e11427331ae1862b56e342;hb=5e1ee4a73a20c4006829252ad3c48bd6791f3fbb;hp=4fbebb844902a08102877ca735c9c1e8c8cb32ac;hpb=a0d38adc741912bfe73b0d01d19b3f7eb5e2ade3;p=odoo%2Fodoo.git diff --git a/bin/openerp-server.py b/bin/openerp-server.py index 4fbebb8..c61a228 100755 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -1,199 +1,19 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -############################################################################## -# -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# 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 Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## +#! /usr/bin/env python +# -*- coding: UTF-8 -*- -""" -OpenERP - Server -OpenERP is an ERP+CRM program for small and medium businesses. - -The whole source code is distributed under the terms of the -GNU Public Licence. - -(c) 2003-TODAY, Fabien Pinckaers - Tiny sprl -""" - -#---------------------------------------------------------- -# python imports -#---------------------------------------------------------- -import sys import os -import signal -import pwd - -import release -__author__ = release.author -__version__ = release.version - -# We DON't log this using the standard logger, because we might mess -# with the logfile's permissions. Just do a quick exit here. -if pwd.getpwuid(os.getuid())[0] == 'root' : - sys.stderr.write("Attempted to run OpenERP server as root. This is not good, aborting.\n") - sys.exit(1) - -#---------------------------------------------------------- -# get logger -#---------------------------------------------------------- -import netsvc -logger = netsvc.Logger() - -#----------------------------------------------------------------------- -# import the tools module so that the commandline parameters are parsed -#----------------------------------------------------------------------- -import tools - -logger.notifyChannel("server", netsvc.LOG_INFO, "version - %s" % release.version ) -for name, value in [('addons_path', tools.config['addons_path']), - ('database hostname', tools.config['db_host'] or 'localhost'), - ('database port', tools.config['db_port'] or '5432'), - ('database user', tools.config['db_user'])]: - logger.notifyChannel("server", netsvc.LOG_INFO, "%s - %s" % ( name, value )) - -# Don't allow if the connection to PostgreSQL done by postgres user -if tools.config['db_user'] == 'postgres': - logger.notifyChannel("server", netsvc.LOG_ERROR, "%s" % ("Attempted to connect database with postgres user. This is a security flaws, aborting.")) - sys.exit(1) - -import time - -#---------------------------------------------------------- -# init net service -#---------------------------------------------------------- -logger.notifyChannel("objects", netsvc.LOG_INFO, 'initialising distributed objects services') - -#--------------------------------------------------------------- -# connect to the database and initialize it with base if needed -#--------------------------------------------------------------- -import pooler - -#---------------------------------------------------------- -# import basic modules -#---------------------------------------------------------- -import osv -import workflow -import report -import service - -#---------------------------------------------------------- -# import addons -#---------------------------------------------------------- - -import addons - -#---------------------------------------------------------- -# Load and update databases if requested -#---------------------------------------------------------- - -import service.http_server - -if not ( tools.config["stop_after_init"] or \ - tools.config["translate_in"] or \ - tools.config["translate_out"] ): - service.http_server.init_servers() - service.http_server.init_xmlrpc() - - import service.netrpc_server - service.netrpc_server.init_servers() - -if tools.config['db_name']: - for db in tools.config['db_name'].split(','): - pooler.get_db_and_pool(db, update_module=tools.config['init'] or tools.config['update']) - -#---------------------------------------------------------- -# translation stuff -#---------------------------------------------------------- -if tools.config["translate_out"]: - import csv - - if tools.config["language"]: - msg = "language %s" % (tools.config["language"],) - else: - msg = "new language" - logger.notifyChannel("init", netsvc.LOG_INFO, - 'writing translation file for %s to %s' % (msg, - tools.config["translate_out"])) - - fileformat = os.path.splitext(tools.config["translate_out"])[-1][1:].lower() - buf = file(tools.config["translate_out"], "w") - tools.trans_export(tools.config["language"], tools.config["translate_modules"], buf, fileformat) - buf.close() - - logger.notifyChannel("init", netsvc.LOG_INFO, 'translation file written successfully') - sys.exit(0) - -if tools.config["translate_in"]: - tools.trans_load(tools.config["db_name"], - tools.config["translate_in"], - tools.config["language"]) - sys.exit(0) - -#---------------------------------------------------------------------------------- -# if we don't want the server to continue to run after initialization, we quit here -#---------------------------------------------------------------------------------- -if tools.config["stop_after_init"]: - sys.exit(0) - - -#---------------------------------------------------------- -# Launch Servers -#---------------------------------------------------------- - -LST_SIGNALS = ['SIGINT', 'SIGTERM'] -if os.name == 'posix': - LST_SIGNALS.extend(['SIGUSR1','SIGQUIT']) - - -SIGNALS = dict( - [(getattr(signal, sign), sign) for sign in LST_SIGNALS] -) - -def handler(signum, _): - """ - :param signum: the signal number - :param _: - """ - netsvc.Agent.quit() - netsvc.Server.quitAll() - if tools.config['pidfile']: - os.unlink(tools.config['pidfile']) - logger.notifyChannel('shutdown', netsvc.LOG_INFO, - "Shutdown Server! - %s" % ( SIGNALS[signum], )) - logger.shutdown() - sys.exit(0) - -for signum in SIGNALS: - signal.signal(signum, handler) - -if tools.config['pidfile']: - fd = open(tools.config['pidfile'], 'w') - pidtext = "%d" % (os.getpid()) - fd.write(pidtext) - fd.close() - - -netsvc.Server.startAll() - -logger.notifyChannel("web-services", netsvc.LOG_INFO, - 'the server is running, waiting for connections...') +import sys -while True: - time.sleep(60) +if __name__ == "__main__": + print '-' * 70 + print "DEPRECATED: you are starting the OpenERP server with its old path," + print "please use the new executable (available in the parent directory)." + print '-' * 70 + + # Change to the parent directory ... + os.chdir(os.path.normpath(os.path.dirname(__file__))) + os.chdir('..') + # ... and execute the new executable. + os.execv('openerp-server', sys.argv) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: