#!/usr/bin/python
#
# telepathy-butterfly - an MSN connection manager for Telepathy
#
# Copyright (C) 2006 Ali Sabil <ali.sabil@gmail.com>
#
# 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

import gobject
import dbus.glib
import signal
import sys

import logging

logging.basicConfig(level=logging.DEBUG)

from TelepathyButterfly.connmgr import MsnConnectionManager

logger = logging.getLogger('telepathy-butterfly')

if __name__ == '__main__':
    try: # change process name for killall
       import ctypes
       libc = ctypes.CDLL('libc.so.6')
       libc.prctl(15, 'telepathy-butterfly', 0, 0, 0)
    except Exception, e:
       logger.info('Unable to set processName: %s" % e')

    def timeout_cb():
        if len(manager._connections) == 0:
            logger.info('No connection received - quitting')
            quit_cb()
        return False
    
    def quit_cb():
        manager.quit()
        mainloop.quit()

    def sigterm_cb():
        gobject.idle_add(quit_cb)

    if '--persist' not in sys.argv:
        idle_callback = quit_cb
        gobject.timeout_add(5000, timeout_cb)
    else:
        idle_callback = None
        
    manager = MsnConnectionManager(idle_callback)
    mainloop = gobject.MainLoop()
    
    signal.signal(signal.SIGTERM, sigterm_cb)
    
    try:
        mainloop.run()
    except KeyboardInterrupt:
        quit_cb()
