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