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

Diff of /smsdaemon/SmsDaemon.cpp

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

revision 94 by torben, Mon Jun 16 11:57:48 2008 UTC revision 149 by torben, Sun Dec 7 20:58:41 2008 UTC
# Line 3  Line 3 
3  #include <string>  #include <string>
4    
5  #include <sstream>  #include <sstream>
6    #include <stdlib.h>
7    
8  #include "common.h"  #include "common.h"
9    
10  #include "GsmModem.h"  #include "ISmsTransceiver.h"
11    
12  #include "Plugin.h"  #include "Plugin.h"
13  #include "kbhit.h"  #include "kbhit.h"
# Line 19  Line 21 
21    
22  using namespace std;  using namespace std;
23    
   
24  void SmsDaemon::CreateLogMessage(SMS& sms,bool hasPlugin)  void SmsDaemon::CreateLogMessage(SMS& sms,bool hasPlugin)
25  {  {
26          ostringstream os;          ostringstream os;
27          os << "Recieved sms from " << sms.sender << " ; command=" << GetSmsCommand(sms);          os << "Recieved sms from " << sms.GetSender() << " ; command=" << sms.ExtractCommand();
28          if (!hasPlugin)          if (!hasPlugin)
29                  os << " -- PLUGIN NOT FOUND";                  os << " -- PLUGIN NOT FOUND";
30    
# Line 33  void SmsDaemon::CreateLogMessage(SMS& sm Line 34  void SmsDaemon::CreateLogMessage(SMS& sm
34    
35  void SmsDaemon::CheckSms()  void SmsDaemon::CheckSms()
36  {  {
37            const int INTERVAL = 1000; //no of milliseconds between sms checks
38            timeval now = Util::GetTimeOfDay();
39    
40            if ( Util::mTimeDiff(_lastSmsCheck,now) < INTERVAL)
41                    return;
42    
43            _lastSmsCheck = now;
44    
45          Common* cmn = Common::instance();          Common* cmn = Common::instance();
46    
47          PluginManager* manager = cmn->GetPluginManager();          PluginManager* manager = cmn->GetPluginManager();
# Line 40  void SmsDaemon::CheckSms() Line 49  void SmsDaemon::CheckSms()
49    
50          for (unsigned int i=0; i<sms.size(); ++i)          for (unsigned int i=0; i<sms.size(); ++i)
51          {          {
52                  string cmd = GetSmsCommand(sms[i]);                  string cmd = sms[i].ExtractCommand();
53                                                    
54                  cmd = Util::str_tolower(cmd);                  cmd = Util::str_tolower(cmd);
55    
# Line 54  void SmsDaemon::CheckSms() Line 63  void SmsDaemon::CheckSms()
63                  }                  }
64                  else                  else
65                  {                  {
66                          _modem.SendSms(sms[i].sender, "Unknown command!", false);                          _modem.SendSms(sms[i].GetSender(), "Unknown command!", false);
67                  }                  }
68    
69                  _modem.DeleteSms(sms[i].sms_index);                  _modem.DeleteSms(sms[i].GetIndex());
70                  cmn->smsCounter.incomming++;                  cmn->smsCounter.incomming++;
71          }          }
72  }  }
# Line 81  void SmsDaemon::MainLoop() Line 90  void SmsDaemon::MainLoop()
90                  if (cmn->isDebug && kbhit())                  if (cmn->isDebug && kbhit())
91                          break;                          break;
92    
93                  Util::Sleep(10);                  Util::Sleep(100);
94    
95          }          }
96  }  }
# Line 90  void SmsDaemon::Start() Line 99  void SmsDaemon::Start()
99  {  {
100          Common* cmn = Common::instance();          Common* cmn = Common::instance();
101    
102            srand(time(0));
103    
104          cmn->daemonStart = time(0);          cmn->daemonStart = time(0);
105            _lastSmsCheck = Util::GetTimeOfDay();
106    
107          cmn->logMessage("--------------------------------");          cmn->logMessage("--------------------------------");
108          cmn->logMessage( VERSION );          cmn->logMessage( VERSION );
109          cmn->logMessage( SVNVER );          cmn->logMessage( SVNVERSION );
110    
111          cmn->GetTaskManager()->LoadTasks();          cmn->GetTaskManager()->LoadTasks();
112          cmn->GetPluginManager()->LoadPlugins();          cmn->GetPluginManager()->LoadPlugins();

Legend:
Removed from v.94  
changed lines
  Added in v.149

  ViewVC Help
Powered by ViewVC 1.1.20