~d-perry/cuttlefish/hacking

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
### BEGIN LICENSE
# Copyright (C) 2012 Alexander von Bremen-Kuehne <noneed4anick@gmail.com>
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 3, as published
# by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY, 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 <http://www.gnu.org/licenses/>.
### END LICENSE

import optparse, os, sys

import gettext
from gettext import gettext as _
gettext.textdomain('cuttlefish')

from gi.repository import Gtk, Gdk, GLib, Gio # pylint: disable=E0611

import logging
from logging.handlers import RotatingFileHandler

class NullHandler(logging.Handler):
    def emit(self, record):
        pass

root = logging.getLogger()
null_handler = NullHandler()
root.addHandler(null_handler)

logger = logging.getLogger('cuttlefish')
logger.setLevel(logging.DEBUG)
fh = RotatingFileHandler('/tmp/cuttlefish.log', maxBytes=100000, backupCount=5)
fh.setLevel(logging.DEBUG)
fh.setFormatter(logging.Formatter('[%(asctime)s] %(levelname)s in %(name)s: %(message)s'))

settings = Gio.Settings("net.launchpad.cuttlefish")

def on_logging_changed(_settings, key):
    if settings.get_boolean("logging"):
        logger.addHandler(fh)
    else:
        logger.removeHandler(fh)

settings.connect("changed::logging", on_logging_changed)
on_logging_changed(None, None)

import dbus
from dbus.mainloop.glib import DBusGMainLoop
DBusGMainLoop(set_as_default=True)

from cuttlefish import CuttlefishWindow
from cuttlefish.plugins import MANAGER
MANAGER.reload()

from cuttlefish.engine import ENGINE
from cuttlefish_lib import set_up_logging, get_version
from cuttlefish_lib.helpers import get_media_file

GLib.threads_init()
Gdk.threads_init()

def parse_options():
    """Support for command line options"""
    parser = optparse.OptionParser(version="%%prog %s" % get_version())
    parser.add_option(
        "-v", "--verbose", action="count", dest="verbose",
        help=_("Show debug messages (-vv debugs cuttlefish_lib also)"))
    parser.add_option("-H", "--hidden",
                  action="store_true", dest="hidden", default=False,
                  help="Start without showing main window")

    (options, args) = parser.parse_args()

    set_up_logging(options)
    return options

def main():
    'constructor for your class instances'
    opts = parse_options()

    # Run the application.
    ENGINE.setup()
    window = CuttlefishWindow.CuttlefishWindow()
    if not opts.hidden:
        window.show()
    Gtk.main()
    ENGINE.teardown()