1999-02-15 03:20:14 +08:00
|
|
|
/*
|
|
|
|
* tcl_init.c - tcl backend initialization
|
|
|
|
*
|
|
|
|
* Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
1999-02-17 09:55:54 +08:00
|
|
|
*
|
1999-02-17 10:02:11 +08:00
|
|
|
* $Id: tcl_init.c,v 1.2 1999/02/17 00:55:54 bcollins Exp $
|
|
|
|
*
|
|
|
|
* $Log: tcl_init.c,v $
|
|
|
|
* Revision 1.2 1999/02/17 00:55:54 bcollins
|
|
|
|
* Implemented the open, init functions correctly
|
1999-02-17 09:55:54 +08:00
|
|
|
*
|
1999-02-15 03:20:14 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "tcl_back.h"
|
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_t tcl_interpreter_mutex;
|
|
|
|
|
|
|
|
int
|
|
|
|
tcl_back_initialize(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
/* Initialize the global interpreter array */
|
|
|
|
global_i = (struct i_info *) ch_malloc (sizeof (struct i_info));
|
|
|
|
global_i->count = 0;
|
|
|
|
global_i->name = "default";
|
|
|
|
global_i->next = NULL;
|
|
|
|
global_i->interp = Tcl_CreateInterp ();
|
|
|
|
Tcl_Init (global_i->interp);
|
|
|
|
|
|
|
|
/* Initialize the global interpreter lock */
|
|
|
|
ldap_pvt_thread_mutex_init( &tcl_interpreter_mutex );
|
1999-02-17 09:55:54 +08:00
|
|
|
|
|
|
|
bi->bi_open = tcl_back_open;
|
1999-02-17 10:02:11 +08:00
|
|
|
bi->bi_config = NULL;
|
1999-02-17 09:55:54 +08:00
|
|
|
bi->bi_close = tcl_back_close;
|
|
|
|
bi->bi_destroy = tcl_back_destroy;
|
1999-02-15 03:20:14 +08:00
|
|
|
|
|
|
|
bi->bi_db_init = tcl_back_db_init;
|
|
|
|
bi->bi_db_config = tcl_back_db_config;
|
|
|
|
bi->bi_db_open = tcl_back_db_open;
|
1999-02-17 09:55:54 +08:00
|
|
|
bi->bi_db_close = tcl_back_db_close;
|
1999-02-15 03:20:14 +08:00
|
|
|
bi->bi_db_destroy = tcl_back_db_destroy;
|
|
|
|
|
|
|
|
bi->bi_op_bind = tcl_back_bind;
|
|
|
|
bi->bi_op_unbind = tcl_back_unbind;
|
|
|
|
bi->bi_op_search = tcl_back_search;
|
|
|
|
bi->bi_op_compare = tcl_back_compare;
|
|
|
|
bi->bi_op_modify = tcl_back_modify;
|
|
|
|
bi->bi_op_modrdn = tcl_back_modrdn;
|
|
|
|
bi->bi_op_add = tcl_back_add;
|
|
|
|
bi->bi_op_delete = tcl_back_delete;
|
|
|
|
bi->bi_op_abandon = tcl_back_abandon;
|
|
|
|
|
|
|
|
bi->bi_acl_group = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1999-02-17 10:02:11 +08:00
|
|
|
int
|
|
|
|
tcl_back_open(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
/* Initialize the global interpreter array */
|
|
|
|
global_i = (struct i_info *) ch_malloc (sizeof (struct i_info));
|
|
|
|
global_i->count = 0;
|
|
|
|
global_i->name = "default";
|
|
|
|
global_i->next = NULL;
|
|
|
|
global_i->interp = Tcl_CreateInterp ();
|
|
|
|
Tcl_Init (global_i->interp);
|
|
|
|
|
|
|
|
/* Initialize the global interpreter lock */
|
|
|
|
ldap_pvt_thread_mutex_init( &tcl_interpreter_mutex );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|
1999-02-15 03:20:14 +08:00
|
|
|
int
|
|
|
|
tcl_back_db_init(
|
|
|
|
Backend *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct tclinfo *ti;
|
|
|
|
|
|
|
|
ti = (struct tclinfo *) ch_calloc( 1, sizeof(struct tclinfo) );
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For some reason this causes problems
|
|
|
|
* specifically set to NULL
|
|
|
|
*/
|
|
|
|
ti->ti_bind = NULL;
|
|
|
|
ti->ti_unbind = NULL;
|
|
|
|
ti->ti_search = NULL;
|
|
|
|
ti->ti_compare = NULL;
|
|
|
|
ti->ti_modify = NULL;
|
|
|
|
ti->ti_modrdn = NULL;
|
|
|
|
ti->ti_add = NULL;
|
|
|
|
ti->ti_delete = NULL;
|
|
|
|
ti->ti_abandon = NULL;
|
|
|
|
|
|
|
|
be->be_private = ti;
|
|
|
|
|
|
|
|
return ti == NULL;
|
|
|
|
}
|
|
|
|
|
1999-02-17 09:55:54 +08:00
|
|
|
int tcl_back_db_open (
|
|
|
|
BackendDB * bd
|
1999-02-15 03:20:14 +08:00
|
|
|
)
|
|
|
|
{
|
1999-02-17 09:55:54 +08:00
|
|
|
struct tclinfo *ti = (struct tclinfo *) bd->be_private;
|
|
|
|
|
|
|
|
if (ti->ti_ii->interp == NULL) { /* we need to make a new one */
|
|
|
|
ti->ti_ii->interp = Tcl_CreateInterp ();
|
|
|
|
Tcl_Init (ti->interp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* raise that count for the interpreter */
|
|
|
|
ti->ti_ii->count++;
|
|
|
|
|
|
|
|
/* now let's (try to) load the script */
|
|
|
|
readtclscript (ti->script_path, ti->ti_ii->interp);
|
|
|
|
|
|
|
|
/* Intall the debug command */
|
|
|
|
Tcl_CreateCommand( ti->ti_ii->interp, "ldap:debug", &tcl_ldap_debug,
|
|
|
|
NULL, NULL);
|
|
|
|
|
1999-02-15 03:20:14 +08:00
|
|
|
return 0;
|
|
|
|
}
|