Skip to content
Snippets Groups Projects
main.cpp 2.32 KiB
Newer Older
savoirfairelinux's avatar
savoirfairelinux committed
/**
llea's avatar
llea committed
 *  Copyright (C) 2004-2005 Savoir-Faire Linux inc.
yanmorin's avatar
 
yanmorin committed
 *  Author: Yan Morin <yan.morin@savoirfairelinux.com>
savoirfairelinux's avatar
savoirfairelinux committed
 *  Author: Laurielle Lea <laurielle.lea@savoirfairelinux.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., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

yanmorin's avatar
 
yanmorin committed
#include "user_cfg.h"
yanmorin's avatar
 
yanmorin committed
#include "gui/server/guiserver.h"
jpbl's avatar
jpbl committed
#include "gui/guiframework.h"
savoirfairelinux's avatar
savoirfairelinux committed
#include "manager.h"
yanmorin's avatar
 
yanmorin committed
#include "cstring"
#include "iostream"
savoirfairelinux's avatar
savoirfairelinux committed

int
main (int argc, char **argv) {
jpbl's avatar
jpbl committed
  int exit_code = 0;
llea's avatar
llea committed

yanmorin's avatar
 
yanmorin committed
  if (argc == 2 && strcmp(argv[1], "--help") == 0) {
yanmorin's avatar
 
yanmorin committed

yanmorin's avatar
 
yanmorin committed
    std::cout << PROGNAME << " Daemon " << SFLPHONED_VERSION << ", by Savoir-Faire Linux 2004-2005" << std::endl << std::endl;
yanmorin's avatar
 
yanmorin committed
    std::cout << "USAGE: sflphoned [--help]" << std::endl;
    std::cout << "Parameters: " << std::endl;
    std::cout << "  --help for this message" << std::endl << std::endl;
    std::cout << "See http://www.sflphone.org/ for more information" << std::endl;

  } else {
    GuiFramework *GUI;
yanmorin's avatar
 
yanmorin committed
    bool initOK = false;
yanmorin's avatar
 
yanmorin committed
    try {
yanmorin's avatar
 
yanmorin committed
      Manager::instance().initConfigFile();
yanmorin's avatar
 
yanmorin committed
      Manager::instance().init();
yanmorin's avatar
 
yanmorin committed
      initOK = true;
yanmorin's avatar
 
yanmorin committed
    }
    catch (std::exception &e) {
      std::cerr << e.what() << std::endl;
      exit_code = -1;
    }
yanmorin's avatar
 
yanmorin committed
    catch (...) {
      std::cerr << 
yanmorin's avatar
 
yanmorin committed
    "An exception occured when initializing the system." << 
    std::endl;
yanmorin's avatar
 
yanmorin committed
      exit_code = -1;
yanmorin's avatar
 
yanmorin committed
    }
yanmorin's avatar
 
yanmorin committed
    if (initOK) {
      GUI = &(GUIServer::instance());
      Manager::instance().setGui(GUI);
      exit_code = GUIServer::instance().exec();
    }
  }
jpbl's avatar
jpbl committed

  return exit_code;
savoirfairelinux's avatar
savoirfairelinux committed
}
savoirfairelinux's avatar
 
savoirfairelinux committed

yanmorin's avatar
 
yanmorin committed