2 Bacula® - The Network Backup Solution
4 Copyright (C) 2007-2009 Free Software Foundation Europe e.V.
6 The main author of Bacula is Kern Sibbald, with contributions from
7 many others, a complete list can be found in the file AUTHORS.
8 This program is Free Software; you can redistribute it and/or
9 modify it under the terms of version two of the GNU General Public
10 License as published by the Free Software Foundation, which is
11 listed in the file LICENSE.
13 This program is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 Bacula® is a registered trademark of Kern Sibbald.
24 The licensor of Bacula is the Free Software Foundation Europe
25 (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
26 Switzerland, email:ftf@fsfeurope.org.
29 * Interface definition for Bacula Plugins
31 * Kern Sibbald, October 2007
35 #ifndef __SD_PLUGINS_H
36 #define __SD_PLUGINS_H
40 /* Workaround for SGI IRIX 6.5 */
41 #define _LANGUAGE_C_PLUS_PLUS 1
44 #define _THREAD_SAFE 1
45 #define _POSIX_PTHREAD_SEMANTICS 1
46 #define _FILE_OFFSET_BITS 64
47 #define _LARGEFILE_SOURCE 1
48 #define _LARGE_FILES 1
51 #include <sys/types.h>
57 #include "lib/plugins.h"
66 /****************************************************************************
68 * Bacula definitions *
70 ****************************************************************************/
72 /* Bacula Variable Ids */
110 typedef struct s_bEvent {
114 typedef struct s_baculaInfo {
119 /* Bacula interface version and function pointers */
120 typedef struct s_baculaFuncs {
123 bRC (*registerBaculaEvents)(bpContext *ctx, ...);
124 bRC (*getBaculaValue)(bpContext *ctx, brVariable var, void *value);
125 bRC (*setBaculaValue)(bpContext *ctx, bwVariable var, void *value);
126 bRC (*JobMessage)(bpContext *ctx, const char *file, int line,
127 int type, utime_t mtime, const char *msg);
128 bRC (*DebugMessage)(bpContext *ctx, const char *file, int line,
129 int level, const char *msg);
132 /* Bacula Subroutines */
133 void load_sd_plugins(const char *plugin_dir);
134 void new_plugins(JCR *jcr);
135 void free_plugins(JCR *jcr);
136 void generate_plugin_event(JCR *jcr, bEventType event, void *value=NULL);
140 /****************************************************************************
142 * Plugin definitions *
144 ****************************************************************************/
152 #define SD_PLUGIN_MAGIC "*DirPluginData*"
153 #define SD_PLUGIN_INTERFACE_VERSION 1
155 typedef struct s_pluginInfo {
158 const char *plugin_magic;
159 const char *plugin_license;
160 const char *plugin_author;
161 const char *plugin_date;
162 const char *plugin_version;
163 const char *plugin_description;
166 typedef struct s_pluginFuncs {
169 bRC (*newPlugin)(bpContext *ctx);
170 bRC (*freePlugin)(bpContext *ctx);
171 bRC (*getPluginValue)(bpContext *ctx, pVariable var, void *value);
172 bRC (*setPluginValue)(bpContext *ctx, pVariable var, void *value);
173 bRC (*handlePluginEvent)(bpContext *ctx, bEvent *event, void *value);
176 #define plug_func(plugin) ((pFuncs *)(plugin->pfuncs))
177 #define plug_info(plugin) ((pInfo *)(plugin->pinfo))
183 #endif /* __SD_PLUGINS_H */