#!/usr/bin/python
# -*- coding: utf-8 -*-
# vim: ts=4
###
#
# Copyright (c) 2009-2011 J. Félix Ontañón
#
# 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 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, see <http://www.gnu.org/licenses/>.
#
# Authors : J. Félix Ontañón <fontanon@emergya.es>
#
###

import sys
import gobject
import dbus

from dbus.mainloop.glib import DBusGMainLoop

from wiican.service import WiicanDBus, WIICAN_URI

DBusGMainLoop(set_as_default=True)
loop = gobject.MainLoop()

if WIICAN_URI in dbus.SessionBus().list_names():
    print "Found wiican already running, exiting"
    sys.exit(0)

wiican = WiicanDBus(loop)
loop.run()
