-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jakub Gonet <[email protected]>
- Loading branch information
1 parent
39de7e2
commit 6ee08f3
Showing
9 changed files
with
230 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
% | ||
% This file is part of AtomVM. | ||
% | ||
% Copyright 2024 Jakub Gonet <[email protected]> | ||
% | ||
% 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. | ||
% | ||
% SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later | ||
% | ||
|
||
-module(test_fun_info). | ||
-export([start/0]). | ||
|
||
-define(SUCCESS, (0)). | ||
-define(ERROR, (1)). | ||
|
||
start() -> | ||
try test_funs() of | ||
ok -> ?SUCCESS | ||
catch | ||
_:E -> | ||
erlang:display(E), | ||
?ERROR | ||
end. | ||
|
||
f(_X, _Y, _Z) -> ok. | ||
|
||
test_funs() -> | ||
LocalFun = fun(B) -> not B end, | ||
LocalFunRef = fun f/3, | ||
ExternalFunRef = fun erlang:apply/2, | ||
NotExistingFunRef = fun erlang:undef/8, | ||
|
||
{module, test_fun_info} = erlang:fun_info(LocalFun, module), | ||
{name, LocalFunName} = erlang:fun_info(LocalFun, name), | ||
% e.g. -test_funs/0-fun-1- | ||
true = atom_contains(LocalFunName, "test_funs"), | ||
{arity, 1} = erlang:fun_info(LocalFun, arity), | ||
{type, local} = erlang:fun_info(LocalFun, type), | ||
|
||
{module, test_fun_info} = erlang:fun_info(LocalFunRef, module), | ||
{name, LocalFunRefName} = erlang:fun_info(LocalFunRef, name), | ||
% across Erlang versions, this representation changed frequently | ||
Format1 = atom_contains(LocalFunRefName, "test_funs"), | ||
Format2 = atom_contains(LocalFunRefName, "f/3"), | ||
Format3 = LocalFunRefName == f, | ||
true = Format1 or Format2 or Format3, | ||
{arity, 3} = erlang:fun_info(LocalFunRef, arity), | ||
{type, local} = erlang:fun_info(LocalFunRef, type), | ||
|
||
{module, erlang} = erlang:fun_info(ExternalFunRef, module), | ||
{name, apply} = erlang:fun_info(ExternalFunRef, name), | ||
{arity, 2} = erlang:fun_info(ExternalFunRef, arity), | ||
{type, external} = erlang:fun_info(ExternalFunRef, type), | ||
|
||
{module, erlang} = erlang:fun_info(NotExistingFunRef, module), | ||
{name, undef} = erlang:fun_info(NotExistingFunRef, name), | ||
{arity, 8} = erlang:fun_info(NotExistingFunRef, arity), | ||
{type, external} = erlang:fun_info(NotExistingFunRef, type), | ||
|
||
ok. | ||
|
||
atom_contains(Atom, Pattern) when is_atom(Atom) -> | ||
atom_contains(atom_to_list(Atom), Pattern); | ||
atom_contains([_C | Rest] = String, Pattern) -> | ||
case prefix_match(String, Pattern) of | ||
true -> true; | ||
false -> atom_contains(Rest, Pattern) | ||
end; | ||
atom_contains([], _Pattern) -> | ||
false. | ||
|
||
prefix_match(_StringTail, []) -> | ||
true; | ||
prefix_match([Char | StringTail], [Char | PatternTail]) -> | ||
prefix_match(StringTail, PatternTail); | ||
prefix_match(_String, _Pattern) -> | ||
false. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters