]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/init.c
For dynamic modules, must explicitly zero BackendInfo structure in
[openldap] / servers / slapd / back-perl / init.c
1 /*
2  *       Copyright 1999, John C. Quillan, All rights reserved.
3  *
4  *       Redistribution and use in source and binary forms are permitted only
5  *       as authorized by the OpenLDAP Public License.  A copy of this
6  *       license is available at http://www.OpenLDAP.org/license.html or
7  *       in file LICENSE in the top-level directory of the distribution.
8  */
9
10 #include "portable.h"
11  /* init.c - initialize shell backend */
12         
13 #include <stdio.h>
14 /* #include <ac/types.h>
15         #include <ac/socket.h>
16 */
17
18
19
20 #include <EXTERN.h>
21 #include <perl.h>
22
23 #include "slap.h"
24 #include "perl_back.h"
25
26
27
28 PerlInterpreter *perl_interpreter = NULL;
29 ldap_pvt_thread_mutex_t perl_interpreter_mutex;
30
31 #ifdef SLAPD_PERL_DYNAMIC
32 #include <gmodule.h>
33
34 G_MODULE_EXPORT void init_module(int argc, char *argv[]) {
35    BackendInfo bi;
36
37    memset( &bi, 0, sizeof(bi) );
38    bi.bi_type = "perl";
39    bi.bi_init = perl_back_initialize;
40
41    backend_add(&bi);
42 }
43
44 #endif /* SLAPD_PERL_DYNAMIC */
45
46
47 /**********************************************************
48  *
49  * Init
50  *
51  **********************************************************/
52
53 int
54 perl_back_initialize(
55         BackendInfo     *bi
56 )
57 {
58         char *embedding[] = { "", "-e", "0" };
59
60         Debug( LDAP_DEBUG_TRACE, "perl backend open\n", 0, 0, 0 );
61
62         if( perl_interpreter != NULL ) {
63                 Debug( LDAP_DEBUG_ANY, "perl backend open: already opened\n",
64                         0, 0, 0 );
65                 return 1;
66         }
67         
68         perl_interpreter = perl_alloc();
69         perl_construct(perl_interpreter);
70         perl_parse(perl_interpreter, NULL, 3, embedding, (char **)NULL);
71         perl_run(perl_interpreter);
72
73         bi->bi_open = perl_back_open;
74         bi->bi_config = 0;
75         bi->bi_close = perl_back_close;
76         bi->bi_destroy = perl_back_destroy;
77
78         bi->bi_db_init = perl_back_db_init;
79         bi->bi_db_config = perl_back_db_config;
80         bi->bi_db_open = 0;
81         bi->bi_db_close = 0;
82         bi->bi_db_destroy = perl_back_db_destroy;
83
84         bi->bi_op_bind = perl_back_bind;
85         bi->bi_op_unbind = perl_back_unbind;
86         bi->bi_op_search = perl_back_search;
87         bi->bi_op_compare = perl_back_compare;
88         bi->bi_op_modify = perl_back_modify;
89         bi->bi_op_modrdn = perl_back_modrdn;
90         bi->bi_op_add = perl_back_add;
91         bi->bi_op_delete = perl_back_delete;
92         bi->bi_op_abandon = 0;
93
94         bi->bi_acl_group = 0;
95
96         bi->bi_connection_init = 0;
97         bi->bi_connection_destroy = 0;
98
99         return 0;
100 }
101                 
102 int
103 perl_back_open(
104         BackendInfo     *bi
105 )
106 {
107         ldap_pvt_thread_mutex_init( &perl_interpreter_mutex );
108         return 0;
109 }
110
111 int
112 perl_back_db_init(
113         Backend *be
114 )
115 {
116         be->be_private = (PerlBackend *) ch_malloc( sizeof(PerlBackend) );
117         memset( be->be_private, 0, sizeof(PerlBackend));
118
119         Debug( LDAP_DEBUG_TRACE, "perl backend db init\n", 0, 0, 0 );
120
121         return 0;
122 }
123