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

手机短信编程

开发平台:

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 a Status Report SMS message.
  29. In order to request a Status Report, use the setStatusReport() function of
  30. the outgoing message. Then, expect to eventually receive an IncomingMessage
  31. message of class CStatusReportMessage() (i.e. with type == TYPE_STATUS_REPORT).<br><br>
  32. Valid fields are:<br>
  33. recipient: the recipient of the original message.<br>
  34. text: a message reading the status of the delivery.<br>
  35. @see CMessage
  36. @see COutgoingMessage
  37. @see COutgoingMessage#setStatusReport(boolean)
  38. @see CIncomingMessage
  39. @see CService#readMessages(LinkedList, int)
  40. */
  41. public class CStatusReportMessage extends CIncomingMessage
  42. {
  43. protected CStatusReportMessage(String pdu, int memIndex)
  44. {
  45. super(TYPE_STATUS_REPORT, memIndex);
  46. String recipient, text;
  47. int index, i, j, k, year, month, day, hour, min, sec;
  48. i = Integer.parseInt(pdu.substring(0, 2), 16);
  49. index = (i + 1) * 2;
  50. index += 4;
  51. i = Integer.parseInt(pdu.substring(index, index + 2), 16);
  52. j = index + 4;
  53. recipient = "";
  54. for (k = 0; k < i; k += 2) recipient = recipient + pdu.charAt(j + k + 1) + pdu.charAt(j + k);
  55. //recipient = "+" + recipient;
  56. if (recipient.charAt(recipient.length() - 1) == 'F') recipient = recipient.substring(0, recipient.length() - 1);
  57. index = j + i;
  58. index += 14;
  59. index += 14;
  60. i = Integer.parseInt(pdu.substring(index, index+1), 16);
  61. if ((i & 0x60) == 0) this.text = "00 - Succesful Delivery.";
  62. if ((i & 0x20) == 0x20) this.text = "01 - Errors, will retry dispatch.";
  63. if ((i & 0x40) == 0x40) this.text = "02 - Errors, stopped retrying dispatch.";
  64. if ((i & 0x60) == 0x60) this.text = "03 - Errors, stopped retrying dispatch.";
  65. this.recipient = recipient;
  66. this.date = null;
  67. }
  68. /**
  69. Returns the Originator of the message.
  70. Overloaded to return a valid value for CStatusReportMessage class.
  71. @return  the recipient of the original message.
  72. */
  73. public String getOriginator() { return "TO:" + recipient; }
  74. }