]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/plugins/dir/plugin-dir.c
A bit of crypto cleanup. More later.
[bacula/bacula] / bacula / src / plugins / dir / plugin-dir.c
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2007-2007 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 John Walker.
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 "plugin-dir.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         "November 2007"
44 #define PLUGIN_VERSION      "1"
45 #define PLUGIN_DESCRIPTION  "Test Director Plugin"
46
47 /* Forward referenced functions */
48 static bpError newPlugin(bpContext *ctx);
49 static bpError freePlugin(bpContext *ctx);
50 static bpError getPluginValue(bpContext *ctx, pVariable var, void *value);
51 static bpError setPluginValue(bpContext *ctx, pVariable var, void *value);
52 static bpError handlePluginEvent(bpContext *ctx, bEvent *event);
53
54
55 /* Pointers to Bacula functions */
56 static bFuncs *bfuncs = NULL;
57
58 static pFuncs pluginFuncs = {
59    sizeof(pluginFuncs),
60    PLUGIN_INTERFACE,
61    PLUGIN_MAGIC,
62    PLUGIN_LICENSE,
63    PLUGIN_AUTHOR,
64    PLUGIN_DATE,
65    PLUGIN_VERSION,
66    PLUGIN_DESCRIPTION,
67
68    /* Entry points into plugin */
69    newPlugin,                         /* new plugin instance */
70    freePlugin,                        /* free plugin instance */
71    getPluginValue,
72    setPluginValue,
73    handlePluginEvent
74 };
75
76 bpError loadPlugin(bFuncs *lbfuncs, pFuncs **pfuncs) 
77 {
78    bfuncs = lbfuncs;                  /* set Bacula funct pointers */
79    printf("plugin: Loaded: size=%d version=%d\n", bfuncs->size, bfuncs->interface);
80
81    *pfuncs = &pluginFuncs;            /* return pointer to our functions */
82
83    return 0;
84 }
85
86 bpError unloadPlugin() 
87 {
88    printf("plugin: Unloaded\n");
89    return 0;
90 }
91
92 static bpError newPlugin(bpContext *ctx)
93 {
94    int JobId = 0;
95    bfuncs->getBaculaValue(ctx, bVarJobId, (void *)&JobId);
96    printf("plugin: newPlugin JobId=%d\n", JobId);
97    return 0;
98 }
99
100 static bpError freePlugin(bpContext *ctx)
101 {
102    int JobId = 0;
103    bfuncs->getBaculaValue(ctx, bVarJobId, (void *)&JobId);
104    printf("plugin: freePlugin JobId=%d\n", JobId);
105    return 0;
106 }
107
108 static bpError getPluginValue(bpContext *ctx, pVariable var, void *value) 
109 {
110    printf("plugin: getPluginValue var=%d\n", var);
111    return 0;
112 }
113
114 static bpError setPluginValue(bpContext *ctx, pVariable var, void *value) 
115 {
116    printf("plugin: setPluginValue var=%d\n", var);
117    return 0;
118 }
119
120 static bpError handlePluginEvent(bpContext *ctx, bEvent *event) 
121 {
122    printf("plugin: HandleEvent Event=%d\n", event->eventType);
123    return 0;
124 }
125
126 #ifdef __cplusplus
127 }
128 #endif