1 /* add.c - tcl add routine
3 * $Id: tcl_add.c,v 1.7 1999/08/02 23:38:43 hallvard Exp $
5 * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
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.
28 char *command, *suf_tcl, *entrystr, *results;
30 struct tclinfo *ti = (struct tclinfo *) be->be_private;
32 if (ti->ti_add == NULL) {
33 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
34 "add not implemented", NULL, NULL );
38 for (i = 0; be->be_suffix[i] != NULL; i++);
39 suf_tcl = Tcl_Merge (i, be->be_suffix);
41 entrystr = tcl_clean_entry (e);
43 command = (char *) ch_malloc (strlen (ti->ti_add) + strlen
45 strlen (entrystr) + 32);
46 sprintf (command, "%s ADD {%ld} {%s} {%s}",
47 ti->ti_add, op->o_msgid, suf_tcl, entrystr);
51 ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
52 code = Tcl_GlobalEval (ti->ti_ii->interp, command);
53 results = (char *) ch_strdup (ti->ti_ii->interp->result);
54 ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
58 err = LDAP_OPERATIONS_ERROR;
59 Debug (LDAP_DEBUG_SHELL, "tcl_add_error: %s\n", results, 0, 0);
61 interp_send_results (be, conn, op, results, NULL, 0);
64 if (err != LDAP_SUCCESS)
65 send_ldap_result (conn, op, err, NULL,
66 "internal backend error", NULL, NULL );