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

Diff of /smsdaemon/ModemTransceiver.cpp

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

smsdaemon/GsmModem.cpp revision 50 by torben, Wed Jun 11 10:31:42 2008 UTC smsdaemon/ModemTransceiver.cpp revision 214 by torben, Mon Dec 22 22:22:42 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 "ModemTransceiver.h"
14    
15  #include "util.h"  #include "Util.h"
16  #include "common.h"  #include "Common.h"
17    #include "Logger.h"
18    #include "ConfigFile.h"
19    
20    #include "SmsPdu.h"
21    #include "Exceptions.h"
22    
23  using namespace std;  using namespace std;
24    
25    
26    
27  GsmModem::GsmModem(SerialPort& serialport)  ModemTransceiver::ModemTransceiver(SerialPort& serialport)
28  : m_port(serialport)                  : m_port(serialport)
29  {  {
         Init();  
30  }  }
31    
32    
33    
34  string GsmModem::GetResponse()  string ModemTransceiver::GetResponse()
35  {  {
36    
37          SerialPort::DataBuffer buf;          SerialPort::DataBuffer buf;
# Line 45  string GsmModem::GetResponse() Line 45  string GsmModem::GetResponse()
45  }  }
46    
47    
48  string GsmModem::Command(string command, string term)  string ModemTransceiver::Command(string command, string term)
49  {  {
50          time_t  start,now;          time_t  start,now;
51          start = time(0);          start = time(0);
52            _timeout = false;
53    
54          if (term != "> ")          if (term != "> ")
55                  command.append("\r"); //Dont append CarriageReturn if sending SMS                  command.append("\r"); //Dont append CarriageReturn if sending SMS
# Line 70  string GsmModem::Command(string command, Line 71  string GsmModem::Command(string command,
71                  response += GetResponse();                  response += GetResponse();
72                  Util::Sleep(1);                  Util::Sleep(1);
73    
74          now = time(0);                  now = time(0);
75          if ( (now-start) > 10 )                  if ( (now-start) > 10 )
76          {                  {
77                  Common::instance()->logMessage( string("GsmModem::Command time out --") + command);                          Logger::logMessage( string("ModemTransceiver::Command time out --") + command);
78              break;                          Logger::logMessage( string("Modem responded: ") + Util::str_trim(response) );
79          }                          _timeout = true;
80                            break;
81                    }
82          }          }
83    
84          Util::Sleep(5);          Util::Sleep(5);
85    
 //      cout  << response.length() << ":" << response << endl;  
 //      DumpString(response);  
86    
87          return response;          return response;
88  }  }
89    
90  vector<SMS> GsmModem::ReadSms(bool readAll)  vector<SMS> ModemTransceiver::ReadSms(bool readAll)
91  {  {
92    
93            Command( "AT+CMGF=0" ); //Set SMS format to PDU
94    
95          const string search = "+CMGL: ";          const string search = "+CMGL: ";
96          std::string cmd = "AT+CMGL";          std::string cmd = "AT+CMGL";
97          if (readAll)          if (readAll)
98                  cmd.append("=ALL");                  cmd.append("=4");
99    
100          string result = Command(cmd);          string result = Command(cmd);
101                    
102          vector<SMS> retval;          vector<SMS> retval;
103          if (result.find(search) == string::npos)          if (result.find(search) == string::npos)
104                  return retval;                  return retval;
# Line 106  vector<SMS> GsmModem::ReadSms(bool readA Line 110  vector<SMS> GsmModem::ReadSms(bool readA
110          {          {
111                  unsigned int endpos = result.find(search,5);                  unsigned int endpos = result.find(search,5);
112    
113                    
114                  string sms_entry = result.substr(0,endpos);                  string sms_entry = result.substr(0,endpos);
115                  retval.push_back( SMS::FromRawString(sms_entry) );;  
116                    try
117                    {
118                            SMS sms = FromPduString(sms_entry);
119    
120                            retval.push_back( sms );
121                    }
122                    catch (smsnotfoundexception& e) //do nothing
123                    {
124                    }
125    
126                  if (endpos == string::npos)                  if (endpos == string::npos)
127                          break;                          break;
128            
129                  result = result.substr(endpos, result.length() - endpos);                  result = result.substr(endpos, result.length() - endpos);
130          }          }
131    
132          return retval;          return retval;
133  }  }
134    
135  void GsmModem::SendSms(string to, string message)  
136    void ModemTransceiver::SendSmsPdu(std::string pdu, int len) //pdu inclussive leading "00"
137  {  {
138          Common::instance()->logMessage( string("SMS send to ") + to);          Logger::logMessage( string("SMS pdu send") );
139    
140          Command("AT+CMGF=1");///Allways telling the format makes the application more stable          Command("AT+CMGF=0");
141          Util::Sleep(2);          Util::Sleep(2);
142    
143          string line1 = "AT+CMGS=";          string line1 = "AT+CMGS=";
144          line1.append(to);          line1.append( Util::str_formatint(len) );
145          line1.append("\r");          line1.append("\r");
146    
147    
148          Command(line1,"> ");          Command(line1,"> ");
149    
150          if (message.length() > 160)          pdu.append("\032"); // \032 == Ctrl+Z
151          {          Command( pdu );
152                  message = message.substr(0,160);          Util::Sleep( 50 );
153                  Common::instance()->logMessage( "Trunkating message! ");          Common::instance()->smsCounter.outgoing++;
154          }  }
155    
156          message.append("\032"); // \032 == Ctrl+Z  void ModemTransceiver::SendSms(string to, string message, bool allowMultipart)
157    {
158            Logger::logMessage( string("SMS send to ") + to);
159    
160          Command( message ); //In textmode limit to 160 bytes          if (to.at(0) == '+')
161                    to.erase(0,0);
162    
163            vector<PduInfo> pdu_vec = SmsPdu::CreateSmsPdu(to, Util::str_latin2gsm(message), allowMultipart);
164    
165            for (unsigned i=0; i<pdu_vec.size(); ++i)
166            {
167                    PduInfo& pdu = pdu_vec[i];
168    
169                    SendSmsPdu(pdu.pdu, pdu.len);
170            }
171            Logger::logMessage( "All PDU's send");
172    
         Util::Sleep(50); //Give the modem some time to send the sms and be ready again  
         Common::instance()->smsCounter.outgoing++;  
173  }  }
174    
175  void GsmModem::DeleteSms(std::string smsIndex)  void ModemTransceiver::DeleteSms(std::string smsIndex)
176  {  {
177          string cmd = "AT+CMGD=";          string cmd = "AT+CMGD=";
178          cmd.append(smsIndex);          cmd.append(smsIndex);
179          Command(cmd);          Command(cmd);
180  }  }
181    
182  int  GsmModem::DeleteAllSms()  
183    void ModemTransceiver::WaitForSimcard()
184  {  {
185          vector<SMS> sms = ReadSms(true);          int start = time(0);
186            string result;
187    
188          for (unsigned int i= 0; i<sms.size(); ++i)  
189            while (result != "^SSIM READY")
190          {          {
191                  DeleteSms( sms[i].sms_index);                  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          return sms.size();  
199  }  }
200    
201    void ModemTransceiver::HandlePincode()
202    {
203            string pin = Common::instance()->GetConfigfile()->GetValue("gsmmodem","pin","");
204    
205            string result = Command("AT+CPIN?");
206            result = Util::str_trim(result);
207            result.erase(result.length() -2, 2); //remove trailing ok
208            result = Util::str_trim(result);
209            if (result != "+CPIN: READY")
210            {
211                    if (result == "+CPIN: SIM PIN")
212                    {
213                            Command("AT^SSET=1");
214                            result = Command( string("AT+CPIN=")+pin  );
215                            if ( result.substr(result.length()-4, 4) != "OK\r\n")
216                                    throw std::runtime_error(string("Illegal pincode: ") + result);
217    
218                            WaitForSimcard();
219                    }
220                    else
221                    {
222                            throw std::runtime_error(string("AT+CPIN? returned unhandled code: ") + result);
223                    }
224    
225  void GsmModem::Init()          }
226    }
227    
228    void ModemTransceiver::Init()
229  {  {
230            Command( "AT" );
231            if (_timeout)
232                    throw std::runtime_error("Modem did not respond!");
233    
234          Command( "ATZ" ); //Reset any previous setup          Command( "ATZ" ); //Reset any previous setup
235    
236          Command( "AT\\Q3" ); //Hardware flow control          Command( "AT\\Q3" ); //Hardware flow control
237    
238          Command( "ATE0" ); //Disable echo          Command( "ATE0" ); //Disable echo
239    
         Command( "AT+CMGF=1" ); //Set SMS format to text  
   
240          Command ("AT^SM20=0,0" ); //No SM20 compability          Command ("AT^SM20=0,0" ); //No SM20 compability
241    
242          //Set RealTimeClock ??          //Command("AT+CGATT=1"); //GPRS Attach
243            
244          //Enter pin code ??          //Command("AT+CGSMS=2"); //SMS over GPRS preferred
245    
246            HandlePincode();
247  }  }
248    
249    
250    SMS ModemTransceiver::FromRawString(const std::string& input)
251    {
252            std::string smsline = input.substr(7, input.length() -7); //strip "+CMGL: "
253    
254            std::vector<std::string> lines = Util::str_split(smsline, "\r\n");
255            std::vector<std::string> fields = Util::str_split(lines[0],",");
256    
257            std::string body;
258            for (unsigned i=1; i<lines.size(); ++i)
259            {
260                    std::string body_line = lines[i];
261    
262    
263                    if (body_line != "")
264                    {
265                            if (body.length() > 0)
266                                    body += "\r\n";
267                            body += body_line;
268                    }
269            }
270    
271            body = Util::str_trim(body);
272    
273            SMS sms;
274    
275            sms.SetIndex( fields[0] );
276    
277    
278            std::string sender = fields[2];
279            sender = Util::str_replace(sender, "\"");
280            sms.SetSender(sender);
281    
282            std::string timestamp = fields[4] + std::string(",") + fields[5];
283            timestamp = Util::str_replace(timestamp, "\"");
284            sms.SetTimestamp(timestamp);
285    
286            sms.SetMessage( Util::str_gsm2latin(body) );
287    
288            return sms;
289    }
290    
291    SMS ModemTransceiver::FromPduString(const std::string& input)
292    {
293            std::string smsline = input.substr(7, input.length() -7); //strip "+CMGL: "
294    
295            std::vector<std::string> lines = Util::str_split(smsline, "\r\n");
296            std::vector<std::string> fields = Util::str_split(lines[0],",");
297    
298            std::string index = fields[0];
299            DeleteSms(index);
300    
301            SMS sms = SmsPdu::ParseSmsPdu(lines[1]);
302    
303            sms.SetIndex(index);
304    
305            sms.SetMessage( Util::str_gsm2latin(sms.GetMessage()) ) ;
306    
307            return sms;
308    }
309    
310    
311    
312    

Legend:
Removed from v.50  
changed lines
  Added in v.214

  ViewVC Help
Powered by ViewVC 1.1.20