add.c revision 1.1.1.2
1/*	$NetBSD: add.c,v 1.1.1.2 2010/03/08 02:14:20 lukem Exp $	*/
2
3/* OpenLDAP: pkg/ldap/servers/slapd/back-perl/add.c,v 1.20.2.4 2009/01/22 00:01:09 kurt Exp */
4/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 *
6 * Copyright 1999-2009 The OpenLDAP Foundation.
7 * Portions Copyright 1999 John C. Quillan.
8 * Portions Copyright 2002 myinternet Limited.
9 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted only as authorized by the OpenLDAP
13 * Public License.
14 *
15 * A copy of this license is available in file LICENSE in the
16 * top-level directory of the distribution or, alternatively, at
17 * <http://www.OpenLDAP.org/license.html>.
18 */
19
20#include "perl_back.h"
21
22int
23perl_back_add(
24	Operation	*op,
25	SlapReply	*rs )
26{
27	PerlBackend *perl_back = (PerlBackend *) op->o_bd->be_private;
28	int len;
29	int count;
30
31#if defined(HAVE_WIN32_ASPERL) || defined(USE_ITHREADS)
32	PERL_SET_CONTEXT( PERL_INTERPRETER );
33#endif
34	ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
35	ldap_pvt_thread_mutex_lock( &entry2str_mutex );
36
37	{
38		dSP; ENTER; SAVETMPS;
39
40		PUSHMARK(sp);
41		XPUSHs( perl_back->pb_obj_ref );
42		XPUSHs(sv_2mortal(newSVpv( entry2str( op->ora_e, &len ), 0 )));
43
44		PUTBACK;
45
46#ifdef PERL_IS_5_6
47		count = call_method("add", G_SCALAR);
48#else
49		count = perl_call_method("add", G_SCALAR);
50#endif
51
52		SPAGAIN;
53
54		if (count != 1) {
55			croak("Big trouble in back_add\n");
56		}
57
58		rs->sr_err = POPi;
59
60		PUTBACK; FREETMPS; LEAVE;
61	}
62
63	ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
64	ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
65
66	send_ldap_result( op, rs );
67
68	Debug( LDAP_DEBUG_ANY, "Perl ADD\n", 0, 0, 0 );
69	return( 0 );
70}
71