130 lines
No EOL
4.1 KiB
Erlang
130 lines
No EOL
4.1 KiB
Erlang
%% The MIT License
|
|
|
|
%% Copyright (c) 2010 Alisdair Sullivan <alisdairsullivan@yahoo.ca>
|
|
|
|
%% Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
%% of this software and associated documentation files (the "Software"), to deal
|
|
%% in the Software without restriction, including without limitation the rights
|
|
%% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
%% copies of the Software, and to permit persons to whom the Software is
|
|
%% furnished to do so, subject to the following conditions:
|
|
|
|
%% The above copyright notice and this permission notice shall be included in
|
|
%% all copies or substantial portions of the Software.
|
|
|
|
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
%% THE SOFTWARE.
|
|
|
|
|
|
-module(jsx_verify).
|
|
|
|
-export([is_json/2, is_term/2]).
|
|
-export([init/1, handle_event/2]).
|
|
|
|
|
|
-record(config, {
|
|
repeated_keys = true
|
|
}).
|
|
|
|
-type config() :: [].
|
|
|
|
|
|
-spec is_json(Source::binary(), Config::config()) -> true | false.
|
|
|
|
is_json(Source, Config) when is_list(Config) ->
|
|
try (jsx:decoder(?MODULE, Config, jsx_utils:extract_config(Config)))(Source)
|
|
catch error:badarg -> false
|
|
end.
|
|
|
|
|
|
-spec is_term(Source::any(), Config::config()) -> true | false.
|
|
|
|
is_term(Source, Config) when is_list(Config) ->
|
|
try (jsx:encoder(?MODULE, Config, jsx_utils:extract_config(Config)))(Source)
|
|
catch error:badarg -> false
|
|
end.
|
|
|
|
|
|
parse_config(Config) -> parse_config(Config, #config{}).
|
|
|
|
parse_config([{repeated_keys, Val}|Rest], Config) when Val == true; Val == false ->
|
|
parse_config(Rest, Config#config{repeated_keys = Val});
|
|
parse_config([repeated_keys|Rest], Config) ->
|
|
parse_config(Rest, Config#config{repeated_keys = true});
|
|
parse_config([{K, _}|Rest] = Options, Config) ->
|
|
case lists:member(K, jsx_utils:valid_flags()) of
|
|
true -> parse_config(Rest, Config)
|
|
; false -> erlang:error(badarg, [Options, Config])
|
|
end;
|
|
parse_config([K|Rest] = Options, Config) ->
|
|
case lists:member(K, jsx_utils:valid_flags()) of
|
|
true -> parse_config(Rest, Config)
|
|
; false -> erlang:error(badarg, [Options, Config])
|
|
end;
|
|
parse_config([], Config) ->
|
|
Config.
|
|
|
|
|
|
|
|
init(Config) -> {parse_config(Config), []}.
|
|
|
|
|
|
|
|
handle_event(end_json, _) -> true;
|
|
|
|
handle_event(_, {Config, _} = State) when Config#config.repeated_keys == true -> State;
|
|
|
|
handle_event(start_object, {Config, Keys}) -> {Config, [dict:new()] ++ Keys};
|
|
handle_event(end_object, {Config, [_|Keys]}) -> {Config, Keys};
|
|
|
|
handle_event({key, Key}, {Config, [CurrentKeys|Keys]}) ->
|
|
case dict:is_key(Key, CurrentKeys) of
|
|
true -> erlang:error(badarg)
|
|
; false -> {Config, [dict:store(Key, blah, CurrentKeys)|Keys]}
|
|
end;
|
|
|
|
handle_event(_, State) -> State.
|
|
|
|
|
|
|
|
%% eunit tests
|
|
-ifdef(TEST).
|
|
-include_lib("eunit/include/eunit.hrl").
|
|
|
|
|
|
config_test_() ->
|
|
[
|
|
{"empty config", ?_assertEqual(#config{}, parse_config([]))},
|
|
{"bare repeated keys", ?_assertEqual(#config{}, parse_config([repeated_keys]))},
|
|
{"repeated keys true", ?_assertEqual(
|
|
#config{},
|
|
parse_config([{repeated_keys, true}])
|
|
)},
|
|
{"repeated keys false", ?_assertEqual(
|
|
#config{repeated_keys=false},
|
|
parse_config([{repeated_keys, false}])
|
|
)},
|
|
{"invalid opt flag", ?_assertError(badarg, parse_config([error]))},
|
|
{"invalid opt tuple", ?_assertError(badarg, parse_config([{error, true}]))}
|
|
].
|
|
|
|
|
|
handle_event_test_() ->
|
|
Data = jsx:universals()
|
|
++ jsx:decodeables(),
|
|
[
|
|
{
|
|
Title, ?_assertEqual(
|
|
true,
|
|
lists:foldl(fun handle_event/2, {#config{}, []}, Events ++ [end_json])
|
|
)
|
|
} || {Title, _, _, Events} <- Data
|
|
].
|
|
|
|
|
|
-endif. |