2003-05-17 09:44:13 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-08-28 02:34:49 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2009-06-19 03:26:37 +05:30
|
|
|
# Copyright (C) 2009 Benny Malengier
|
2003-05-17 09:44:13 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2006-08-28 02:34:49 +05:30
|
|
|
# $Id$
|
|
|
|
|
2003-11-02 05:53:35 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2003-02-13 10:45:39 +05:30
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import locale
|
2006-04-27 22:33:23 +05:30
|
|
|
import const
|
2003-06-10 22:40:44 +05:30
|
|
|
import signal
|
2003-11-02 05:53:35 +05:30
|
|
|
import gettext
|
2006-01-06 20:53:28 +05:30
|
|
|
import logging
|
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
LOG = logging.getLogger(".")
|
2003-02-13 10:45:39 +05:30
|
|
|
|
2003-11-02 05:53:35 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2009-06-19 03:26:37 +05:30
|
|
|
# GRAMPS modules
|
2003-11-02 05:53:35 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2009-06-19 03:26:37 +05:30
|
|
|
from Mime import mime_type_is_defined
|
2006-03-30 04:21:27 +05:30
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Load internationalization setup
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2008-07-17 23:40:32 +05:30
|
|
|
if "GRAMPSI18N" in os.environ:
|
2002-10-20 19:55:16 +05:30
|
|
|
loc = os.environ["GRAMPSI18N"]
|
2007-09-08 11:24:02 +05:30
|
|
|
elif os.path.exists( os.path.join(const.ROOT_DIR, "lang") ):
|
|
|
|
loc = os.path.join(const.ROOT_DIR, "lang")
|
2002-10-20 19:55:16 +05:30
|
|
|
else:
|
2008-08-13 11:31:11 +05:30
|
|
|
loc = os.path.join(const.PREFIXDIR, "share/locale")
|
2003-04-04 11:18:25 +05:30
|
|
|
|
2003-11-19 22:50:05 +05:30
|
|
|
try:
|
2004-11-09 09:53:34 +05:30
|
|
|
locale.setlocale(locale.LC_ALL,'C')
|
2003-11-19 22:50:05 +05:30
|
|
|
locale.setlocale(locale.LC_ALL,'')
|
2003-11-25 23:15:34 +05:30
|
|
|
except locale.Error:
|
|
|
|
pass
|
2003-11-19 22:50:05 +05:30
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
2003-08-17 07:42:25 +05:30
|
|
|
gettext.bindtextdomain("gramps",loc)
|
|
|
|
gettext.textdomain("gramps")
|
|
|
|
gettext.install("gramps",loc,unicode=1)
|
2003-04-04 11:18:25 +05:30
|
|
|
|
2007-10-21 02:54:32 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Minimum version check
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
MIN_PYTHON_VERSION = (2, 5, 0, '', 0)
|
|
|
|
if not sys.version_info >= MIN_PYTHON_VERSION :
|
|
|
|
print gettext.gettext("Your Python version does not meet the "
|
|
|
|
"requirements. At least python %d.%d.%d is needed to"
|
|
|
|
" start GRAMPS.\n\n"
|
|
|
|
"GRAMPS will terminate now.") % (
|
|
|
|
MIN_PYTHON_VERSION[0],
|
|
|
|
MIN_PYTHON_VERSION[1],
|
|
|
|
MIN_PYTHON_VERSION[2])
|
|
|
|
sys.exit(1)
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# gramps libraries
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-01-12 11:10:44 +05:30
|
|
|
try:
|
|
|
|
signal.signal(signal.SIGCHLD, signal.SIG_DFL)
|
|
|
|
except:
|
|
|
|
pass
|
2003-06-10 22:40:44 +05:30
|
|
|
|
2004-06-21 10:40:27 +05:30
|
|
|
args = sys.argv
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
MIN_PYTHON_VERSION = (2, 5, 0, '', 0)
|
|
|
|
|
2006-01-06 20:53:28 +05:30
|
|
|
def setup_logging():
|
|
|
|
"""Setup basic logging support."""
|
|
|
|
|
|
|
|
# Setup a formatter
|
|
|
|
form = logging.Formatter(fmt="%(relativeCreated)d: %(levelname)s: %(filename)s: line %(lineno)d: %(message)s")
|
|
|
|
|
|
|
|
# Create the log handlers
|
|
|
|
stderrh = logging.StreamHandler(sys.stderr)
|
|
|
|
stderrh.setFormatter(form)
|
|
|
|
stderrh.setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
# Setup the base level logger, this one gets
|
|
|
|
# everything.
|
|
|
|
l = logging.getLogger()
|
2007-02-13 04:03:03 +05:30
|
|
|
l.setLevel(logging.WARNING)
|
2006-01-06 20:53:28 +05:30
|
|
|
l.addHandler(stderrh)
|
|
|
|
|
2008-03-05 03:58:59 +05:30
|
|
|
# put a hook on to catch any completely unhandled exceptions.
|
2006-01-06 20:53:28 +05:30
|
|
|
def exc_hook(type, value, tb):
|
2006-01-20 16:00:35 +05:30
|
|
|
if type == KeyboardInterrupt:
|
|
|
|
# Ctrl-C is not a bug.
|
|
|
|
return
|
2006-08-15 08:42:14 +05:30
|
|
|
if type == IOError:
|
|
|
|
# strange Windows logging error on close
|
|
|
|
return
|
2006-01-06 20:53:28 +05:30
|
|
|
import traceback
|
2009-06-19 03:26:37 +05:30
|
|
|
LOG.error("Unhandled exception\n" +
|
2006-08-15 08:42:14 +05:30
|
|
|
"".join(traceback.format_exception(type, value, tb)))
|
2006-08-13 09:48:59 +05:30
|
|
|
|
2006-01-06 20:53:28 +05:30
|
|
|
sys.excepthook = exc_hook
|
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
def build_user_paths():
|
|
|
|
""" check/make user-dirs on each Gramps session"""
|
|
|
|
for path in const.USER_DIRLIST:
|
|
|
|
if not os.path.isdir(path):
|
|
|
|
os.mkdir(path)
|
2006-01-06 20:53:28 +05:30
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
def run():
|
|
|
|
error = []
|
|
|
|
|
2006-03-05 10:01:24 +05:30
|
|
|
setup_logging()
|
2006-04-27 22:33:23 +05:30
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
try:
|
|
|
|
build_user_paths()
|
|
|
|
except OSError, msg:
|
|
|
|
error += [(_("Configuration error"), str(msg))]
|
|
|
|
return False
|
2004-05-08 10:18:59 +05:30
|
|
|
except:
|
2009-06-19 03:26:37 +05:30
|
|
|
LOG.error("Error reading configuration.", exc_info=True)
|
|
|
|
return False
|
2007-11-01 03:17:58 +05:30
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
if not mime_type_is_defined(const.APP_GRAMPS):
|
|
|
|
error += [(_("Configuration error"),
|
|
|
|
_("A definition for the MIME-type %s could not "
|
|
|
|
"be found \n\n Possibly the installation of GRAMPS "
|
|
|
|
"was incomplete. Make sure the MIME-types "
|
|
|
|
"of GRAMPS are properly installed.")
|
|
|
|
% const.APP_GRAMPS)]
|
|
|
|
|
|
|
|
#we start with parsing the arguments to determine if we have a cli or a
|
|
|
|
# gui session
|
|
|
|
from cli import ArgParser
|
|
|
|
argpars = ArgParser(sys.argv)
|
|
|
|
|
|
|
|
if argpars.need_gui():
|
|
|
|
#A GUI is needed, set it up
|
|
|
|
from gui import startgtkloop
|
|
|
|
startgtkloop(error, argpars)
|
|
|
|
else:
|
|
|
|
#CLI use of GRAMPS
|
|
|
|
argpars.print_help()
|
2007-11-01 03:17:58 +05:30
|
|
|
|
2009-06-19 03:26:37 +05:30
|
|
|
from cli import startcli
|
|
|
|
startcli(error, argpars)
|
|
|
|
|
|
|
|
run()
|