]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_add.c
Implemented the open, init functions correctly
[openldap] / servers / slapd / back-tcl / tcl_add.c
1 /*
2  * add.c - tcl add routine
3  *
4  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11
12 #include "portable.h"
13
14 #include <stdio.h>
15
16 #include "slap.h"
17 #include "tcl_back.h"
18
19 int tcl_back_add (
20         Backend * be,
21         Connection * conn,
22         Operation * op,
23         Entry * e
24 )
25 {
26         char *command, *suf_tcl, *entrystr, *results;
27         int i, code, err = 0;
28         struct tclinfo *ti = (struct tclinfo *) be->be_private;
29
30         if (ti->ti_add == NULL) {
31                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
32                         "add not implemented");
33                 return (-1);
34         }
35
36         for ( i = 0; be->be_suffix[i] != NULL; i++ )
37                 ;
38         suf_tcl = Tcl_Merge(i, be->be_suffix);
39
40         entrystr = tcl_clean_entry(e);
41
42         command = (char *) ch_malloc (strlen(ti->ti_add) + strlen(suf_tcl) + 
43         strlen(entrystr) + 32);
44         sprintf(command, "%s ADD {%ld} {%s} {%s}",
45                 ti->ti_add, op->o_msgid, suf_tcl, entrystr);
46         Tcl_Free(suf_tcl);
47         free (entrystr);
48
49         ldap_pvt_thread_mutex_lock( &tcl_interpreter_mutex );
50         code = Tcl_GlobalEval(ti->ti_ii->interp, command);
51         results = (char *) strdup(ti->ti_ii->interp->result);
52         ldap_pvt_thread_mutex_unlock( &tcl_interpreter_mutex );
53         free(command);
54
55         if (code != TCL_OK) {
56                 err = LDAP_OPERATIONS_ERROR;
57                 Debug(LDAP_DEBUG_ANY, "tcl_add_error: %s\n", results, 0, 0);
58         } else {
59                 interp_send_results ( be, conn, op, results, NULL, 0 );
60         }
61
62         if (err != LDAP_SUCCESS)
63                 send_ldap_result (conn, op, err, NULL, "internal backend error");
64         return (err);
65 }
66