]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_init.c
* Removed uneeded cvs keywords
[openldap] / servers / slapd / back-tcl / tcl_init.c
1 /* tcl_init.c - tcl backend initialization
2  *
3  * $Id: tcl_init.c,v 1.3 1999/02/17 01:02:11 bcollins Exp $
4  *
5  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/socket.h>
18
19 #include "slap.h"
20 #include "tcl_back.h"
21
22 ldap_pvt_thread_mutex_t tcl_interpreter_mutex;
23
24 int
25 tcl_back_initialize (
26         BackendInfo * bi
27 )
28 {
29         /* Initialize the global interpreter array */
30         global_i = (struct i_info *) ch_malloc (sizeof (struct i_info));
31
32         global_i->count = 0;
33         global_i->name = "default";
34         global_i->next = NULL;
35         global_i->interp = Tcl_CreateInterp ();
36         Tcl_Init (global_i->interp);
37
38         /* Initialize the global interpreter lock */
39         ldap_pvt_thread_mutex_init (&tcl_interpreter_mutex);
40
41         bi->bi_open = tcl_back_open;
42         bi->bi_config = NULL;
43         bi->bi_close = tcl_back_close;
44         bi->bi_destroy = tcl_back_destroy;
45
46         bi->bi_db_init = tcl_back_db_init;
47         bi->bi_db_config = tcl_back_db_config;
48         bi->bi_db_open = tcl_back_db_open;
49         bi->bi_db_close = tcl_back_db_close;
50         bi->bi_db_destroy = tcl_back_db_destroy;
51
52         bi->bi_op_bind = tcl_back_bind;
53         bi->bi_op_unbind = tcl_back_unbind;
54         bi->bi_op_search = tcl_back_search;
55         bi->bi_op_compare = tcl_back_compare;
56         bi->bi_op_modify = tcl_back_modify;
57         bi->bi_op_modrdn = tcl_back_modrdn;
58         bi->bi_op_add = tcl_back_add;
59         bi->bi_op_delete = tcl_back_delete;
60         bi->bi_op_abandon = tcl_back_abandon;
61
62         bi->bi_acl_group = NULL;
63
64         return 0;
65 }
66
67 int
68 tcl_back_open (
69         BackendInfo * bi
70 )
71 {
72         /* Initialize the global interpreter array */
73         global_i = (struct i_info *) ch_malloc (sizeof (struct i_info));
74
75         global_i->count = 0;
76         global_i->name = "default";
77         global_i->next = NULL;
78         global_i->interp = Tcl_CreateInterp ();
79         Tcl_Init (global_i->interp);
80
81         /* Initialize the global interpreter lock */
82         ldap_pvt_thread_mutex_init (&tcl_interpreter_mutex);
83
84         return (0);
85 }
86
87 int
88 tcl_back_db_init (
89         Backend * be
90 )
91 {
92         struct tclinfo *ti;
93
94         ti = (struct tclinfo *) ch_calloc (1, sizeof (struct tclinfo));
95
96         /*
97          * For some reason this causes problems
98          * specifically set to NULL
99          */
100         ti->ti_bind = NULL;
101         ti->ti_unbind = NULL;
102         ti->ti_search = NULL;
103         ti->ti_compare = NULL;
104         ti->ti_modify = NULL;
105         ti->ti_modrdn = NULL;
106         ti->ti_add = NULL;
107         ti->ti_delete = NULL;
108         ti->ti_abandon = NULL;
109
110         be->be_private = ti;
111
112         return ti == NULL;
113 }
114
115 int
116 tcl_back_db_open (
117         BackendDB * bd
118 )
119 {
120         struct tclinfo *ti = (struct tclinfo *) bd->be_private;
121
122         if (ti->ti_ii->interp == NULL) {        /* we need to make a new one */
123                 ti->ti_ii->interp = Tcl_CreateInterp ();
124                 Tcl_Init (ti->ti_ii->interp);
125         }
126
127         /* raise that count for the interpreter */
128         ti->ti_ii->count++;
129
130         /* now let's (try to) load the script */
131         readtclscript (ti->script_path, ti->ti_ii->interp);
132
133         /* Intall the debug command */
134         Tcl_CreateCommand (ti->ti_ii->interp, "ldap:debug", &tcl_ldap_debug,
135                 NULL, NULL);
136
137         return 0;
138 }