/[projects]/smsdaemon/main.cpp
ViewVC logotype

Diff of /smsdaemon/main.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 26 by torben, Mon Jun 9 18:15:53 2008 UTC revision 151 by torben, Mon Dec 8 10:42:04 2008 UTC
# Line 1  Line 1 
 #include <iostream>  
1  #include <string>  #include <string>
2    #include <stdlib.h>
3    
 #include <cctype>  
 #include <sstream>  
4  #include "daemon.h"  #include "daemon.h"
5  #include "common.h"  #include "common.h"
6    
7  #include "GsmModem.h"  #include "ModemTransceiver.h"
8  #include "SerialPort.h"  #include "DebugTransceiver.h"
9    #include "SmsToolTransceiver.h"
10  #include "Plugin.h"  
11  #include "kbhit.h"  #include "serialport/SerialPort.h"
12    #include "SmsDaemon.h"
13  #include "util.h"  #include "ConfigFile.h"
14    
15  using namespace std;  using namespace std;
 using namespace Util;  
16    
17    
18  void create_log_message(SMS& sms,bool hasPlugin)  bool sms_exit(int exitcode)
19  {  {
20          ostringstream os;      if (Common::instance()->isDaemon)
21          os << "Recieved sms from " << sms.sender << " ; command=" << GetSmsCommand(sms);          daemonCleanup();
         if (!hasPlugin)  
                 os << " -- PLUGIN NOT FOUND";  
22    
23          Common::instance()->logMessage(os.str());          exit(exitcode);
24  }  }
25    
26    SerialPort* port = 0;
27    ISmsTransceiver* transceiver = 0;
28    
29  void main_loop(GsmModem& modem)  void openModemPort()
30  {  {
31          Common* cmn = Common::instance();          Common* cmn = Common::instance();
32          volatile bool& mainContinue = cmn->mainContinue;          ConfigFile* config = cmn->GetConfigfile();
   
         PluginManager& manager = cmn->pluginManager;  
33    
34          mainContinue = true;          port = new SerialPort ( config->GetValue("smsdaemon","serialport") );
35            try
         while (mainContinue)  
36          {          {
37                  vector<SMS> sms = modem.ReadSms();                  port->Open( SerialPort::BAUD_9600,
38                                       SerialPort::CHAR_SIZE_8,
39                  for (unsigned int i=0; i<sms.size(); ++i)                                     SerialPort::PARITY_NONE,
40                  {                                     SerialPort::STOP_BITS_1,
41                          string cmd = GetSmsCommand(sms[i]);                                     SerialPort::FLOW_CONTROL_HARD );
42                                    }
43                          cmd = Util::str_tolower(cmd);          catch(std::exception &e)
44            {
45                          Plugin* pl = manager.GetPlugin(cmd);                  cmn->logMessage( string("PortOpen Exception: ") + e.what() );
46                    sms_exit(1);
47                          create_log_message(sms[i], pl != 0);          }
   
                         if (pl)  
                         {  
                                 pl->Execute(modem, sms[i]);  
                         }  
                         else  
                         {  
                                 modem.SendSms(sms[i].sender, "Unknown command!");  
                         }  
   
                         modem.DeleteSms(sms[i].sms_index);  
                 }  
   
                 if (sms.size() == 0)  
                         Util::Sleep(10);  
48    
49                  if (cmn->isDebug && kbhit())          transceiver = new ModemTransceiver(*port);
                         break;  
50    
51            try
52            {
53                    ((ModemTransceiver*)transceiver)->Init();
54            }
55            catch (std::exception& e)
56            {
57                    cmn->logMessage( string("ModemTransceiver Exception: ") + e.what() );
58                    sms_exit(2);
59          }          }
60  }  }
61    void closeModemPort()
62    {
63            port->Close();
64            delete port;
65            delete transceiver;
66    }
67    
68  int main(int argc, char* argv[])  int main(int argc, char* argv[])
69  {  {
# Line 84  int main(int argc, char* argv[]) Line 75  int main(int argc, char* argv[])
75          cmn->pidfile = "/var/run/smsdaemon.pid";          cmn->pidfile = "/var/run/smsdaemon.pid";
76          cmn->spooldir = "/var/spool/smsdaemon";          cmn->spooldir = "/var/spool/smsdaemon";
77    
         cmn->uid = 500;  
         cmn->gid = 500;  
78    
79          cmn->loadConfig(argc,argv);          cmn->loadConfig(argc,argv);
80            cmn->daemonStart = time(0);
81    
82            ConfigFile* config = cmn->GetConfigfile();
83                    
84          /////////////////////          bool res = config->Open( cmn->configFilePath ) ;
85            if (!res) {
86                    cmn->logMessage(string("Could not open config file:") + cmn->configFilePath);
87                    return 1;
88            }
89                    
         //Write a delimiter line in the logfile to seperate sessions  
90    
91          if (Common::instance()->isDaemon)          /////////////////////
92                  daemonize();          string transconf = config->GetValue("smsdaemon", "transceiver");
93            
94    
95          cmn->logMessage("--------------------------------");          if (transconf == "builtin")
96            {
97                    openModemPort();
98                    closeModemPort();
99            }
100            else if ( transconf == "debug" || transconf == "smstools")
101            {
102                    //do nothing
103            }
104            else
105            {
106                    cmn->logMessage( string("Invalid transceiver setting: ")+transconf);
107                    exit(1);
108            }
109    
         cmn->pluginManager.LoadPlugins();  
110                    
111    
112          SerialPort port("/dev/ttyS1" );          if (Common::instance()->isDaemon)
113          port.Open( SerialPort::BAUD_9600 );          {
114          GsmModem modem(port);                  lookup_uid_values();
115                    daemonize();
116                    cmn->daemonized = true;
117            }
118    
119    
120            if (transconf == "builtin")
121            {
122                    openModemPort();
123            }
124            else if (transconf =="smstools")
125            {
126                    transceiver = new SmsToolTransceiver();
127            }
128            else if (transconf == "debug")
129            {
130                    transceiver = new DebugTransceiver();
131            }
132    
133          //////////////////////////////////          //////////////////////////////////
134    
135          Common::instance()->logMessage("SMS daemon started");          SmsDaemon daemon(*transceiver);
136    
137            daemon.Start();
138            //returns here when main-loop exits
139    
140          modem.DeleteAllSms();      if (cmn->isDaemon)
141            daemonCleanup();
142    
143          main_loop(modem);          if (transconf == "builtin")
144            {
145                    closeModemPort();
146            }
147    
148            return 0;
149  }  }
150    

Legend:
Removed from v.26  
changed lines
  Added in v.151

  ViewVC Help
Powered by ViewVC 1.1.20