]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/modrdn.c
silence warnings
[openldap] / servers / slapd / back-perl / modrdn.c
1 /* $OpenLDAP$ */
2 /*
3  *       Copyright 1999, John C. Quillan, All rights reserved.
4  *       Portions Copyright 2002, myinternet Limited. All rights reserved.
5  *
6  *       Redistribution and use in source and binary forms are permitted only
7  *       as authorized by the OpenLDAP Public License.  A copy of this
8  *       license is available at http://www.OpenLDAP.org/license.html or
9  *       in file LICENSE in the top-level directory of the distribution.
10  */
11
12 /*
13  * LDAP v3 newSuperior support.
14  *
15  * Copyright 1999, Juan C. Gomez, All rights reserved.
16  * This software is not subject to any license of Silicon Graphics 
17  * Inc. or Purdue University.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * without restriction or fee of any kind as long as this notice
21  * is preserved.
22  *
23  */
24
25 #include "portable.h"
26
27 #include <stdio.h>
28
29 #include "slap.h"
30 #ifdef HAVE_WIN32_ASPERL
31 #include "asperl_undefs.h"
32 #endif
33
34 #include <EXTERN.h>
35 #include <perl.h>
36
37 #include "perl_back.h"
38
39 int
40 perl_back_modrdn(
41         Operation       *op,
42         SlapReply       *rs )
43 {
44         PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
45         int count;
46
47         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
48
49         {
50                 dSP; ENTER; SAVETMPS;
51                 
52                 PUSHMARK(sp) ;
53                 XPUSHs( perl_back->pb_obj_ref );
54                 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0 )));
55                 XPUSHs(sv_2mortal(newSVpv( op->orr_newrdn.bv_val , 0 )));
56                 XPUSHs(sv_2mortal(newSViv( op->orr_deleteoldrdn )));
57                 if ( op->orr_newSup != NULL ) {
58                         XPUSHs(sv_2mortal(newSVpv( op->orr_newSup->bv_val , 0 )));
59                 }
60                 PUTBACK ;
61
62 #ifdef PERL_IS_5_6
63                 count = call_method("modrdn", G_SCALAR);
64 #else
65                 count = perl_call_method("modrdn", G_SCALAR);
66 #endif
67
68                 SPAGAIN ;
69
70                 if (count != 1) {
71                         croak("Big trouble in back_modrdn\n") ;
72                 }
73                                                          
74                 rs->sr_err = POPi;
75
76                 PUTBACK; FREETMPS; LEAVE ;
77         }
78
79         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
80         
81         send_ldap_result( op, rs );
82
83         Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
84         return( 0 );
85 }