2015-06-22 08:49:07 +00:00
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2007-2015 Basho Technologies, Inc. All Rights Reserved.
|
|
|
|
%%
|
|
|
|
%% 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.
|
|
|
|
%%
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
|
|
|
|
%% @doc Machi PB (Protocol Buffers) high-level client (prototype, API TBD)
|
2015-06-23 05:08:10 +00:00
|
|
|
%%
|
2015-06-23 08:17:14 +00:00
|
|
|
%% At the moment, this is brittle-prototype-quality code: the API is not yet
|
2015-06-23 05:08:10 +00:00
|
|
|
%% fully specified, there is very little error handling with respect
|
|
|
|
%% to a single socket connection, and there is no code to deal with
|
|
|
|
%% multiple connections/load balancing/error handling to several/all
|
|
|
|
%% Machi cluster servers.
|
2015-06-22 08:49:07 +00:00
|
|
|
|
|
|
|
-module(machi_pb_high_client).
|
|
|
|
|
|
|
|
-include("machi.hrl").
|
|
|
|
-include("machi_pb.hrl").
|
|
|
|
-include("machi_projection.hrl").
|
|
|
|
|
|
|
|
-define(DEFAULT_TIMEOUT, 10*1000).
|
|
|
|
|
|
|
|
-export([start_link/1, quit/1,
|
|
|
|
connected_p/1,
|
2015-06-22 09:16:15 +00:00
|
|
|
echo/2, echo/3,
|
2015-06-23 05:08:10 +00:00
|
|
|
auth/3, auth/4,
|
2015-06-23 06:13:13 +00:00
|
|
|
append_chunk/6, append_chunk/7,
|
2015-06-23 06:34:48 +00:00
|
|
|
write_chunk/5, write_chunk/6,
|
2015-06-23 07:53:06 +00:00
|
|
|
read_chunk/4, read_chunk/5,
|
2015-06-23 08:08:15 +00:00
|
|
|
checksum_list/2, checksum_list/3,
|
|
|
|
list_files/1, list_files/2
|
2015-06-23 05:08:10 +00:00
|
|
|
]).
|
2015-06-24 08:20:18 +00:00
|
|
|
-export([convert_general_status_code/1]).
|
2015-06-22 08:49:07 +00:00
|
|
|
|
|
|
|
%% gen_server callbacks
|
|
|
|
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
|
|
|
|
terminate/2, code_change/3]).
|
|
|
|
|
|
|
|
-record(state, {
|
|
|
|
server_list :: p_srvr_dict(),
|
2015-06-23 05:08:10 +00:00
|
|
|
sock :: 'undefined' | port(),
|
|
|
|
sock_id :: integer(),
|
|
|
|
count=0 :: non_neg_integer()
|
2015-06-22 08:49:07 +00:00
|
|
|
}).
|
|
|
|
|
|
|
|
start_link(P_srvr_list) ->
|
|
|
|
gen_server:start_link(?MODULE, [P_srvr_list], []).
|
|
|
|
|
|
|
|
quit(PidSpec) ->
|
|
|
|
gen_server:call(PidSpec, quit, infinity).
|
|
|
|
|
|
|
|
connected_p(PidSpec) ->
|
|
|
|
gen_server:call(PidSpec, connected_p, infinity).
|
|
|
|
|
|
|
|
echo(PidSpec, String) ->
|
|
|
|
echo(PidSpec, String, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
echo(PidSpec, String, Timeout) ->
|
|
|
|
send_sync(PidSpec, {echo, String}, Timeout).
|
|
|
|
|
2015-06-22 09:16:15 +00:00
|
|
|
%% TODO: auth() is not implemented. Auth requires SSL, and this client
|
2015-06-25 07:39:19 +00:00
|
|
|
%% doesn't support SSL yet. This is just a placeholder and reminder.
|
2015-06-22 09:16:15 +00:00
|
|
|
|
|
|
|
auth(PidSpec, User, Pass) ->
|
|
|
|
auth(PidSpec, User, Pass, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
auth(PidSpec, User, Pass, Timeout) ->
|
|
|
|
send_sync(PidSpec, {auth, User, Pass}, Timeout).
|
|
|
|
|
2015-06-23 05:08:10 +00:00
|
|
|
append_chunk(PidSpec, PlacementKey, Prefix, Chunk, CSum, ChunkExtra) ->
|
|
|
|
append_chunk(PidSpec, PlacementKey, Prefix, Chunk, CSum, ChunkExtra, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
append_chunk(PidSpec, PlacementKey, Prefix, Chunk, CSum, ChunkExtra, Timeout) ->
|
|
|
|
send_sync(PidSpec, {append_chunk, PlacementKey, Prefix, Chunk, CSum, ChunkExtra}, Timeout).
|
|
|
|
|
2015-06-23 06:13:13 +00:00
|
|
|
write_chunk(PidSpec, File, Offset, Chunk, CSum) ->
|
|
|
|
write_chunk(PidSpec, File, Offset, Chunk, CSum, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
write_chunk(PidSpec, File, Offset, Chunk, CSum, Timeout) ->
|
|
|
|
send_sync(PidSpec, {write_chunk, File, Offset, Chunk, CSum}, Timeout).
|
|
|
|
|
2015-06-23 06:34:48 +00:00
|
|
|
read_chunk(PidSpec, File, Offset, Size) ->
|
|
|
|
read_chunk(PidSpec, File, Offset, Size, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
read_chunk(PidSpec, File, Offset, Size, Timeout) ->
|
|
|
|
send_sync(PidSpec, {read_chunk, File, Offset, Size}, Timeout).
|
|
|
|
|
2015-06-23 07:53:06 +00:00
|
|
|
checksum_list(PidSpec, File) ->
|
|
|
|
checksum_list(PidSpec, File, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
checksum_list(PidSpec, File, Timeout) ->
|
|
|
|
send_sync(PidSpec, {checksum_list, File}, Timeout).
|
|
|
|
|
2015-06-23 08:08:15 +00:00
|
|
|
list_files(PidSpec) ->
|
|
|
|
list_files(PidSpec, ?DEFAULT_TIMEOUT).
|
|
|
|
|
|
|
|
list_files(PidSpec, Timeout) ->
|
|
|
|
send_sync(PidSpec, {list_files}, Timeout).
|
|
|
|
|
2015-06-22 08:49:07 +00:00
|
|
|
send_sync(PidSpec, Cmd, Timeout) ->
|
|
|
|
gen_server:call(PidSpec, {send_sync, Cmd}, Timeout).
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
init([P_srvr_list]) ->
|
|
|
|
{ok, #state{server_list=P_srvr_list}}.
|
|
|
|
|
|
|
|
handle_call(quit, _From, S) ->
|
|
|
|
{stop, normal, ok, S};
|
|
|
|
handle_call(connected_p, _From, #state{sock=Port}=S)
|
|
|
|
when is_port(Port) ->
|
|
|
|
{reply, true, S};
|
|
|
|
handle_call(connected_p, _From, #state{sock=undefined}=S) ->
|
|
|
|
S2 = try_connect(S),
|
|
|
|
{reply, is_port(S2#state.sock), S2};
|
|
|
|
handle_call({send_sync, _Cmd}, _From, #state{sock=undefined}=S) ->
|
|
|
|
{reply, not_connected, S};
|
|
|
|
handle_call({send_sync, Cmd}, _From, S) ->
|
2015-06-23 08:26:15 +00:00
|
|
|
{Reply, S2} = do_send_sync(Cmd, try_connect(S)),
|
2015-06-22 08:49:07 +00:00
|
|
|
{reply, Reply, S2};
|
|
|
|
handle_call(_Request, _From, S) ->
|
|
|
|
Reply = whaaaaaaaaaaaaaaaaaaaa,
|
|
|
|
{reply, Reply, S}.
|
|
|
|
|
|
|
|
handle_cast(_Msg, S) ->
|
|
|
|
{noreply, S}.
|
|
|
|
|
|
|
|
handle_info(_Info, S) ->
|
|
|
|
io:format(user, "~s:handle_info: ~p\n", [?MODULE, _Info]),
|
|
|
|
{noreply, S}.
|
|
|
|
|
|
|
|
terminate(_Reason, _S) ->
|
|
|
|
ok.
|
|
|
|
|
|
|
|
code_change(_OldVsn, S, _Extra) ->
|
|
|
|
{ok, S}.
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
|
|
|
|
|
|
|
try_connect(#state{sock=Sock}=S) when is_port(Sock) ->
|
|
|
|
S;
|
|
|
|
try_connect(#state{server_list=Ps}=S) ->
|
|
|
|
case lists:foldl(fun(_, Sock) when is_port(Sock) ->
|
|
|
|
Sock;
|
|
|
|
(P, _) ->
|
|
|
|
do_connect_to_pb_listener(P)
|
|
|
|
end, unused, Ps) of
|
|
|
|
Sock when is_port(Sock) ->
|
2015-06-23 05:08:10 +00:00
|
|
|
{id, Index} = erlang:port_info(Sock, id),
|
|
|
|
S#state{sock=Sock, sock_id=Index, count=0};
|
2015-06-22 08:49:07 +00:00
|
|
|
_Else ->
|
|
|
|
S
|
|
|
|
end.
|
|
|
|
|
|
|
|
do_connect_to_pb_listener(P) ->
|
|
|
|
try
|
|
|
|
{ok, Sock} = gen_tcp:connect(P#p_srvr.address, P#p_srvr.port,
|
2015-06-26 07:25:12 +00:00
|
|
|
?PB_PACKET_OPTS ++
|
|
|
|
[binary, {active, false}]),
|
2015-06-22 08:49:07 +00:00
|
|
|
Sock
|
|
|
|
catch _X:_Y ->
|
|
|
|
io:format(user, "\n~p ~p @ ~p\n", [_X, _Y, erlang:get_stacktrace()]),
|
|
|
|
bummer
|
|
|
|
end.
|
|
|
|
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync(Cmd, S) ->
|
|
|
|
do_send_sync2(Cmd, S).
|
|
|
|
|
|
|
|
do_send_sync2({echo, String}, #state{sock=Sock}=S) ->
|
2015-06-22 08:49:07 +00:00
|
|
|
try
|
|
|
|
ReqID = <<0>>,
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-22 08:49:07 +00:00
|
|
|
echo=#mpb_echoreq{message=String}},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
2015-06-22 09:16:15 +00:00
|
|
|
#mpb_response{req_id=ReqID, echo=Echo} when Echo /= undefined ->
|
|
|
|
{Echo#mpb_echoresp.message, S};
|
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S}
|
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S}
|
|
|
|
end;
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync2({auth, User, Pass}, #state{sock=Sock}=S) ->
|
2015-06-22 09:16:15 +00:00
|
|
|
try
|
|
|
|
ReqID = <<0>>,
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-22 09:16:15 +00:00
|
|
|
auth=#mpb_authreq{user=User, password=Pass}},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
|
|
|
#mpb_response{req_id=ReqID, auth=Auth} when Auth /= undefined ->
|
|
|
|
{Auth#mpb_authresp.code, S};
|
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S}
|
2015-06-22 08:49:07 +00:00
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S}
|
2015-06-23 05:08:10 +00:00
|
|
|
end;
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync2({append_chunk, PlacementKey, Prefix, Chunk, CSum, ChunkExtra},
|
2015-06-23 05:08:10 +00:00
|
|
|
#state{sock=Sock, sock_id=Index, count=Count}=S) ->
|
|
|
|
try
|
|
|
|
ReqID = <<Index:64/big, Count:64/big>>,
|
|
|
|
PK = if PlacementKey == <<>> -> undefined;
|
|
|
|
true -> PlacementKey
|
|
|
|
end,
|
2015-06-23 08:37:47 +00:00
|
|
|
CSumT = convert_csum_req(CSum, Chunk),
|
2015-06-23 05:08:10 +00:00
|
|
|
Req = #mpb_appendchunkreq{placement_key=PK,
|
|
|
|
prefix=Prefix,
|
|
|
|
chunk=Chunk,
|
|
|
|
csum=CSumT,
|
|
|
|
chunk_extra=ChunkExtra},
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-23 05:08:10 +00:00
|
|
|
append_chunk=Req},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
|
|
|
#mpb_response{req_id=ReqID, append_chunk=R} when R /= undefined ->
|
2015-06-23 05:45:24 +00:00
|
|
|
Result = convert_append_chunk_resp(R),
|
|
|
|
{Result, S#state{count=Count+1}};
|
2015-06-23 05:08:10 +00:00
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S#state{count=Count+1}}
|
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S#state{count=Count+1}}
|
2015-06-23 06:13:13 +00:00
|
|
|
end;
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync2({write_chunk, File, Offset, Chunk, CSum},
|
2015-06-23 06:13:13 +00:00
|
|
|
#state{sock=Sock, sock_id=Index, count=Count}=S) ->
|
|
|
|
try
|
|
|
|
ReqID = <<Index:64/big, Count:64/big>>,
|
2015-06-23 08:37:47 +00:00
|
|
|
CSumT = convert_csum_req(CSum, Chunk),
|
2015-06-23 06:13:13 +00:00
|
|
|
Req = #mpb_writechunkreq{file=File,
|
|
|
|
offset=Offset,
|
|
|
|
chunk=Chunk,
|
|
|
|
csum=CSumT},
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-23 06:13:13 +00:00
|
|
|
write_chunk=Req},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
|
|
|
#mpb_response{req_id=ReqID, write_chunk=R} when R /= undefined ->
|
|
|
|
Result = convert_write_chunk_resp(R),
|
|
|
|
{Result, S#state{count=Count+1}};
|
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S#state{count=Count+1}}
|
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S#state{count=Count+1}}
|
2015-06-23 06:34:48 +00:00
|
|
|
end;
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync2({read_chunk, File, Offset, Size},
|
2015-06-23 06:34:48 +00:00
|
|
|
#state{sock=Sock, sock_id=Index, count=Count}=S) ->
|
|
|
|
try
|
|
|
|
ReqID = <<Index:64/big, Count:64/big>>,
|
|
|
|
Req = #mpb_readchunkreq{file=File,
|
|
|
|
offset=Offset,
|
|
|
|
size=Size},
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-23 06:34:48 +00:00
|
|
|
read_chunk=Req},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
|
|
|
#mpb_response{req_id=ReqID, read_chunk=R} when R /= undefined ->
|
|
|
|
Result = convert_read_chunk_resp(R),
|
|
|
|
{Result, S#state{count=Count+1}};
|
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S#state{count=Count+1}}
|
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S#state{count=Count+1}}
|
2015-06-23 07:53:06 +00:00
|
|
|
end;
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync2({checksum_list, File},
|
2015-06-23 07:53:06 +00:00
|
|
|
#state{sock=Sock, sock_id=Index, count=Count}=S) ->
|
|
|
|
try
|
|
|
|
ReqID = <<Index:64/big, Count:64/big>>,
|
|
|
|
Req = #mpb_checksumlistreq{file=File},
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-23 07:53:06 +00:00
|
|
|
checksum_list=Req},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
|
|
|
#mpb_response{req_id=ReqID, checksum_list=R} when R /= undefined ->
|
|
|
|
Result = convert_checksum_list_resp(R),
|
|
|
|
{Result, S#state{count=Count+1}};
|
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S#state{count=Count+1}}
|
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S#state{count=Count+1}}
|
2015-06-23 08:08:15 +00:00
|
|
|
end;
|
2015-06-29 07:10:43 +00:00
|
|
|
do_send_sync2({list_files},
|
2015-06-23 08:08:15 +00:00
|
|
|
#state{sock=Sock, sock_id=Index, count=Count}=S) ->
|
|
|
|
try
|
|
|
|
ReqID = <<Index:64/big, Count:64/big>>,
|
|
|
|
Req = #mpb_listfilesreq{},
|
2015-06-29 07:10:43 +00:00
|
|
|
R1a = #mpb_request{req_id=ReqID, do_not_alter=1,
|
2015-06-23 08:08:15 +00:00
|
|
|
list_files=Req},
|
|
|
|
Bin1a = machi_pb:encode_mpb_request(R1a),
|
|
|
|
ok = gen_tcp:send(Sock, Bin1a),
|
|
|
|
{ok, Bin1B} = gen_tcp:recv(Sock, 0),
|
|
|
|
case (catch machi_pb:decode_mpb_response(Bin1B)) of
|
|
|
|
#mpb_response{req_id=ReqID, list_files=R} when R /= undefined ->
|
|
|
|
Result = convert_list_files_resp(R),
|
|
|
|
{Result, S#state{count=Count+1}};
|
|
|
|
#mpb_response{req_id=ReqID, generic=G} when G /= undefined ->
|
|
|
|
#mpb_errorresp{code=Code, msg=Msg, extra=Extra} = G,
|
|
|
|
{{error, {Code, Msg, Extra}}, S#state{count=Count+1}}
|
|
|
|
end
|
|
|
|
catch X:Y ->
|
|
|
|
Res = {bummer, {X, Y, erlang:get_stacktrace()}},
|
|
|
|
{Res, S#state{count=Count+1}}
|
2015-06-22 08:49:07 +00:00
|
|
|
end.
|
|
|
|
|
2015-06-23 08:37:47 +00:00
|
|
|
convert_csum_req(none, Chunk) ->
|
|
|
|
#mpb_chunkcsum{type='CSUM_TAG_CLIENT_SHA',
|
|
|
|
csum=machi_util:checksum_chunk(Chunk)};
|
|
|
|
convert_csum_req({client_sha, CSumBin}, _Chunk) ->
|
2015-06-23 06:13:13 +00:00
|
|
|
#mpb_chunkcsum{type='CSUM_TAG_CLIENT_SHA',
|
|
|
|
csum=CSumBin}.
|
|
|
|
|
2015-06-23 05:45:24 +00:00
|
|
|
convert_append_chunk_resp(#mpb_appendchunkresp{status='OK', chunk_pos=CP}) ->
|
|
|
|
#mpb_chunkpos{offset=Offset, chunk_size=Size, file_name=File} = CP,
|
2015-06-30 06:48:35 +00:00
|
|
|
{ok, {Offset, Size, list_to_binary(File)}};
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_append_chunk_resp(#mpb_appendchunkresp{status=Status}) ->
|
|
|
|
convert_general_status_code(Status).
|
|
|
|
|
2015-06-24 08:20:18 +00:00
|
|
|
convert_general_status_code('OK') ->
|
|
|
|
ok;
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_general_status_code('BAD_ARG') ->
|
2015-06-23 05:45:24 +00:00
|
|
|
{error, bad_arg};
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_general_status_code('WEDGED') ->
|
2015-06-23 05:45:24 +00:00
|
|
|
{error, wedged};
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_general_status_code('BAD_CHECKSUM') ->
|
2015-06-23 05:45:24 +00:00
|
|
|
{error, bad_checksum};
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_general_status_code('PARTITION') ->
|
2015-06-23 05:45:24 +00:00
|
|
|
{error, partition};
|
2015-06-24 09:00:25 +00:00
|
|
|
convert_general_status_code('NOT_WRITTEN') ->
|
|
|
|
{error, not_written};
|
2015-06-25 06:10:24 +00:00
|
|
|
convert_general_status_code('WRITTEN') ->
|
|
|
|
{error, written};
|
2015-06-26 07:25:12 +00:00
|
|
|
convert_general_status_code('NO_SUCH_FILE') ->
|
|
|
|
{error, no_such_file};
|
2015-06-26 12:36:07 +00:00
|
|
|
convert_general_status_code('PARTIAL_READ') ->
|
|
|
|
{error, partial_read};
|
2015-07-01 06:51:25 +00:00
|
|
|
convert_general_status_code('BAD_EPOCH') ->
|
|
|
|
{error, bad_epoch};
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_general_status_code('BAD_JOSS') ->
|
2015-06-23 05:45:24 +00:00
|
|
|
throw({error, bad_joss_taipan_fixme}).
|
|
|
|
|
2015-06-23 06:13:13 +00:00
|
|
|
convert_write_chunk_resp(#mpb_writechunkresp{status='OK'}) ->
|
|
|
|
ok;
|
|
|
|
convert_write_chunk_resp(#mpb_writechunkresp{status=Status}) ->
|
|
|
|
convert_general_status_code(Status).
|
2015-06-23 06:34:48 +00:00
|
|
|
|
|
|
|
convert_read_chunk_resp(#mpb_readchunkresp{status='OK', chunk=Chunk}) ->
|
|
|
|
{ok, Chunk};
|
|
|
|
convert_read_chunk_resp(#mpb_readchunkresp{status=Status}) ->
|
|
|
|
convert_general_status_code(Status).
|
2015-06-23 07:53:06 +00:00
|
|
|
|
|
|
|
convert_checksum_list_resp(#mpb_checksumlistresp{status='OK', chunk=Chunk}) ->
|
|
|
|
{ok, Chunk};
|
|
|
|
convert_checksum_list_resp(#mpb_checksumlistresp{status=Status}) ->
|
|
|
|
convert_general_status_code(Status).
|
2015-06-23 08:08:15 +00:00
|
|
|
|
|
|
|
convert_list_files_resp(#mpb_listfilesresp{status='OK', files=Files}) ->
|
2015-06-30 06:48:35 +00:00
|
|
|
FileInfo = [{Size, list_to_binary(File)} ||
|
|
|
|
#mpb_fileinfo{file_size=Size,
|
|
|
|
file_name=File} <- Files],
|
2015-06-23 08:08:15 +00:00
|
|
|
{ok, FileInfo};
|
|
|
|
convert_list_files_resp(#mpb_listfilesresp{status=Status}) ->
|
|
|
|
convert_general_status_code(Status).
|