openldap/servers/slapd/index.c
2004-01-01 19:15:16 +00:00

53 lines
1.5 KiB
C

/* index.c - index utilities */
/* $OpenLDAP$ */
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 1998-2004 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include "slap.h"
int slap_str2index( const char *str, slap_mask_t *idx )
{
if ( strcasecmp( str, "pres" ) == 0 ) {
*idx = SLAP_INDEX_PRESENT;
} else if ( strcasecmp( str, "eq" ) == 0 ) {
*idx = SLAP_INDEX_EQUALITY;
} else if ( strcasecmp( str, "approx" ) == 0 ) {
*idx = SLAP_INDEX_APPROX;
} else if ( strcasecmp( str, "subinitial" ) == 0 ) {
*idx = SLAP_INDEX_SUBSTR_INITIAL;
} else if ( strcasecmp( str, "subany" ) == 0 ) {
*idx = SLAP_INDEX_SUBSTR_ANY;
} else if ( strcasecmp( str, "subfinal" ) == 0 ) {
*idx = SLAP_INDEX_SUBSTR_FINAL;
} else if ( strcasecmp( str, "substr" ) == 0 ||
strcasecmp( str, "sub" ) == 0 )
{
*idx = SLAP_INDEX_SUBSTR_DEFAULT;
} else if ( strcasecmp( str, "nolang" ) == 0 || /* backwards compat */
strcasecmp( str, "notags" ) == 0 ) {
*idx = SLAP_INDEX_NOTAGS;
} else if ( strcasecmp( str, "nosubtypes" ) == 0 ) {
*idx = SLAP_INDEX_NOSUBTYPES;
} else {
return LDAP_OTHER;
}
return LDAP_SUCCESS;
}