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
|
/*
* Copyright 2008 Red Hat, Inc.
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This Program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this Program; if not, write to the
*
* Free Software Foundation, Inc.
* 59 Temple Place, Suite 330
* Boston, MA 02111-1307 USA
*
*/
#ifndef backend_h
#define backend_h
struct backend_set_data;
struct plugin_state;
struct format_inref_attr;
/* Configuration data common to all backends. */
struct backend_shr_set_data {
struct plugin_state *state;
char *group, *set, **bases, *entry_filter;
char **ref_attrs;
struct format_inref_attr **inref_attrs;
struct format_ref_attr_list **ref_attr_list, **inref_attr_list;
struct backend_set_data *self;
};
/* Startup/initialization functions called through the map. */
void backend_startup(struct plugin_state *state);
int backend_init_preop(struct slapi_pblock *pb, struct plugin_state *state);
int backend_init_postop(struct slapi_pblock *pb, struct plugin_state *state);
int backend_init_internal_postop(struct slapi_pblock *pb, struct plugin_state *state);
/* Read the server's name. */
int backend_read_master_name(struct plugin_state *state, char **master);
void backend_free_master_name(struct plugin_state *state, char *master);
/* Read enough of the set's configuration for the formatter to be able to
* resolve references correctly. */
void backend_get_set_config(struct plugin_state *state,
const char *group, const char *set,
char ***bases, char **entry_filter);
void backend_free_set_config(char **bases, char *entry_filter);
/* Check if an entry is a set configuration, and add or remove one. */
const char *backend_entry_get_set_config_entry_filter(void);
int backend_set_config_entry_add_cb(Slapi_Entry *e, void *callback_data);
int backend_set_config_entry_delete_cb(Slapi_Entry *e, void *callback_data);
/* Set an entry in a set. */
void backend_set_entry(Slapi_Entry *e, struct backend_set_data *set_data);
/* Read and free set configurations. */
void backend_set_config_read_config(struct plugin_state *state,
Slapi_Entry *e,
const char *group, const char *set,
bool_t *flag,
struct backend_shr_set_data **set_data);
void backend_set_config_free_config(struct backend_shr_set_data *set_data);
/* Warn if a just-populated set of entries is actually empty. */
void backend_check_empty(struct plugin_state *state,
const char *group, const char *set);
/* Re-read any plugin configuration data which can be modified without
* requiring a restart. */
void backend_update_params(struct plugin_state *state);
/* Check if the operation which this pblock describes was initiated by the
* current plugin. */
bool_t backend_shr_is_caller(struct plugin_state *state,
struct slapi_pblock *pb);
#endif
|