]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-tcl/tcl_util.c
Modified to use libtool's ltdl instead of gmodule
[openldap] / servers / slapd / back-tcl / tcl_util.c
index 1332ba8531903a417debc987e8fac56b1b8f0236..879c9c34f80ca2279b2badca4cdab5101cd5d0ae 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * result.c - tcl backend utility functions
+/* result.c - tcl backend utility functions
+ *
+ * $Id: tcl_util.c,v 1.7 1999/07/16 00:45:52 kdz Exp $
  *
  * Copyright 1999, Ben Collins <bcollins@debian.org>, All rights reserved.
  *
 #include "tcl_back.h"
 
 int
-interp_send_results(
-    Backend    *be,
-    Connection *conn,
-    Operation  *op,
-    char       *result,
-    char       **attrs,
-    int                attrsonly
+interp_send_results (
+       Backend * be,
+       Connection * conn,
+       Operation * op,
+       char *result,
+       char **attrs,
+       int attrsonly
 )
 {
-       int     bsize, len, argcPtr, i, err, code;
-       char    *buf, *bp, **argvPtr, *line, *matched, *info;
-       Entry   *e;
+       int bsize, len, argcPtr, i, err, code;
+       char *buf, *bp, **argvPtr, *line, *matched, *info;
+       Entry *e;
        struct tclinfo *ti = (struct tclinfo *) be->be_private;
-       /* read in the result and send it along */
-       buf = (char *) ch_malloc( BUFSIZ );
+
+       /*
+        * read in the result and send it along 
+        */
+       buf = (char *) ch_malloc (BUFSIZ);
        buf[0] = '\0';
        bsize = BUFSIZ;
        bp = buf;
-       code = Tcl_SplitList(ti->ti_ii->interp, result, &argcPtr, &argvPtr);
+       code = Tcl_SplitList (ti->ti_ii->interp, result, &argcPtr, &argvPtr);
        if (code != TCL_OK) {
                argcPtr = 0;
                send_ldap_result (conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
-                       "internal backend error");
+                       "internal backend error", NULL, NULL );
                return -1;
        }
-       for ( i = 0 ; i < argcPtr ; i++ ) {
+       for (i = 0; i < argcPtr; i++) {
                line = argvPtr[i];
-               Debug( LDAP_DEBUG_ANY, "tcl search reading line (%s)\n",
-                   line, 0, 0 );
-               /* ignore lines beginning with DEBUG: */
-               if ( strncasecmp( line, "DEBUG:", 6 ) == 0 ) {
+
+               /*
+                * ignore lines beginning with DEBUG: 
+                */
+               if (strncasecmp (line, "DEBUG:", 6) == 0) {
                        continue;
                }
-               len = strlen( line ) + 1;
-               while ( bp + len - buf > bsize ) {
+               len = strlen (line) + 1;
+               while (bp + len - buf > bsize) {
                        bsize += BUFSIZ;
-                       buf = (char *) ch_realloc( buf, bsize );
+                       buf = (char *) ch_realloc (buf, bsize);
                }
-               sprintf( bp, "%s\n", line );
+               sprintf (bp, "%s\n", line);
                bp += len;
 
-               /* line marked the end of an entry or result */
-               if ( line[0] == '\0' ) {
-                       if ( strncasecmp( buf, "RESULT", 6 ) == 0 ) {
+               /*
+                * line marked the end of an entry or result 
+                */
+               if (line[0] == '\0') {
+                       if (strncasecmp (buf, "RESULT", 6) == 0) {
                                break;
                        }
-                       if ( (e = str2entry( buf )) == NULL ) {
-                               Debug( LDAP_DEBUG_ANY, "str2entry(%s) failed\n",
-                                   buf, 0, 0 );
+                       if ((e = str2entry (buf)) == NULL) {
+                               Debug (LDAP_DEBUG_SHELL,
+                                       "str2entry(%s) failed\n",
+                                       buf, 0, 0);
                        } else {
-                               send_search_entrybe, conn, op, e, attrs,
-                                   attrsonly );
-                               entry_free( e );
+                               send_search_entry (be, conn, op, e, attrs,
+                                       attrsonly, NULL );
+                               entry_free (e);
                        }
 
                        bp = buf;
                }
        }
 
-       (void) str2result( buf, &err, &matched, &info );
+       (void) str2result (buf, &err, &matched, &info);
 
-       /* otherwise, front end will send this result */
-       if ( err != 0 || op->o_tag != LDAP_REQ_BIND ) {
-               send_ldap_result( conn, op, err, matched, info );
+       /*
+        * otherwise, front end will send this result 
+        */
+       if (err != 0 || op->o_tag != LDAP_REQ_BIND) {
+               send_ldap_result (conn, op, err, matched, info, NULL, NULL );
        }
 
-       free( buf );
-       Tcl_Free( result );
-       Tcl_Free( (char *) argvPtr );
-       return( err );
+       free (buf);
+       Tcl_Free ((char *) argvPtr);
+       return (err);
 }
 
-char *tcl_clean_entry (Entry *e)
+char *
+tcl_clean_entry (
+       Entry * e
+)
 {
-    char *entrystr, *mark1, *mark2, *buf, *bp, *dup;
-    int len, bsize;
+       char *entrystr, *mark1, *mark2, *buf, *bp, *dup;
+       int len, bsize;
 
-    pthread_mutex_lock( &entry2str_mutex );
-    entrystr = entry2str( e, &len, 0 );
-    pthread_mutex_unlock( &entry2str_mutex );
+       pthread_mutex_lock (&entry2str_mutex);
+       entrystr = entry2str (e, &len, 0);
+       pthread_mutex_unlock (&entry2str_mutex);
 
-    buf = (char *) ch_malloc( BUFSIZ );
-    buf[0] = '\0';
-    bsize = BUFSIZ;
-    bp = buf;
-    bp++[0] = ' ';
+       buf = (char *) ch_malloc (BUFSIZ);
+       buf[0] = '\0';
+       bsize = BUFSIZ;
+       bp = buf;
+       bp++[0] = ' ';
 
-    mark1 = entrystr;
-    do {
+       mark1 = entrystr;
+       do {
                if (mark1[0] == '\n') {
-               mark1++;
+                       mark1++;
                }
-               dup = (char *) strdup(mark1);
+               dup = (char *) ch_strdup (mark1);
                if (dup[0] != '\0') {
-               if ((mark2 = (char *) strchr (dup, '\n')) != NULL) {
+                       if ((mark2 = (char *) strchr (dup, '\n')) != NULL) {
                                mark2[0] = '\0';
-               }
-               len = strlen( dup ) + 3;
-               while ( bp + len - buf > bsize ) {
+                       }
+                       len = strlen (dup) + 3;
+                       while (bp + len - buf > bsize) {
                                bsize += BUFSIZ;
-                               buf = (char *) ch_realloc( buf, bsize );
-               }
-               if (mark1[0] == '\0') {
-                               sprintf(bp, "{} ");
-               } else {
-                               sprintf(bp, "{%s} ", dup);
-               }
-               bp += len;
-               if (mark2 != NULL) {
+                               buf = (char *) ch_realloc (buf, bsize);
+                       }
+                       if (mark1[0] == '\0') {
+                               sprintf (bp, "{} ");
+                       } else {
+                               sprintf (bp, "{%s} ", dup);
+                       }
+                       bp += len;
+                       if (mark2 != NULL) {
                                mark2[0] = '\n';
-               }
+                       }
                }
-               free(dup);
-    } while ((mark1 = (char *) strchr (mark1, '\n')) != NULL);
-    return buf;
+               free (dup);
+       } while ((mark1 = (char *) strchr (mark1, '\n')) != NULL);
+       return buf;
 }
 
-int tcl_ldap_debug (
-    ClientData clientData,
-    Tcl_Interp *interp,
-    int argc,
-    char *argv[]
+int
+tcl_ldap_debug (
+       ClientData clientData,
+       Tcl_Interp * interp,
+       int argc,
+       char *argv[]
 )
 {
-    if (argv[1] != NULL) {
-               Debug(LDAP_DEBUG_ANY, "tcl_debug: %s\n", argv[1], 0, 0);
-    }
-    return TCL_OK;
+       if (argv[1] != NULL) {
+               Debug (LDAP_DEBUG_SHELL, "tcl_debug: %s\n", argv[1], 0, 0);
+       }
+       return TCL_OK;
+}
+
+void
+readtclscript (
+       char *script,
+       Tcl_Interp * my_tcl)
+{
+       int code;
+       FILE *f;
+
+       f = fopen (script, "r");
+       if (f == NULL) {
+               Debug (LDAP_DEBUG_SHELL, "Could not open scriptpath %s\n", script,
+                       0, 0);
+               return;
+       }
+       fclose (f);
+       code = Tcl_EvalFile (my_tcl, script);
+       if (code != TCL_OK) {
+               Debug (LDAP_DEBUG_SHELL, "%s: %s\n", script,
+                       Tcl_GetVar (my_tcl, "errorInfo", TCL_GLOBAL_ONLY), 0);
+               Debug (LDAP_DEBUG_SHELL, "%s: error at line\n", script,
+                       my_tcl->errorLine, 0);
+               return;
+       }
 }