mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2025-12-10 07:44:39 +01:00
- New API "bbf_dm_get_supported_dm" to get the schema for all objects/params/events/commands at once
65 lines
2 KiB
C
65 lines
2 KiB
C
/*
|
|
* Copyright (C) 2019 iopsys Software Solutions AB
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License version 2.1
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* Author MOHAMED Kallel <mohamed.kallel@pivasoftware.com>
|
|
* Author Imen Bhiri <imen.bhiri@pivasoftware.com>
|
|
* Author Feten Besbes <feten.besbes@pivasoftware.com>
|
|
* Author Amin Ben Ramdhane <amin.benramdhane@pivasoftware.com>
|
|
* Author: Omar Kallel <omar.kallel@pivasoftware.com>
|
|
*/
|
|
|
|
#ifndef __DMENTRY_H__
|
|
#define __DMENTRY_H__
|
|
|
|
#include <libbbf_api/dmcommon.h>
|
|
|
|
extern struct list_head head_package_change;
|
|
extern struct list_head main_memhead;
|
|
enum ctx_init_enum {
|
|
CTX_INIT_ALL,
|
|
CTX_INIT_SUB
|
|
};
|
|
|
|
typedef enum {
|
|
ALL_SCHEMA,
|
|
PARAM_ONLY,
|
|
EVENT_ONLY,
|
|
COMMAND_ONLY
|
|
} schema_type_t;
|
|
|
|
int dm_ctx_init(struct dmctx *ctx, unsigned int instance_mode);
|
|
int dm_ctx_init_sub(struct dmctx *ctx, unsigned int instance_mode);
|
|
int dm_entry_param_method(struct dmctx *ctx, int cmd, char *inparam, char *arg1, char *arg2);
|
|
int dm_entry_apply(struct dmctx *ctx, int cmd, char *arg1);
|
|
int dm_entry_restart_services(void);
|
|
int dm_entry_manage_services(struct blob_buf *bb, bool restart);
|
|
int dm_entry_revert_changes(void);
|
|
int usp_fault_map(int fault);
|
|
int dm_ctx_clean(struct dmctx *ctx);
|
|
int dm_ctx_clean_sub(struct dmctx *ctx);
|
|
void load_dynamic_arrays(struct dmctx *ctx);
|
|
void free_dynamic_arrays(void);
|
|
int dm_get_supported_dm(struct dmctx *ctx, char *path, bool first_level, schema_type_t schema_type);
|
|
|
|
/**
|
|
* @brief dm_debug_browse_path
|
|
*
|
|
* Debug API to get the last datamodel access object by datamodel browse
|
|
* function.
|
|
*
|
|
* @param buff Memory address to store the last access object, ownership
|
|
* of the address belongs to caller.
|
|
* @param len maximum size of buffer.
|
|
*
|
|
* @return 0, on success and -1, in case of error.
|
|
*
|
|
* @note This is debug API, mostly be useful in debugging in last datamodel
|
|
* object illegal access.
|
|
*/
|
|
int dm_debug_browse_path(char *buff, size_t len);
|
|
|
|
#endif
|