| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- /*
- * lws System Message Distribution
- *
- * Copyright (C) 2019 - 2020 Andy Green <[email protected]>
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to
- * deal in the Software without restriction, including without limitation the
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- * sell copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
- /*
- * Number of seconds registered peers must remain as zombies to handle in-flight
- * older messages correctly
- */
- #if !defined(LWS_SMD_INFLIGHT_GRACE_SECS)
- #define LWS_SMD_INFLIGHT_GRACE_SECS (2)
- #endif
- #if !defined(LWS_SMD_MAX_QUEUE_DEPTH)
- #define LWS_SMD_MAX_QUEUE_DEPTH (12)
- #endif
- #if defined(LWS_WITH_SECURE_STREAMS)
- #define LWS_SMD_SS_RX_HEADER_LEN_EFF (LWS_SMD_SS_RX_HEADER_LEN)
- #else
- #define LWS_SMD_SS_RX_HEADER_LEN_EFF (0)
- #endif
- typedef struct lws_smd_msg {
- lws_dll2_t list;
- lws_usec_t timestamp;
- lws_smd_class_t _class;
- uint16_t length;
- uint16_t refcount;
- /* message itself is over-allocated after this */
- } lws_smd_msg_t;
- /*
- * The peer's relationship to the lws instance doing the distribution
- */
- typedef enum {
- LSMDT_SAME_PROCESS, /* we call him back ourselves */
- LSMDT_SECURE_STREAMS_LOCAL, /* we call him back ourselves */
- LSMDT_SECURE_STREAMS_PROXIED, /* we ask to write and wait */
- } lws_smd_type_t;
- typedef struct lws_smd_peer {
- lws_dll2_t list;
- lws_usec_t timestamp_joined;
- lws_usec_t timestamp_left;
- #if defined(LWS_WITH_SECURE_STREAMS)
- lws_ss_handle_t *ss_handle; /* LSMDT_SECURE_STREAMS */
- #endif
- lws_smd_notification_cb_t cb; /* LSMDT_<other> */
- void *opaque;
- /* NULL, or next message we will handle */
- lws_smd_msg_t *tail;
- lws_smd_class_t _class_filter;
- lws_smd_type_t type;
- } lws_smd_peer_t;
- /*
- * Manages message distribution
- *
- * There is one of these in the lws_context, but the distribution action also
- * gets involved in delivering to pt event loops individually for SMP case
- */
- typedef struct lws_smd {
- lws_dll2_owner_t owner_messages; /* lws_smd_msg_t */
- lws_mutex_t lock_messages;
- lws_dll2_owner_t owner_peers; /* lws_smd_peer_t */
- lws_mutex_t lock_peers;
- /* union of peer class filters, suppress creation of msg classes not set */
- lws_smd_class_t _class_filter;
- lws_sorted_usec_list_t sul_tail_stale;
- char delivering;
- } lws_smd_t;
- /* check if this tsi has pending messages to deliver */
- int
- lws_smd_message_pending(struct lws_context *ctx);
- int
- lws_smd_msg_distribute(struct lws_context *ctx);
- int
- _lws_smd_destroy(struct lws_context *ctx);
|