CIncomingMessage.java
上传用户:shunchung
上传日期:2013-04-07
资源大小:438k
文件大小:7k
源码类别:

手机短信编程

开发平台:

Java

  1. // jSMSEngine API.
  2. // An open-source API package for sending and receiving SMS via a GSM device.
  3. // Copyright (C) 2002-2006, Thanasis Delenikas, Athens/GREECE
  4. // Web Site: http://www.jsmsengine.org
  5. //
  6. // jSMSEngine is a package which can be used in order to add SMS processing
  7. // capabilities in an application. jSMSEngine is written in Java. It allows you
  8. // to communicate with a compatible mobile phone or GSM Modem, and
  9. // send / receive SMS messages.
  10. //
  11. // jSMSEngine is distributed under the LGPL license.
  12. //
  13. // This library is free software; you can redistribute it and/or
  14. // modify it under the terms of the GNU Lesser General Public
  15. // License as published by the Free Software Foundation; either
  16. // version 2.1 of the License, or (at your option) any later version.
  17. // This library is distributed in the hope that it will be useful,
  18. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  20. // Lesser General Public License for more details.
  21. // You should have received a copy of the GNU Lesser General Public
  22. // License along with this library; if not, write to the Free Software
  23. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  24. //
  25. package org.jsmsengine;
  26. import java.util.*;
  27. /**
  28. This class represents an incoming SMS message, i.e. message read from the GSM device.
  29. @see CMessage
  30. @see COutgoingMessage
  31. @see CService#readMessages(LinkedList, int)
  32. */
  33. public class CIncomingMessage extends CMessage
  34. {
  35. public static final int CLASS_ALL = 0;
  36. public static final int CLASS_REC_UNREAD = 1;
  37. public static final int CLASS_REC_READ = 2;
  38. public static final int CLASS_STO_UNSENT = 3;
  39. public static final int CLASS_STO_SENT = 4;
  40. /**
  41. Default constructor of the class.
  42. @param  date the creation date of the message.
  43. @param  originator the originator's number.
  44. @param  text the actual text of the message.
  45. @param  memIndex the index of the memory location in the GSM device where this message is stored.
  46. <br><br>Notes:<br>
  47. <ul>
  48. <li>Phone numbers are represented in their international format (e.g. +306974... for Greece).</li>
  49. </ul>
  50. */
  51. public CIncomingMessage(Date date, String originator, String text, int memIndex)
  52. {
  53. super(TYPE_INCOMING, date, originator, null, text, memIndex);
  54. }
  55. /**
  56. Extra constructor of the class.
  57. This constructor is used for STATUS-REPORT messages.
  58. */
  59. protected CIncomingMessage(int messageType, int memIndex)
  60. {
  61. super(messageType, null, null, null, null, memIndex);
  62. }
  63. protected CIncomingMessage(String pdu, int memIndex)
  64. {
  65. super(TYPE_INCOMING, null, null, null, null, memIndex);
  66. Date date;
  67. String originator, text;
  68. String str1, str2;
  69. int index, i, j, k, protocol, addr, year, month, day, hour, min, sec;
  70. i = Integer.parseInt(pdu.substring(0, 2), 16);
  71. index = (i + 1) * 2;
  72. index += 2;
  73. i = Integer.parseInt(pdu.substring(index, index + 2), 16);
  74. j = index + 4;
  75. originator = "";
  76. for (k = 0; k < i; k += 2) originator = originator + pdu.charAt(j + k + 1) + pdu.charAt(j + k);
  77. originator = "+" + originator;
  78. if (originator.charAt(originator.length() - 1) == 'F') originator = originator.substring(0, originator.length() - 1);
  79. // Type of Address
  80. addr = Integer.parseInt(pdu.substring(j - 2, j), 16);
  81. if ( (addr & (1 << 6)) != 0 && (addr & (1 << 5)) == 0 && (addr & (1 << 4)) != 0)
  82. {
  83. //Alphanumeric, (coded according to GSM TS 03.38 7-bit default alphabet)
  84. str1 = pduToText(pdu.substring(j, j + k));
  85. originator = "";
  86. for (i = 0; i < str1.length(); i++)
  87. {
  88. if ( (int) str1.charAt(i) == 27) originator += CGSMAlphabets.hex2ExtChar( (int) str1.charAt(++i), CGSMAlphabets.GSM7BITDEFAULT);
  89. else originator += CGSMAlphabets.hex2Char( (int) str1.charAt(i), CGSMAlphabets.GSM7BITDEFAULT);
  90. }
  91. }
  92. //else if ( (addr & (1 << 6)) == 0 && (addr & (1 << 5)) == 0 && (addr & (1 << 4)) != 0) originator = "+" + originator;
  93. index = j + k + 2;
  94. str1 = "" + pdu.charAt(index) + pdu.charAt(index + 1);
  95. protocol = Integer.parseInt(str1, 16);
  96. index += 2;
  97. year = Integer.parseInt("" + pdu.charAt(index + 1) + pdu.charAt(index)); index += 2;
  98. month = Integer.parseInt("" + pdu.charAt(index + 1) + pdu.charAt(index)); index += 2;
  99. day = Integer.parseInt("" + pdu.charAt(index + 1) + pdu.charAt(index)); index += 2;
  100. hour = Integer.parseInt("" + pdu.charAt(index + 1) + pdu.charAt(index)); index += 2;
  101. min = Integer.parseInt("" + pdu.charAt(index + 1) + pdu.charAt(index)); index += 2;
  102. sec = Integer.parseInt("" + pdu.charAt(index + 1) + pdu.charAt(index)); index += 4;
  103. Calendar cal = Calendar.getInstance();
  104. cal.set(Calendar.YEAR, year + 2000);
  105. cal.set(Calendar.MONTH, month - 1);
  106. cal.set(Calendar.DAY_OF_MONTH, day);
  107. cal.set(Calendar.HOUR_OF_DAY, hour);
  108. cal.set(Calendar.MINUTE, min);
  109. cal.set(Calendar.SECOND, sec);
  110. date = cal.getTime();
  111. switch (protocol & 0x0C)
  112. {
  113. case 0:
  114. setMessageEncoding(CMessage.MESSAGE_ENCODING_7BIT);
  115. str1 = pduToText(pdu.substring(index + 2));
  116. str2 = "";
  117. for (i = 0; i < str1.length(); i ++)
  118. if ((int) str1.charAt(i) == 27) str2 += CGSMAlphabets.hex2ExtChar((int) str1.charAt(++i), CGSMAlphabets.GSM7BITDEFAULT);
  119. else str2 += CGSMAlphabets.hex2Char((int) str1.charAt(i), CGSMAlphabets.GSM7BITDEFAULT);
  120. str1 = str2;
  121. break;
  122. case 4:
  123. setMessageEncoding(CMessage.MESSAGE_ENCODING_8BIT);
  124. index += 2;
  125. str1 = "";
  126. while (index < pdu.length())
  127. {
  128. i = Integer.parseInt("" + pdu.charAt(index) + pdu.charAt(index + 1), 16);
  129. str1 = str1 + (char) i;
  130. index += 2;
  131. }
  132. break;
  133. case 8:
  134. setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
  135. index += 2;
  136. str1 = "";
  137. while (index < pdu.length())
  138. {
  139. i = Integer.parseInt("" + pdu.charAt(index) + pdu.charAt(index + 1), 16);
  140. j = Integer.parseInt("" + pdu.charAt(index + 2) + pdu.charAt(index + 3), 16);
  141. str1 = str1 + (char) ((i * 256) + j);
  142. index += 4;
  143. }
  144. break;
  145. }
  146. this.originator = originator;
  147. this.date = date;
  148. this.text = str1;
  149. }
  150. private String pduToText(String pdu)
  151. {
  152. String text;
  153. byte oldBytes[], newBytes[];
  154. BitSet bitSet;
  155. int i, j, value1, value2;
  156. oldBytes = new byte[pdu.length() / 2];
  157. for (i = 0; i < pdu.length() / 2; i ++)
  158. {
  159. oldBytes[i] = (byte) (Integer.parseInt(pdu.substring(i * 2, (i * 2) + 1), 16) * 16);
  160. oldBytes[i] += (byte) Integer.parseInt(pdu.substring((i * 2) + 1, (i * 2) + 2), 16);
  161. }
  162. bitSet = new BitSet(pdu.length() / 2 * 8);
  163. value1 = 0;
  164. for (i = 0; i < pdu.length() / 2; i ++)
  165. for (j = 0; j < 8; j ++)
  166. {
  167. value1 = (i * 8) + j;
  168. if ((oldBytes[i] & (1 << j)) != 0) bitSet.set(value1);
  169. }
  170. value1 ++;
  171. value2 = value1 / 7;
  172. if (value2 == 0) value2 ++;
  173. newBytes = new byte[value2];
  174. for (i = 0; i < value2; i ++)
  175. for (j = 0; j < 7; j ++)
  176. if ((value1 + 1) > (i * 7 + j))
  177. if (bitSet.get(i * 7 + j)) newBytes[i] |= (byte) (1 << j);
  178. if (newBytes[value2 - 1] == 0) text = new String(newBytes, 0, value2 - 1);
  179. else text = new String(newBytes);
  180. return text;
  181. }
  182. }