]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/compare.c
API updates, some typo fixes
[openldap] / servers / slapd / back-perl / compare.c
1 /* $OpenLDAP$ */
2 /*
3  *       Copyright 1999, John C. Quillan, All rights reserved.
4  *
5  *       Redistribution and use in source and binary forms are permitted only
6  *       as authorized by the OpenLDAP Public License.  A copy of this
7  *       license is available at http://www.OpenLDAP.org/license.html or
8  *       in file LICENSE in the top-level directory of the distribution.
9  */
10
11 #include "portable.h"
12
13 #include <stdio.h>
14 /*      #include <ac/types.h>
15         #include <ac/socket.h>
16 */
17
18 #include <EXTERN.h>
19 #include <perl.h>
20
21 #include "slap.h"
22 #include "perl_back.h"
23
24 /**********************************************************
25  *
26  * Compare
27  *
28  **********************************************************/
29
30 perl_back_compare(
31         Backend *be,
32         Connection      *conn,
33         Operation       *op,
34         struct berval   *dn,
35         struct berval   *ndn,
36         AttributeAssertion              *ava
37 )
38 {
39         int return_code;
40         int count;
41
42         PerlBackend *perl_back = (PerlBackend *)be->be_private;
43
44         send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM,
45                 NULL, "not supported", NULL, NULL );
46
47 #ifdef notdef
48         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
49
50         {
51                 dSP; ENTER; SAVETMPS;
52
53                 PUSHMARK(sp);
54                 XPUSHs( perl_back->pb_obj_ref );
55                 XPUSHs(sv_2mortal(newSVpv( dn , 0)));
56                 /* XPUSHs(sv_2mortal(newSVpv( cred->bv_val , cred->bv_len))); */
57                 PUTBACK;
58
59                 count = perl_call_method("compare", G_SCALAR);
60
61                 SPAGAIN;
62
63                 if (count != 1) {
64                         croak("Big trouble in back_compare\n");
65                 }
66
67                 return_code = POPi;
68                                                          
69                 PUTBACK; FREETMPS; LEAVE;
70         }
71
72         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
73
74         if( return_code != 0 ) {
75                 send_ldap_result( conn, op, LDAP_COMPARE_TRUE, NULL, NULL );
76
77         } else {
78                 send_ldap_result( conn, op, LDAP_COMPARE_FALSE, NULL, NULL );
79         }
80 #endif
81
82         Debug( LDAP_DEBUG_ANY, "Perl COMPARE\n", 0, 0, 0 );
83
84         return (0);
85 }
86