Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
core
tarantool
Commits
acbc6833
Commit
acbc6833
authored
11 years ago
by
Roman Tsisyk
Browse files
Options
Downloads
Patches
Plain Diff
Rewrite HashIndex using tuple_compare
parent
583d56ad
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/mhash.h
+23
-0
23 additions, 0 deletions
include/mhash.h
src/box/hash_index.cc
+205
-612
205 additions, 612 deletions
src/box/hash_index.cc
src/box/hash_index.h
+12
-10
12 additions, 10 deletions
src/box/hash_index.h
src/box/index.cc
+1
-1
1 addition, 1 deletion
src/box/index.cc
with
241 additions
and
623 deletions
include/mhash.h
+
23
−
0
View file @
acbc6833
...
...
@@ -170,6 +170,27 @@ _mh(next_slot)(mh_int_t slot, mh_int_t inc, mh_int_t size)
return
slot
>=
size
?
slot
-
size
:
slot
;
}
#if defined(mh_hash_key) && defined(mh_eq_key)
static
inline
mh_int_t
_mh
(
find
)(
struct
_mh
(
t
)
*
h
,
const
mh_key_t
*
key
,
mh_arg_t
arg
)
{
(
void
)
arg
;
mh_int_t
k
=
mh_hash_key
(
key
,
arg
);
mh_int_t
i
=
k
%
h
->
n_buckets
;
mh_int_t
inc
=
1
+
k
%
(
h
->
n_buckets
-
1
);
for
(;;)
{
if
((
mh_exist
(
h
,
i
)
&&
mh_eq_key
(
key
,
mh_node
(
h
,
i
),
arg
)))
return
i
;
if
(
!
mh_dirty
(
h
,
i
))
return
h
->
n_buckets
;
i
=
_mh
(
next_slot
)(
i
,
inc
,
h
->
n_buckets
);
}
}
#endif
static
inline
mh_int_t
_mh
(
get
)(
struct
_mh
(
t
)
*
h
,
const
mh_node_t
*
node
,
mh_arg_t
arg
)
...
...
@@ -506,7 +527,9 @@ _mh(dump)(struct _mh(t) *h)
#undef mh_arg_t
#undef mh_name
#undef mh_hash
#undef mh_hash_key
#undef mh_eq
#undef mh_eqKey
#undef mh_node
#undef mh_dirty
#undef mh_place
...
...
This diff is collapsed.
Click to expand it.
src/box/hash_index.cc
+
205
−
612
View file @
acbc6833
This diff is collapsed.
Click to expand it.
src/box/hash_index.h
+
12
−
10
View file @
acbc6833
...
...
@@ -31,33 +31,35 @@
#include
"index.h"
struct
mh_index_t
;
class
HashIndex
:
public
Index
{
public:
static
HashIndex
*
factory
(
struct
key_def
*
key_def
,
struct
space
*
space
);
HashIndex
(
struct
key_def
*
key_def
,
struct
space
*
space
);
~
HashIndex
();
virtual
void
beginBuild
();
virtual
void
buildNext
(
struct
tuple
*
tuple
);
virtual
void
endBuild
();
virtual
void
build
(
Index
*
pk
);
virtual
size_t
size
()
const
=
0
;
virtual
size_t
size
()
const
;
virtual
struct
tuple
*
min
()
const
;
virtual
struct
tuple
*
max
()
const
;
virtual
struct
tuple
*
random
(
u32
rnd
)
const
=
0
;
virtual
struct
tuple
*
findByKey
(
const
char
*
key
,
u32
part_count
)
const
=
0
;
virtual
struct
tuple
*
random
(
u32
rnd
)
const
;
virtual
struct
tuple
*
findByKey
(
const
char
*
key
,
u32
part_count
)
const
;
virtual
struct
tuple
*
replace
(
struct
tuple
*
old_tuple
,
struct
tuple
*
new_tuple
,
enum
dup_replace_mode
mode
)
=
0
;
enum
dup_replace_mode
mode
);
virtual
struct
iterator
*
allocIterator
()
const
=
0
;
virtual
struct
iterator
*
allocIterator
()
const
;
virtual
void
initIterator
(
struct
iterator
*
iterator
,
enum
iterator_type
type
,
const
char
*
key
,
u32
part_count
)
const
=
0
;
const
char
*
key
,
u32
part_count
)
const
;
virtual
void
reserve
(
u32
n_tuples
);
virtual
void
reserve
(
u32
n_tuples
)
=
0
;
protected:
struct
mh_index_t
*
hash
;
};
#endif
/* TARANTOOL_BOX_HASH_INDEX_H_INCLUDED */
This diff is collapsed.
Click to expand it.
src/box/index.cc
+
1
−
1
View file @
acbc6833
...
...
@@ -143,7 +143,7 @@ Index::factory(enum index_type type, struct key_def *key_def, struct space *spac
{
switch
(
type
)
{
case
HASH
:
return
HashIndex
::
factory
(
key_def
,
space
);
return
new
HashIndex
(
key_def
,
space
);
case
TREE
:
return
TreeIndex
::
factory
(
key_def
,
space
);
case
BITSET
:
...
...
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