openldap/servers/slapd/tools/ldif.c
Kurt Zeilenga 82b94e2258 Change SLAPD shutdown to do a cond wait on active threads instead
of a busy wait and allow the pthread_yield within the loop to be
removed.  This was the only pthread_yield which was necessary
when usng non-preemptive threads.  As such, the configure.in
sched_yield/pthread_yield missing error can be removed from
configure.in.  If explicit yield function is missing, just provide
a no-op replacement.
Moved declaration of various slapd globals from main.c to init.c
so they can be shared with ldbm tools.
1999-01-11 18:36:40 +00:00

94 lines
1.7 KiB
C

#include "portable.h"
#include <stdio.h>
#include <stdlib.h>
#include <ac/string.h>
#include <ac/socket.h>
#include <ac/unistd.h> /* Get read() */
#include "lber.h"
#include "ldap.h"
#include "ldif.h"
static void
usage( char *name )
{
fprintf( stderr, "usage: %s [-b] <attrtype>\n", name );
exit( 1 );
}
int
main( int argc, char **argv )
{
char buf[BUFSIZ];
char *type, *out;
int len, binary = 0;
if (argc < 2 || argc > 3 ) {
usage( argv[0] );
}
if ( argc == 3 ) {
if ( strcmp( argv[1], "-b" ) != 0 ) {
usage( argv[0] );
} else {
binary = 1;
type = argv[2];
}
} else {
if ( strcmp( argv[1], "-b" ) == 0 ) {
usage( argv[0] );
}
type = argv[1];
}
/* if the -b flag was used, read single binary value from stdin */
if ( binary ) {
char *val;
int nread, max, cur;
if (( val = (char *) malloc( BUFSIZ )) == NULL ) {
perror( "malloc" );
exit( 1 );
}
max = BUFSIZ;
cur = 0;
while ( (nread = read( 0, buf, BUFSIZ )) != 0 ) {
if ( nread + cur > max ) {
max += BUFSIZ;
if (( val = (char *) realloc( val, max )) ==
NULL ) {
perror( "realloc" );
exit( 1 );
}
}
memcpy( val + cur, buf, nread );
cur += nread;
}
if (( out = ldif_type_and_value( type, val, cur )) == NULL ) {
perror( "ldif_type_and_value" );
exit( 1 );
}
fputs( out, stdout );
free( out );
free( val );
exit( 0 );
}
/* not binary: one value per line... */
while ( fgets( buf, sizeof(buf), stdin ) != NULL ) {
if( buf[len=strlen(buf)] == '\n') buf[len] = '\0';
if (( out = ldif_type_and_value( type, buf, strlen( buf ) ))
== NULL ) {
perror( "ldif_type_and_value" );
exit( 1 );
}
fputs( out, stdout );
free( out );
}
exit( 0 );
}