2012-04-15 14:35:39 +00:00
|
|
|
%% ----------------------------------------------------------------------------
|
|
|
|
%%
|
2012-05-07 15:22:55 +00:00
|
|
|
%% hanoidb: LSM-trees (Log-Structured Merge Trees) Indexed Storage
|
2012-04-15 14:35:39 +00:00
|
|
|
%%
|
|
|
|
%% Copyright 2011-2012 (c) Trifork A/S. All Rights Reserved.
|
|
|
|
%% http://trifork.com/ info@trifork.com
|
|
|
|
%%
|
|
|
|
%% Copyright 2012 (c) Basho Technologies, Inc. All Rights Reserved.
|
|
|
|
%% http://basho.com/ info@basho.com
|
|
|
|
%%
|
|
|
|
%% This file is provided to you under the Apache License, Version 2.0 (the
|
|
|
|
%% "License"); you may not use this file except in compliance with the License.
|
|
|
|
%% You may obtain a copy of the License at
|
|
|
|
%%
|
|
|
|
%% http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
%%
|
|
|
|
%% Unless required by applicable law or agreed to in writing, software
|
|
|
|
%% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
%% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
%% License for the specific language governing permissions and limitations
|
|
|
|
%% under the License.
|
|
|
|
%%
|
|
|
|
%% ----------------------------------------------------------------------------
|
|
|
|
|
2012-01-10 22:04:13 +00:00
|
|
|
|
2014-11-20 23:41:40 +00:00
|
|
|
%% smallest levels are 1024 entries
|
|
|
|
-define(TOP_LEVEL, 10).
|
2012-01-20 09:09:54 +00:00
|
|
|
-define(BTREE_SIZE(Level), (1 bsl (Level))).
|
2012-07-12 20:54:15 +00:00
|
|
|
-define(FILE_FORMAT, <<"HAN2">>).
|
2012-06-25 06:22:02 +00:00
|
|
|
-define(FIRST_BLOCK_POS, byte_size(?FILE_FORMAT)).
|
2012-01-10 22:04:13 +00:00
|
|
|
|
|
|
|
-define(TOMBSTONE, 'deleted').
|
|
|
|
|
2012-01-22 23:51:31 +00:00
|
|
|
-define(KEY_IN_FROM_RANGE(Key,Range),
|
2012-05-07 15:22:55 +00:00
|
|
|
((Range#key_range.from_inclusive andalso
|
|
|
|
(Range#key_range.from_key =< Key))
|
2012-01-22 23:51:31 +00:00
|
|
|
orelse
|
2012-05-07 15:22:55 +00:00
|
|
|
(Range#key_range.from_key < Key))).
|
2012-01-22 23:51:31 +00:00
|
|
|
|
|
|
|
-define(KEY_IN_TO_RANGE(Key,Range),
|
2012-05-07 15:22:55 +00:00
|
|
|
((Range#key_range.to_key == undefined)
|
2012-01-22 23:51:31 +00:00
|
|
|
orelse
|
2012-05-07 15:22:55 +00:00
|
|
|
((Range#key_range.to_inclusive andalso
|
|
|
|
(Key =< Range#key_range.to_key))
|
2012-01-22 23:51:31 +00:00
|
|
|
orelse
|
2012-05-07 15:22:55 +00:00
|
|
|
(Key < Range#key_range.to_key)))).
|
2012-01-22 23:51:31 +00:00
|
|
|
|
|
|
|
-define(KEY_IN_RANGE(Key,Range),
|
2012-01-23 09:41:03 +00:00
|
|
|
(?KEY_IN_FROM_RANGE(Key,Range) andalso ?KEY_IN_TO_RANGE(Key,Range))).
|
2012-09-26 13:11:55 +00:00
|
|
|
|
|
|
|
-record(nursery, { log_file :: file:fd(),
|
|
|
|
dir :: string(),
|
2014-10-21 14:03:53 +00:00
|
|
|
cache :: gb_trees:tree(binary(), binary()),
|
2012-09-26 13:11:55 +00:00
|
|
|
total_size=0 :: integer(),
|
|
|
|
count=0 :: integer(),
|
|
|
|
last_sync=now() :: erlang:timestamp(),
|
2014-11-20 23:41:40 +00:00
|
|
|
min_level :: integer(),
|
2012-09-26 13:11:55 +00:00
|
|
|
max_level :: integer(),
|
|
|
|
config=[] :: [{atom(), term()}],
|
|
|
|
step=0 :: integer(),
|
|
|
|
merge_done=0 :: integer()}).
|
|
|
|
|
|
|
|
-type kventry() :: { key(), expvalue() } | [ kventry() ].
|
|
|
|
-type key() :: binary().
|
|
|
|
-type txspec() :: { delete, key() } | { put, key(), value() }.
|
|
|
|
-type value() :: ?TOMBSTONE | binary().
|
|
|
|
-type expiry() :: infinity | integer().
|
|
|
|
-type filepos() :: { non_neg_integer(), non_neg_integer() }.
|
|
|
|
-type expvalue() :: { value(), expiry() }
|
|
|
|
| value()
|
|
|
|
| filepos().
|
|
|
|
|
2014-11-28 15:15:20 +00:00
|
|
|
-ifdef(USE_EBLOOM).
|
|
|
|
-define(HANOI_BLOOM_TYPE, ebloom).
|
2014-10-21 14:03:53 +00:00
|
|
|
-else.
|
2014-11-28 15:15:20 +00:00
|
|
|
-define(HANOI_BLOOM_TYPE, sbloom).
|
2014-10-21 14:03:53 +00:00
|
|
|
-endif.
|
|
|
|
|
2014-11-28 15:15:20 +00:00
|
|
|
-define(BLOOM_NEW(Size), hanoidb_util:bloom_new(Size, ?HANOI_BLOOM_TYPE)).
|
|
|
|
-define(BLOOM_TO_BIN(Bloom), hanoidb_util:bloom_to_bin(Bloom)).
|
|
|
|
-define(BIN_TO_BLOOM(Bin, Fmt), hanoidb_util:bin_to_bloom(Bin, Fmt)).
|
|
|
|
-define(BLOOM_INSERT(Bloom, Key), hanoidb_util:bloom_insert(Bloom, Key)).
|
|
|
|
-define(BLOOM_CONTAINS(Bloom, Key), hanoidb_util:bloom_contains(Bloom, Key)).
|
|
|
|
|
2014-11-28 15:21:59 +00:00
|
|
|
%% tags used in the on-disk representation
|
|
|
|
-define(TAG_KV_DATA, 16#80).
|
|
|
|
-define(TAG_DELETED, 16#81).
|
|
|
|
-define(TAG_POSLEN32, 16#82).
|
|
|
|
-define(TAG_TRANSACT, 16#83).
|
|
|
|
-define(TAG_KV_DATA2, 16#84).
|
|
|
|
-define(TAG_DELETED2, 16#85).
|
|
|
|
-define(TAG_END, 16#FF).
|
|
|
|
|
|
|
|
|