%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2018-2018. All Rights Reserved.
%%
%% Licensed 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.
%%
%% %CopyrightEnd%
%%
-module(socket_test_ttest_tcp_socket).
-export([
accept/1, accept/2,
active/2,
close/1,
connect/2, connect/3,
controlling_process/2,
listen/0, listen/1, listen/2,
port/1,
peername/1,
recv/2, recv/3,
send/2,
shutdown/2,
sockname/1
]).
-define(READER_RECV_TIMEOUT, 1000).
-define(DATA_MSG(Sock, Method, Data),
{socket,
#{sock => Sock, reader => self(), method => Method},
Data}).
-define(CLOSED_MSG(Sock, Method),
{socket_closed,
#{sock => Sock, reader => self(), method => Method}}).
-define(ERROR_MSG(Sock, Method, Reason),
{socket_error,
#{sock => Sock, reader => self(), method => Method},
Reason}).
%% ==========================================================================
%% This does not really work. Its just a placeholder for the time beeing...
%% getopt(Sock, Opt) when is_atom(Opt) ->
%% socket:getopt(Sock, socket, Opt).
%% setopt(Sock, Opt, Value) when is_atom(Opt) ->
%% socket:setopts(Sock, socket, Opt, Value).
%% ==========================================================================
accept(#{sock := LSock, opts := #{method := Method} = Opts}) ->
case socket:accept(LSock) of
{ok, Sock} ->
Self = self(),
Reader = spawn(fun() -> reader_init(Self, Sock, false, Method) end),
maybe_start_stats_timer(Opts, Reader),
{ok, #{sock => Sock, reader => Reader, method => Method}};
{error, _} = ERROR ->
ERROR
end.
accept(#{sock := LSock, opts := #{method := Method} = Opts}, Timeout) ->
case socket:accept(LSock, Timeout) of
{ok, Sock} ->
Self = self(),
Reader = spawn(fun() -> reader_init(Self, Sock, false, Method) end),
maybe_start_stats_timer(Opts, Reader),
{ok, #{sock => Sock, reader => Reader, method => Method}};
{error, _} = ERROR ->
ERROR
end.
active(#{reader := Pid}, NewActive)
when (is_boolean(NewActive) orelse (NewActive =:= once)) ->
Pid ! {?MODULE, active, NewActive},
ok.
close(#{sock := Sock, reader := Pid}) ->
Pid ! {?MODULE, stop},
socket:close(Sock).
%% Create a socket and connect it to a peer
connect(Addr, Port) ->
connect(Addr, Port, #{method => plain}).
connect(Addr, Port, #{method := Method} = Opts) ->
try
begin
Sock =
case socket:open(inet, stream, tcp) of
{ok, S} ->
S;
{error, OReason} ->
throw({error, {open, OReason}})
end,
case socket:bind(Sock, any) of
{ok, _} ->
ok;
{error, BReason} ->
(catch socket:close(Sock)),
throw({error, {bind, BReason}})
end,
SA = #{family => inet,
addr => Addr,
port => Port},
case socket:connect(Sock, SA) of
ok ->
ok;
{error, CReason} ->
(catch socket:close(Sock)),
throw({error, {connect, CReason}})
end,
Self = self(),
Reader = spawn(fun() -> reader_init(Self, Sock, false, Method) end),
maybe_start_stats_timer(Opts, Reader),
{ok, #{sock => Sock, reader => Reader, method => Method}}
end
catch
throw:ERROR:_ ->
ERROR
end.
maybe_start_stats_timer(#{stats_to := Pid,
stats_interval := T},
Reader) when is_pid(Pid) ->
erlang:start_timer(T, Pid, {stats, T, "reader", Reader});
maybe_start_stats_timer(_O, _) ->
ok.
controlling_process(#{sock := Sock, reader := Pid}, NewPid) ->
case socket:setopt(Sock, otp, controlling_process, NewPid) of
ok ->
Pid ! {?MODULE, self(), controlling_process, NewPid},
receive
{?MODULE, Pid, controlling_process} ->
ok
end;
{error, _} = ERROR ->
ERROR
end.
%% Create a listen socket
listen() ->
listen(0, #{method => plain}).
listen(Port) ->
listen(Port, #{method => plain}).
listen(Port, #{method := Method} = Opts)
when (is_integer(Port) andalso (Port >= 0)) andalso
((Method =:= plain) orelse (Method =:= msg)) ->
try
begin
Sock = case socket:open(inet, stream, tcp) of
{ok, S} ->
S;
{error, OReason} ->
throw({error, {open, OReason}})
end,
SA = #{family => inet,
port => Port},
case socket:bind(Sock, SA) of
{ok, _} ->
ok;
{error, BReason} ->
(catch socket:close(Sock)),
throw({error, {bind, BReason}})
end,
case socket:listen(Sock) of
ok ->
ok;
{error, LReason} ->
(catch socket:close(Sock)),
throw({error, {listen, LReason}})
end,
{ok, #{sock => Sock, opts => Opts}}
end
catch
throw:{error, Reason}:_ ->
{error, Reason}
end.
port(#{sock := Sock}) ->
case socket:sockname(Sock) of
{ok, #{port := Port}} ->
{ok, Port};
{error, _} = ERROR ->
ERROR
end.
peername(#{sock := Sock}) ->
case socket:peername(Sock) of
{ok, #{addr := Addr, port := Port}} ->
{ok, {Addr, Port}};
{error, _} = ERROR ->
ERROR
end.
recv(#{sock := Sock, method := plain}, Length) ->
socket:recv(Sock, Length);
recv(#{sock := Sock, method := msg}, Length) ->
case socket:recvmsg(Sock, Length, 0, [], infinity) of
{ok, #{iov := [Bin]}} ->
{ok, Bin};
{error, _} = ERROR ->
ERROR
end.
recv(#{sock := Sock, method := plain}, Length, Timeout) ->
socket:recv(Sock, Length, Timeout);
recv(#{sock := Sock, method := msg}, Length, Timeout) ->
case socket:recvmsg(Sock, Length, 0, [], Timeout) of
{ok, #{iov := [Bin]}} ->
{ok, Bin};
{error, _} = ERROR ->
ERROR
end.
send(#{sock := Sock, method := plain}, Bin) ->
socket:send(Sock, Bin);
send(#{sock := Sock, method := msg}, Bin) ->
socket:sendmsg(Sock, #{iov => [Bin]}).
shutdown(#{sock := Sock}, How) ->
socket:shutdown(Sock, How).
sockname(#{sock := Sock}) ->
case socket:sockname(Sock) of
{ok, #{addr := Addr, port := Port}} ->
{ok, {Addr, Port}};
{error, _} = ERROR ->
ERROR
end.
%% ==========================================================================
reader_init(ControllingProcess, Sock, Active, Method)
when is_pid(ControllingProcess) andalso
(is_boolean(Active) orelse (Active =:= once)) andalso
((Method =:= plain) orelse (Method =:= msg)) ->
MRef = erlang:monitor(process, ControllingProcess),
reader_loop(#{ctrl_proc => ControllingProcess,
ctrl_proc_mref => MRef,
active => Active,
sock => Sock,
method => Method}).
%% Never read
reader_loop(#{active := false,
ctrl_proc := Pid} = State) ->
receive
{?MODULE, stop} ->
exit(normal);
{?MODULE, Pid, controlling_process, NewPid} ->
MRef = maps:get(ctrl_proc_mref, State),
erlang:demonitor(MRef, [flush]),
NewMRef = erlang:monitor(process, NewPid),
Pid ! {?MODULE, self(), controlling_process},
reader_loop(State#{ctrl_proc => NewPid,
ctrl_proc_mref => NewMRef});
{?MODULE, active, NewActive} ->
reader_loop(State#{active => NewActive});
{'DOWN', MRef, process, Pid, Reason} ->
case maps:get(ctrl_proc_mref, State) of
MRef when (Reason =:= normal) ->
exit(normal);
MRef ->
exit({controlling_process, Reason});
_ ->
reader_loop(State)
end
end;
%% Read *once* and then change to false
reader_loop(#{active := once,
sock := Sock,
method := Method,
ctrl_proc := Pid} = State) ->
case do_recv(Method, Sock) of
{ok, Data} ->
Pid ! ?DATA_MSG(Sock, Method, Data),
reader_loop(State#{active => false});
{error, timeout} ->
receive
{?MODULE, stop} ->
exit(normal);
{?MODULE, Pid, controlling_process, NewPid} ->
MRef = maps:get(ctrl_proc_mref, State),
erlang:demonitor(MRef, [flush]),
MRef = erlang:monitor(process, NewPid),
Pid ! {?MODULE, self(), controlling_process},
reader_loop(State#{ctrl_proc => NewPid,
ctrl_proc_mref => MRef});
{?MODULE, active, NewActive} ->
reader_loop(State#{active => NewActive});
{'DOWN', MRef, process, Pid, Reason} ->
case maps:get(ctrl_proc_mref, State) of
MRef when (Reason =:= normal) ->
exit(normal);
MRef ->
exit({controlling_process, Reason});
_ ->
reader_loop(State)
end
after 0 ->
reader_loop(State)
end;
{error, closed} ->
Pid ! ?CLOSED_MSG(Sock, Method),
exit(normal);
{error, Reason} ->
Pid ! ?ERROR_MSG(Sock, Method, Reason),
exit(Reason)
end;
%% Read and forward data continuously
reader_loop(#{active := true,
sock := Sock,
method := Method,
ctrl_proc := Pid} = State) ->
case do_recv(Method, Sock) of
{ok, Data} ->
Pid ! ?DATA_MSG(Sock, Method, Data),
reader_loop(State);
{error, timeout} ->
receive
{?MODULE, stop} ->
exit(normal);
{?MODULE, Pid, controlling_process, NewPid} ->
MRef = maps:get(ctrl_proc_mref, State),
erlang:demonitor(MRef, [flush]),
MRef = erlang:monitor(process, NewPid),
Pid ! {?MODULE, self(), controlling_process},
reader_loop(State#{ctrl_proc => NewPid,
ctrl_proc_mref => MRef});
{?MODULE, active, NewActive} ->
reader_loop(State#{active => NewActive});
{'DOWN', MRef, process, Pid, Reason} ->
case maps:get(ctrl_proc_mref, State) of
MRef when (Reason =:= normal) ->
exit(normal);
MRef ->
exit({controlling_process, Reason});
_ ->
reader_loop(State)
end
after 0 ->
reader_loop(State)
end;
{error, closed} ->
Pid ! ?CLOSED_MSG(Sock, Method),
exit(normal);
{error, Reason} ->
Pid ! ?ERROR_MSG(Sock, Method, Reason),
exit(Reason)
end.
do_recv(plain, Sock) ->
socket:recv(Sock, 0, ?READER_RECV_TIMEOUT);
do_recv(msg, Sock) ->
case socket:recvmsg(Sock, 0, 0, [], ?READER_RECV_TIMEOUT) of
{ok, #{iov := [Bin]}} ->
{ok, Bin};
{error, _} = ERROR ->
ERROR
end.
%% ==========================================================================