/[projects]/smsdaemon/ModemTransceiver.h
ViewVC logotype

Diff of /smsdaemon/ModemTransceiver.h

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

smsdaemon/GsmModem.h revision 90 by torben, Mon Jun 16 10:21:02 2008 UTC smsdaemon/ModemTransceiver.h revision 149 by torben, Sun Dec 7 20:58:41 2008 UTC
# Line 1  Line 1 
1  #ifndef __GSMMODEM_H__  #ifndef __MODEMTRANSCEIVER_H__
2  #define __GSMMODEM_H__  #define __MODEMTRANSCEIVER_H__
3    
 /* using http://sourceforge.net/projects/libserial/  
  */  
4    
5  #include "IGsmModem.h"  
6    #include "ISmsTransceiver.h"
7    
8  #include <string>  #include <string>
9  #include <vector>  #include <vector>
# Line 14  Line 13 
13  class SerialPort;  class SerialPort;
14    
15    
16  class GsmModem : public IGsmModem  class ModemTransceiver : public ISmsTransceiver
17  {  {
18  public:  public:
19          GsmModem(SerialPort& serialport);          ModemTransceiver(SerialPort& serialport);
20          virtual ~GsmModem() {}          virtual ~ModemTransceiver() {}
21    
22          void Init();          void Init();
23    
24          virtual void SendSms(std::string to, std::string message, bool allowMultipart);          virtual void SendSms(std::string to, std::string message, bool allowMultipart);
25          void SendSmsPdu(std::string pdu, int len);          void SendSmsPdu(std::string pdu, int len);
26    
27          std::vector<SMS> ReadSms(bool readAll=false);          virtual std::vector<SMS> ReadSms(bool readAll=false);
28          void DeleteSms(std::string smsIndex);  
29          int DeleteAllSms();          virtual void DeleteSms(std::string smsIndex);
30            virtual int DeleteAllSms();
31  private:  private:
32          std::string GetResponse();          std::string GetResponse();
33          std::string Command(std::string command, std::string term = "OK\r\n");          std::string Command(std::string command, std::string term = "OK\r\n");
34    
35            void HandlePincode();
36            void WaitForSimcard();
37    
38          bool _timeout;          bool _timeout;
39          SerialPort& m_port;          SerialPort& m_port;
40  };  };
41    
 class DebugGsmModem : public IGsmModem  
 {  
 public:  
         DebugGsmModem() : _print(false) {}  
         DebugGsmModem(bool print) : _print(print) {}  
   
   
         virtual void SendSms(std::string to, std::string message, bool allowMultipart);  
   
         std::string GetTo() {return _to;}  
         std::string GetMessage() {return _message;}  
         bool GetMultipart() {return _multipart;}  
 private:  
         std::string _to;  
         std::string _message;  
         bool _multipart;  
         bool _print;  
 };  
42    
43  #endif // __GSMMODEM_H__  #endif // __MODEMTRANSCEIVER_H__

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

  ViewVC Help
Powered by ViewVC 1.1.20