Current section
Files
Jump to
Current section
Files
src/lasp_bench_driver_nullfile.erl
%% -------------------------------------------------------------------
%%
%% lasp_bench: Benchmarking Suite
%%
%% Copyright (c) 2009-2010 Basho Techonologies
%%
%% 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.
%%
%% -------------------------------------------------------------------
-module(lasp_bench_driver_nullfile).
-export([new/1,
run/4]).
-include("lasp_bench.hrl").
%% ====================================================================
%% API
%% ====================================================================
new(_Id) ->
{ok, FH} = file:open("/tmp/null/" ++ integer_to_list(_Id), [write]),
{ok, FH}.
run(get, KeyGen, _ValueGen, State) ->
_Key = KeyGen(),
io:format(State, "~p ", [_Key]),
{ok, State};
run(put, KeyGen, ValueGen, State) ->
_Key = KeyGen(),
ValueGen(),
io:format(State, "~p ", [_Key]),
{ok, State};
run(delete, KeyGen, _ValueGen, State) ->
_Key = KeyGen(),
io:format(State, "~p ", [_Key]),
{ok, State};
run(an_error, KeyGen, _ValueGen, State) ->
_Key = KeyGen(),
io:format(State, "~p ", [_Key]),
{error, went_wrong, State};
run(another_error, KeyGen, _ValueGen, State) ->
_Key = KeyGen(),
io:format(State, "~p ", [_Key]),
{error, {bad, things, happened}, State}.