]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/compare.c
Another round of minor copyright updates
[openldap] / servers / slapd / back-perl / compare.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1999-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  *       Copyright 1999, John C. Quillan, All rights reserved.
8  *       Portions Copyright 2002, myinternet Limited. All rights reserved.
9  *
10  *       Redistribution and use in source and binary forms are permitted only
11  *       as authorized by the OpenLDAP Public License.  A copy of this
12  *       license is available at http://www.OpenLDAP.org/license.html or
13  *       in file LICENSE in the top-level directory of the distribution.
14  */
15
16 #include "portable.h"
17
18 #include <stdio.h>
19
20 #include "slap.h"
21 #ifdef HAVE_WIN32_ASPERL
22 #include "asperl_undefs.h"
23 #endif
24
25 #include <EXTERN.h>
26 #include <perl.h>
27
28 #include "lutil.h"
29 #include "perl_back.h"
30
31 /**********************************************************
32  *
33  * Compare
34  *
35  **********************************************************/
36
37 int
38 perl_back_compare(
39         Operation       *op,
40         SlapReply       *rs )
41 {
42         int count;
43         char *avastr, *ptr;
44
45         PerlBackend *perl_back = (PerlBackend *)op->o_bd->be_private;
46
47         avastr = ch_malloc( op->orc_ava->aa_desc->ad_cname.bv_len + 1 +
48                 op->orc_ava->aa_value.bv_len + 1 );
49         
50         lutil_strcopy( lutil_strcopy( lutil_strcopy( avastr,
51                 op->orc_ava->aa_desc->ad_cname.bv_val ), "=" ),
52                 op->orc_ava->aa_value.bv_val );
53
54         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
55
56         {
57                 dSP; ENTER; SAVETMPS;
58
59                 PUSHMARK(sp);
60                 XPUSHs( perl_back->pb_obj_ref );
61                 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0)));
62                 XPUSHs(sv_2mortal(newSVpv( avastr , 0)));
63                 PUTBACK;
64
65 #ifdef PERL_IS_5_6
66                 count = call_method("compare", G_SCALAR);
67 #else
68                 count = perl_call_method("compare", G_SCALAR);
69 #endif
70
71                 SPAGAIN;
72
73                 if (count != 1) {
74                         croak("Big trouble in back_compare\n");
75                 }
76
77                 rs->sr_err = POPi;
78
79                 PUTBACK; FREETMPS; LEAVE;
80         }
81
82         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
83
84         ch_free( avastr );
85
86         send_ldap_result( op, rs );
87
88         Debug( LDAP_DEBUG_ANY, "Perl COMPARE\n", 0, 0, 0 );
89
90         return (0);
91 }
92