2011-09-06 00:45:53 +00:00
|
|
|
# Copyright 2010-2011 Florent Le Coz <louiz@louiz.org>
|
2010-01-10 20:14:17 +00:00
|
|
|
#
|
|
|
|
# This file is part of Poezio.
|
|
|
|
#
|
|
|
|
# Poezio is free software: you can redistribute it and/or modify
|
2011-09-06 00:45:53 +00:00
|
|
|
# it under the terms of the MIT license. See the COPYING file.
|
|
|
|
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2010-05-18 13:29:02 +00:00
|
|
|
"""
|
|
|
|
Starting point of poezio. Launches both the Connection and Gui
|
|
|
|
"""
|
2010-07-19 23:55:20 +00:00
|
|
|
|
2010-01-21 01:54:50 +00:00
|
|
|
import sys
|
2010-12-26 20:51:14 +00:00
|
|
|
import os
|
2010-11-09 20:37:39 +00:00
|
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
2010-08-04 23:54:02 +00:00
|
|
|
import signal
|
2010-11-09 20:37:39 +00:00
|
|
|
import logging
|
2010-07-20 17:25:41 +00:00
|
|
|
|
2011-03-07 18:57:55 +00:00
|
|
|
from config import options
|
2011-03-05 20:42:56 +00:00
|
|
|
import singleton
|
|
|
|
import core
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2011-03-07 18:57:55 +00:00
|
|
|
def main():
|
|
|
|
"""
|
|
|
|
Enter point
|
|
|
|
"""
|
2010-11-09 20:37:39 +00:00
|
|
|
signal.signal(signal.SIGINT, signal.SIG_IGN) # ignore ctrl-c
|
|
|
|
if options.debug:
|
2011-03-07 18:57:55 +00:00
|
|
|
logging.basicConfig(filename=options.debug, level=logging.DEBUG)
|
|
|
|
cocore = singleton.Singleton(core.Core)
|
|
|
|
cocore.start()
|
|
|
|
if not cocore.xmpp.start(): # Connect to remote server
|
|
|
|
cocore.on_failed_connection()
|
|
|
|
cocore.main_loop() # Refresh the screen, wait for user events etc
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|