]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/pythonlib.h
kes Prepare to add JS_Warnings termination status.
[bacula/bacula] / bacula / src / lib / pythonlib.h
1 /*
2    Bacula® - The Network Backup Solution
3
4    Copyright (C) 2004-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 and included
11    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  *
30  * Interface definitions of bacula <--> python interface
31  *
32  * Version $Id:$
33  *
34  * Marco van Wieringen, October MMVIII
35  *
36  */
37
38 /*
39  * This is the argument struct passed to init_python_interpreter
40  * which initializes the python interpreter and makes sure we don't
41  * depend on global variables.
42  */
43 typedef struct {
44    const char *progname;
45    const char *scriptdir;
46    const char *modulename;
47    const char *configfile;
48    const char *workingdir;
49    PyObject *(*job_getattr)(PyObject *, char *);
50    int (*job_setattr)(PyObject *, char *, PyObject *);
51 } init_python_interpreter_args;
52
53 void init_python_interpreter(init_python_interpreter_args *args);
54 void term_python_interpreter();
55 void lock_python();
56 void unlock_python();
57
58 JCR *get_jcr_from_PyObject(PyObject *self);
59 PyObject *find_method(PyObject *eventsObject, PyObject *method, const char *name);
60