summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2008-07-23 14:59:56 +0000
committerRich Megginson <rmeggins@redhat.com>2008-07-23 14:59:56 +0000
commit1ff1bd5eebed07a0720351514ffc7409fd3e367b (patch)
tree114cf1ecf262717ba6d8df2988102fbb41ceb567
parent04f8cfd493dd9fb10ed98778543edb5ba69e4476 (diff)
downloadds-1ff1bd5eebed07a0720351514ffc7409fd3e367b.tar.gz
ds-1ff1bd5eebed07a0720351514ffc7409fd3e367b.tar.xz
ds-1ff1bd5eebed07a0720351514ffc7409fd3e367b.zip
Resolves: bug 447353
Bug Description: RFE: search optimization and single character substring searches Reviewed by: nhosoi (Thanks!) Fix Description: When generating the index keys for a filter assertion, the key length must correspond to the position of the key in the assertion string. That is, the filter mail=jreu* should generate the first key based on the key len for the initial key, then the remainder of the keys based on the substring key len. So if the initial key len is 2, and the middle key len is 3, these keys should be generated - "^j", "jre", "reu". Noriko found a problem with my original patch - I needed to increment the nsubs number rather than simple assignment. With this patch, the filter tests and spaceinsens tests pass. Platforms tested: Fedora 8 Flag Day: no Doc impact: no
-rw-r--r--ldap/servers/plugins/syntaxes/string.c51
-rw-r--r--ldap/servers/plugins/syntaxes/syntax.h4
2 files changed, 35 insertions, 20 deletions
diff --git a/ldap/servers/plugins/syntaxes/string.c b/ldap/servers/plugins/syntaxes/string.c
index 7f8aefcc..e1aebfdb 100644
--- a/ldap/servers/plugins/syntaxes/string.c
+++ b/ldap/servers/plugins/syntaxes/string.c
@@ -55,7 +55,7 @@
static int string_filter_approx( struct berval *bvfilter,
Slapi_Value **bvals, Slapi_Value **retVal );
static void substring_comp_keys( Slapi_Value ***ivals, int *nsubs, char *str,
- int prepost, int syntax, char *comp_buf, int substrlen );
+ int lenstr, int prepost, int syntax, char *comp_buf, int *substrlens );
int
string_filter_ava( struct berval *bvfilter, Slapi_Value **bvals, int syntax,
@@ -605,6 +605,7 @@ string_assertion2keys_sub(
)
{
int nsubs, i, len;
+ int initiallen = 0, finallen = 0;
int *substrlens = NULL;
int localsublens[3] = {SUBBEGIN, SUBMIDDLE, SUBEND};/* default values */
int maxsublen;
@@ -637,8 +638,13 @@ string_assertion2keys_sub(
nsubs = 0;
if ( initial != NULL ) {
value_normalize( initial, syntax, 0 /* do not trim leading blanks */ );
- if ( strlen( initial ) > substrlens[INDEX_SUBSTRBEGIN] - 2 ) {
- nsubs += strlen( initial ) - substrlens[INDEX_SUBSTRBEGIN] + 2;
+ initiallen = strlen( initial );
+ if ( initiallen > substrlens[INDEX_SUBSTRBEGIN] - 2 ) {
+ nsubs += 1; /* for the initial begin string key */
+ /* the rest of the sub keys are "any" keys for this case */
+ if ( initiallen >= substrlens[INDEX_SUBSTRMIDDLE] ) {
+ nsubs += initiallen - substrlens[INDEX_SUBSTRMIDDLE] + 1;
+ }
} else {
initial = NULL; /* save some work later */
}
@@ -652,8 +658,13 @@ string_assertion2keys_sub(
}
if ( final != NULL ) {
value_normalize( final, syntax, 0 /* do not trim leading blanks */ );
- if ( strlen( final ) > substrlens[INDEX_SUBSTREND] - 2 ) {
- nsubs += strlen( final ) - substrlens[INDEX_SUBSTREND] + 2;
+ finallen = strlen( final );
+ if ( finallen > substrlens[INDEX_SUBSTREND] - 2 ) {
+ nsubs += 1; /* for the final end string key */
+ /* the rest of the sub keys are "any" keys for this case */
+ if ( finallen >= substrlens[INDEX_SUBSTRMIDDLE] ) {
+ nsubs += finallen - substrlens[INDEX_SUBSTRMIDDLE] + 1;
+ }
} else {
final = NULL; /* save some work later */
}
@@ -675,19 +686,20 @@ string_assertion2keys_sub(
nsubs = 0;
comp_buf = (char *)slapi_ch_malloc(maxsublen + 1);
if ( initial != NULL ) {
- substring_comp_keys( ivals, &nsubs, initial, '^', syntax,
- comp_buf, substrlens[INDEX_SUBSTRBEGIN] );
+ substring_comp_keys( ivals, &nsubs, initial, initiallen, '^', syntax,
+ comp_buf, substrlens );
}
for ( i = 0; any != NULL && any[i] != NULL; i++ ) {
- if ( strlen( any[i] ) < substrlens[INDEX_SUBSTRMIDDLE] ) {
+ len = strlen( any[i] );
+ if ( len < substrlens[INDEX_SUBSTRMIDDLE] ) {
continue;
}
- substring_comp_keys( ivals, &nsubs, any[i], 0, syntax,
- comp_buf, substrlens[INDEX_SUBSTRMIDDLE] );
+ substring_comp_keys( ivals, &nsubs, any[i], len, 0, syntax,
+ comp_buf, substrlens );
}
if ( final != NULL ) {
- substring_comp_keys( ivals, &nsubs, final, '$', syntax,
- comp_buf, substrlens[INDEX_SUBSTREND] );
+ substring_comp_keys( ivals, &nsubs, final, finallen, '$', syntax,
+ comp_buf, substrlens );
}
(*ivals)[nsubs] = NULL;
slapi_ch_free_string(&comp_buf);
@@ -700,25 +712,26 @@ substring_comp_keys(
Slapi_Value ***ivals,
int *nsubs,
char *str,
+ int lenstr,
int prepost,
int syntax,
char *comp_buf,
- int substrlen
+ int *substrlens
)
{
- int i, len;
+ int i, substrlen;
char *p;
PR_ASSERT(NULL != comp_buf);
+ PR_ASSERT(NULL != substrlens);
LDAPDebug( LDAP_DEBUG_TRACE, "=> substring_comp_keys (%s) %d\n",
str, prepost, 0 );
- len = strlen( str );
-
/* prepend ^ for initial substring */
if ( prepost == '^' )
{
+ substrlen = substrlens[INDEX_SUBSTRBEGIN];
comp_buf[0] = '^';
for ( i = 0; i < substrlen - 1; i++ )
{
@@ -729,7 +742,8 @@ substring_comp_keys(
(*nsubs)++;
}
- for ( p = str; p < (str + len - substrlen + 1); p++ )
+ substrlen = substrlens[INDEX_SUBSTRMIDDLE];
+ for ( p = str; p < (str + lenstr - substrlen + 1); p++ )
{
for ( i = 0; i < substrlen; i++ )
{
@@ -742,7 +756,8 @@ substring_comp_keys(
if ( prepost == '$' )
{
- p = str + len - substrlen + 1;
+ substrlen = substrlens[INDEX_SUBSTREND];
+ p = str + lenstr - substrlen + 1;
for ( i = 0; i < substrlen - 1; i++ )
{
comp_buf[i] = p[i];
diff --git a/ldap/servers/plugins/syntaxes/syntax.h b/ldap/servers/plugins/syntaxes/syntax.h
index 3db32f44..fc7a2db9 100644
--- a/ldap/servers/plugins/syntaxes/syntax.h
+++ b/ldap/servers/plugins/syntaxes/syntax.h
@@ -58,9 +58,9 @@
#define SYNTAX_SI 16 /* space insensitive: used with SYNTAX_CIS */
#define SYNTAX_INT 32 /* INTEGER */
-#define SUBBEGIN 2
+#define SUBBEGIN 3
#define SUBMIDDLE 3
-#define SUBEND 2
+#define SUBEND 3
#ifndef MIN
#define MIN( a, b ) (a < b ? a : b )