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