From cc56ba04fb828db593fa376883e38d63f24a132e Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Tue, 9 Aug 2011 02:22:28 -0700 Subject: [PATCH] Use BDB cursor terminology --- libraries/libmdb/mdb.c | 8 ++++---- libraries/libmdb/mdb.h | 10 ++++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/libraries/libmdb/mdb.c b/libraries/libmdb/mdb.c index 5d6606676e..aa7f3d8ea6 100644 --- a/libraries/libmdb/mdb.c +++ b/libraries/libmdb/mdb.c @@ -1774,7 +1774,7 @@ mdb_cursor_set(MDB_cursor *cursor, MDB_val *key, MDB_val *data, top = CURSOR_TOP(cursor); leaf = mdb_search_node(cursor->mc_txn, cursor->mc_dbi, mpp.mp_page, key, exactp, &top->mp_ki); if (exactp != NULL && !*exactp) { - /* MDB_CURSOR_EXACT specified and not an exact match. */ + /* MDB_SET specified and not an exact match. */ return ENOENT; } @@ -1863,13 +1863,13 @@ mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data, assert(cursor); switch (op) { - case MDB_CURSOR: - case MDB_CURSOR_EXACT: + case MDB_SET: + case MDB_SET_RANGE: while (CURSOR_TOP(cursor) != NULL) cursor_pop_page(cursor); if (key == NULL || key->mv_size == 0 || key->mv_size > MAXKEYSIZE) { rc = EINVAL; - } else if (op == MDB_CURSOR_EXACT) + } else if (op == MDB_SET) rc = mdb_cursor_set(cursor, key, data, &exact); else rc = mdb_cursor_set(cursor, key, data, NULL); diff --git a/libraries/libmdb/mdb.h b/libraries/libmdb/mdb.h index 4e14a187f9..566a32cff9 100644 --- a/libraries/libmdb/mdb.h +++ b/libraries/libmdb/mdb.h @@ -53,12 +53,14 @@ typedef void (MDB_rel_func)(void *ptr, void *oldptr); #define MDB_NOOVERWRITE 1 typedef enum MDB_cursor_op { /* cursor operations */ - MDB_CURSOR, /* position at given key */ - MDB_CURSOR_EXACT, /* position at key, or fail */ + MDB_SET, /* position at key, or fail */ + MDB_SET_RANGE, /* position at given key */ MDB_FIRST, MDB_NEXT, - MDB_LAST, /* not implemented */ - MDB_PREV /* not implemented */ + MDB_LAST, + MDB_PREV, /* not implemented */ + MDB_GET_BOTH, /* position at key/data */ + MDB_GET_BOTH_RANGE /* position at key, nearest data */ } MDB_cursor_op; /* return codes */ -- 2.39.2