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

Diff of /smsdaemon/ModemTransceiver.cpp

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

revision 33 by torben, Tue Jun 10 12:58:30 2008 UTC revision 136 by torben, Sun Dec 7 10:15:44 2008 UTC
# Line 2  Line 2 
2   */   */
3    
4  #include <iostream>  #include <iostream>
   
5  #include <string>  #include <string>
 #include <cstring>  
6  #include <stdexcept>  #include <stdexcept>
7    
 #include <sys/time.h>  
8  #include <time.h>  #include <time.h>
9    
10    
11  #include "SerialPort.h"  #include "serialport/SerialPort.h"
12    
13  #include "GsmModem.h"  #include "GsmModem.h"
14    
15  #include "util.h"  #include "util.h"
16  #include "common.h"  #include "common.h"
17    
18    #include "SmsPdu.h"
19    
20  using namespace std;  using namespace std;
21    
# Line 26  using namespace std; Line 24  using namespace std;
24  GsmModem::GsmModem(SerialPort& serialport)  GsmModem::GsmModem(SerialPort& serialport)
25  : m_port(serialport)  : m_port(serialport)
26  {  {
         Init();  
27  }  }
28    
29    
# Line 44  string GsmModem::GetResponse() Line 41  string GsmModem::GetResponse()
41          return str;          return str;
42  }  }
43    
44    
45  string GsmModem::Command(string command, string term)  string GsmModem::Command(string command, string term)
46  {  {
47          time_t  start,now;          time_t  start,now;
48          start = time(0);          start = time(0);
49            _timeout = false;
50    
51            if (term != "> ")
52                    command.append("\r"); //Dont append CarriageReturn if sending SMS
53    
         command.append("\r");  
54          m_port.Write(command);          m_port.Write(command);
55    
56          Util::Sleep(25);          Util::Sleep(1);
57          string response = GetResponse();          string response = GetResponse();
58    
   
59          unsigned int tlen = term.length();          unsigned int tlen = term.length();
60          while ( 1 )          while ( 1 )
61          {          {
# Line 66  string GsmModem::Command(string command, Line 66  string GsmModem::Command(string command,
66                  }                  }
67    
68                  response += GetResponse();                  response += GetResponse();
69                  Util::Sleep(25);                  Util::Sleep(1);
70    
71          now = time(0);          now = time(0);
72          if ( (now-start) > 10 )          if ( (now-start) > 10 )
73          {          {
74                  Common::instance()->logMessage( string("GsmModem::Command time out --") + command);                  Common::instance()->logMessage( string("GsmModem::Command time out --") + command);
75                            Common::instance()->logMessage( string("Modem responded: ") + Util::str_trim(response) );
76                            _timeout = true;
77              break;              break;
78          }          }
   
   
79          }          }
80    
81          Util::Sleep(5);          Util::Sleep(5);
82    
 //      cout  << response.length() << ":" << response << endl;  
 //      DumpString(response);  
83    
84          return response;          return response;
85  }  }
86    
87  vector<SMS> GsmModem::ReadSms(bool readAll)  vector<SMS> GsmModem::ReadSms(bool readAll)
88  {  {
89    
90            Command( "AT+CMGF=0" ); //Set SMS format to PDU
91    
92          const string search = "+CMGL: ";          const string search = "+CMGL: ";
93          std::string cmd = "AT+CMGL";          std::string cmd = "AT+CMGL";
94          if (readAll)          if (readAll)
95                  cmd.append("=ALL");                  cmd.append("=4");
96    
97          string result = Command(cmd);          string result = Command(cmd);
98                                    
# Line 108  vector<SMS> GsmModem::ReadSms(bool readA Line 109  vector<SMS> GsmModem::ReadSms(bool readA
109    
110                                    
111                  string sms_entry = result.substr(0,endpos);                  string sms_entry = result.substr(0,endpos);
112                  retval.push_back( SMS::FromRawString(sms_entry) );;                  retval.push_back( SMS::FromPduString(sms_entry) );;
113    
114                  if (endpos == string::npos)                  if (endpos == string::npos)
115                          break;                          break;
# Line 119  vector<SMS> GsmModem::ReadSms(bool readA Line 120  vector<SMS> GsmModem::ReadSms(bool readA
120          return retval;          return retval;
121  }  }
122    
123  void GsmModem::SendSms(string to, string message)  
124    void GsmModem::SendSmsPdu(std::string pdu, int len) //pdu inclussive leading "00"
125  {  {
126          Common::instance()->logMessage( string("SMS send to ") + to);          Common::instance()->logMessage( string("SMS pdu send") );
127    
128          Command("AT+CMGF=1");///Allways telling the format makes the application more stable          Command("AT+CMGF=0");
129          Util::Sleep(2);          Util::Sleep(2);
130    
131          string line1 = "AT+CMGS=";          string line1 = "AT+CMGS=";
132          line1.append(to);          line1.append( Util::str_formatint(len) );
133          line1.append("\r");          line1.append("\r");
134    
135    
136          Command(line1,"> ");          Command(line1,"> ");
137    
138            pdu.append("\032"); // \032 == Ctrl+Z
139            Command( pdu );
140            Util::Sleep( 50 );
141            Common::instance()->smsCounter.outgoing++;
142    }
143    
144    void GsmModem::SendSms(string to, string message, bool allowMultipart)
145    {
146            Common::instance()->logMessage( string("SMS send to ") + to);
147    
148            if (to.at(0) == '+')
149                    to.erase(0,0);
150    
151          message.append("\032\r"); // \032 == Ctrl+Z          vector<PduInfo> pdu_vec = SmsPdu::CreateSmsPdu(to, Util::str_latin2gsm(message), allowMultipart);
152    
153            for (unsigned i=0; i<pdu_vec.size(); ++i)
154            {
155                    PduInfo& pdu = pdu_vec[i];
156    
157                    SendSmsPdu(pdu.pdu, pdu.len);
158            }
159            Common::instance()->logMessage( "All PDU's send");
160    
         Command(message);  
         Util::Sleep(50); //Give the modem some time to send the sms and be ready again  
161  }  }
162    
163  void GsmModem::DeleteSms(std::string smsIndex)  void GsmModem::DeleteSms(std::string smsIndex)
# Line 159  int  GsmModem::DeleteAllSms() Line 180  int  GsmModem::DeleteAllSms()
180    
181    
182    
183    void GsmModem::WaitForSimcard()
184    {
185            int start = time(0);
186            string result;
187    
188    
189            while (result != "^SSIM READY")
190            {
191                    result += GetResponse();
192                    result = Util::str_trim(result);
193    
194                    if ( (time(0) - start) > 10)
195                            throw std::runtime_error("Sim card timed out:");
196                    Util::Sleep(100);
197            }
198    
199    }
200    
201    void GsmModem::HandlePincode()
202    {
203            string result = Command("AT+CPIN?");
204            result = Util::str_trim(result);
205            result.erase(result.length() -2, 2); //remove trailing ok
206            result = Util::str_trim(result);
207            if (result != "+CPIN: READY")
208            {
209                    if (result == "+CPIN: SIM PIN")
210                    {
211                            Command("AT^SSET=1");
212                            result = Command("AT+CPIN=0067");
213                            if ( result.substr(result.length()-4, 4) != "OK\r\n")
214                                    throw std::runtime_error(string("Illegal pincode: ") + result);
215                            
216                            WaitForSimcard();
217                    }
218                    else
219                    {
220                            throw std::runtime_error(string("AT+CPIN? returned unhandled code: ") + result);
221                    }
222    
223            }
224    }
225    
226  void GsmModem::Init()  void GsmModem::Init()
227  {  {
228            Command( "AT" );
229            if (_timeout)
230                    throw std::runtime_error("Modem did not respond!");
231    
232          Command( "ATZ" ); //Reset any previous setup          Command( "ATZ" ); //Reset any previous setup
233    
234          Command( "AT\\Q3" ); //Hardware flow control          Command( "AT\\Q3" ); //Hardware flow control
235    
236          Command( "ATE0" ); //Disable echo          Command( "ATE0" ); //Disable echo
237    
         Command( "AT+CMGF=1" ); //Set SMS format to text  
   
238          Command ("AT^SM20=0,0" ); //No SM20 compability          Command ("AT^SM20=0,0" ); //No SM20 compability
239    
240          //Set RealTimeClock ??          //Command("AT+CGATT=1"); //GPRS Attach
241            
242          //Enter pin code ??          //Command("AT+CGSMS=2"); //SMS over GPRS preferred
243    
244            HandlePincode();
245    }
246    
247    
248    
249    
250    void DebugGsmModem::SendSms(std::string to, std::string message, bool allowMultipart)
251    {
252            _to=to;
253            _message = message;
254            _multipart = allowMultipart;
255    
256            if (_print)
257            {
258                    cout << "DebugGsmModem::SendSms --------------" << endl;
259                    cout << "To:        " << to << endl;;
260                    cout << "Message:   " << message << endl;
261                    cout << "Multipart: " << allowMultipart << endl;
262    
263            }
264  }  }
265    

Legend:
Removed from v.33  
changed lines
  Added in v.136

  ViewVC Help
Powered by ViewVC 1.1.20