Current section
Files
Jump to
Current section
Files
src/cf_client_process.erl
%% -*- erlang -*-
%%
%% A Cuneiform client implementation.
%%
%% Copyright 2015-2018 Jörgen Brandt
%%
%% 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.
%%
%% -------------------------------------------------------------------
%% @author Jörgen Brandt <joergen.brandt@onlinehome.de>
%% @version 0.1.1
%% @copyright 2015-2018 Jörgen Brandt
%%
%%
%%
%%
%%
%% @end
%% -------------------------------------------------------------------
-module( cf_client_process ).
-behaviour( cre_client ).
-include_lib( "cuneiform.hrl" ).
%%====================================================================
%% Exports
%%====================================================================
%% CRE client callbacks
-export( [init/1, is_value/2, recv/4, step/2] ).
%% API functions
-export( [start_link/1, start_link/2] ).
%%====================================================================
%% API functions
%%====================================================================
start_link( F ) when is_function( F, 0 ) ->
case F() of
{ok, CreName} -> start_link( CreName );
{error, E} -> {error, E}
end;
start_link( CreName ) ->
cre_client:start_link( CreName, ?MODULE, [] ).
start_link( ClientName, F ) when is_function( F, 0 ) ->
case F() of
{ok, CreName} -> start_link( ClientName, CreName );
{error, E} -> {error, E}
end;
start_link( Clientname, CreName ) ->
cre_client:start_link( Clientname, CreName, ?MODULE, [] ).
%%====================================================================
%% CRE client callback implementations
%%====================================================================
-spec init( ClientArg :: _ ) -> [].
init( _ClientArg ) -> [].
-spec is_value( E :: e(), UsrInfo :: _ ) -> boolean().
is_value( E, _ ) ->
cuneiform_sem:is_value( E ).
-spec recv( E, A, R, UsrInfo ) -> e()
when E :: e(),
A :: #{ atom() => _ },
R :: #{ atom() => _ },
UsrInfo :: _.
recv( E, A, R, _UsrInfo ) ->
#{ app_id := AppId } = R,
E1 = cf_client_effi:effi_reply_to_expr( A, R ),
cuneiform_sem:subst_fut( E, AppId, E1 ).
-spec step( E, UsrInfo ) -> Result
when E :: e(),
UsrInfo :: _,
Result :: {ok, e()}
| {ok_send, e(), e()}
| norule.
step( E, _UsrInfo ) ->
case cuneiform_sem:find_context( E ) of
{ok, E1, Ctx} ->
case E1 of
% when the redex is a foreign application invoke the E-send
{app, Info, {lam_frn, _, _, _, RetType, _, _}, _} ->
EffiRequest = cf_client_effi:app_to_effi_request( E1 ),
#{ app_id := AppId } = EffiRequest,
E2 = {fut, Info, RetType, AppId},
E3 = cuneiform_sem:in_hole( E2, Ctx ),
{ok_send, E3, EffiRequest};
% when the redex is an error drop the context
{err, _, _, _} ->
{ok, E1};
% in all other cases reduce
_ ->
E2 = cuneiform_sem:reduce( E1 ),
E3 = cuneiform_sem:in_hole( E2, Ctx ),
{ok, E3}
end;
no_ctx ->
norule
end.