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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
|
# Miro - an RSS based video player application
# Copyright (C) 2005-2010 Participatory Culture Foundation
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# In addition, as a special exception, the copyright holders give
# permission to link the code of portions of this program with the OpenSSL
# library.
#
# You must obey the GNU General Public License in all respects for all of
# the code used other than OpenSSL. If you modify file(s) with this
# exception, you may extend this exception to your version of the file(s),
# but you are not obligated to do so. If you do not wish to do so, delete
# this exception statement from your version. If you delete this exception
# statement from all source files in the program, then also delete it here.
"""Startup code.
In general, frontends should do the following to handle startup.
FIXME
- (optional) call startup.install_movies_gone_handler()
- Call startup.initialize()
- Wait for either the 'startup-success', or 'startup-failure' signal
"""
from miro.gtcache import gettext as _
import logging
import os
import traceback
import threading
import platform
import time
from miro.clock import clock
from miro import app
from miro import autodler
from miro import autoupdate
from miro import config
from miro import commandline
from miro import controller
from miro import database
from miro import databaselog
from miro import databaseupgrade
from miro import downloader
from miro import eventloop
from miro import fileutil
from miro import guide
from miro import iconcache
from miro import item
from miro import feed
from miro import messages
from miro import messagehandler
from miro import models
from miro import moviedata
from miro import prefs
from miro.plat.utils import setup_logging
from miro.plat import config as platformcfg
from miro import tabs
from miro import theme
from miro import util
from miro import searchengines
from miro import storedatabase
DEBUG_DB_MEM_USAGE = False
mem_usage_test_event = threading.Event()
class StartupError(Exception):
def __init__(self, summary, description):
self.summary = summary
self.description = description
def startup_function(func):
"""Decorator for startup functions. This decorator catches exceptions and
turns them into StartupFailure messages.
"""
def wrapped(*args, **kwargs):
try:
func(*args, **kwargs)
except StartupError, e:
m = messages.StartupFailure(e.summary, e.description)
m.send_to_frontend()
except (SystemExit, KeyboardInterrupt):
raise
except:
logging.warn("Unknown startup error: %s", traceback.format_exc())
m = messages.StartupFailure(_("Unknown Error"),
_(
"An unknown error prevented %(appname)s from startup. Please "
"file a bug report at %(url)s.",
{"appname": config.get(prefs.SHORT_APP_NAME),
"url": config.get(prefs.BUG_REPORT_URL)}
))
m.send_to_frontend()
return wrapped
def _movies_directory_gone_handler(callback):
"""Default _movies_directory_gone_handler. The frontend should
override this using the ``install_movies_directory_gone_handler``
function.
"""
logging.error("Movies directory is gone -- no handler installed!")
eventloop.addUrgentCall(callback, "continuing startup")
def install_movies_directory_gone_handler(callback):
global _movies_directory_gone_handler
_movies_directory_gone_handler = callback
def _first_time_handler(callback):
"""Default _first_time_handler. The frontend should override this
using the ``install_first_time_handler`` function.
"""
logging.error("First time -- no handler installed.")
eventloop.addUrgentCall(callback, "continuing startup")
def install_first_time_handler(callback):
global _first_time_handler
_first_time_handler = callback
def setup_global_feed(url, *args, **kwargs):
view = feed.Feed.make_view('origURL=?', (url,))
view_count = view.count()
if view_count == 0:
logging.info("Spawning global feed %s", url)
feed.Feed(url, *args, **kwargs)
elif view_count > 1:
allFeeds = [f for f in view]
for extra in allFeeds[1:]:
extra.remove()
raise StartupError("Database inconsistent",
"Too many db objects for %s" % url)
def initialize(themeName):
"""Initialize Miro. This sets up things like logging and the config
system and should be called as early as possible.
"""
# this is platform specific
setup_logging()
# this is portable general
util.setup_logging()
app.controller = controller.Controller()
config.load(themeName)
def startup():
"""Startup Miro.
This method starts up the eventloop and schedules the rest of the startup
to run in the event loop.
Frontends should call this method, then wait for 1 of 2 messages
StartupSuccess is sent once the startup is done and the backend is ready
to go.
StartupFailure is sent if something bad happened.
initialize() must be called before startup().
"""
logging.info("Starting up %s", config.get(prefs.LONG_APP_NAME))
logging.info("Version: %s", config.get(prefs.APP_VERSION))
logging.info("OS: %s %s %s", platform.system(), platform.release(), platform.machine())
logging.info("Revision: %s", config.get(prefs.APP_REVISION))
logging.info("Builder: %s", config.get(prefs.BUILD_MACHINE))
logging.info("Build Time: %s", config.get(prefs.BUILD_TIME))
eventloop.connect('thread-started', finish_startup)
logging.info("Starting event loop thread")
eventloop.startup()
if DEBUG_DB_MEM_USAGE:
mem_usage_test_event.wait()
@startup_function
def finish_startup(obj, thread):
database.set_thread(thread)
logging.info("Restoring database...")
start = time.time()
app.db = storedatabase.LiveStorage()
try:
app.db.upgrade_database()
except databaseupgrade.DatabaseTooNewError:
summary = _("Database too new")
description = _(
"You have a database that was saved with a newer version of "
"%(appname)s. You must download the latest version of "
"%(appname)s and run that.",
{"appname": config.get(prefs.SHORT_APP_NAME)},
)
raise StartupError(summary, description)
except storedatabase.UpgradeError:
raise StartupError(None, None)
database.initialize()
end = time.time()
logging.timing("Database upgrade time: %.3f", end - start)
if app.db.startup_version != app.db.current_version:
databaselog.info("Upgraded database from version %s to %s",
app.db.startup_version, app.db.current_version)
databaselog.print_old_log_entries()
models.initialize()
if DEBUG_DB_MEM_USAGE:
util.db_mem_usage_test()
mem_usage_test_event.set()
searchengines.create_engines()
setup_global_feeds()
# call move_orphaned_items() ASAP after the manual feed is set up
item.move_orphaned_items()
logging.info("setup tabs...")
setup_tabs()
logging.info("setup theme...")
setup_theme()
install_message_handler()
downloader.init_controller()
eventloop.addUrgentCall(check_firsttime, "check first time")
@startup_function
def check_firsttime():
"""Run the first time wizard if need be.
"""
callback = lambda: eventloop.addUrgentCall(check_movies_gone, "check movies gone")
if is_first_time():
logging.info("First time -- calling handler.")
_first_time_handler(callback)
return
eventloop.addUrgentCall(check_movies_gone, "check movies gone")
@startup_function
def check_movies_gone():
"""Checks to see if the movies directory is gone.
"""
callback = lambda: eventloop.addUrgentCall(fix_movies_gone,
"fix movies gone")
if is_movies_directory_gone():
logging.info("Movies directory is gone -- calling handler.")
_movies_directory_gone_handler(callback)
return
movies_dir = fileutil.expand_filename(config.get(prefs.MOVIES_DIRECTORY))
# if the directory doesn't exist, create it.
if not os.path.exists(movies_dir):
try:
os.makedirs(movies_dir)
except OSError:
logging.info("Movies directory can't be created -- calling handler")
# FIXME - this isn't technically correct, but it's probably
# close enough that a user can fix the issue and Miro can
# run happily.
_movies_directory_gone_handler(callback)
return
# make sure the directory is writeable
try:
fn = os.path.join(movies_dir, "testfile")
f = open(fn, "w")
f.write("test")
f.close()
os.remove(fn)
except IOError:
_movies_directory_gone_handler(callback)
return
eventloop.addUrgentCall(finish_backend_startup, "reconnect downloaders")
@startup_function
def fix_movies_gone():
config.set(prefs.MOVIES_DIRECTORY, platformcfg.get(prefs.MOVIES_DIRECTORY))
eventloop.addUrgentCall(finish_backend_startup, "reconnect downloaders")
@startup_function
def finish_backend_startup():
"""Last bit of startup required before we load the frontend. """
# Uncomment the next line to test startup error handling
# raise StartupError("Test Error", "Startup Failed")
reconnect_downloaders()
guide.download_guides()
feed.remove_orphaned_feed_impls()
messages.StartupSuccess().send_to_frontend()
@eventloop.idle_iterator
def on_frontend_started():
"""Perform startup actions that should happen after the frontend is
already up and running.
"""
logging.info("Starting auto downloader...")
autodler.start_downloader()
yield None
feed.expire_items()
yield None
logging.info("Starting movie data updates")
item.update_incomplete_movie_data()
yield None
moviedata.movie_data_updater.start_thread()
yield None
commandline.startup()
yield None
# autoupdate.check_for_updates()
yield None
# Wait a bit before starting the downloader daemon. It can cause a bunch
# of disk/CPU load, so try to avoid it slowing other stuff down.
eventloop.addTimeout(5, downloader.startup_downloader,
"start downloader daemon")
# ditto for feed updates
eventloop.addTimeout(30, feed.start_updates, "start feed updates")
# ditto for clearing stale icon cache files, except it's the very lowest
# priority
eventloop.addTimeout(10, clear_icon_cache_orphans, "clear orphans")
def setup_global_feeds():
setup_global_feed(u'dtv:manualFeed', initiallyAutoDownloadable=False)
setup_global_feed(u'dtv:singleFeed', initiallyAutoDownloadable=False)
setup_global_feed(u'dtv:search', initiallyAutoDownloadable=False)
setup_global_feed(u'dtv:searchDownloads')
setup_global_feed(u'dtv:directoryfeed')
def setup_tabs():
def setup_tab_order(type):
current_tab_orders = list(tabs.TabOrder.view_for_type(type))
if len(current_tab_orders) == 0:
logging.info("Creating %s tab order" % type)
tab_order = tabs.TabOrder(type)
else:
current_tab_orders[0].restore_tab_list()
setup_tab_order(u'site')
setup_tab_order(u'channel')
setup_tab_order(u'audio-channel')
setup_tab_order(u'playlist')
def is_first_time():
"""Checks to see if this is the first time that Miro has been run.
This is to do any first-time setup, show the user the first-time
wizard, ...
Returns True if yes, False if no.
"""
return not config.get(prefs.STARTUP_TASKS_DONE)
def mark_first_time():
config.set(prefs.STARTUP_TASKS_DONE, True)
def is_movies_directory_gone():
"""Checks to see if the MOVIES_DIRECTORY exists.
Returns True if yes, False if no.
"""
movies_dir = fileutil.expand_filename(config.get(prefs.MOVIES_DIRECTORY))
if not movies_dir.endswith(os.path.sep):
movies_dir += os.path.sep
logging.info("Checking movies directory %r...", movies_dir)
try:
if os.path.exists(movies_dir):
contents = os.listdir(movies_dir)
if contents:
# there's something inside the directory consider it
# present (even if all our items are missing).
return False
except OSError:
# we can't access the directory--treat it as if it's gone.
logging.info("Can't access directory.")
return True
# at this point either there's no movies_dir or there is an empty
# movies_dir. we check to see if we think something is downloaded.
for downloader_ in downloader.RemoteDownloader.make_view():
if ((downloader_.is_finished()
and downloader_.get_filename().startswith(movies_dir))):
# we think something is downloaded, so it seems like the
# movies directory is gone.
logging.info("Directory there, but missing files.")
return True
# we have no content, so everything's fine.
return False
def setup_theme():
themeHistory = _get_theme_history()
themeHistory.check_new_theme()
def install_message_handler():
handler = messagehandler.BackendMessageHandler(on_frontend_started)
messages.BackendMessage.install_handler(handler)
def _get_theme_history():
current_themes = list(theme.ThemeHistory.make_view())
if len(current_themes) > 0:
return current_themes[0]
else:
return theme.ThemeHistory()
@eventloop.idle_iterator
def clear_icon_cache_orphans():
# delete icon_cache rows from the database with no associated
# item/feed/guide.
removed_objs = []
for ic in iconcache.IconCache.orphaned_view():
logging.warn("No object for IconCache: %s. Discarding", ic)
ic.remove()
removed_objs.append(str(ic.url))
if removed_objs:
databaselog.info("Removed IconCache objects without an associated "
"db object: %s", ','.join(removed_objs))
yield None
# delete files in the icon cache directory that don't belong to IconCache
# objects.
cachedir = fileutil.expand_filename(config.get(prefs.ICON_CACHE_DIRECTORY))
if not os.path.isdir(cachedir):
return
existingFiles = [os.path.normcase(os.path.join(cachedir, f))
for f in os.listdir(cachedir)]
yield None
knownIcons = iconcache.IconCache.all_filenames()
yield None
knownIcons = [ os.path.normcase(fileutil.expand_filename(path)) for path in
knownIcons]
yield None
for filename in existingFiles:
if (os.path.exists(filename)
and os.path.basename(filename)[0] != '.'
and os.path.basename(filename) != 'extracted'
and not filename in knownIcons):
try:
os.remove(filename)
except OSError:
pass
yield None
def reconnect_downloaders():
for downloader_ in downloader.RemoteDownloader.orphaned_view():
logging.warn("removing orphaned downloader: %s", downloader_.url)
downloader_.remove()
manualItems = item.Item.feed_view(feed.Feed.get_manual_feed().get_id())
for item_ in manualItems:
if item_.downloader is None and item_.__class__ == item.Item:
logging.warn("removing cancelled external torrent: %s", item_)
item_.remove()
|