hanoidb/src/basho_bench_driver_hanoi.erl

121 lines
4 KiB
Erlang
Raw Normal View History

%% ----------------------------------------------------------------------------
%%
2012-04-21 19:20:39 +00:00
%% hanoi: LSM-trees (Log-Structured Merge Trees) Indexed Storage
%%
%% 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-04-21 19:20:39 +00:00
-module(basho_bench_driver_hanoi).
2012-01-05 14:28:39 +00:00
-record(state, { tree,
filename,
flags,
sync_interval,
last_sync }).
-export([new/1,
run/4]).
2012-04-21 19:20:39 +00:00
-include("hanoi.hrl").
2012-01-05 14:28:39 +00:00
-include_lib("basho_bench/include/basho_bench.hrl").
-record(btree_range, { from_key = <<>> :: binary(),
from_inclusive = true :: boolean(),
to_key :: binary() | undefined,
to_inclusive = false :: boolean(),
limit :: pos_integer() | undefined }).
2012-01-05 14:28:39 +00:00
%% ====================================================================
%% API
%% ====================================================================
new(_Id) ->
%% Make sure bitcask is available
2012-04-21 19:20:39 +00:00
case code:which(hanoi) of
2012-01-05 14:28:39 +00:00
non_existing ->
2012-04-21 19:20:39 +00:00
?FAIL_MSG("~s requires hanoi to be available on code path.\n",
2012-01-05 14:28:39 +00:00
[?MODULE]);
_ ->
ok
end,
%% Get the target directory
2012-04-21 19:20:39 +00:00
Dir = basho_bench_config:get(hanoi_dir, "."),
Filename = filename:join(Dir, "test.hanoi"),
2012-01-05 14:28:39 +00:00
%% Look for sync interval config
2012-04-21 19:20:39 +00:00
case basho_bench_config:get(hanoi_sync_interval, infinity) of
2012-01-05 14:28:39 +00:00
Value when is_integer(Value) ->
SyncInterval = Value;
infinity ->
SyncInterval = infinity
end,
%% Get any bitcask flags
2012-04-21 19:20:39 +00:00
case hanoi:open(Filename) of
2012-01-05 14:28:39 +00:00
{error, Reason} ->
2012-04-21 19:20:39 +00:00
?FAIL_MSG("Failed to open hanoi in ~s: ~p\n", [Filename, Reason]);
2012-01-05 14:28:39 +00:00
{ok, FBTree} ->
{ok, #state { tree = FBTree,
filename = Filename,
sync_interval = SyncInterval,
last_sync = os:timestamp() }}
end.
run(get, KeyGen, _ValueGen, State) ->
2012-04-21 19:20:39 +00:00
case hanoi:lookup(State#state.tree, KeyGen()) of
2012-01-05 14:28:39 +00:00
{ok, _Value} ->
{ok, State};
not_found ->
2012-01-05 14:28:39 +00:00
{ok, State};
{error, Reason} ->
{error, Reason}
end;
run(put, KeyGen, ValueGen, State) ->
2012-04-21 19:20:39 +00:00
case hanoi:put(State#state.tree, KeyGen(), ValueGen()) of
2012-01-05 14:28:39 +00:00
ok ->
{ok, State};
{error, Reason} ->
{error, Reason}
end;
run(delete, KeyGen, _ValueGen, State) ->
2012-04-21 19:20:39 +00:00
case hanoi:delete(State#state.tree, KeyGen()) of
2012-01-05 14:28:39 +00:00
ok ->
{ok, State};
{error, Reason} ->
{error, Reason}
end;
run(fold_100, KeyGen, _ValueGen, State) ->
[From,To] = lists:usort([KeyGen(), KeyGen()]),
2012-04-21 19:20:39 +00:00
case hanoi:sync_fold_range(State#state.tree,
fun(_Key,_Value,Count) ->
Count+1
end,
0,
#btree_range{ from_key=From,
to_key=To,
limit=100 }) of
Count when Count >= 0; Count =< 100 ->
{ok,State};
Count ->
{error, {bad_fold_count, Count}}
2012-01-05 14:28:39 +00:00
end.