2022-06-03 19:15:11 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2022-11-01 20:26:26 +00:00
|
|
|
* Copyright (C) 2018 Intel Corporation.
|
2018-11-14 08:36:25 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SPDK_NOTIFY_H
|
|
|
|
#define SPDK_NOTIFY_H
|
|
|
|
|
|
|
|
#include "spdk/stdinc.h"
|
|
|
|
#include "spdk/json.h"
|
|
|
|
#include "spdk/queue.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opaque event type.
|
|
|
|
*/
|
|
|
|
struct spdk_notify_type;
|
|
|
|
|
2019-05-05 10:11:40 +00:00
|
|
|
typedef int (*spdk_notify_foreach_type_cb)(const struct spdk_notify_type *type, void *ctx);
|
2018-11-14 08:36:25 +00:00
|
|
|
|
|
|
|
#define SPDK_NOTIFY_MAX_NAME_SIZE 128
|
|
|
|
#define SPDK_NOTIFY_MAX_CTX_SIZE 128
|
|
|
|
|
|
|
|
struct spdk_notify_event {
|
|
|
|
char type[SPDK_NOTIFY_MAX_NAME_SIZE];
|
|
|
|
char ctx[SPDK_NOTIFY_MAX_CTX_SIZE];
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback type for event enumeration.
|
|
|
|
*
|
|
|
|
* \param idx Event index
|
|
|
|
* \param event Event data
|
|
|
|
* \param ctx User context
|
|
|
|
* \return Non zero to break iteration.
|
|
|
|
*/
|
2019-05-05 10:20:43 +00:00
|
|
|
typedef int (*spdk_notify_foreach_event_cb)(uint64_t idx, const struct spdk_notify_event *event,
|
|
|
|
void *ctx);
|
2018-11-14 08:36:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register \c type as new notification type.
|
|
|
|
*
|
|
|
|
* \note This function is thread safe.
|
|
|
|
*
|
|
|
|
* \param type New notification type to register.
|
|
|
|
* \return registered notification type or NULL on failure.
|
|
|
|
*/
|
|
|
|
struct spdk_notify_type *spdk_notify_type_register(const char *type);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return name of the notification type.
|
|
|
|
*
|
|
|
|
* \param type Notification type we are talking about.
|
|
|
|
* \return Name of notification type.
|
|
|
|
*/
|
|
|
|
const char *spdk_notify_type_get_name(const struct spdk_notify_type *type);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call cb_fn for all event types.
|
|
|
|
*
|
|
|
|
* \note Whole function call is under lock so user callback should not sleep.
|
|
|
|
* \param cb_fn
|
|
|
|
* \param ctx
|
|
|
|
*/
|
2019-05-05 10:11:40 +00:00
|
|
|
void spdk_notify_foreach_type(spdk_notify_foreach_type_cb cb_fn, void *ctx);
|
2018-11-14 08:36:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Send given notification.
|
|
|
|
*
|
|
|
|
* \param type Notification type
|
|
|
|
* \param ctx Notification context
|
|
|
|
*
|
|
|
|
* \return Event index.
|
|
|
|
*/
|
|
|
|
uint64_t spdk_notify_send(const char *type, const char *ctx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call cb_fn with events from given range.
|
|
|
|
*
|
|
|
|
* \note Whole function call is under lock so user callback should not sleep.
|
|
|
|
*
|
|
|
|
* \param start_idx First event index
|
|
|
|
* \param cb_fn User callback function. Return non-zero to break iteration.
|
2021-11-25 01:40:58 +00:00
|
|
|
* \param max Maximum number of invocations of user callback function.
|
2018-11-14 08:36:25 +00:00
|
|
|
* \param ctx User context
|
|
|
|
* \return Number of user callback invocations
|
|
|
|
*/
|
2019-05-05 10:20:43 +00:00
|
|
|
uint64_t spdk_notify_foreach_event(uint64_t start_idx, uint64_t max,
|
|
|
|
spdk_notify_foreach_event_cb cb_fn, void *ctx);
|
2018-11-14 08:36:25 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* SPDK_NOTIFY_H */
|