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