%% %% %CopyrightBegin% %% %% Copyright Ericsson AB 2018-2019. 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/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(LIB, socket_test_lib). -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}, Unlink = case socket:sockname(Sock) of {ok, #{family := local, path := Path}} -> fun() -> os:cmd("unlink " ++ Path), ok end; _ -> fun() -> ok end end, Res = socket:close(Sock), Unlink(), Res. %% Create a socket and connect it to a peer connect(ServerPath) when is_list(ServerPath) -> Domain = local, ClientPath = mk_unique_path(), LocalSA = #{family => Domain, path => ClientPath}, ServerSA = #{family => Domain, path => ServerPath}, Opts = #{domain => Domain, proto => default, method => plain}, Cleanup = fun() -> os:cmd("unlink " ++ ClientPath), ok end, do_connect(LocalSA, ServerSA, Cleanup, Opts). connect(Addr, Port) when is_tuple(Addr) andalso is_integer(Port) -> Domain = inet, LocalSA = any, ServerSA = #{family => Domain, addr => Addr, port => Port}, Opts = #{domain => Domain, proto => tcp, method => plain}, Cleanup = fun() -> ok end, do_connect(LocalSA, ServerSA, Cleanup, Opts); connect(ServerPath, #{domain := local = Domain} = Opts) when is_list(ServerPath) -> ClientPath = mk_unique_path(), LocalSA = #{family => Domain, path => ClientPath}, ServerSA = #{family => Domain, path => ServerPath}, Cleanup = fun() -> os:cmd("unlink " ++ ClientPath), ok end, do_connect(LocalSA, ServerSA, Cleanup, Opts#{proto => default}). connect(Addr, Port, #{domain := Domain} = Opts) -> LocalSA = any, ServerSA = #{family => Domain, addr => Addr, port => Port}, Cleanup = fun() -> ok end, do_connect(LocalSA, ServerSA, Cleanup, Opts#{proto => tcp}). do_connect(LocalSA, ServerSA, Cleanup, #{domain := Domain, proto := Proto, method := Method} = Opts) -> try begin Sock = case socket:open(Domain, stream, Proto) of {ok, S} -> S; {error, OReason} -> throw({error, {open, OReason}}) end, case socket:bind(Sock, LocalSA) of {ok, _} -> ok; {error, BReason} -> (catch socket:close(Sock)), Cleanup(), throw({error, {bind, BReason}}) end, case socket:connect(Sock, ServerSA) of ok -> ok; {error, CReason} -> (catch socket:close(Sock)), Cleanup(), 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. mk_unique_path() -> [NodeName | _] = string:tokens(atom_to_list(node()), [$@]), ?LIB:f("/tmp/esock_~s_~w", [NodeName, erlang:system_time(nanosecond)]). 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). listen(Port) when is_integer(Port) -> listen(Port, #{domain => inet, method => plain}); listen(Path) when is_list(Path) -> listen(Path, #{domain => local, method => plain}). listen(0, #{domain := local} = Opts) -> listen(mk_unique_path(), Opts); listen(Path, #{domain := local = Domain} = Opts) when is_list(Path) andalso (Path =/= []) -> SA = #{family => Domain, path => Path}, Cleanup = fun() -> os:cmd("unlink " ++ Path), ok end, do_listen(SA, Cleanup, Opts#{proto => default}); listen(Port, #{domain := Domain} = Opts) when is_integer(Port) andalso (Port >= 0) -> %% Bind fills in the rest SA = #{family => Domain, port => Port}, Cleanup = fun() -> ok end, do_listen(SA, Cleanup, Opts#{proto => tcp}). do_listen(SA, Cleanup, #{domain := Domain, proto := Proto, method := Method} = Opts) when (Method =:= plain) orelse (Method =:= msg) -> try begin Sock = case socket:open(Domain, stream, Proto) of {ok, S} -> S; {error, OReason} -> throw({error, {open, OReason}}) end, case socket:bind(Sock, SA) of {ok, _} -> ok; {error, BReason} -> (catch socket:close(Sock)), Cleanup(), throw({error, {bind, BReason}}) end, case socket:listen(Sock) of ok -> ok; {error, LReason} -> (catch socket:close(Sock)), Cleanup(), 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, #{family := local, path := Path}} -> {ok, Path}; {ok, #{port := Port}} -> {ok, Port}; {error, _} = ERROR -> ERROR end. peername(#{sock := Sock}) -> case socket:peername(Sock) of {ok, #{family := local, path := Path}} -> {ok, Path}; {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. %% ==========================================================================