ranch_listener_sup.erl 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. %% Copyright (c) 2011-2012, Loïc Hoguin <essen@ninenines.eu>
  2. %%
  3. %% Permission to use, copy, modify, and/or distribute this software for any
  4. %% purpose with or without fee is hereby granted, provided that the above
  5. %% copyright notice and this permission notice appear in all copies.
  6. %%
  7. %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. %% @private
  15. -module(ranch_listener_sup).
  16. -behaviour(supervisor).
  17. %% API.
  18. -export([start_link/6]).
  19. %% supervisor.
  20. -export([init/1]).
  21. %% API.
  22. -spec start_link(ranch:ref(), non_neg_integer(), module(), any(), module(), any())
  23. -> {ok, pid()}.
  24. start_link(Ref, NbAcceptors, Transport, TransOpts, Protocol, ProtoOpts) ->
  25. MaxConns = proplists:get_value(max_connections, TransOpts, 1024),
  26. ranch_server:set_new_listener_opts(Ref, MaxConns, ProtoOpts),
  27. supervisor:start_link(?MODULE, {
  28. Ref, NbAcceptors, Transport, TransOpts, Protocol
  29. }).
  30. %% supervisor.
  31. init({Ref, NbAcceptors, Transport, TransOpts, Protocol}) ->
  32. ConnType = proplists:get_value(connection_type, TransOpts, worker),
  33. ChildSpecs = [
  34. %% conns_sup
  35. {ranch_conns_sup, {ranch_conns_sup, start_link,
  36. [Ref, ConnType, Transport, Protocol]},
  37. permanent, infinity, supervisor, [ranch_conns_sup]},
  38. %% acceptors_sup
  39. {ranch_acceptors_sup, {ranch_acceptors_sup, start_link,
  40. [Ref, NbAcceptors, Transport, TransOpts]
  41. }, permanent, infinity, supervisor, [ranch_acceptors_sup]}
  42. ],
  43. {ok, {{rest_for_one, 10, 10}, ChildSpecs}}.