summaryrefslogtreecommitdiff
path: root/lib/stdlib/test/gen_statem_SUITE_data/format_status_statem.erl
blob: 7c0ee1f4d084e4a19a5ada24d713216a8f29ed7b (plain)
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
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2017-2021. All Rights Reserved.
%%
%% 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.
%%
%% %CopyrightEnd%
%%
-module(format_status_statem).

%% gen_statem callbacks
-export(['$handle_undefined_function'/2, terminate/3, format_status/1]).

'$handle_undefined_function'(format_status, [_,_]) ->
    erlang:error(undef);
'$handle_undefined_function'(Func, Args) ->
    apply(gen_statem_SUITE, Func, Args).

terminate(Reason, State, Data) ->
    gen_statem_SUITE:terminate(Reason, State, Data).

format_status(#{ data := Fun } = S) when is_function(Fun) ->
    Fun(S);
format_status(#{ reason := _, state := State, data := Data } = Map) ->
    ct:pal("format_status(~p)",[Map]),
    Map#{ state := {formatted, State},  data := {formatted, Data}};
format_status(Map) ->
    ct:pal("format_status(~p)",[Map]),
    Map#{ data := format_data, state := format_status_called }.