2014-06-04 14:11:55 +02:00
|
|
|
# Copyright 2014 Florian Bruhin (The Compiler) <mail@qutebrowser.org>
|
|
|
|
#
|
|
|
|
# This file is part of qutebrowser.
|
|
|
|
#
|
|
|
|
# qutebrowser 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.
|
|
|
|
#
|
|
|
|
# qutebrowser 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 qutebrowser. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
"""Early initialization and main entry pint."""
|
|
|
|
|
|
|
|
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
2014-07-18 07:48:33 +02:00
|
|
|
import qutebrowser
|
2014-06-04 14:11:55 +02:00
|
|
|
from qutebrowser.utils.checkpyver import check_python_version
|
|
|
|
check_python_version()
|
|
|
|
import qutebrowser.utils.earlyinit as earlyinit
|
|
|
|
|
|
|
|
|
2014-07-18 07:48:33 +02:00
|
|
|
def get_argparser():
|
|
|
|
"""Get the argparse parser."""
|
|
|
|
parser = ArgumentParser("usage: qutebrowser",
|
|
|
|
description=qutebrowser.__description__)
|
2014-06-06 15:52:37 +02:00
|
|
|
parser.add_argument('-c', '--confdir', help="Set config directory (empty "
|
|
|
|
"for no config storage)")
|
|
|
|
parser.add_argument('-V', '--version', help="Show version and quit.",
|
|
|
|
action='store_true')
|
|
|
|
debug = parser.add_argument_group('debug arguments')
|
|
|
|
debug.add_argument('-l', '--loglevel', dest='loglevel',
|
2014-06-06 16:40:49 +02:00
|
|
|
help="Set loglevel", default='info')
|
2014-06-06 15:52:37 +02:00
|
|
|
debug.add_argument('--logfilter',
|
2014-06-06 16:40:49 +02:00
|
|
|
help="Comma-separated list of things to be logged "
|
|
|
|
"to the debug log on stdout.")
|
2014-06-19 12:06:36 +02:00
|
|
|
debug.add_argument('--loglines',
|
|
|
|
help="How many lines of the debug log to keep in RAM "
|
|
|
|
"(-1: unlimited).",
|
|
|
|
default=1000, type=int)
|
2014-06-06 15:52:37 +02:00
|
|
|
debug.add_argument('--debug', help="Turn on debugging options.",
|
2014-06-06 16:40:49 +02:00
|
|
|
action='store_true')
|
2014-06-06 15:52:37 +02:00
|
|
|
debug.add_argument('--nocolor', help="Turn off colored logging.",
|
2014-06-06 16:40:49 +02:00
|
|
|
action='store_false', dest='color')
|
2014-06-06 15:52:37 +02:00
|
|
|
debug.add_argument('--harfbuzz', choices=['old', 'new', 'system', 'auto'],
|
2014-06-06 16:40:49 +02:00
|
|
|
default='auto', help="HarfBuzz engine version to use. "
|
|
|
|
"Default: auto.")
|
2014-06-20 06:53:41 +02:00
|
|
|
# For the Qt args, we use store_const with const=True rather than
|
|
|
|
# store_true because we want the default to be None, to make
|
2014-06-23 07:45:04 +02:00
|
|
|
# utils.qt:get_qt_args easier.
|
2014-06-06 16:32:57 +02:00
|
|
|
debug.add_argument('--qt-style', help="Set the Qt GUI style to use.",
|
|
|
|
metavar='STYLE')
|
|
|
|
debug.add_argument('--qt-stylesheet', help="Override the Qt application "
|
|
|
|
"stylesheet.", metavar='STYLESHEET')
|
2014-06-16 14:42:01 +02:00
|
|
|
debug.add_argument('--qt-widgetcount', help="Print debug message at the "
|
2014-06-06 16:32:57 +02:00
|
|
|
"end about number of widgets left undestroyed and "
|
|
|
|
"maximum number of widgets existed at the same time.",
|
2014-06-06 16:40:49 +02:00
|
|
|
action='store_const', const=True)
|
2014-06-06 16:32:57 +02:00
|
|
|
debug.add_argument('--qt-reverse', help="Set the application's layout "
|
2014-06-06 16:40:49 +02:00
|
|
|
"direction to right-to-left.", action='store_const',
|
|
|
|
const=True)
|
2014-06-06 16:32:57 +02:00
|
|
|
debug.add_argument('--qt-qmljsdebugger', help="Activate the QML/JS "
|
|
|
|
"debugger with a specified port. 'block' is optional "
|
|
|
|
"and will make the application wait until a debugger "
|
|
|
|
"connects to it.", metavar='port:PORT[,block]')
|
2014-06-04 14:11:55 +02:00
|
|
|
parser.add_argument('command', nargs='*', help="Commands to execute on "
|
|
|
|
"startup.", metavar=':command')
|
|
|
|
# URLs will actually be in command
|
|
|
|
parser.add_argument('url', nargs='*', help="URLs to open on startup.")
|
2014-07-18 07:48:33 +02:00
|
|
|
return parser
|
2014-06-04 14:11:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""Main entry point for qutebrowser."""
|
|
|
|
earlyinit.init_faulthandler()
|
2014-07-18 07:48:33 +02:00
|
|
|
parser = get_argparser()
|
|
|
|
args = parser.parse_args()
|
2014-06-04 14:11:55 +02:00
|
|
|
earlyinit.check_pyqt_core()
|
2014-06-04 23:55:34 +02:00
|
|
|
# We do this import late as we need to do the version checking first.
|
|
|
|
# Note we may not import webkit stuff yet as fix_harfbuzz didn't run.
|
2014-06-04 14:11:55 +02:00
|
|
|
import qutebrowser.utils.log as log
|
|
|
|
log.init_log(args)
|
2014-06-23 06:37:47 +02:00
|
|
|
log.init.debug("Log initialized.")
|
|
|
|
log.init.debug("Doing early init.")
|
2014-06-04 23:55:34 +02:00
|
|
|
earlyinit.fix_harfbuzz(args)
|
2014-06-16 11:26:09 +02:00
|
|
|
earlyinit.check_qt_version()
|
2014-06-04 23:55:34 +02:00
|
|
|
earlyinit.check_pyqt_webkit()
|
2014-06-16 11:20:26 +02:00
|
|
|
earlyinit.check_pkg_resources()
|
2014-06-20 06:36:48 +02:00
|
|
|
earlyinit.check_rfc6266()
|
2014-06-04 23:55:34 +02:00
|
|
|
# We do this import late as we need to fix harfbuzz first.
|
|
|
|
from qutebrowser.app import Application
|
2014-06-04 14:11:55 +02:00
|
|
|
app = Application(args)
|
|
|
|
return app.exec_()
|