]> git.sur5r.net Git - openldap/blob - servers/slapd/back-tcl/tcl_compare.c
9e587ad748166453aaacc51566d17c9327410e07
[openldap] / servers / slapd / back-tcl / tcl_compare.c
1 /* compare.c - tcl compare routines
2  *
3  * $Id: tcl_compare.c,v 1.7 1999/08/02 23:38:43 hallvard 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_compare (
22         Backend * be,
23         Connection * conn,
24         Operation * op,
25         char *dn,
26         Ava * ava
27 )
28 {
29         char *command, *suf_tcl, *results;
30         int i, code, err = 0;
31         struct tclinfo *ti = (struct tclinfo *) be->be_private;
32
33         if (ti->ti_compare == NULL) {
34                 send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
35                         "compare not implemented", NULL, NULL );
36                 return (-1);
37         }
38
39         for (i = 0; be->be_suffix[i] != NULL; i++);
40         suf_tcl = Tcl_Merge (i, be->be_suffix);
41
42         command = (char *) ch_malloc (strlen (ti->ti_compare) +
43                 strlen (suf_tcl) + strlen (dn) + strlen (ava->ava_type) +
44                 strlen (ava->ava_value.bv_val) + 64);
45         sprintf (command, "%s COMPARE {%ld} {%s} {%s} {%s: %s}",
46                 ti->ti_compare, op->o_msgid, suf_tcl, dn, ava->ava_type,
47                 ava->ava_value.bv_val);
48         Tcl_Free (suf_tcl);
49
50         ldap_pvt_thread_mutex_lock (&tcl_interpreter_mutex);
51         code = Tcl_GlobalEval (ti->ti_ii->interp, command);
52         results = (char *) ch_strdup (ti->ti_ii->interp->result);
53         ldap_pvt_thread_mutex_unlock (&tcl_interpreter_mutex);
54         free (command);
55
56         if (code != TCL_OK) {
57                 err = LDAP_OPERATIONS_ERROR;
58                 Debug (LDAP_DEBUG_SHELL, "tcl_compare_error: %s\n", results,
59                         0, 0);
60         } else {
61                 interp_send_results (be, conn, op, results, NULL, 0);
62         }
63
64         if (err != LDAP_SUCCESS)
65                 send_ldap_result (conn, op, err, NULL,
66                         "internal backend error", NULL, NULL );
67
68         free (results);
69         return (err);
70 }