]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/modify.c
96c28fcb0c29aca860b1bd4cbc4ea2033e14c648
[openldap] / servers / slapd / back-perl / modify.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1999-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  *       Copyright 1999, John C. Quillan, All rights reserved.
8  *       Portions Copyright 2002, myinternet Limited. All rights reserved.
9  *
10  *       Redistribution and use in source and binary forms are permitted only
11  *       as authorized by the OpenLDAP Public License.  A copy of this
12  *       license is available at http://www.OpenLDAP.org/license.html or
13  *       in file LICENSE in the top-level directory of the distribution.
14  */
15
16 #include "portable.h"
17
18 #include <stdio.h>
19
20 #include "slap.h"
21 #ifdef HAVE_WIN32_ASPERL
22 #include "asperl_undefs.h"
23 #endif
24
25 #include <EXTERN.h>
26 #include <perl.h>
27
28 #include "perl_back.h"
29
30 int
31 perl_back_modify(
32         Operation       *op,
33         SlapReply       *rs )
34 {
35         PerlBackend *perl_back = (PerlBackend *)op->o_bd->be_private;
36         Modifications *modlist = op->orm_modlist;
37         int count;
38         int i;
39
40
41         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );  
42
43         {
44                 dSP; ENTER; SAVETMPS;
45                 
46                 PUSHMARK(sp);
47                 XPUSHs( perl_back->pb_obj_ref );
48                 XPUSHs(sv_2mortal(newSVpv( op->o_req_dn.bv_val , 0)));
49
50                 for (; modlist != NULL; modlist = modlist->sml_next ) {
51                         Modification *mods = &modlist->sml_mod;
52
53                         switch ( mods->sm_op & ~LDAP_MOD_BVALUES ) {
54                         case LDAP_MOD_ADD:
55                                 XPUSHs(sv_2mortal(newSVpv("ADD", 0 )));
56                                 break;
57                                 
58                         case LDAP_MOD_DELETE:
59                                 XPUSHs(sv_2mortal(newSVpv("DELETE", 0 )));
60                                 break;
61                                 
62                         case LDAP_MOD_REPLACE:
63                                 XPUSHs(sv_2mortal(newSVpv("REPLACE", 0 )));
64                                 break;
65                         }
66
67                         
68                         XPUSHs(sv_2mortal(newSVpv( mods->sm_desc->ad_cname.bv_val, 0 )));
69
70                         for ( i = 0;
71                                 mods->sm_bvalues != NULL && mods->sm_bvalues[i].bv_val != NULL;
72                                 i++ )
73                         {
74                                 XPUSHs(sv_2mortal(newSVpv( mods->sm_bvalues[i].bv_val, 0 )));
75                         }
76                 }
77
78                 PUTBACK;
79
80 #ifdef PERL_IS_5_6
81                 count = call_method("modify", G_SCALAR);
82 #else
83                 count = perl_call_method("modify", G_SCALAR);
84 #endif
85
86                 SPAGAIN;
87
88                 if (count != 1) {
89                         croak("Big trouble in back_modify\n");
90                 }
91                                                          
92                 rs->sr_err = POPi;
93
94                 PUTBACK; FREETMPS; LEAVE;
95         }
96
97         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
98
99         send_ldap_result( op, rs );
100
101         Debug( LDAP_DEBUG_ANY, "Perl MODIFY\n", 0, 0, 0 );
102         return( 0 );
103 }
104