libwebsockets
Lightweight C library for HTML5 websockets
lws-eventlib-exports.h
Go to the documentation of this file.
1 /*
2  * libwebsockets - small server side websockets and web server implementation
3  *
4  * Copyright (C) 2010 - 2021 Andy Green <andy@warmcat.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to
8  * deal in the Software without restriction, including without limitation the
9  * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10  * sell copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22  * IN THE SOFTWARE.
23  *
24  * These are exports needed by event lib plugins.
25  */
26 
28  LELOF_ISPOLL = (1 >> 0),
29  LELOF_DESTROY_FINAL = (1 >> 1),
30 };
31 
32 enum {
33  LWS_EV_READ = (1 << 0),
34  LWS_EV_WRITE = (1 << 1),
35  LWS_EV_START = (1 << 2),
36  LWS_EV_STOP = (1 << 3),
37 };
38 
40  const char *name;
41  /* event loop-specific context init during context creation */
42  int (*init_context)(struct lws_context *context,
43  const struct lws_context_creation_info *info);
44  /* called during lws_destroy_context */
45  int (*destroy_context1)(struct lws_context *context);
46  /* called during lws_destroy_context2 */
47  int (*destroy_context2)(struct lws_context *context);
48  /* init vhost listening wsi */
49  int (*init_vhost_listen_wsi)(struct lws *wsi);
50  /* init the event loop for a pt */
51  int (*init_pt)(struct lws_context *context, void *_loop, int tsi);
52  /* called at end of first phase of close_free_wsi() */
53  int (*wsi_logical_close)(struct lws *wsi);
54  /* return nonzero if client connect not allowed */
55  int (*check_client_connect_ok)(struct lws *wsi);
56  /* close handle manually */
57  void (*close_handle_manually)(struct lws *wsi);
58  /* event loop accept processing */
59  int (*sock_accept)(struct lws *wsi);
60  /* control wsi active events */
61  void (*io)(struct lws *wsi, unsigned int flags);
62  /* run the event loop for a pt */
63  void (*run_pt)(struct lws_context *context, int tsi);
64  /* called before pt is destroyed */
65  void (*destroy_pt)(struct lws_context *context, int tsi);
66  /* called just before wsi is freed */
67  void (*destroy_wsi)(struct lws *wsi);
68  /* return nonzero if caller thread is not loop service thread */
69  int (*foreign_thread)(struct lws_context *context, int tsi);
70 
72 
77 };
78 
80 lws_evlib_wsi_to_evlib_pt(struct lws *wsi);
81 
83 lws_evlib_tsi_to_evlib_pt(struct lws_context *ctx, int tsi);
84 
85  /*
86  * You should consider these opaque for normal user code.
87  */
88 
90 lws_realloc(void *ptr, size_t size, const char *reason);
91 
93 lws_vhost_destroy1(struct lws_vhost *vh);
94 
96 lws_close_free_wsi(struct lws *wsi, enum lws_close_status reason,
97  const char *caller);
98 
100 lws_vhost_foreach_listen_wsi(struct lws_context *cx, void *arg,
102 
103 struct lws_context_per_thread;
105 lws_service_do_ripe_rxflow(struct lws_context_per_thread *pt);
106 
107 #if !defined(wsi_from_fd) && !defined(WIN32) && !defined(_WIN32)
108 struct lws_context;
109 LWS_VISIBLE LWS_EXTERN struct lws *
110 wsi_from_fd(const struct lws_context *context, int fd);
111 #endif
112 
114 _lws_plat_service_forced_tsi(struct lws_context *context, int tsi);
115 
117 lws_context_destroy2(struct lws_context *context);
118 
120 lws_destroy_event_pipe(struct lws *wsi);
121 
123 __lws_close_free_wsi_final(struct lws *wsi);
124 
125 #if LWS_MAX_SMP > 1
126 
127 struct lws_mutex_refcount {
128  pthread_mutex_t lock;
129  pthread_t lock_owner;
130  const char *last_lock_reason;
131  char lock_depth;
132  char metadata;
133 };
134 
136 lws_mutex_refcount_assert_held(struct lws_mutex_refcount *mr);
137 
139 lws_mutex_refcount_init(struct lws_mutex_refcount *mr);
140 
142 lws_mutex_refcount_destroy(struct lws_mutex_refcount *mr);
143 
145 lws_mutex_refcount_lock(struct lws_mutex_refcount *mr, const char *reason);
146 
148 lws_mutex_refcount_unlock(struct lws_mutex_refcount *mr);
149 
150 #endif
int(* lws_dll2_foreach_cb_t)(struct lws_dll2 *d, void *user)
Definition: lws-dll2.h:231
lws_close_status
Definition: lws-ws-close.h:39
unsigned short uint16_t
#define LWS_EXTERN
unsigned char uint8_t
#define LWS_VISIBLE
LWS_VISIBLE LWS_EXTERN void __lws_close_free_wsi_final(struct lws *wsi)
LWS_VISIBLE LWS_EXTERN void lws_vhost_destroy1(struct lws_vhost *vh)
@ LWS_EV_READ
@ LWS_EV_START
@ LWS_EV_WRITE
@ LWS_EV_STOP
LWS_VISIBLE LWS_EXTERN void * lws_realloc(void *ptr, size_t size, const char *reason)
LWS_VISIBLE LWS_EXTERN int _lws_plat_service_forced_tsi(struct lws_context *context, int tsi)
LWS_VISIBLE LWS_EXTERN void lws_close_free_wsi(struct lws *wsi, enum lws_close_status reason, const char *caller)
lws_event_lib_ops_flags
@ LELOF_ISPOLL
@ LELOF_DESTROY_FINAL
LWS_VISIBLE LWS_EXTERN struct lws * wsi_from_fd(const struct lws_context *context, int fd)
LWS_VISIBLE LWS_EXTERN void lws_destroy_event_pipe(struct lws *wsi)
LWS_VISIBLE LWS_EXTERN void lws_context_destroy2(struct lws_context *context)
LWS_VISIBLE LWS_EXTERN void * lws_evlib_wsi_to_evlib_pt(struct lws *wsi)
LWS_VISIBLE LWS_EXTERN int lws_vhost_foreach_listen_wsi(struct lws_context *cx, void *arg, lws_dll2_foreach_cb_t cb)
LWS_VISIBLE LWS_EXTERN void * lws_evlib_tsi_to_evlib_pt(struct lws_context *ctx, int tsi)
LWS_VISIBLE LWS_EXTERN void lws_service_do_ripe_rxflow(struct lws_context_per_thread *pt)
void(* destroy_pt)(struct lws_context *context, int tsi)
int(* check_client_connect_ok)(struct lws *wsi)
int(* destroy_context1)(struct lws_context *context)
void(* io)(struct lws *wsi, unsigned int flags)
void(* run_pt)(struct lws_context *context, int tsi)
int(* destroy_context2)(struct lws_context *context)
void(* close_handle_manually)(struct lws *wsi)
void(* destroy_wsi)(struct lws *wsi)
int(* wsi_logical_close)(struct lws *wsi)
int(* foreign_thread)(struct lws_context *context, int tsi)
int(* sock_accept)(struct lws *wsi)
int(* init_vhost_listen_wsi)(struct lws *wsi)
int(* init_context)(struct lws_context *context, const struct lws_context_creation_info *info)
int(* init_pt)(struct lws_context *context, void *_loop, int tsi)