qutebrowser/qutebrowser/qutebrowser.py

74 lines
3.0 KiB
Python
Raw Normal View History

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
from qutebrowser.utils.checkpyver import check_python_version
check_python_version()
import qutebrowser.utils.earlyinit as earlyinit
def _parse_args():
"""Parse command line options.
Return:
Argument namespace from argparse.
"""
parser = ArgumentParser("usage: %(prog)s [options]")
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-04 14:11:55 +02:00
help="Set loglevel", default='info')
2014-06-06 15:52:37 +02:00
debug.add_argument('--logfilter',
2014-06-06 15:48:42 +02:00
help="Comma-separated list of things to be logged "
"to the debug log on stdout.")
2014-06-06 15:52:37 +02:00
debug.add_argument('--debug', help="Turn on debugging options.",
2014-06-04 14:11:55 +02:00
action='store_true')
2014-06-06 15:52:37 +02:00
debug.add_argument('--nocolor', help="Turn off colored logging.",
2014-06-04 14:11:55 +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-04 16:18:59 +02:00
default='auto', help="HarfBuzz engine version to use. "
"Default: auto.")
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.")
return parser.parse_args()
def main():
"""Main entry point for qutebrowser."""
earlyinit.init_faulthandler()
args = _parse_args()
earlyinit.check_pyqt_core()
# 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)
earlyinit.fix_harfbuzz(args)
earlyinit.check_pyqt_webkit()
# 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_()