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

Diff of /smsdaemon/ModemTransceiver.cpp

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

revision 149 by torben, Sun Dec 7 20:58:41 2008 UTC revision 180 by torben, Fri Dec 12 12:54:27 2008 UTC
# Line 12  Line 12 
12    
13  #include "ModemTransceiver.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"  #include "SmsPdu.h"
21  #include "SmsHelper.h"  #include "Exceptions.h"
22    
23  using namespace std;  using namespace std;
24    
25    
26    
27  ModemTransceiver::ModemTransceiver(SerialPort& serialport)  ModemTransceiver::ModemTransceiver(SerialPort& serialport)
28  : m_port(serialport)                  : m_port(serialport)
29  {  {
30  }  }
31    
# Line 69  string ModemTransceiver::Command(string Line 71  string ModemTransceiver::Command(string
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("ModemTransceiver::Command time out --") + command);                          Logger::logMessage( string("ModemTransceiver::Command time out --") + command);
78                          Common::instance()->logMessage( string("Modem responded: ") + Util::str_trim(response) );                          Logger::logMessage( string("Modem responded: ") + Util::str_trim(response) );
79                          _timeout = true;                          _timeout = true;
80              break;                          break;
81          }                  }
82          }          }
83    
84          Util::Sleep(5);          Util::Sleep(5);
# Line 96  vector<SMS> ModemTransceiver::ReadSms(bo Line 98  vector<SMS> ModemTransceiver::ReadSms(bo
98                  cmd.append("=4");                  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 108  vector<SMS> ModemTransceiver::ReadSms(bo Line 110  vector<SMS> ModemTransceiver::ReadSms(bo
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( SmsHelper::FromPduString(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    
# Line 124  vector<SMS> ModemTransceiver::ReadSms(bo Line 135  vector<SMS> ModemTransceiver::ReadSms(bo
135    
136  void ModemTransceiver::SendSmsPdu(std::string pdu, int len) //pdu inclussive leading "00"  void ModemTransceiver::SendSmsPdu(std::string pdu, int len) //pdu inclussive leading "00"
137  {  {
138          Common::instance()->logMessage( string("SMS pdu send") );          Logger::logMessage( string("SMS pdu send") );
139    
140          Command("AT+CMGF=0");          Command("AT+CMGF=0");
141          Util::Sleep(2);          Util::Sleep(2);
# Line 144  void ModemTransceiver::SendSmsPdu(std::s Line 155  void ModemTransceiver::SendSmsPdu(std::s
155    
156  void ModemTransceiver::SendSms(string to, string message, bool allowMultipart)  void ModemTransceiver::SendSms(string to, string message, bool allowMultipart)
157  {  {
158          Common::instance()->logMessage( string("SMS send to ") + to);          Logger::logMessage( string("SMS send to ") + to);
159    
160          if (to.at(0) == '+')          if (to.at(0) == '+')
161                  to.erase(0,0);                  to.erase(0,0);
# Line 157  void ModemTransceiver::SendSms(string to Line 168  void ModemTransceiver::SendSms(string to
168    
169                  SendSmsPdu(pdu.pdu, pdu.len);                  SendSmsPdu(pdu.pdu, pdu.len);
170          }          }
171          Common::instance()->logMessage( "All PDU's send");          Logger::logMessage( "All PDU's send");
172    
173  }  }
174    
# Line 201  void ModemTransceiver::WaitForSimcard() Line 212  void ModemTransceiver::WaitForSimcard()
212    
213  void ModemTransceiver::HandlePincode()  void ModemTransceiver::HandlePincode()
214  {  {
215            string pin = Common::instance()->GetConfigfile()->GetValue("gsmmodem","pin");
216    
217          string result = Command("AT+CPIN?");          string result = Command("AT+CPIN?");
218          result = Util::str_trim(result);          result = Util::str_trim(result);
219          result.erase(result.length() -2, 2); //remove trailing ok          result.erase(result.length() -2, 2); //remove trailing ok
# Line 210  void ModemTransceiver::HandlePincode() Line 223  void ModemTransceiver::HandlePincode()
223                  if (result == "+CPIN: SIM PIN")                  if (result == "+CPIN: SIM PIN")
224                  {                  {
225                          Command("AT^SSET=1");                          Command("AT^SSET=1");
226                          result = Command("AT+CPIN=0067");                          result = Command( string("AT+CPIN=")+pin  );
227                          if ( result.substr(result.length()-4, 4) != "OK\r\n")                          if ( result.substr(result.length()-4, 4) != "OK\r\n")
228                                  throw std::runtime_error(string("Illegal pincode: ") + result);                                  throw std::runtime_error(string("Illegal pincode: ") + result);
229                            
230                          WaitForSimcard();                          WaitForSimcard();
231                  }                  }
232                  else                  else
# Line 246  void ModemTransceiver::Init() Line 259  void ModemTransceiver::Init()
259  }  }
260    
261    
262    SMS ModemTransceiver::FromRawString(const std::string& input)
263    {
264            std::string smsline = input.substr(7, input.length() -7); //strip "+CMGL: "
265    
266            std::vector<std::string> lines = Util::str_split(smsline, "\r\n");
267            std::vector<std::string> fields = Util::str_split(lines[0],",");
268    
269            std::string body;
270            for (unsigned i=1; i<lines.size(); ++i)
271            {
272                    std::string body_line = lines[i];
273    
274    
275                    if (body_line != "")
276                    {
277                            if (body.length() > 0)
278                                    body += "\r\n";
279                            body += body_line;
280                    }
281            }
282    
283            body = Util::str_trim(body);
284    
285            SMS sms;
286    
287            sms.SetIndex( fields[0] );
288    
289    
290            std::string sender = fields[2];
291            sender = Util::str_replace(sender, "\"");
292            sms.SetSender(sender);
293    
294            std::string timestamp = fields[4] + std::string(",") + fields[5];
295            timestamp = Util::str_replace(timestamp, "\"");
296            sms.SetTimestamp(timestamp);
297    
298            sms.SetMessage( body );
299    
300            return sms;
301    }
302    
303    SMS ModemTransceiver::FromPduString(const std::string& input)
304    {
305            std::string smsline = input.substr(7, input.length() -7); //strip "+CMGL: "
306    
307            std::vector<std::string> lines = Util::str_split(smsline, "\r\n");
308            std::vector<std::string> fields = Util::str_split(lines[0],",");
309    
310            std::string index = fields[0];
311            DeleteSms(index);
312    
313            SMS sms = SmsPdu::ParseSmsPdu(lines[1]);
314    
315            sms.SetIndex(index);
316    
317            return sms;
318    }
319    
320    
321    
322    

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

  ViewVC Help
Powered by ViewVC 1.1.20