~ubuntu-branches/ubuntu/natty/miro/natty

« back to all changes in this revision

Viewing changes to lib/frontends/cli/application.py

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2011-01-22 02:46:33 UTC
  • mfrom: (1.4.10 upstream) (1.7.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20110122024633-kjme8u93y2il5nmf
Tags: 3.5.1-1ubuntu1
* Merge from debian.  Remaining ubuntu changes:
  - Use python 2.7 instead of python 2.6
  - Relax dependency on python-dbus to >= 0.83.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Miro - an RSS based video player application
 
2
# Copyright (C) 2005-2010 Participatory Culture Foundation
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or
 
7
# (at your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful,
 
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
# GNU General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
17
#
 
18
# In addition, as a special exception, the copyright holders give
 
19
# permission to link the code of portions of this program with the OpenSSL
 
20
# library.
 
21
#
 
22
# You must obey the GNU General Public License in all respects for all of
 
23
# the code used other than OpenSSL. If you modify file(s) with this
 
24
# exception, you may extend this exception to your version of the file(s),
 
25
# but you are not obligated to do so. If you do not wish to do so, delete
 
26
# this exception statement from your version. If you delete this exception
 
27
# statement from all source files in the program, then also delete it here.
 
28
 
 
29
import logging
 
30
import platform
 
31
 
 
32
from miro import config
 
33
from miro import prefs
 
34
from miro import app
 
35
from miro import startup
 
36
from miro import controller
 
37
from miro.frontends.cli.util import print_text, print_box
 
38
from miro.frontends.cli.events import EventHandler
 
39
from miro.frontends.cli.interpreter import MiroInterpreter
 
40
 
 
41
def setup_logging():
 
42
    pathname = config.get(prefs.LOG_PATHNAME)
 
43
    try:
 
44
        rotater = logging.handlers.RotatingFileHandler(
 
45
            pathname, mode="w", maxBytes=100000,
 
46
            backupCount=5)
 
47
    except IOError:
 
48
        # bug 13338.  sometimes there's a file there and it causes
 
49
        # RotatingFileHandler to flip out when opening it.  so we
 
50
        # delete it and then try again.
 
51
        os.remove(pathname)
 
52
        rotater = logging.handlers.RotatingFileHandler(
 
53
            pathname, mode="w", maxBytes=100000,
 
54
            backupCount=5)
 
55
 
 
56
    rotater.setLevel(logging.WARN)
 
57
    formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(message)s')
 
58
    rotater.setFormatter(formatter)
 
59
    logging.getLogger('').addHandler(rotater)
 
60
    rotater.doRollover()
 
61
 
 
62
    from miro import util
 
63
    util.setup_logging()
 
64
 
 
65
def run_application(props_to_set, theme):
 
66
    setup_logging()
 
67
    app.controller = controller.Controller()
 
68
    config.load(theme)
 
69
 
 
70
    # FIXME - ignoring props_to_set
 
71
    print "Starting up %s" % config.get(prefs.LONG_APP_NAME)
 
72
    print "Version:    %s" % config.get(prefs.APP_VERSION)
 
73
    print "OS:         %s %s %s" % (platform.system(), platform.release(), platform.machine())
 
74
    print "Revision:   %s" % config.get(prefs.APP_REVISION)
 
75
    print "Builder:    %s" % config.get(prefs.BUILD_MACHINE)
 
76
    print "Build Time: %s" % config.get(prefs.BUILD_TIME)
 
77
 
 
78
    print
 
79
    app.cli_events = EventHandler()
 
80
    app.cli_events.connect_to_signals()
 
81
    startup.startup()
 
82
    app.cli_events.startup_event.wait()
 
83
    if app.cli_events.startup_failure:
 
84
        print_box("Error Starting Up: %s" % app.cli_events.startup_failure[0])
 
85
        print
 
86
        print_text(app.cli_events.startup_failure[1])
 
87
        app.controller.shutdown()
 
88
        return
 
89
    print "Startup complete.  Type \"help\" for list of commands."
 
90
    app.cli_interpreter = MiroInterpreter()
 
91
    app.cli_interpreter.cmdloop()
 
92
    app.controller.shutdown()