Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / servers / slapd / back-perl / add.c
blob4522f54efbe33e4803e1f6779a291cd64bdc1404
1 /* $OpenLDAP: pkg/ldap/servers/slapd/back-perl/add.c,v 1.20.2.3 2008/02/11 23:26:47 kurt Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1999-2008 The OpenLDAP Foundation.
5 * Portions Copyright 1999 John C. Quillan.
6 * Portions Copyright 2002 myinternet Limited.
7 * All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
11 * Public License.
13 * A copy of this license is available in file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
18 #include "perl_back.h"
20 int
21 perl_back_add(
22 Operation *op,
23 SlapReply *rs )
25 PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
26 int len;
27 int count;
29 #if defined(HAVE_WIN32_ASPERL) || defined(USE_ITHREADS)
30 PERL_SET_CONTEXT( PERL_INTERPRETER );
31 #endif
32 ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
33 ldap_pvt_thread_mutex_lock( &entry2str_mutex );
36 dSP; ENTER; SAVETMPS;
38 PUSHMARK(sp);
39 XPUSHs( perl_back->pb_obj_ref );
40 XPUSHs(sv_2mortal(newSVpv( entry2str( op->ora_e, &len ), 0 )));
42 PUTBACK;
44 #ifdef PERL_IS_5_6
45 count = call_method("add", G_SCALAR);
46 #else
47 count = perl_call_method("add", G_SCALAR);
48 #endif
50 SPAGAIN;
52 if (count != 1) {
53 croak("Big trouble in back_add\n");
56 rs->sr_err = POPi;
58 PUTBACK; FREETMPS; LEAVE;
61 ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
62 ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
64 send_ldap_result( op, rs );
66 Debug( LDAP_DEBUG_ANY, "Perl ADD\n", 0, 0, 0 );
67 return( 0 );