openldap/servers/slapd/tools/ldif.c
Kurt Zeilenga a8a05cbe48 Update NT port with support for -lldap_r and -lldbm.
Also add initial slapd .dsw/.dsp files.  Still needs work (mainly syslog).
1999-03-01 22:37:05 +00:00

100 lines
1.8 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() */
#ifdef HAVE_IO_H
#include <io.h>
#endif
#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 );
return( 0 ); /* NOT REACHED */
}