2013-07-18 16:42:51 +00:00
|
|
|
#!/usr/bin/env python3
|
2008-11-22 09:28:03 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2013-07-18 19:28:35 +00:00
|
|
|
# vim: autoindent shiftwidth=4 expandtab textwidth=120 tabstop=4 softtabstop=4
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2019-04-13 13:00:22 +00:00
|
|
|
##########################################################################
|
|
|
|
# OpenLP - Open Source Lyrics Projection #
|
|
|
|
# ---------------------------------------------------------------------- #
|
|
|
|
# Copyright (c) 2008-2019 OpenLP Developers #
|
|
|
|
# ---------------------------------------------------------------------- #
|
|
|
|
# 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 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 General Public License for more details. #
|
|
|
|
# #
|
|
|
|
# You should have received a copy of the GNU General Public License #
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>. #
|
|
|
|
##########################################################################
|
2017-09-09 05:19:22 +00:00
|
|
|
"""
|
|
|
|
The entrypoint for OpenLP
|
|
|
|
"""
|
2019-07-02 21:19:30 +00:00
|
|
|
import atexit
|
2017-09-09 05:19:22 +00:00
|
|
|
import faulthandler
|
2019-03-03 09:49:01 +00:00
|
|
|
import logging
|
2014-11-06 09:34:07 +00:00
|
|
|
import multiprocessing
|
2017-09-09 05:19:22 +00:00
|
|
|
import sys
|
2010-07-30 22:48:09 +00:00
|
|
|
|
2019-02-13 21:19:24 +00:00
|
|
|
# from OpenGL import GL
|
2018-02-11 05:34:14 +00:00
|
|
|
|
2017-10-10 07:08:44 +00:00
|
|
|
from openlp.core.app import main
|
2018-10-02 04:39:42 +00:00
|
|
|
from openlp.core.common import is_macosx, is_win
|
2017-09-23 03:50:45 +00:00
|
|
|
from openlp.core.common.applocation import AppLocation
|
2017-10-07 07:05:07 +00:00
|
|
|
from openlp.core.common.path import create_paths
|
|
|
|
|
2019-03-03 09:49:01 +00:00
|
|
|
log = logging.getLogger(__name__)
|
2019-07-02 21:19:30 +00:00
|
|
|
error_log_file = None
|
|
|
|
|
|
|
|
|
|
|
|
def tear_down_fault_handling():
|
|
|
|
"""
|
|
|
|
When Python exits, close the file we were using for the faulthandler
|
|
|
|
"""
|
|
|
|
global error_log_file
|
|
|
|
error_log_file.close()
|
2019-03-03 09:49:01 +00:00
|
|
|
|
2017-10-07 07:05:07 +00:00
|
|
|
|
|
|
|
def set_up_fault_handling():
|
|
|
|
"""
|
|
|
|
Set up the Python fault handler
|
|
|
|
"""
|
2019-07-02 21:19:30 +00:00
|
|
|
global error_log_file
|
2017-10-07 07:05:07 +00:00
|
|
|
# Create the cache directory if it doesn't exist, and enable the fault handler to log to an error log file
|
2019-03-03 09:49:01 +00:00
|
|
|
try:
|
|
|
|
create_paths(AppLocation.get_directory(AppLocation.CacheDir))
|
2019-07-02 21:19:30 +00:00
|
|
|
error_log_file = (AppLocation.get_directory(AppLocation.CacheDir) / 'error.log').open('wb')
|
|
|
|
atexit.register(tear_down_fault_handling)
|
|
|
|
faulthandler.enable(error_log_file)
|
2019-03-03 09:49:01 +00:00
|
|
|
except OSError:
|
|
|
|
log.exception('An exception occurred when enabling the fault handler')
|
2019-07-02 21:19:30 +00:00
|
|
|
atexit.unregister(tear_down_fault_handling)
|
|
|
|
if error_log_file:
|
|
|
|
error_log_file.close()
|
2008-10-29 18:51:43 +00:00
|
|
|
|
2009-09-02 20:42:57 +00:00
|
|
|
|
2018-10-02 23:19:49 +00:00
|
|
|
def start():
|
2009-07-08 06:55:08 +00:00
|
|
|
"""
|
|
|
|
Instantiate and run the application.
|
|
|
|
"""
|
2017-10-07 07:05:07 +00:00
|
|
|
set_up_fault_handling()
|
2014-11-06 09:34:07 +00:00
|
|
|
# Add support for using multiprocessing from frozen Windows executable (built using PyInstaller),
|
|
|
|
# see https://docs.python.org/3/library/multiprocessing.html#multiprocessing.freeze_support
|
|
|
|
if is_win():
|
|
|
|
multiprocessing.freeze_support()
|
2014-09-04 20:10:34 +00:00
|
|
|
# Mac OS X passes arguments like '-psn_XXXX' to the application. This argument is actually a process serial number.
|
|
|
|
# However, this causes a conflict with other OpenLP arguments. Since we do not use this argument we can delete it
|
|
|
|
# to avoid any potential conflicts.
|
2014-11-06 09:34:07 +00:00
|
|
|
if is_macosx():
|
2013-08-31 18:17:38 +00:00
|
|
|
sys.argv = [x for x in sys.argv if not x.startswith('-psn')]
|
2011-04-30 07:42:20 +00:00
|
|
|
main()
|
2018-10-02 23:19:49 +00:00
|
|
|
|
2018-10-16 07:29:58 +00:00
|
|
|
|
2018-10-02 23:19:49 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
start()
|