%%%-------------------------------------------------------------------
%%% File : erlxslt.erl
%%% Author : <>
%%% Description :
%%%
%%% Created : 21 Jul 2008 by <>
%%%-------------------------------------------------------------------
-module(erlxslt).
-behaviour(gen_server).
%% API
-export([start_link/0, start_link/1, register_function/4, set_xslt/3, set_xml/3, set_params/2, process/1, stop/1]).
%% gen_server callbacks
-export([init/1, handle_call/3, handle_cast/2, handle_info/2,
terminate/2, code_change/3]).
-record(state, {port, functions = []}).
-define(CMD_SET_XSLT, 1).
-define(CMD_SET_XML, 2).
-define(CMD_PROCESS, 3).
-define(CMD_REGISTER, 4).
-define(CMD_SET_PARAMS, 5).
-define(RPL_RESULT, 0).
-define(RPL_ERROR, 1).
-define(RPL_CALLBACK, 2).
%%====================================================================
%% API
%%====================================================================
set_xslt(X, Uri, Xslt) ->
gen_server:cast(X, {set_xslt, Uri, Xslt}).
set_xml(X, Uri, Xml) ->
gen_server:cast(X, {set_xml, Uri, Xml}).
set_params(X, Params) ->
gen_server:cast(X, {set_params, Params}).
process(X) ->
gen_server:call(X, {process}).
register_function(X, Xmlns, Name, Fun) ->
gen_server:call(X, {register_function, Xmlns, Name, Fun}).
stop(X) ->
gen_server:cast(X, {stop}).
%%--------------------------------------------------------------------
%% Function: start_link() -> {ok,Pid} | ignore | {error,Error}
%% Description: Starts the server
%%--------------------------------------------------------------------
start_link() ->
start_link("./erlxslt").
start_link(BinPath) ->
gen_server:start_link(?MODULE, [BinPath], []).
%%====================================================================
%% gen_server callbacks
%%====================================================================
%%--------------------------------------------------------------------
%% Function: init(Args) -> {ok, State} |
%% {ok, State, Timeout} |
%% ignore |
%% {stop, Reason}
%% Description: Initiates the server
%%--------------------------------------------------------------------
init([BinPath]) ->
Port = open_port({spawn, BinPath}, [{packet, 4}, binary]),
{ok, #state{port=Port}}.
%%--------------------------------------------------------------------
%% Function: %% handle_call(Request, From, State) -> {reply, Reply, State} |
%% {reply, Reply, State, Timeout} |
%% {noreply, State} |
%% {noreply, State, Timeout} |
%% {stop, Reason, Reply, State} |
%% {stop, Reason, State}
%% Description: Handling call messages
%%--------------------------------------------------------------------
handle_call({process}, _From, State = #state{port = Port}) ->
port_command(Port, [?CMD_PROCESS]),
Result = wait_result(State),
{reply, Result, State};
handle_call({register_function, Xmlns, Name, Fun}, _From,
State = #state{functions = Functions,
port = Port}) ->
port_command(Port, lists:flatten([4, Xmlns, 0, Name])),
{reply, ok, State#state{functions = [{Xmlns, Name, Fun} | Functions]}}.
%%--------------------------------------------------------------------
%% Function: handle_cast(Msg, State) -> {noreply, State} |
%% {noreply, State, Timeout} |
%% {stop, Reason, State}
%% Description: Handling cast messages
%%--------------------------------------------------------------------
handle_cast({set_xslt, Uri, Xslt}, State = #state{port = Port}) ->
Buf = [?CMD_SET_XSLT | Uri] ++ [0 | Xslt],
port_command(Port, Buf),
{noreply, State};
handle_cast({set_xml, Uri, Xml}, State = #state{port = Port}) ->
Buf = [?CMD_SET_XML | Uri] ++ [0 | Xml],
port_command(Port, Buf),
{noreply, State};
handle_cast({set_params, Params}, State = #state{port = Port}) ->
Buf = lists:flatten(
lists:map(fun({K, V}) ->
lists:append([K, [0], V, [0]])
end, Params)),
io:format("params buf: ~p~n",[Buf]),
port_command(Port, [?CMD_SET_PARAMS | Buf]),
{noreply, State};
handle_cast({stop}, State) ->
{stop, normal, State}.
%%--------------------------------------------------------------------
%% Function: handle_info(Info, State) -> {noreply, State} |
%% {noreply, State, Timeout} |
%% {stop, Reason, State}
%% Description: Handling all non call/cast messages
%%--------------------------------------------------------------------
handle_info(_Info, State) ->
io:format("handle_info(~p, ~p)~n", [_Info, State]),
{noreply, State}.
%%--------------------------------------------------------------------
%% Function: terminate(Reason, State) -> void()
%% Description: This function is called by a gen_server when it is about to
%% terminate. It should be the opposite of Module:init/1 and do any necessary
%% cleaning up. When it returns, the gen_server terminates with Reason.
%% The return value is ignored.
%%--------------------------------------------------------------------
terminate(_Reason, #state{port = Port}) ->
catch port_close(Port),
ok.
%%--------------------------------------------------------------------
%% Func: code_change(OldVsn, State, Extra) -> {ok, NewState}
%% Description: Convert process state when code is changed
%%--------------------------------------------------------------------
code_change(_OldVsn, State, _Extra) ->
{ok, State}.
%%--------------------------------------------------------------------
%%% Internal functions
%%--------------------------------------------------------------------
wait_result(#state{functions = Functions} = State) ->
receive
{_, {data, <<?RPL_RESULT, Result/binary>>}} ->
Result2 = binary_to_list(Result),
{MediaType, [0 | Body]} =
lists:split(string:chr(Result2, 0) - 1, Result2),
{ok, MediaType, Body};
{Port, {data, <<?RPL_CALLBACK, Call/binary>>}} ->
Retval = call_function(binary_to_term(Call),
Functions),
port_command(Port, term_to_binary(Retval)),
wait_result(State);
{_, {data, <<?RPL_ERROR, Error/binary>>}} ->
error_logger:error_msg("XSLT error: ~s~n", [Error]),
{error, xslt}
end.
call_function([Xmlns, Name | Args] = Call, [{Xmlns, Name, Fun} | Functions]) ->
ArgsLen = length(Args),
case erlang:fun_info(Fun, arity) of
{arity, ArgsLen} ->
Args2 = lists:reverse(Args),
error_logger:info_msg("Calling XSLT ext function with arguments:~n{~s}~s ~p ~p",
[Xmlns, Name, Fun, Args2]),
case (catch apply(Fun, Args2)) of
{'EXIT', Reason} ->
error_logger:error_msg("Error calling XSLT ext function with arguments:~n{~s}~s ~p ~p:~nReason: ~p~n",
[Xmlns, Name, Fun, Args2, Reason]),
"";
R -> R
end;
_ ->
call_function(Call, Functions)
end;
call_function(Call, [_ | Functions]) ->
call_function(Call, Functions);
call_function([Xmlns, Name | Args], []) ->
error_logger:error_msg("Unable to find registered function {~s}~s with arity ~B~n",
[Xmlns, Name, length(Args)]),
"".