lws-plat-mbed3.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. #include "private-libwebsockets.h"
  2. /*
  3. * included from libwebsockets.c for MBED3 builds
  4. * MBED3 is an "OS" for very small embedded systems.
  5. * He doesn't have Posix semantics or apis.
  6. * But he has things like TCP sockets.
  7. */
  8. unsigned long long time_in_microseconds(void)
  9. {
  10. return 0;
  11. }
  12. LWS_VISIBLE int lws_get_random(struct lws_context *context, void *buf, int len)
  13. {
  14. int n = len;
  15. unsigned char *b = (unsigned char *)buf;
  16. (void)context;
  17. while (n--)
  18. b[n]= rand();
  19. return len;
  20. }
  21. /*
  22. * MBED3 does not have a 'kernel' which takes copies of what userland wants
  23. * to send. The user application must hold the tx buffer until it is informed
  24. * that send of the user buffer was complete.
  25. *
  26. * So as soon as you send something the pipe is globally choked.
  27. *
  28. * There is no concept of additional sent things being maybe acceptable.
  29. * You can send one thing up to 64KB at a time and may not try to send
  30. * anything else until that is completed.
  31. *
  32. * You can send things on other sockets, but they cannot complete until they
  33. * get their turn at the network device.
  34. */
  35. LWS_VISIBLE int lws_send_pipe_choked(struct lws *wsi)
  36. {
  37. #if 0
  38. struct lws_pollfd fds;
  39. /* treat the fact we got a truncated send pending as if we're choked */
  40. if (wsi->trunc_len)
  41. return 1;
  42. fds.fd = wsi->sock;
  43. fds.events = POLLOUT;
  44. fds.revents = 0;
  45. if (poll(&fds, 1, 0) != 1)
  46. return 1;
  47. if ((fds.revents & POLLOUT) == 0)
  48. return 1;
  49. /* okay to send another packet without blocking */
  50. #endif
  51. (void)wsi;
  52. return 0;
  53. }
  54. LWS_VISIBLE int
  55. lws_poll_listen_fd(struct lws_pollfd *fd)
  56. {
  57. (void)fd;
  58. return -1;
  59. }
  60. /**
  61. * lws_cancel_service() - Cancel servicing of pending websocket activity
  62. * \param context: Websocket context
  63. *
  64. * This function let a call to lws_service() waiting for a timeout
  65. * immediately return.
  66. *
  67. * There is no poll() in MBED3, he will fire callbacks when he feels like
  68. * it.
  69. */
  70. LWS_VISIBLE void
  71. lws_cancel_service(struct lws_context *context)
  72. {
  73. (void)context;
  74. }
  75. LWS_VISIBLE void
  76. lws_cancel_service_pt(struct lws *wsi)
  77. {
  78. (void)wsi;
  79. }
  80. LWS_VISIBLE void lwsl_emit_syslog(int level, const char *line)
  81. {
  82. printf("%d: %s", level, line);
  83. }
  84. LWS_VISIBLE int
  85. lws_plat_set_socket_options(struct lws_context *context, lws_sockfd_type fd)
  86. {
  87. (void)context;
  88. (void)fd;
  89. return 0;
  90. }
  91. LWS_VISIBLE void
  92. lws_plat_drop_app_privileges(struct lws_context_creation_info *info)
  93. {
  94. (void)info;
  95. }
  96. LWS_VISIBLE int
  97. lws_plat_context_early_init(void)
  98. {
  99. return 0;
  100. }
  101. LWS_VISIBLE void
  102. lws_plat_context_early_destroy(struct lws_context *context)
  103. {
  104. (void)context;
  105. }
  106. LWS_VISIBLE void
  107. lws_plat_context_late_destroy(struct lws_context *context)
  108. {
  109. (void)context;
  110. }
  111. LWS_VISIBLE void
  112. lws_plat_service_periodic(struct lws_context *context)
  113. {
  114. (void)context;
  115. }
  116. LWS_VISIBLE const char *
  117. lws_plat_inet_ntop(int af, const void *src, char *dst, int cnt)
  118. {
  119. (void)af;
  120. (void)src;
  121. (void)dst;
  122. (void)cnt;
  123. return "unsupported";
  124. }
  125. LWS_VISIBLE int
  126. insert_wsi(struct lws_context *context, struct lws *wsi)
  127. {
  128. (void)context;
  129. (void)wsi;
  130. return 0;
  131. }
  132. LWS_VISIBLE int
  133. delete_from_fd(struct lws_context *context, lws_sockfd_type fd)
  134. {
  135. (void)context;
  136. (void)fd;
  137. return 1;
  138. }
  139. static lws_filefd_type
  140. _lws_plat_file_open(struct lws *wsi, const char *filename,
  141. unsigned long *filelen, int flags)
  142. {
  143. (void)wsi;
  144. (void)filename;
  145. (void)filelen;
  146. (void)flags;
  147. return NULL;
  148. }
  149. static int
  150. _lws_plat_file_close(struct lws *wsi, lws_filefd_type fd)
  151. {
  152. (void)wsi;
  153. (void)fd;
  154. return -1;
  155. }
  156. unsigned long
  157. _lws_plat_file_seek_cur(struct lws *wsi, lws_filefd_type fd, long offset)
  158. {
  159. (void)wsi;
  160. (void)fd;
  161. (void)offset;
  162. return -1;
  163. }
  164. static int
  165. _lws_plat_file_read(struct lws *wsi, lws_filefd_type fd, unsigned long *amount,
  166. unsigned char *buf, unsigned long len)
  167. {
  168. (void)wsi;
  169. (void)amount;
  170. (void)fd;
  171. (void)buf;
  172. (void)len;
  173. return -1;
  174. }
  175. static int
  176. _lws_plat_file_write(struct lws *wsi, lws_filefd_type fd, unsigned long *amount,
  177. unsigned char *buf, unsigned long len)
  178. {
  179. (void)wsi;
  180. (void)amount;
  181. (void)fd;
  182. (void)buf;
  183. (void)len;
  184. return -1;
  185. }
  186. LWS_VISIBLE int
  187. lws_plat_init(struct lws_context *context,
  188. struct lws_context_creation_info *info)
  189. {
  190. (void)info;
  191. context->fops.open = _lws_plat_file_open;
  192. context->fops.close = _lws_plat_file_close;
  193. context->fops.seek_cur = _lws_plat_file_seek_cur;
  194. context->fops.read = _lws_plat_file_read;
  195. context->fops.write = _lws_plat_file_write;
  196. return 0;
  197. }