ok
end.
-handle_function(State = #state{in_protocol = IProto,
- out_protocol = OProto},
- add) ->
- io:format("Reading struct~n"),
- {ok, Struct} = thrift_protocol:read(IProto,
- {struct, [{1, i32},
- {2, i32}]}),
- io:format("Struct: ~p~n", [Struct]),
+%handle_function(State = #state{in_protocol = IProto,
+% out_protocol = OProto},
+% add) ->
+% io:format("Reading struct~n"),
+% {ok, Struct} = thrift_protocol:read(IProto,
+% {struct, [{1, i32},
+% {2, i32}]}),
+% io:format("Struct: ~p~n", [Struct]),
- {A, B} = Struct,
+% {A, B} = Struct,
- thrift_protocol:write(OProto, #protocol_message_begin{
- name = "addResult",
- type = ?tMessageType_REPLY,
- seqid = 0}),
- thrift_protocol:write(OProto, {{struct, [{0, i32}]},
- {A + B}}),
- thrift_protocol:write(OProto, message_end);
+% thrift_protocol:write(OProto, #protocol_message_begin{
+% name = "addResult",
+% type = ?tMessageType_REPLY,
+% seqid = 0}),
+% thrift_protocol:write(OProto, {{struct, [{0, i32}]},
+% {A + B}}),
+% thrift_protocol:write(OProto, message_end);
-handle_function(State = #state{in_protocol = IProto,
- out_protocol = OProto},
- complexTest) ->
- io:format("Reading struct~n"),
- Struct = thrift_protocol:read(
- IProto,
- {struct, [{1, {struct,
- [{1, {list, i32}},
- {2, {map, string, {struct, [{1, i16}]}}}]}}]}),
+%handle_function(State = #state{in_protocol = IProto,
+% out_protocol = OProto},
+% complexTest) ->
+% io:format("Reading struct~n"),
+% Struct = thrift_protocol:read(
+% IProto,
+% {struct, [{1, {struct,
+% [{1, {list, i32}},
+% {2, {map, string, {struct, [{1, i16}]}}}]}}]}),
- io:format("Struct: ~p~n", [Struct]).
+% io:format("Struct: ~p~n", [Struct]);
+
+handle_function(State = #state{in_protocol = IProto,
+ out_protocol = OProto,
+ handler = Handler,
+ service = Service},
+ Function) ->
+ InParams = Service:function_info(Function, params_type),
+ {ok, Params} = thrift_protocol:read(IProto, InParams),
+ Result = Handler:handle_function(Function, Params),
+
+ ReplyType = Service:function_info(Function, reply_type),
+
+ case Result of
+ {reply, Reply} ->
+ thrift_protocol:write(OProto, #protocol_message_begin{
+ name = atom_to_list(Function) ++ "_result",
+ type = ?tMessageType_REPLY,
+ seqid = 0}),
+ thrift_protocol:write(OProto, {{struct, [{0, ReplyType}]}, {Reply}}),
+ thrift_protocol:write(OProto, message_end)
+ end,
+ ok.
-define(SERVER, ?MODULE).
-record(state, {listen_socket, acceptor, service}).
--record(handler, {module}).
%%====================================================================
%% API
%% {stop, Reason}
%% Description: Initiates the server
%%--------------------------------------------------------------------
-init({Port, Service, HandlerModule}) ->
- Handler = #handler{module = HandlerModule},
+init({Port, Service, Handler}) ->
{ok, Socket} = gen_tcp:listen(Port,
[binary,
{packet, 0},
%%--------------------------------------------------------------------
acceptor(ListenSocket, Service, Handler)
- when is_port(ListenSocket), is_record(Handler, handler) ->
+ when is_port(ListenSocket), is_atom(Handler) ->
{ok, Socket} = gen_tcp:accept(ListenSocket),
error_logger:info_msg("Accepted client"),