]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/modrdn.c
Merge in all devel changes since 2.0-alpha2.
[openldap] / servers / slapd / back-perl / modrdn.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 /*
12  * LDAP v3 newSuperior support.
13  *
14  * Copyright 1999, Juan C. Gomez, All rights reserved.
15  * This software is not subject to any license of Silicon Graphics 
16  * Inc. or Purdue University.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * without restriction or fee of any kind as long as this notice
20  * is preserved.
21  *
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27 /*      #include <ac/types.h>
28         #include <ac/socket.h>
29 */
30
31 #include <EXTERN.h>
32 #include <perl.h>
33
34 #include "slap.h"
35 #include "perl_back.h"
36
37 int
38 perl_back_modrdn(
39         Backend *be,
40         Connection      *conn,
41         Operation       *op,
42         char    *dn,
43         char    *newrdn,
44         int             deleteoldrdn,
45         char    *newSuperior
46 )
47 {
48         int len;
49         int count;
50         int return_code;
51
52         PerlBackend *perl_back = (PerlBackend *) be->be_private;
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( dn , 0 )));
62                 XPUSHs(sv_2mortal(newSVpv( newrdn , 0 )));
63                 XPUSHs(sv_2mortal(newSViv( deleteoldrdn )));
64                 if ( newSuperior != NULL ) {
65                         XPUSHs(sv_2mortal(newSVpv( newSuperior , 0 )));
66                 }
67                 PUTBACK ;
68
69                 count = perl_call_method("modrdn", G_SCALAR);
70
71                 SPAGAIN ;
72
73                 if (count != 1) {
74                         croak("Big trouble in back_search\n") ;
75                 }
76                                                          
77                 return_code = POPi;
78
79                 PUTBACK; FREETMPS; LEAVE ;
80         }
81
82         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
83         
84         if( return_code != 0 ) {
85                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR,
86                         NULL, NULL, NULL, NULL );
87
88         } else {
89                 send_ldap_result( conn, op, LDAP_SUCCESS,
90                         NULL, NULL, NULL, NULL );
91         }
92
93         Debug( LDAP_DEBUG_ANY, "Perl MODRDN\n", 0, 0, 0 );
94         return( 0 );
95 }
96
97