]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_abandon.c
Add OpenLDAP RCSid to *.[ch] in clients, libraries, and servers.
[openldap] / servers / slapd / back-tcl / tcl_abandon.c
1 /* $OpenLDAP$ */
2 /* abandon.c - tcl abandon 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
20 tcl_back_abandon (
21         Backend * be,
22         Connection * conn,
23         Operation * op,
24         int msgid
25 )
26 {
27         char *suf_tcl, *results, *command;
28         int i, code, err = 0;
29         struct tclinfo *ti = (struct tclinfo *) be->be_private;
30
31         if (ti->ti_abandon == NULL) {
32                 return (-1);
33         }
34
35         for (i = 0; be->be_suffix[i] != NULL; i++);
36         suf_tcl = Tcl_Merge (i, be->be_suffix);
37
38         command = (char *) ch_malloc (strlen (ti->ti_abandon) + strlen (suf_tcl)
39                 + 20);
40         sprintf (command, "%s ABANDON {%ld} {%s}",
41                 ti->ti_abandon, op->o_msgid, suf_tcl);
42         Tcl_Free (suf_tcl);
43
44         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
45         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
46         results = (char *) ch_strdup (ti->ti_ii->interp->result);
47         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
48         free (command);
49
50         if (code != TCL_OK) {
51                 err = LDAP_OPERATIONS_ERROR;
52                 Debug (LDAP_DEBUG_SHELL, "tcl_abandon_error: %s\n", results,
53                         0, 0);
54         }
55
56         free (results);
57         return (err);
58 }