]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/modrdn.c
e4b970efdd5b5961798a1d89723e38a715cdf398
[openldap] / servers / slapd / back-perl / modrdn.c
1 /* $OpenLDAP$ */
2 /*
3  *       Copyright 1999, John C. Quillan, All rights reserved.
4  *       Portions Copyright 2002, myinternet pty ltd. 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         Backend *be,
42         Connection      *conn,
43         Operation       *op,
44         struct berval   *dn,
45         struct berval   *ndn,
46         struct berval   *newrdn,
47         struct berval   *nnewrdn,
48         int             deleteoldrdn,
49         struct berval   *newSuperior,
50         struct berval   *nnewSuperior
51 )
52 {
53         int len;
54         int count;
55         int return_code;
56
57         PerlBackend *perl_back = (PerlBackend *) be->be_private;
58
59         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
60
61         {
62                 dSP; ENTER; SAVETMPS;
63                 
64                 PUSHMARK(sp) ;
65                 XPUSHs( perl_back->pb_obj_ref );
66                 XPUSHs(sv_2mortal(newSVpv( dn->bv_val , 0 )));
67                 XPUSHs(sv_2mortal(newSVpv( newrdn->bv_val , 0 )));
68                 XPUSHs(sv_2mortal(newSViv( deleteoldrdn )));
69                 if ( newSuperior != NULL ) {
70                         XPUSHs(sv_2mortal(newSVpv( newSuperior->bv_val , 0 )));
71                 }
72                 PUTBACK ;
73
74 #ifdef PERL_IS_5_6
75                 count = call_method("modrdn", G_SCALAR);
76 #else
77                 count = perl_call_method("modrdn", G_SCALAR);
78 #endif
79
80                 SPAGAIN ;
81
82                 if (count != 1) {
83                         croak("Big trouble in back_modrdn\n") ;
84                 }
85                                                          
86                 return_code = POPi;
87
88                 PUTBACK; FREETMPS; LEAVE ;
89         }
90
91         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
92         
93         send_ldap_result( conn, op, return_code,
94                 NULL, NULL, NULL, NULL );
95
96         Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
97         return( 0 );
98 }