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