public
Description: Dirty little libxslt Port for Erlang
Homepage:
Clone URL: git://github.com/astro/erlxslt.git
erlxslt / erlxslt.erl
100644 195 lines (168 sloc) 7.379 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
%%%-------------------------------------------------------------------
%%% 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)]),
    "".