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

Contents of /smsdaemon/GsmModem.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 93 - (show annotations) (download)
Mon Jun 16 11:39:33 2008 UTC (15 years, 11 months ago) by torben
File size: 3933 byte(s)
Header cleanup

1 /* using http://sourceforge.net/projects/libserial/
2 */
3
4 #include <iostream>
5 #include <string>
6 #include <stdexcept>
7
8 #include <time.h>
9
10
11 #include "SerialPort.h"
12
13 #include "GsmModem.h"
14
15 #include "util.h"
16 #include "common.h"
17
18 #include "SmsPdu.h"
19
20 using namespace std;
21
22
23
24 GsmModem::GsmModem(SerialPort& serialport)
25 : m_port(serialport)
26 {
27 }
28
29
30
31 string GsmModem::GetResponse()
32 {
33
34 SerialPort::DataBuffer buf;
35 m_port.Read(buf);
36
37 buf.push_back(0);
38
39 std::string str((char*) &buf[0]);
40
41 return str;
42 }
43
44
45 string GsmModem::Command(string command, string term)
46 {
47 time_t start,now;
48 start = time(0);
49 _timeout = false;
50
51 if (term != "> ")
52 command.append("\r"); //Dont append CarriageReturn if sending SMS
53
54 m_port.Write(command);
55
56 Util::Sleep(1);
57 string response = GetResponse();
58
59 unsigned int tlen = term.length();
60 while ( 1 )
61 {
62 if (response.length() >= tlen)
63 {
64 if (response.substr(response.length()-tlen,tlen) == term)
65 break;
66 }
67
68 response += GetResponse();
69 Util::Sleep(1);
70
71 now = time(0);
72 if ( (now-start) > 10 )
73 {
74 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;
78 }
79 }
80
81 Util::Sleep(5);
82
83
84 return response;
85 }
86
87 vector<SMS> GsmModem::ReadSms(bool readAll)
88 {
89
90 Command( "AT+CMGF=0" ); //Set SMS format to PDU
91
92 const string search = "+CMGL: ";
93 std::string cmd = "AT+CMGL";
94 if (readAll)
95 cmd.append("=4");
96
97 string result = Command(cmd);
98
99 vector<SMS> retval;
100 if (result.find(search) == string::npos)
101 return retval;
102
103 result = result.substr(2, result.length() - 8); //remove trailing "\r\nOK\r\n" and initial "\r\n"
104
105
106 while ( 1 )
107 {
108 unsigned int endpos = result.find(search,5);
109
110
111 string sms_entry = result.substr(0,endpos);
112 retval.push_back( SMS::FromPduString(sms_entry) );;
113
114 if (endpos == string::npos)
115 break;
116
117 result = result.substr(endpos, result.length() - endpos);
118 }
119
120 return retval;
121 }
122
123
124 void GsmModem::SendSmsPdu(std::string pdu, int len) //pdu inclussive leading "00"
125 {
126 Common::instance()->logMessage( string("SMS pdu send") );
127
128 Command("AT+CMGF=0");
129 Util::Sleep(2);
130
131 string line1 = "AT+CMGS=";
132 line1.append( Util::str_formatint(len) );
133 line1.append("\r");
134
135
136 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 vector<PduInfo> pdu_vec = SmsPdu::CreateSmsPdu(to, 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
160 }
161
162 void GsmModem::DeleteSms(std::string smsIndex)
163 {
164 string cmd = "AT+CMGD=";
165 cmd.append(smsIndex);
166 Command(cmd);
167 }
168
169 int GsmModem::DeleteAllSms()
170 {
171 vector<SMS> sms = ReadSms(true);
172
173 for (unsigned int i= 0; i<sms.size(); ++i)
174 {
175 DeleteSms( sms[i].sms_index);
176 }
177 return sms.size();
178 }
179
180
181
182 void GsmModem::Init()
183 {
184 Command( "AT" );
185 if (_timeout)
186 throw std::runtime_error("Modem did not respond!");
187
188 Command( "ATZ" ); //Reset any previous setup
189
190 Command( "AT\\Q3" ); //Hardware flow control
191
192 Command( "ATE0" ); //Disable echo
193
194 Command ("AT^SM20=0,0" ); //No SM20 compability
195
196 //Command("AT+CGATT=1"); //GPRS Attach
197
198 //Command("AT+CGSMS=2"); //SMS over GPRS preferred
199
200 //Set RealTimeClock ??
201
202 //Enter pin code ??
203 }
204
205
206
207
208 void DebugGsmModem::SendSms(std::string to, std::string message, bool allowMultipart)
209 {
210 _to=to;
211 _message = message;
212 _multipart = allowMultipart;
213
214 if (_print)
215 {
216 cout << "DebugGsmModem::SendSms --------------" << endl;
217 cout << "To: " << to << endl;;
218 cout << "Message: " << message << endl;
219 cout << "Multipart: " << allowMultipart << endl;
220
221 }
222 }

  ViewVC Help
Powered by ViewVC 1.1.20