]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_abandon.c
Fixes for NO_THREADS
[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 *results, *command;
28         struct berval suf_tcl;
29         int code, err = 0;
30         struct tclinfo *ti = (struct tclinfo *) be->be_private;
31
32         if (ti->ti_abandon.bv_len == 0) {
33                 return (-1);
34         }
35
36         if (tcl_merge_bvlist(be->be_suffix, &suf_tcl) == NULL) {
37                 return (-1);
38         }
39
40         command = (char *) ch_malloc (ti->ti_abandon.bv_len + suf_tcl.bv_len
41                 + 80);
42         sprintf (command, "%s ABANDON {%ld/%ld} {%s} {%ld/%d}",
43                 ti->ti_abandon.bv_val, op->o_connid, (long) op->o_msgid,
44                 suf_tcl.bv_val, op->o_connid, msgid);
45         Tcl_Free (suf_tcl.bv_val);
46
47         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
48         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
49         results = (char *) ch_strdup (ti->ti_ii->interp->result);
50         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
51         free (command);
52
53         if (code != TCL_OK) {
54                 err = LDAP_OPERATIONS_ERROR;
55                 Debug (LDAP_DEBUG_SHELL, "tcl_abandon_error: %s\n", results,
56                         0, 0);
57         }
58
59         free (results);
60         return (err);
61 }