Zephyr API Documentation  3.7.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
socket_service.h
Go to the documentation of this file.
1
9/*
10 * Copyright (c) 2023 Nordic Semiconductor ASA
11 *
12 * SPDX-License-Identifier: Apache-2.0
13 */
14
15#ifndef ZEPHYR_INCLUDE_NET_SOCKET_SERVICE_H_
16#define ZEPHYR_INCLUDE_NET_SOCKET_SERVICE_H_
17
25#include <sys/types.h>
26#include <zephyr/types.h>
27#include <zephyr/net/socket.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
39 struct k_work work;
45 void *user_data;
48};
49
61#if CONFIG_NET_SOCKETS_LOG_LEVEL >= LOG_LEVEL_DBG
66 const char *owner;
67#endif
75 int *idx;
76};
77
80#define __z_net_socket_svc_get_name(_svc_id) __z_net_socket_service_##_svc_id
81#define __z_net_socket_svc_get_idx(_svc_id) __z_net_socket_service_idx_##_svc_id
82#define __z_net_socket_svc_get_owner __FILE__ ":" STRINGIFY(__LINE__)
83
84extern void net_socket_service_callback(struct k_work *work);
85
86#if CONFIG_NET_SOCKETS_LOG_LEVEL >= LOG_LEVEL_DBG
87#define NET_SOCKET_SERVICE_OWNER .owner = __z_net_socket_svc_get_owner,
88#else
89#define NET_SOCKET_SERVICE_OWNER
90#endif
91
92#define __z_net_socket_service_define(_name, _work_q, _cb, _count, ...) \
93 static int __z_net_socket_svc_get_idx(_name); \
94 static struct net_socket_service_event \
95 __z_net_socket_svc_get_name(_name)[_count] = { \
96 [0 ... ((_count) - 1)] = { \
97 .event.fd = -1, /* Invalid socket */ \
98 .callback = _cb, \
99 } \
100 }; \
101 COND_CODE_0(NUM_VA_ARGS_LESS_1(__VA_ARGS__), (), __VA_ARGS__) \
102 const STRUCT_SECTION_ITERABLE(net_socket_service_desc, _name) = { \
103 NET_SOCKET_SERVICE_OWNER \
104 .work_q = (_work_q), \
105 .pev = __z_net_socket_svc_get_name(_name), \
106 .pev_len = (_count), \
107 .idx = &__z_net_socket_svc_get_idx(_name), \
108 }
109
132#define NET_SOCKET_SERVICE_SYNC_DEFINE(name, work_q, cb, count) \
133 __z_net_socket_service_define(name, work_q, cb, count)
134
147#define NET_SOCKET_SERVICE_SYNC_DEFINE_STATIC(name, work_q, cb, count) \
148 __z_net_socket_service_define(name, work_q, cb, count, static)
149
162__syscall int net_socket_service_register(const struct net_socket_service_desc *service,
163 struct zsock_pollfd *fds, int len, void *user_data);
164
174static inline int net_socket_service_unregister(const struct net_socket_service_desc *service)
175{
176 return net_socket_service_register(service, NULL, 0, NULL);
177}
178
186typedef void (*net_socket_service_cb_t)(const struct net_socket_service_desc *svc,
187 void *user_data);
188
196
197#ifdef __cplusplus
198}
199#endif
200
201#include <zephyr/syscalls/socket_service.h>
202
207#endif /* ZEPHYR_INCLUDE_NET_SOCKET_SERVICE_H_ */
void(* net_socket_service_cb_t)(const struct net_socket_service_desc *svc, void *user_data)
Callback used while iterating over socket services.
Definition: socket_service.h:186
int net_socket_service_register(const struct net_socket_service_desc *service, struct zsock_pollfd *fds, int len, void *user_data)
Register pollable sockets.
void net_socket_service_foreach(net_socket_service_cb_t cb, void *user_data)
Go through all the socket services and call callback for each service.
static int net_socket_service_unregister(const struct net_socket_service_desc *service)
Unregister pollable sockets.
Definition: socket_service.h:174
void(* k_work_handler_t)(struct k_work *work)
The signature for a work item handler function.
Definition: kernel.h:3279
BSD Sockets compatible API definitions.
A structure used to hold work until it can be processed.
Definition: kernel.h:4032
A structure used to submit work.
Definition: kernel.h:3880
Main structure holding socket service configuration information.
Definition: socket_service.h:60
const char * owner
Owner name.
Definition: socket_service.h:66
int * idx
Where are my pollfd entries in the global list.
Definition: socket_service.h:75
int pev_len
Length of the pollable socket array for this service.
Definition: socket_service.h:73
struct net_socket_service_event * pev
Pointer to the list of services that we are listening.
Definition: socket_service.h:71
struct k_work_q * work_q
Workqueue where the work is submitted.
Definition: socket_service.h:69
This struct contains information which socket triggered calls to the callback function.
Definition: socket_service.h:37
struct k_work work
k_work that is done when there is desired activity in file descriptor.
Definition: socket_service.h:39
k_work_handler_t callback
Callback to be called for desired socket activity.
Definition: socket_service.h:41
struct net_socket_service_desc * svc
Service back pointer.
Definition: socket_service.h:47
struct zsock_pollfd event
Socket information that triggered this event.
Definition: socket_service.h:43
void * user_data
User data.
Definition: socket_service.h:45
Definition of the monitored socket/file descriptor.
Definition: socket_poll.h:28