]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/plugins/dir/example-plugin-dir.c
First cut SD plugin + minor plugin changes
[bacula/bacula] / bacula / src / plugins / dir / example-plugin-dir.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2008 Free Software Foundation Europe e.V.
5
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.
12
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.
17
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
21    02110-1301, USA.
22
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.
27 */
28 /*
29  * Sample Plugin program
30  *
31  *  Kern Sibbald, October 2007
32  *
33  */
34 #include <stdio.h>
35 #include "dir_plugins.h"
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 #define PLUGIN_LICENSE      "GPL"
42 #define PLUGIN_AUTHOR       "Kern Sibbald"
43 #define PLUGIN_DATE         "January 2008"
44 #define PLUGIN_VERSION      "1"
45 #define PLUGIN_DESCRIPTION  "Test Director Daemon Plugin"
46
47 /* Forward referenced functions */
48 static bRC newPlugin(bpContext *ctx);
49 static bRC freePlugin(bpContext *ctx);
50 static bRC getPluginValue(bpContext *ctx, pVariable var, void *value);
51 static bRC setPluginValue(bpContext *ctx, pVariable var, void *value);
52 static bRC handlePluginEvent(bpContext *ctx, bEvent *event, void *value);
53
54
55 /* Pointers to Bacula functions */
56 static bFuncs *bfuncs = NULL;
57 static bInfo  *binfo = NULL;
58
59 static pInfo pluginInfo = {
60    sizeof(pluginInfo),
61    DIR_PLUGIN_INTERFACE_VERSION,
62    DIR_PLUGIN_MAGIC,
63    PLUGIN_LICENSE,
64    PLUGIN_AUTHOR,
65    PLUGIN_DATE,
66    PLUGIN_VERSION,
67    PLUGIN_DESCRIPTION,
68 };
69
70 static pFuncs pluginFuncs = {
71    sizeof(pluginFuncs),
72    DIR_PLUGIN_INTERFACE_VERSION,
73
74    /* Entry points into plugin */
75    newPlugin,                         /* new plugin instance */
76    freePlugin,                        /* free plugin instance */
77    getPluginValue,
78    setPluginValue,
79    handlePluginEvent
80 };
81
82 bRC loadPlugin(bInfo *lbinfo, bFuncs *lbfuncs, pInfo **pinfo, pFuncs **pfuncs)
83 {
84    bfuncs = lbfuncs;                  /* set Bacula funct pointers */
85    binfo  = lbinfo;
86    printf("plugin: Loaded: size=%d version=%d\n", bfuncs->size, bfuncs->version);
87
88    *pinfo  = &pluginInfo;             /* return pointer to our info */
89    *pfuncs = &pluginFuncs;            /* return pointer to our functions */
90
91    return bRC_OK;
92 }
93
94 bRC unloadPlugin() 
95 {
96    printf("plugin: Unloaded\n");
97    return bRC_OK;
98 }
99
100 static bRC newPlugin(bpContext *ctx)
101 {
102    int JobId = 0;
103    bfuncs->getBaculaValue(ctx, bVarJobId, (void *)&JobId);
104    printf("plugin: newPlugin JobId=%d\n", JobId);
105    bfuncs->registerBaculaEvents(ctx, 1, 2, 0);
106    return bRC_OK;
107 }
108
109 static bRC freePlugin(bpContext *ctx)
110 {
111    int JobId = 0;
112    bfuncs->getBaculaValue(ctx, bVarJobId, (void *)&JobId);
113    printf("plugin: freePlugin JobId=%d\n", JobId);
114    return bRC_OK;
115 }
116
117 static bRC getPluginValue(bpContext *ctx, pVariable var, void *value) 
118 {
119    printf("plugin: getPluginValue var=%d\n", var);
120    return bRC_OK;
121 }
122
123 static bRC setPluginValue(bpContext *ctx, pVariable var, void *value) 
124 {
125    printf("plugin: setPluginValue var=%d\n", var);
126    return bRC_OK;
127 }
128
129 static bRC handlePluginEvent(bpContext *ctx, bEvent *event, void *value)
130 {
131    char *name;
132    switch (event->eventType) {
133    case bEventJobStart:
134       printf("plugin: HandleEvent JobStart\n");
135       break;
136    case bEventJobEnd:
137       printf("plugin: HandleEvent JobEnd\n");
138       break;
139    }
140    bfuncs->getBaculaValue(ctx, bVarJobName, (void *)&name);
141    printf("Job Name=%s\n", name);
142    bfuncs->JobMessage(ctx, __FILE__, __LINE__, 1, 0, "JobMesssage message");
143    bfuncs->DebugMessage(ctx, __FILE__, __LINE__, 1, "DebugMesssage message");
144    return bRC_OK;
145 }
146
147 #ifdef __cplusplus
148 }
149 #endif