Subversion Repositories HomeAutomation

Rev

Rev 1679 | Rev 1939 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  *
  3.  *  Copyright (C) 2010  Mattias Runge
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License along
  16.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  17.  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18.  *
  19.  */
  20.  
  21. #include <signal.h>
  22.  
  23. #include <boost/program_options.hpp>
  24. #include <boost/thread/mutex.hpp>
  25. #include <boost/thread/condition.hpp>
  26. #include <boost/thread/locks.hpp>
  27.  
  28. #include "config.h"
  29.  
  30. #include "logging/Logger.h"
  31. #include "net/Manager.h"
  32. #include "timer/Manager.h"
  33. #include "config/Manager.h"
  34. #include "can/Protocol.h"
  35. #include "broker/Manager.h"
  36. #include "control/Manager.h"
  37. #include "can/Network.h"
  38. #include "can/Monitor.h"
  39. #include "can/CanDaemon.h"
  40. #include "vm/Manager.h"
  41. #include "storage/Manager.h"
  42.  
  43. #include "vm/plugin/System.h"
  44. #include "vm/plugin/Timer.h"
  45. #include "vm/plugin/Module.h"
  46. #include "vm/plugin/Node.h"
  47. #include "vm/plugin/Console.h"
  48. #include "vm/plugin/Storage.h"
  49. #include "vm/plugin/Socket.h"
  50.  
  51. #ifdef USE_PLUGIN_XORG
  52. #include "vm/plugin/Xorg.h"
  53. #endif // USE_PLUGIN_XORG
  54.  
  55. using namespace atom;
  56.  
  57. logging::Logger LOG("Main");
  58. std::vector<broker::Subscriber::Pointer> subscribers;
  59. boost::condition on_message_condition;
  60. boost::mutex guard_mutex;
  61.  
  62. void Handler(int status);
  63. void CleanUp();
  64.  
  65. int main(int argc, char **argv)
  66. {
  67.     LOG.Info("\033[29;1mAtom Daemon, version " + std::string(VERSION) + " starting...\033[0m");
  68.     LOG.Info("\033[29;1mReleased under " + std::string(LICENSE) + ".\033[0m");
  69.     LOG.Info("Written by Mattias Runge 2010.");
  70.    
  71.     signal(SIGTERM, Handler);
  72.     signal(SIGINT, Handler);
  73.     signal(SIGQUIT, Handler);
  74.     signal(SIGABRT, Handler);
  75.     signal(SIGPIPE, Handler);
  76.    
  77.     config::Manager::Create();
  78.    
  79.     if (!config::Manager::Instance()->Set(argc, argv))
  80.     {
  81.         CleanUp();
  82.         return EXIT_SUCCESS;
  83.     }
  84.    
  85.     if (config::Manager::Instance()->Exist("LogFile"))
  86.     {
  87.         logging::Logger::OpenFile(config::Manager::Instance()->GetAsString("LogFile"));
  88.     }
  89.    
  90.     if (config::Manager::Instance()->Exist("LogLevel"))
  91.     {
  92.         logging::Logger::SetLevel((logging::Logger::Level)config::Manager::Instance()->GetAsInt("LogLevel"));
  93.     }
  94.    
  95.     if (config::Manager::Instance()->Exist("daemon"))
  96.     {
  97.         LOG.Info("Entering daemon mode...");
  98.        
  99.         if (daemon(0, 0) == -1)
  100.         {
  101.             LOG.Error("Could not enter daemon mode. Exiting...");
  102.             CleanUp();
  103.             return EXIT_FAILURE;
  104.         }
  105.        
  106.         LOG.Info("Deamon mode entered successfully!");
  107.     }
  108.  
  109.     storage::Manager::Create();
  110.     timer::Manager::Create();
  111.     broker::Manager::Create();
  112.     net::Manager::Create();
  113.     can::Protocol::Create();
  114.     control::Manager::Create();
  115.     vm::Manager::Create();
  116.    
  117.     storage::Manager::Instance()->SetRootPath(config::Manager::Instance()->GetAsString("StoragePath"));
  118.    
  119.     can::Protocol::Instance()->Load(config::Manager::Instance()->GetAsString("ProtocolFile"));
  120.    
  121.     if (config::Manager::Instance()->Exist("MonitorPort"))
  122.     {
  123.         subscribers.push_back(can::Monitor::Pointer(new can::Monitor(config::Manager::Instance()->GetAsInt("MonitorPort"))));  
  124.     }
  125.  
  126.     if (config::Manager::Instance()->Exist("DaemonPort"))
  127.     {
  128.         subscribers.push_back(can::CanDaemon::Pointer(new can::CanDaemon(config::Manager::Instance()->GetAsInt("DaemonPort"))));  
  129.     }
  130.    
  131.     subscribers.push_back(control::Manager::Instance());  
  132.    
  133.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::System(vm::Manager::Instance()->GetIoService())));
  134.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Console(vm::Manager::Instance()->GetIoService(), config::Manager::Instance()->GetAsInt("CommandPort"))));
  135.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Storage(vm::Manager::Instance()->GetIoService())));
  136.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Timer(vm::Manager::Instance()->GetIoService())));
  137.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Module(vm::Manager::Instance()->GetIoService())));
  138.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Node(vm::Manager::Instance()->GetIoService())));
  139.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Socket(vm::Manager::Instance()->GetIoService())));
  140.    
  141. #ifdef USE_PLUGIN_XORG
  142.     vm::Manager::Instance()->AddPlugin(vm::Plugin::Pointer(new vm::plugin::Xorg(vm::Manager::Instance()->GetIoService())));
  143. #endif // USE_PLUGIN_XORG
  144.    
  145.     vm::Manager::Instance()->Start(config::Manager::Instance()->GetAsString("ScriptPath"), config::Manager::Instance()->GetAsString("UserScriptPath"));
  146.    
  147.     if (config::Manager::Instance()->Exist("CanNet"))
  148.     {
  149.         common::StringList cannetworks = config::Manager::Instance()->GetAsStringVector("CanNet");
  150.        
  151.         for (uint n = 0; n < cannetworks.size(); n++)
  152.         {
  153.             subscribers.push_back(can::Network::Pointer(new can::Network(cannetworks[n])));            
  154.         }
  155.     }
  156.    
  157.     boost::mutex::scoped_lock guard(guard_mutex);
  158.     on_message_condition.wait(guard);
  159.    
  160.     LOG.Info("Cleaning up...");
  161.    
  162.     CleanUp();
  163.    
  164.     LOG.Info("Thank you for using Atom. Goodbye!");
  165.    
  166.     return EXIT_SUCCESS;
  167. }
  168.  
  169. void CleanUp()
  170. {
  171.     subscribers.clear();
  172.     config::Manager::Delete();
  173.     timer::Manager::Delete();
  174.     control::Manager::Delete();
  175.     vm::Manager::Delete();
  176.     can::Protocol::Delete();
  177.     broker::Manager::Delete();
  178.     net::Manager::Delete();
  179.     storage::Manager::Delete();
  180. }
  181.  
  182. void Handler(int status)
  183. {
  184.     std::string signal_name = "Unknown";
  185.    
  186.     switch (status)
  187.     {
  188.         case SIGTERM:
  189.         {
  190.             signal_name = "Terminate";
  191.             break;
  192.         }  
  193.         case SIGINT:
  194.         {
  195.             signal_name = "Interupt";
  196.             break;
  197.         }  
  198.         case SIGQUIT:
  199.         {
  200.             signal_name = "Quit";
  201.             break;
  202.         }  
  203.         case SIGABRT:
  204.         {
  205.             signal_name = "Abort";
  206.             break;
  207.         }  
  208.         case SIGIO:
  209.         {
  210.             signal_name = "I/O";
  211.             break;
  212.         }  
  213.         case SIGPIPE:
  214.         {
  215.             signal_name = "Pipe";
  216.             break;
  217.         }
  218.     }
  219.    
  220.     LOG.Debug("Received signal " + signal_name + "(" + boost::lexical_cast<std::string>(status) + ").");
  221.    
  222.     if (status != SIGPIPE)
  223.     {
  224.         on_message_condition.notify_all();
  225.     }
  226. }
  227.  
  228.