openldap/libraries/libldap/ftest.c
2002-01-02 18:16:09 +00:00

113 lines
2.0 KiB
C

/* $OpenLDAP$ */
/*
* Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
/* OpenLDAP Filter API Test */
#include "portable.h"
#include <ac/stdlib.h>
#include <ac/string.h>
#include <ac/unistd.h>
#include <stdio.h>
#include <ldap.h>
#include "ldap-int.h"
#include "ldif.h"
#include "lutil.h"
#include "lutil_ldap.h"
#include "ldap_defaults.h"
static int filter2ber( char *filter );
int usage()
{
fprintf( stderr, "usage:\n"
"\tftest [-d n] filter\n" );
return EXIT_FAILURE;
}
int
main( int argc, char *argv[] )
{
int i;
int debug=0;
char *filter=NULL;
while( (i = getopt( argc, argv, "Aa:Ss:" "d:" )) != EOF ) {
switch ( i ) {
case 'd':
debug = atoi( optarg );
break;
default:
fprintf( stderr, "ftest: unrecognized option -%c\n",
optopt );
return usage();
}
}
if ( debug ) {
if ( ber_set_option( NULL, LBER_OPT_DEBUG_LEVEL, &debug )
!= LBER_OPT_SUCCESS )
{
fprintf( stderr, "Could not set LBER_OPT_DEBUG_LEVEL %d\n",
debug );
}
if ( ldap_set_option( NULL, LDAP_OPT_DEBUG_LEVEL, &debug )
!= LDAP_OPT_SUCCESS )
{
fprintf( stderr, "Could not set LDAP_OPT_DEBUG_LEVEL %d\n",
debug );
}
}
if( argc - optind > 1 ) {
return usage();
} else if ( argc - optind != 1 ) {
return usage();
}
return filter2ber( strdup( argv[optind] ) );
}
static int filter2ber( char *filter )
{
int rc;
struct berval *bv = NULL;
BerElement *ber;
printf( "Filter: %s\n", filter );
ber = ber_alloc_t( LBER_USE_DER );
if( ber == NULL ) {
perror( "ber_alloc_t" );
return EXIT_FAILURE;
}
rc = ldap_int_put_filter( ber, filter );
if( rc < 0 ) {
fprintf( stderr, "Filter error!\n");
return EXIT_FAILURE;
}
rc = ber_flatten( ber, &bv );
if( rc < 0 ) {
perror( "ber_flatten" );
return EXIT_FAILURE;
}
printf( "BER encoding (len=%ld):\n", (long) bv->bv_len );
ber_bprint( bv->bv_val, bv->bv_len );
ber_free( ber, 0 );
ber_bvfree( bv );
return EXIT_SUCCESS;
}