]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_delete.c
* Removed uneeded cvs keywords
[openldap] / servers / slapd / back-tcl / tcl_delete.c
1 /* delete.c - tcl delete routines
2  *
3  * $Id: tcl_delete.c,v 1.2 1999/02/17 01:05:28 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 "slap.h"
18 #include "tcl_back.h"
19
20 tcl_back_delete (
21         Backend * be,
22         Connection * conn,
23         Operation * op,
24         char *dn
25 )
26 {
27         char *command, *suf_tcl, *results;
28         int i, code, err = 0;
29         struct tclinfo *ti = (struct tclinfo *) be->be_private;
30
31         if (ti->ti_delete == NULL) {
32                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
33                         "delete not implemented");
34                 return (-1);
35         }
36
37         for (i = 0; be->be_suffix[i] != NULL; i++);
38         suf_tcl = Tcl_Merge (i, be->be_suffix);
39
40         command = (char *) ch_malloc (strlen (ti->ti_delete) + strlen (suf_tcl)
41                 + strlen (dn) + 64);
42         sprintf (command, "%s DELETE {%ld} {%s} {%s}",
43                 ti->ti_delete, op->o_msgid, suf_tcl, dn);
44         Tcl_Free (suf_tcl);
45
46         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
47         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
48         results = (char *) strdup (ti->ti_ii->interp->result);
49         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
50         free (command);
51
52         if (code != TCL_OK) {
53                 err = LDAP_OPERATIONS_ERROR;
54                 Debug (LDAP_DEBUG_ANY, "tcl_delete_error: %s\n", results,
55                         0, 0);
56         } else {
57                 interp_send_results (be, conn, op, results, NULL, 0);
58         }
59
60         if (err != LDAP_SUCCESS)
61                 send_ldap_result (conn, op, err, NULL,
62                         "internal backend error");
63
64         free(results);
65         return (err);
66 }