pageone.c
上传用户:mei_mei897
上传日期:2007-01-05
资源大小:82k
文件大小:6k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. /* -------------------------------------------------------------------- */
  2. /* SMS Client, send messages to mobile phones and pagers */
  3. /* */
  4. /* pageone.c */
  5. /* */
  6. /*  Copyright (C) 1997,1998 Angelo Masci */
  7. /* */
  8. /*  This library is free software; you can redistribute it and/or */
  9. /*  modify it under the terms of the GNU Library General Public */
  10. /*  License as published by the Free Software Foundation; either */
  11. /*  version 2 of the License, or (at your option) any later version. */
  12. /* */
  13. /*  This library is distributed in the hope that it will be useful, */
  14. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
  15. /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU */
  16. /*  Library General Public License for more details. */
  17. /* */
  18. /*  You should have received a copy of the GNU Library General Public */
  19. /*  License along with this library; if not, write to the Free */
  20. /*  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
  21. /* */
  22. /*  You can contact the author at this e-mail address: */
  23. /* */
  24. /*  angelo@styx.demon.co.uk */
  25. /* */
  26. /* -------------------------------------------------------------------- */
  27. /* $Id: pageone.c,v 5.1 1998/02/01 07:10:39 root Exp root $
  28.    -------------------------------------------------------------------- */
  29. #include <stdio.h>
  30. #include <string.h>
  31. #include "common.h"
  32. #include "logfile.h"
  33. #include "driver.h"
  34. #include "expect.h"
  35. #include "sms_modem.h"
  36. #include "sms_error.h"
  37. #include "sms_resource.h"
  38. /* -------------------------------------------------------------------- */
  39. static char ACK1[] = "ID=rn";
  40. static char ACK2[] = "ENTER SUBSCRIBER NUMBERnr";
  41. static char ACK4[] = "ENTER MESSAGE: ";
  42. static char ACK5[] = "PAGE ACCEPTEDnr";
  43. /* -------------------------------------------------------------------- */
  44. static struct pageone_env
  45. {
  46. DRIVER_DEFAULT_ENV def;
  47. /* Place any extended driver */ 
  48. /* variables here  */
  49. } driver_env;
  50. /* -------------------------------------------------------------------- */
  51. static  RESOURCE resource_list[] = 
  52. {
  53. { RESOURCE_STRING,  "SMS_comms_params",  0, 1, NULL, 0,  "7E1",     0,   &(driver_env.def.comms_params)   },
  54. { RESOURCE_STRING,  "SMS_centre_number",  0, 1, NULL, 0,  NULL,      0,   &(driver_env.def.centre_number)   },
  55. { RESOURCE_NUMERIC, "SMS_baud",  0, 1, NULL, 0,  NULL,      9600, &(driver_env.def.baud)   },
  56. { RESOURCE_NUMERIC, "SMS_deliver_timeout",  0, 0, NULL, 0,  NULL,      30,   &(driver_env.def.deliver_timeout)   },
  57. { RESOURCE_NUMERIC, "SMS_timeout",  0, 0, NULL, 0,  NULL,      10,   &(driver_env.def.timeout)   },
  58. { RESOURCE_NUMERIC, "SMS_write_timeout",  0, 0, NULL, 0,  NULL,      10,   &(driver_env.def.write_timeout)   },
  59. { RESOURCE_NUMERIC, "SMS_max_deliver",  0, 0, NULL, 0,  NULL,      0,    &(driver_env.def.max_deliver)   },
  60. { RESOURCE_NULL,     NULL,  0, 1, NULL, 0,  NULL,      0,   NULL   }
  61. };
  62. /* -------------------------------------------------------------------- */
  63. #define DELIVERTIMEOUT  (driver_env.def.deliver_timeout)
  64. #define TIMEOUT  (driver_env.def.timeout)
  65. #define WRITETIMEOUT  (driver_env.def.write_timeout)
  66. /* -------------------------------------------------------------------- */
  67. #define FD (driver_env.def.fd)
  68. /* -------------------------------------------------------------------- */
  69. static int PAGEONE_login(void);
  70. static int PAGEONE_sendmessage(char *msisdn, char *message);
  71. static void PAGEONE_hangup(void);
  72. /* -------------------------------------------------------------------- */
  73. /* -------------------------------------------------------------------- */
  74. int PAGEONE_login(void)
  75. {
  76. char  buf[MAX_RESPONSE_BUFSIZE];
  77. if (expstr(FD, buf, ACK1, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0)
  78. {
  79. lprintf(LOG_STANDARD, "Received Pageone ID Requestn");
  80. }
  81. else
  82. { lprintf(LOG_STANDARD, "No Pageone ID Requestn");
  83. PAGEONE_hangup();
  84. return EPAGEONE_NORESPONSE;
  85. }
  86. twrite(FD, "PG1r", sms_strlen("PG1r"), WRITETIMEOUT);
  87. return 0;
  88. }
  89. /* -------------------------------------------------------------------- */
  90. /* -------------------------------------------------------------------- */
  91. static int PAGEONE_sendmessage(char *msisdn, char *message)
  92. {
  93. char  buf[MAX_RESPONSE_BUFSIZE];
  94. if (expstr(FD, buf, ACK2, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0)
  95. {
  96. lprintf(LOG_STANDARD, "Received Pageone Number Requestn");
  97. }
  98. else
  99. { lprintf(LOG_STANDARD, "No Pageone Number Requestn");
  100. PAGEONE_hangup();
  101. return EPAGEONE_NONUMBER;
  102. }
  103. twrite(FD, msisdn, sms_strlen(msisdn), WRITETIMEOUT);
  104. twrite(FD, "r", sms_strlen("r"), WRITETIMEOUT);
  105. if (expstr(FD, buf, ACK4, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0)
  106. {
  107. lprintf(LOG_STANDARD, "Received Message Requestn");
  108. }
  109. else
  110. { lprintf(LOG_STANDARD, "No Message Requestn");
  111. PAGEONE_hangup();
  112. return EPAGEONE_NOMESSAGE;
  113. }
  114. twrite(FD, message, sms_strlen(message), WRITETIMEOUT);
  115. twrite(FD, "r", sms_strlen("r"), WRITETIMEOUT);
  116. if (expstr(FD, buf, ACK5, MAX_RESPONSE_BUFSIZE, DELIVERTIMEOUT) == 0)
  117. {
  118. lprintf(LOG_STANDARD, "Received Message Delivery Responsen");
  119. }
  120. else
  121. { lprintf(LOG_STANDARD, "No Message Delivery Responsen");
  122. PAGEONE_hangup();
  123. return EPAGEONE_NODELIVERY;
  124. }
  125. return 0;
  126. }
  127. /* -------------------------------------------------------------------- */
  128. /* -------------------------------------------------------------------- */
  129. static void PAGEONE_hangup(void)
  130. { default_hangup((DRIVER_DEFAULT_ENV *)(&driver_env));
  131. }
  132. /* -------------------------------------------------------------------- */
  133. /* -------------------------------------------------------------------- */
  134. DEVICE_ENTRY pageone_device = {
  135. "PAGEONE",
  136. resource_list,
  137. (DRIVER_DEFAULT_ENV *)(&driver_env),
  138. default_init,
  139. default_main,
  140. default_validate_always_true,
  141. default_dial,
  142. default_hangup,
  143. default_send_disconnect,
  144. default_multiple_counted_deliver,
  145. PAGEONE_sendmessage,
  146. PAGEONE_login
  147. };