1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (C) 2018 NetDEF, Inc.
* Renato Westphal
*/
#ifndef _FRR_NORTHBOUND_DB_H_
#define _FRR_NORTHBOUND_DB_H_
#include "northbound.h"
#ifdef __cplusplus
extern "C" {
#endif
/*
* Initialize the northbound database.
*
* Currently the database is used only for storing and retrieving configuration
* transactions.
*
* Returns:
* NB_OK on success, NB_ERR otherwise.
*/
int nb_db_init(void);
/*
* Save a configuration transaction in the northbound database.
*
* transaction
* Configuration transaction to be saved.
*
* transaction_id
* Output parameter providing the ID of the saved transaction.
*
* Returns:
* NB_OK on success, NB_ERR otherwise.
*/
int nb_db_transaction_save(const struct nb_transaction *transaction,
uint32_t *transaction_id);
/*
* Load a configuration transaction from the transactions log.
*
* transaction_id
* ID of the transaction to be loaded.
*
* Returns:
* Pointer to newly created configuration or NULL in the case of an error.
*/
extern struct nb_config *nb_db_transaction_load(uint32_t transaction_id);
/*
* Delete the specified number of transactions from the transactions log.
*
* n_oldest
* Number of transactions to delete.
*
* Returns:
* NB_OK on success, NB_ERR otherwise.
*/
extern int nb_db_clear_transactions(unsigned int n_oldest);
/*
* Specify the maximum number of transactions we want to record in the
* transactions log. Note that older transactions can be removed during this
* operation.
*
* max
* New upper limit of maximum transactions to log.
*
* Returns:
* NB_OK on success, NB_ERR otherwise.
*/
extern int nb_db_set_max_transactions(unsigned int max);
/*
* Iterate over all configuration transactions stored in the northbound
* database, sorted in descending order.
*
* func
* Function to call with each configuration transaction.
*
* arg
* Arbitrary argument passed as the first parameter in each call to 'func'.
*
* Returns:
* NB_OK on success, NB_ERR otherwise.
*/
extern int nb_db_transactions_iterate(
void (*func)(void *arg, int transaction_id, const char *client_name,
const char *date, const char *comment),
void *arg);
#ifdef __cplusplus
}
#endif
#endif /* _FRR_NORTHBOUND_DB_H_ */
|