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

Diff of /smsdaemon/SmsPdu.cpp

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

revision 77 by torben, Fri Jun 13 21:15:00 2008 UTC revision 196 by torben, Thu Dec 18 06:53:29 2008 UTC
# Line 8  Line 8 
8  #include <sstream>  #include <sstream>
9    
10  #include <time.h>  #include <time.h>
11  #include <stdlib.h>  #include <stdlib.h>
12    
13  #include "common.h"  #include "Logger.h"
14  #include "util.h"  #include "Util.h"
15    
16    #include "Exceptions.h"
17    #include <list>
18    #include <vector>
19    #include <algorithm>
20    
21    
22  using namespace std;  using namespace std;
# Line 24  namespace SmsPdu Line 29  namespace SmsPdu
29          string SwitchChars(string input)          string SwitchChars(string input)
30          {          {
31                  for (unsigned int i=1; i<input.length(); i+=2)                  for (unsigned int i=1; i<input.length(); i+=2)
32          {                  {
33                          char tmp = input[i];                          char tmp = input[i];
34                          input[i] = input[i-1];                          input[i] = input[i-1];
35                          input[i-1] = tmp;                          input[i-1] = tmp;
# Line 144  namespace SmsPdu Line 149  namespace SmsPdu
149    
150                  const unsigned char UDHI = multipart ? 0x40 : 0;                  const unsigned char UDHI = multipart ? 0x40 : 0;
151    
                 srand(time(0));  
152                  unsigned char csms_ref = rand() % 128;                  unsigned char csms_ref = rand() % 128;
153    
154                  int part_count;                  int part_count;
# Line 155  namespace SmsPdu Line 159  namespace SmsPdu
159                  {                  {
160                          if (message.length() > 800)                          if (message.length() > 800)
161                          {                          {
162                                  Common::instance()->logMessage("Trying to send multipart sms > 800 bytes !!!");                                  Logger::logMessage("Trying to send multipart sms > 800 bytes !!!");
163                                  message = message.substr(0,800);                                  message = message.substr(0,800);
164                          }                          }
165    
# Line 184  namespace SmsPdu Line 188  namespace SmsPdu
188                          pdu.insert( pdu.end(), phone.begin(), phone.end());                          pdu.insert( pdu.end(), phone.begin(), phone.end());
189    
190                          pdu.push_back(0x00); // Protocol identifier                          pdu.push_back(0x00); // Protocol identifier
191                          pdu.push_back(0x00); // Data coding scheme                          pdu.push_back(0x00); // Data coding scheme
192    
193                          int shift_start = 0;                          int shift_start = 0;
194                          string message_part;                          string message_part;
195                          if (multipart)                          if (multipart)
196                          {                          {
197                                  message_part = message.substr(0, PDU_LEN);                                  message_part = message.substr(0, PDU_LEN);
198                                  message.erase(0, PDU_LEN);                                  message.erase(0, PDU_LEN-1);
199    
200                                  pdu.push_back( message_part.length()+ 7 );  //UserDataLength                                  pdu.push_back( message_part.length()+ 7 );  //UserDataLength
201                                  pdu.push_back( 0x06 ); // UDH Len                                  pdu.push_back( 0x06 ); // UDH Len
# Line 208  namespace SmsPdu Line 212  namespace SmsPdu
212                                  if (message.length() > 160)                                  if (message.length() > 160)
213                                  {                                  {
214                                          message_part = message.substr(0,160); //truncate to 160                                          message_part = message.substr(0,160); //truncate to 160
215                                          Common::instance()->logMessage("Truncated message");                                          Logger::logMessage("Truncated message");
216                                  }                                  }
217                                  else                                  else
218                                  {                                  {
# Line 275  namespace SmsPdu Line 279  namespace SmsPdu
279          }          }
280    
281    
282            std::list<SmsPart> partlist;
283            typedef std::list<SmsPart>::iterator iterator;
284    
285            SMS ConcatenateParts(SmsPart& part)
286            {
287                    SMS sms;
288                    if (part.group == -1)
289                    {
290                            sms.SetMessage(part.message);
291                            sms.SetSender(part.sender);
292                    }
293                    else
294                    {
295                            partlist.push_back(part);
296    
297                            vector<SmsPart> vec;
298                            for (iterator it=partlist.begin(); it!=partlist.end(); ++it)
299                            {
300                                    SmsPart& current = *it;
301                                    if (current.sender == part.sender && current.group == part.group)
302                                            vec.push_back(current);
303                            }
304    
305                            if (vec.size() == (unsigned)part.count) //we have all parts
306                            {
307                                    sort(vec.begin(), vec.end());
308                                    string message;
309                                    for (unsigned i=0; i<vec.size(); i++)
310                                    {
311                                            partlist.remove( (vec[i]) );
312                                            message += vec[i].message;
313                                    }
314                                    sms.SetSender(part.sender);
315                                    sms.SetMessage(message);
316                            }
317                            else
318                            {
319                                    throw smsnotfoundexception(); // need more parts
320                            }
321    
322                    }
323    
324                    return sms;
325            }
326    
327    
328          SMS ParseSmsPdu(std::string pdu_str)          SMS ParseSmsPdu(std::string pdu_str)
329          {          {
330                  SMS result;                  SmsPart part = ParseSmsPduWorker(pdu_str);
331    
332                    return ConcatenateParts(part);
333    
334            }
335    
336            void ParseUdh(vector<unsigned char>& udh, SmsPart& part)
337            {
338                    if (udh.size() == 0)
339                    {
340                            Logger::logMessage("ParseUdh(): empty udh");
341                            return;
342                    }
343    
344                    if (udh[0] != 0)
345                    {
346                            Logger::logMessage("unknown UDH type");
347                            return;
348                    }
349    
350                    if (udh.size() < 5)
351                    {
352                            Logger::logMessage("UDH to short to be multipart");
353                            return;
354                    }
355    
356                    part.group = udh[2];
357                    part.count = udh[3];
358                    part.id = udh[4];
359            }
360    
361    
362            SmsPart ParseSmsPduWorker(std::string pdu_str)
363            {
364    
365                  vector<unsigned char> pdu = HexDecodeString(pdu_str);                  vector<unsigned char> pdu = HexDecodeString(pdu_str);
366    
# Line 295  namespace SmsPdu Line 378  namespace SmsPdu
378    
379                  ++it; //ignore Type-Of-Address                  ++it; //ignore Type-Of-Address
380    
381                  result.sender = DecodeRawPhonenr( it, it+(sender_len/2) );                  string sender = DecodeRawPhonenr( it, it+(sender_len/2) );
382    
383                  it += (sender_len/2);                  it += (sender_len/2);
384                  ++it; //protocol identifier                  ++it; //protocol identifier
385                  ++it; //Data encoding                  ++it; //Data encoding
386    
387                  result.timestamp = DecodeTimestamp(it, it+7);                  string timestamp = DecodeTimestamp(it, it+7);
388                  it += 7;                  it += 7;
389    
390    
391                  unsigned char data_len = (*it++);                  unsigned char data_len = (*it++);
392    
393    
394                    SmsPart part;
395                    part.group = -1;
396    
397                  int shift_start = 0;                  int shift_start = 0;
398    
399                  if (UDHI)                  if (UDHI)
400                  {                  {
401                          int udh_len = (*it++);                          int udh_len = (*it++);
402                          it += udh_len; //just ignore the User Data Header  
403                            vector<unsigned char> udh;
404                            for (int i=0; i<udh_len; i++)
405                            {
406                                    udh.push_back (*it++);
407                            }
408                            ParseUdh(udh,part);
409    
410                          data_len -= udh_len;                          data_len -= udh_len;
411    
412                          shift_start = udh_len+1; //make the 8to7bit decode start with the right shift level                          shift_start = udh_len+1; //make the 8to7bit decode start with the right shift level
# Line 320  namespace SmsPdu Line 415  namespace SmsPdu
415    
416                  vector<unsigned char> user_data;                  vector<unsigned char> user_data;
417                  user_data.insert(user_data.end(), it, it+data_len);                  user_data.insert(user_data.end(), it, it+data_len);
                   
                 result.message = Decode8to7bit(user_data, shift_start).substr(0,data_len);  
                   
418    
419                  return result;                  string message = Decode8to7bit(user_data, shift_start).substr(0,data_len);
420    
421                    message = Util::str_trim(message);
422    
423    
424                    part.message = message;
425                    part.sender = sender;
426    
427                    return part;
428          }          }
429    
430  }  }

Legend:
Removed from v.77  
changed lines
  Added in v.196

  ViewVC Help
Powered by ViewVC 1.1.20