Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jaak Ristioja
OpenLDAP
Commits
b672620e
Commit
b672620e
authored
22 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
Simplify indexer - remove redundant dbname parameter
parent
880b9f15
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/back-bdb/index.c
+10
-18
10 additions, 18 deletions
servers/slapd/back-bdb/index.c
with
10 additions
and
18 deletions
servers/slapd/back-bdb/index.c
+
10
−
18
View file @
b672620e
...
...
@@ -22,7 +22,6 @@ static struct berval presence_key = {LUTIL_HASH_BYTES, presence_keyval};
static
slap_mask_t
index_mask
(
Backend
*
be
,
AttributeDescription
*
desc
,
char
**
dbname
,
struct
berval
*
atname
)
{
AttributeType
*
at
;
...
...
@@ -32,7 +31,6 @@ static slap_mask_t index_mask(
if
(
mask
)
{
*
atname
=
desc
->
ad_cname
;
*
dbname
=
desc
->
ad_cname
.
bv_val
;
return
mask
;
}
...
...
@@ -45,7 +43,6 @@ static slap_mask_t index_mask(
if
(
mask
&&
(
mask
^
SLAP_INDEX_NOTAGS
)
)
{
*
atname
=
desc
->
ad_type
->
sat_cname
;
*
dbname
=
desc
->
ad_type
->
sat_cname
.
bv_val
;
return
mask
;
}
}
...
...
@@ -59,7 +56,6 @@ static slap_mask_t index_mask(
if
(
mask
&&
(
mask
^
SLAP_INDEX_NOSUBTYPES
)
)
{
*
atname
=
at
->
sat_cname
;
*
dbname
=
at
->
sat_cname
.
bv_val
;
return
mask
;
}
}
...
...
@@ -72,10 +68,9 @@ int bdb_index_is_indexed(
AttributeDescription
*
desc
)
{
slap_mask_t
mask
;
char
*
dbname
;
struct
berval
prefix
;
mask
=
index_mask
(
be
,
desc
,
&
dbname
,
&
prefix
);
mask
=
index_mask
(
be
,
desc
,
&
prefix
);
if
(
mask
==
0
)
{
return
LDAP_INAPPROPRIATE_MATCHING
;
...
...
@@ -95,15 +90,14 @@ int bdb_index_param(
int
rc
;
slap_mask_t
mask
;
DB
*
db
;
char
*
dbname
;
mask
=
index_mask
(
be
,
desc
,
&
dbname
,
prefixp
);
mask
=
index_mask
(
be
,
desc
,
prefixp
);
if
(
mask
==
0
)
{
return
LDAP_INAPPROPRIATE_MATCHING
;
}
rc
=
bdb_db_cache
(
be
,
NULL
,
dbname
,
&
db
);
rc
=
bdb_db_cache
(
be
,
NULL
,
prefixp
->
bv_val
,
&
db
);
if
(
rc
!=
LDAP_SUCCESS
)
{
return
rc
;
...
...
@@ -150,7 +144,6 @@ done:
static
int
indexer
(
Backend
*
be
,
DB_TXN
*
txn
,
char
*
dbname
,
struct
berval
*
atname
,
BerVarray
vals
,
ID
id
,
...
...
@@ -165,16 +158,17 @@ static int indexer(
assert
(
mask
);
rc
=
bdb_db_cache
(
be
,
txn
,
db
name
,
&
db
);
rc
=
bdb_db_cache
(
be
,
txn
,
at
name
->
bv_val
,
&
db
);
if
(
rc
!=
LDAP_SUCCESS
)
{
#ifdef NEW_LOGGING
LDAP_LOG
(
INDEX
,
ERR
,
"bdb_index_read: Could not open DB %s
\n
"
,
dbname
,
0
,
0
);
"bdb_index_read: Could not open DB %s
\n
"
,
atname
->
bv_val
,
0
,
0
);
#else
Debug
(
LDAP_DEBUG_ANY
,
"
<=
bdb_index_read
NULL (c
ould not open %s
)
\n
"
,
db
name
,
0
,
0
);
"bdb_index_read
: C
ould not open
DB
%s
\n
"
,
at
name
->
bv_val
,
0
,
0
);
#endif
return
LDAP_OTHER
;
}
...
...
@@ -285,8 +279,7 @@ static int index_at_values(
}
if
(
mask
)
{
rc
=
indexer
(
be
,
txn
,
type
->
sat_cname
.
bv_val
,
&
type
->
sat_cname
,
rc
=
indexer
(
be
,
txn
,
&
type
->
sat_cname
,
vals
,
id
,
op
,
mask
);
...
...
@@ -304,8 +297,7 @@ static int index_at_values(
}
if
(
mask
)
{
rc
=
indexer
(
be
,
txn
,
desc
->
ad_cname
.
bv_val
,
&
desc
->
ad_cname
,
rc
=
indexer
(
be
,
txn
,
&
desc
->
ad_cname
,
vals
,
id
,
op
,
mask
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment