mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-16 00:00:07 +01:00

The per-pt priv for event libs ended up overallocated at the context, and pointed-to by a single pointer composed into each pt. That means we can't do pointer arithmetic on it any more. Update a couple of stragglers in libuv event lib to use a pointer in the pt-priv for the event lib back to the pt instead. Also in foreign case if we start idle, there may not be anything happening to trigger the initial idle. So let each pt start with its idle active.
84 lines
2.8 KiB
C
84 lines
2.8 KiB
C
/*
|
|
* libwebsockets - small server side websockets and web server implementation
|
|
*
|
|
* Copyright (C) 2010 - 2019 Andy Green <andy@warmcat.com>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <uv.h>
|
|
|
|
/*
|
|
* libuv's async destroy cb means that asking to close something doesn't mean
|
|
* you can destroy it or parent things until after the close completes.
|
|
*
|
|
* So we must reference-count creation and close completions with libuv.
|
|
*
|
|
* All "static" (per-pt or per-context) uv handles must
|
|
*
|
|
* - have their .data set to point to the context
|
|
*
|
|
* - contribute to context->uv_count_static_asset_handles
|
|
* counting
|
|
*/
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_NEW(_x, _ctx) \
|
|
{ uv_handle_t *_uht = (uv_handle_t *)(_x); _uht->data = _ctx; \
|
|
_ctx->count_event_loop_static_asset_handles++; }
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_TO_CONTEXT(_x) \
|
|
((struct lws_context *)((uv_handle_t *)((_x)->data)))
|
|
#define LWS_UV_REFCOUNT_STATIC_HANDLE_DESTROYED(_x) \
|
|
(--(LWS_UV_REFCOUNT_STATIC_HANDLE_TO_CONTEXT(_x)-> \
|
|
count_event_loop_static_asset_handles))
|
|
|
|
struct lws_signal_watcher_libuv {
|
|
uv_signal_t watcher;
|
|
struct lws_context *context;
|
|
};
|
|
|
|
struct lws_pt_eventlibs_libuv {
|
|
uv_loop_t *io_loop;
|
|
struct lws_context_per_thread *pt;
|
|
uv_signal_t signals[8];
|
|
uv_timer_t sultimer;
|
|
uv_idle_t idle;
|
|
struct lws_signal_watcher_libuv w_sigint;
|
|
};
|
|
|
|
struct lws_context_eventlibs_libuv {
|
|
uv_loop_t loop;
|
|
};
|
|
|
|
struct lws_io_watcher_libuv {
|
|
uv_poll_t *pwatcher;
|
|
struct lws_context *context;
|
|
uint8_t actual_events;
|
|
};
|
|
|
|
struct lws_wsi_eventlibs_libuv {
|
|
struct lws_io_watcher_libuv w_read;
|
|
};
|
|
|
|
uv_loop_t *
|
|
lws_uv_getloop(struct lws_context *context, int tsi);
|
|
|
|
int
|
|
lws_uv_plugins_init(struct lws_context *context, const char * const *d);
|
|
|
|
int
|
|
lws_uv_plugins_destroy(struct lws_context *context);
|