openldap/servers/slapd/back-perl/perl_back.h

76 lines
1.8 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
2003-12-06 14:25:01 -05:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2007-01-02 15:00:42 -05:00
* Copyright 1999-2007 The OpenLDAP Foundation.
2003-12-06 14:25:01 -05:00
* Portions Copyright 1999 John C. Quillan.
* Portions Copyright 2002 myinternet Limited.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
2003-12-06 14:25:01 -05:00
#ifndef PERL_BACK_H
#define PERL_BACK_H 1
2004-04-27 03:23:04 -04:00
#include <EXTERN.h>
#include <perl.h>
#undef _ /* #defined by both Perl and ac/localize.h */
#include "asperl_undefs.h"
#include "portable.h"
#include "slap.h"
LDAP_BEGIN_DECL
/*
2003-03-12 20:58:26 -05:00
* From Apache mod_perl: test for Perl version.
*/
2003-03-12 20:58:26 -05:00
2003-03-12 21:01:14 -05:00
#if defined(pTHX_) || (PERL_REVISION > 5 || (PERL_REVISION == 5 && PERL_VERSION >= 6))
2002-04-15 23:47:39 -04:00
#define PERL_IS_5_6
#endif
#define EVAL_BUF_SIZE 500
extern ldap_pvt_thread_mutex_t perl_interpreter_mutex;
2003-03-12 20:58:26 -05:00
#ifdef PERL_IS_5_6
2002-04-16 00:25:44 -04:00
/* We should be using the PL_errgv, I think */
/* All the old style variables are prefixed with PL_ now */
# define errgv PL_errgv
# define na PL_na
#endif
2004-04-27 03:23:04 -04:00
#if defined( HAVE_WIN32_ASPERL ) || defined( USE_ITHREADS )
2002-04-16 00:25:44 -04:00
/* pTHX is needed often now */
# define PERL_INTERPRETER my_perl
# define PERL_BACK_XS_INIT_PARAMS pTHX
# define PERL_BACK_BOOT_DYNALOADER_PARAMS pTHX, CV *cv
#else
# define PERL_INTERPRETER perl_interpreter
# define PERL_BACK_XS_INIT_PARAMS void
# define PERL_BACK_BOOT_DYNALOADER_PARAMS CV *cv
#endif
extern PerlInterpreter *PERL_INTERPRETER;
typedef struct perl_backend_instance {
2002-04-15 23:47:39 -04:00
char *pb_module_name;
SV *pb_obj_ref;
int pb_filter_search_results;
} PerlBackend;
LDAP_END_DECL
2004-11-10 19:39:19 -05:00
#include "proto-perl.h"
2004-11-10 19:39:19 -05:00
#endif /* PERL_BACK_H */