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

手机短信编程

开发平台:

Unix_Linux

  1. /* -------------------------------------------------------------------- */
  2. /* SMS Client, send messages to mobile phones and pagers */
  3. /* */
  4. /* vodapage_block.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: vodafone.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_error.h"
  36. #include "sms_resource.h"
  37. /* -------------------------------------------------------------------- */
  38. static char ACK1[] = "Please Enter Required Pager Number - ";
  39. static char ACK2[] = "Paging Message Accepted rnNNNNrn";
  40. /* -------------------------------------------------------------------- */
  41. static struct vodapage_block_env
  42. {
  43. DRIVER_DEFAULT_ENV def;
  44. /* Place any extended driver */ 
  45. /* variables here  */
  46. } driver_env;
  47. /* -------------------------------------------------------------------- */
  48. static  RESOURCE resource_list[] = 
  49. { RESOURCE_STRING,  "SMS_comms_params",  0, 1, NULL, 0,  "7E1",      0,    &(driver_env.def.comms_params)    },
  50. { RESOURCE_STRING,  "SMS_centre_number",  0, 1, NULL, 0,  NULL,       0,    &(driver_env.def.centre_number)    },
  51. { RESOURCE_NUMERIC, "SMS_baud",  0, 1, NULL, 0,  NULL,       1200, &(driver_env.def.baud)    },
  52. { RESOURCE_NUMERIC, "SMS_deliver_timeout",  0, 0, NULL, 0,  NULL,       30,   &(driver_env.def.deliver_timeout)    },
  53. { RESOURCE_NUMERIC, "SMS_timeout",  0, 0, NULL, 0,  NULL,       10,   &(driver_env.def.timeout)    },
  54. { RESOURCE_NUMERIC, "SMS_write_timeout",  0, 0, NULL, 0,  NULL,       10,   &(driver_env.def.write_timeout)    },
  55. { RESOURCE_NUMERIC, "SMS_max_deliver",  0, 0, NULL, 0,  NULL,       0,    &(driver_env.def.max_deliver)    },
  56. { RESOURCE_NULL,     NULL,  0, 1, NULL, 0,  NULL,       0,    NULL    }
  57. };
  58. /* -------------------------------------------------------------------- */
  59. #define DELIVERTIMEOUT  (driver_env.def.deliver_timeout)
  60. #define TIMEOUT  (driver_env.def.timeout)
  61. #define WRITETIMEOUT  (driver_env.def.write_timeout)
  62. /* -------------------------------------------------------------------- */
  63. #define FD (driver_env.def.fd)
  64. /* -------------------------------------------------------------------- */
  65. static int VODAPAGE_BLOCK_login(void);
  66. static int VODAPAGE_BLOCK_sendmessage(char *msisdn, char *message);
  67. static void VODAPAGE_BLOCK_hangup(void);
  68. /* -------------------------------------------------------------------- */
  69. /* -------------------------------------------------------------------- */
  70. static int VODAPAGE_BLOCK_login(void)
  71. {
  72. char buf[MAX_RESPONSE_BUFSIZE];
  73. if (expstr(FD, buf, ACK1, MAX_RESPONSE_BUFSIZE, TIMEOUT) == 0)
  74. {
  75. lprintf(LOG_STANDARD, "Received Transfer Data Requestn");
  76. }
  77. else
  78. {
  79. lprintf(LOG_STANDARD, "No Transfer Data Requestn");
  80. VODAPAGE_BLOCK_hangup();
  81. return EVODAPAGE_BLOCK_NONUMBER;
  82. }
  83. return 0;
  84. }
  85. /* -------------------------------------------------------------------- */
  86. /* -------------------------------------------------------------------- */
  87. static int VODAPAGE_BLOCK_sendmessage(char *msisdn, char *message)
  88. {
  89. char buf[MAX_RESPONSE_BUFSIZE];
  90. twrite(FD, "ZCZCr", sms_strlen("ZCZCr"), WRITETIMEOUT);
  91. twrite(FD, msisdn, sms_strlen(msisdn), WRITETIMEOUT);
  92. twrite(FD, "r", sms_strlen("r"), WRITETIMEOUT);
  93. twrite(FD, message, sms_strlen(message), WRITETIMEOUT);
  94. twrite(FD, "r", sms_strlen("r"), WRITETIMEOUT);
  95. twrite(FD, "NNNNr", sms_strlen("NNNNr"), WRITETIMEOUT);
  96. if (expstr(FD, buf, "NNNNrn", MAX_RESPONSE_BUFSIZE, DELIVERTIMEOUT) == 0)
  97. {
  98. if (sms_strlen(buf) >= sms_strlen(ACK2))
  99. {
  100. if (strcmp(&buf[sms_strlen(buf) - sms_strlen(ACK2)], ACK2) == 0)
  101. { lprintf(LOG_STANDARD, "Received Message Delivery Responsen");
  102. }
  103. else
  104. { lprintf(LOG_STANDARD, "No Message Delivery Responsen");
  105. VODAPAGE_BLOCK_hangup();
  106. return EVODAPAGE_BLOCK_NODELIVERY;
  107. }
  108. }
  109. else
  110. { lprintf(LOG_STANDARD, "No Message Delivery Responsen");
  111. VODAPAGE_BLOCK_hangup();
  112. return EVODAPAGE_BLOCK_NODELIVERY;
  113. }
  114. }
  115. else
  116. { lprintf(LOG_STANDARD, "No Message Delivery Responsen");
  117. VODAPAGE_BLOCK_hangup();
  118. return EVODAPAGE_BLOCK_NODELIVERY;
  119. }
  120. return 0;
  121. }
  122. /* -------------------------------------------------------------------- */
  123. /* -------------------------------------------------------------------- */
  124. static void VODAPAGE_BLOCK_hangup(void)
  125. { default_hangup((DRIVER_DEFAULT_ENV *)(&driver_env));
  126. }
  127. /* -------------------------------------------------------------------- */
  128. /* -------------------------------------------------------------------- */
  129. DEVICE_ENTRY vodapage_block_device = {
  130. "VODAPAGE_BLOCK",
  131. resource_list,
  132. (DRIVER_DEFAULT_ENV *)(&driver_env),
  133. default_init,
  134. default_main,
  135. default_validate_numeric_id,
  136. default_dial,
  137. default_hangup,
  138. default_send_disconnect,
  139. default_multiple_counted_deliver,
  140. VODAPAGE_BLOCK_sendmessage,
  141. VODAPAGE_BLOCK_login
  142. };