]> git.sur5r.net Git - openldap/blob - servers/slapd/back-perl/add.c
ITS#1646
[openldap] / servers / slapd / back-perl / add.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 #include "portable.h"
13
14 #include <stdio.h>
15
16 #include "slap.h"
17 #ifdef HAVE_WIN32_ASPERL
18 #include "asperl_undefs.h"
19 #endif
20
21 #include <EXTERN.h>
22 #include <perl.h>
23
24 #include "perl_back.h"
25
26 int
27 perl_back_add(
28         Backend *be,
29         Connection      *conn,
30         Operation       *op,
31         Entry   *e
32 )
33 {
34         int len;
35         int count;
36         int return_code;
37
38         PerlBackend *perl_back = (PerlBackend *) be->be_private;
39
40         ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
41         ldap_pvt_thread_mutex_lock( &entry2str_mutex );
42
43         {
44                 dSP; ENTER; SAVETMPS;
45
46                 PUSHMARK(sp);
47                 XPUSHs( perl_back->pb_obj_ref );
48                 XPUSHs(sv_2mortal(newSVpv( entry2str( e, &len ), 0 )));
49
50                 PUTBACK;
51
52 #ifdef PERL_IS_5_6
53                 count = call_method("add", G_SCALAR);
54 #else
55                 count = perl_call_method("add", G_SCALAR);
56 #endif
57
58                 SPAGAIN;
59
60                 if (count != 1) {
61                         croak("Big trouble in back_add\n");
62                 }
63                                                          
64                 return_code = POPi;
65
66                 PUTBACK; FREETMPS; LEAVE;
67         }
68
69         ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
70         ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );        
71
72         send_ldap_result( conn, op, return_code,
73                 NULL, NULL, NULL, NULL );
74
75         Debug( LDAP_DEBUG_ANY, "Perl ADD\n", 0, 0, 0 );
76         return( 0 );
77 }