table of contents
other versions
- jessie 1:17.3-dfsg-4+deb8u2
- jessie-backports 1:19.2.1+dfsg-2+deb9u1~bpo8+1
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.5+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0~rc1+dfsg-1
xref(3erl) | Erlang Module Definition | xref(3erl) |
NAME¶
xref - A Cross Reference Tool for analyzing dependencies between functions, modules, applications and releases.DESCRIPTION¶
Xref is a cross reference tool that can be used for finding dependencies between functions, modules, applications and releases. Calls between functions are either local calls like f(), or external calls like m:f(). Module data, which are extracted from BEAM files, include local functions, exported functions, local calls and external calls. By default, calls to built-in functions () are ignored, but if the option builtins, accepted by some of this module's functions, is set to true, calls to BIFs are included as well. It is the analyzing OTP version that decides what functions are BIFs. Functional objects are assumed to be called where they are created (and nowhere else). Unresolved calls are calls to apply or spawn with variable module, variable function, or variable arguments. Examples are M:F(a), apply(M, f, [a]), and spawn(m, f(), Args). Unresolved calls are represented by calls where variable modules have been replaced with the atom '$M_EXPR', variable functions have been replaced with the atom '$F_EXPR', and variable number of arguments have been replaced with the number -1. The above mentioned examples are represented by calls to '$M_EXPR':'$F_EXPR'/1, '$M_EXPR':f/1, and m:'$F_EXPR'/-1. The unresolved calls are a subset of the external calls.Warning:
Unresolved calls make module data incomplete, which implies that the results of
analyses may be invalid.
Applications are collections of modules. The modules' BEAM files are
located in the ebin subdirectory of the application directory. The name
of the application directory determines the name and version of the
application. Releases are collections of applications located in the
lib subdirectory of the release directory. There is more to read about
applications and releases in the Design Principles book.
Xref servers are identified by names, supplied when creating new servers.
Each Xref server holds a set of releases, a set of applications, and a set of
modules with module data. Xref servers are independent of each other, and all
analyses are evaluated in the context of one single Xref server (exceptions
are the functions m/1 and d/1 which do not use servers at all).
The mode of an Xref server determines what module data are extracted
from BEAM files as modules are added to the server. Starting with R7, BEAM
files compiled with the option debug_info contain so called debug
information, which is an abstract representation of the code. In
functions mode, which is the default mode, function calls and line
numbers are extracted from debug information. In modules mode, debug
information is ignored if present, but dependencies between modules are
extracted from other parts of the BEAM files. The modules mode is
significantly less time and space consuming than the functions mode,
but the analyses that can be done are limited.
An analyzed module is a module that has been added to an Xref server
together with its module data. A library module is a module located in
some directory mentioned in the library path. A library module is said
to be used if some of its exported functions are used by some analyzed module.
An unknown module is a module that is neither an analyzed module nor a
library module, but whose exported functions are used by some analyzed module.
An unknown function is a used function that is neither local or
exported by any analyzed module nor exported by any library module. An
undefined function is an externally used function that is not exported
by any analyzed module or library module. With this notion, a local function
can be an undefined function, namely if it is externally used from some
module. All unknown functions are also undefined functions; there is a
figure in the User's Guide that illustrates this relationship.
Starting with R9C, the module attribute tag deprecated can be used to
inform Xref about deprecated functions and optionally when functions
are planned to be removed. A few examples show the idea:
- -deprecated({f,1}).:
- The exported function f/1 is deprecated. Nothing is said whether f/1 will be removed or not.
- -deprecated({f,'_'}).:
- All exported functions f/0, f/1 and so on are deprecated.
- -deprecated(module).:
- All exported functions in the module are deprecated. Equivalent to -deprecated({'_','_'})..
- -deprecated([{g,1,next_version}]).:
- The function g/1 is deprecated and will be removed in next version.
- -deprecated([{g,2,next_major_release}]).:
- The function g/2 is deprecated and will be removed in next major release.
- -deprecated([{g,3,eventually}]).:
- The function g/3 is deprecated and will eventually be removed.
- -deprecated({'_','_',eventually}).:
- All exported functions in the module are deprecated and will eventually be removed.
- *
- Expression ::= Constants
- *
- Constants ::= Consts | Consts : Type | RegExpr
- *
- Consts ::= Constant | [Constant, ...] | {Constant , ...}
- *
- Constant ::= Call | Const
- *
- Call ::= FunSpec -> FunSpec | {MFA, MFA} | AtomConst -> AtomConst | {AtomConst, AtomConst}
- *
- Const ::= AtomConst | FunSpec | MFA
- *
- AtomConst ::= Application | Module | Release
- *
- FunSpec ::= Module : Function / Arity
- *
- MFA ::= {Module, Function, Arity}
- *
- RegExpr ::= RegString : Type | RegFunc | RegFunc : Type
- *
- RegFunc ::= RegModule : RegFunction / RegArity
- *
- RegModule ::= RegAtom
- *
- RegFunction ::= RegAtom
- *
- RegArity ::= RegString | Number | _ | -1
- *
- RegAtom ::= RegString | Atom | _
- *
- RegString ::= - a regular expression, as described in the re module, enclosed in double quotes -
- *
- Type ::= Fun | Mod | App | Rel
- *
- Function ::= Atom
- *
- Application ::= Atom
- *
- Module ::= Atom
- *
- Release ::= Atom
- *
- Arity ::= Number | -1
- *
- Atom ::= - same as Erlang atoms -
- *
- Number ::= - same as non-negative Erlang integers -
- *
- Expression ::= Variable
- *
- Variable ::= - same as Erlang variables -
- E:
- Call Graph Edges (*).
- V:
- Call Graph Vertices (*).
- M:
- Modules. All modules: analyzed modules, used library modules, and unknown modules.
- A:
- Applications.
- R:
- Releases.
- ME:
- Module Edges. All module calls.
- AE:
- Application Edges. All application calls.
- RE:
- Release Edges. All release calls.
- L:
- Local Functions (*). All local functions of analyzed modules.
- X:
- Exported Functions. All exported functions of analyzed modules and all used exported functions of library modules.
- F:
- Functions (*).
- B:
- Used BIFs. B is empty if builtins is false for all analyzed modules.
- U:
- Unknown Functions.
- UU:
- Unused Functions (*). All local and exported functions of analyzed modules that have not been used.
- XU:
- Externally Used Functions. Functions of all modules - including local functions - that have been used in some external call.
- LU:
- Locally Used Functions (*). Functions of all modules that have been used in some local call.
- LC:
- Local Calls (*).
- XC:
- External Calls (*).
- AM:
- Analyzed Modules.
- UM:
- Unknown Modules.
- LM:
- Used Library Modules.
- UC:
- Unresolved Calls. Empty in modules mode.
- EE:
- Inter Call Graph Edges (*).
- DF:
- Deprecated Functions. All deprecated exported functions and all used deprecated BIFs.
- DF_1:
- Deprecated Functions. All deprecated functions to be removed in next version.
- DF_2:
- Deprecated Functions. All deprecated functions to be removed in next version or next major release.
- DF_3:
- Deprecated Functions. All deprecated functions to be removed in next version, next major release, or later.
- *
- F is equal to L + X.
- *
- V is equal to X + L + B + U, where X, L, B and U are pairwise disjoint (that is, have no elements in common).
- *
- UU is equal to V - (XU + LU), where LU and XU may have elements in common. Put in another way:
- *
- V is equal to UU + XU + LU.
- *
- E is equal to LC + XC. Note that LC and XC may have elements in common, namely if some function is locally and externally used from one and the same function.
- *
- U is a subset of XU.
- *
- B is a subset of XU.
- *
- LU is equal to range LC.
- *
- XU is equal to range XC.
- *
- LU is a subset of F.
- *
- UU is a subset of F.
- *
- range UC is a subset of U.
- *
- M is equal to AM + LM + UM, where AM, LM and UM are pairwise disjoint.
- *
- ME is equal to (Mod) E.
- *
- AE is equal to (App) E.
- *
- RE is equal to (Rel) E.
- *
- (Mod) V is a subset of M. Equality holds if all analyzed modules have some local, exported, or unknown function.
- *
- (App) M is a subset of A. Equality holds if all applications have some module.
- *
- (Rel) A is a subset of R. Equality holds if all releases have some application.
- *
- DF_1 is a subset of DF_2.
- *
- DF_2 is a subset of DF_3.
- *
- DF_3 is a subset of DF.
- *
- DF is a subset of X + B.
- *
- Expression ::= ( Type ) Expression
- *
- Expression ::= Expression BinarySetOp Expression
- *
- BinarySetOp ::= + | * | -
- *
- Expression ::= UnarySetOp Expression
- *
- UnarySetOp ::= domain | range | strict
- *
- Expression ::= Expression RestrOp Expression
- *
- RestrOp ::= |
- *
- RestrOp ::= ||
- *
- RestrOp ::= |||
- |:
- The subset of calls from any of the vertices.
- ||:
- The subset of calls to any of the vertices.
- |||:
- The subset of calls to and from any of the vertices. For all sets of calls CS and all sets of vertices VS, CS ||| VS is equivalent to CS | VS * CS || VS.
- *
- Expression ::= Expression GraphOp Expression
- *
- GraphOp ::= components | condensation | of
- *
- Expression ::= ClosureOp Expression
- *
- ClosureOp ::= closure
- *
- Expression ::= ( LineOp) Expression
- *
- Expression ::= ( XLineOp) Expression
- *
- LineOp ::= Lin | ELin | LLin | XLin
- *
- XLineOp ::= XXL
- *
- the Lin operator is defined for Call Graph Edges;
- *
- the LLin operator is defined for Local Calls.
- *
- the XLin operator is defined for External Calls.
- *
- the ELin operator is defined for Inter Call Graph Edges.
- *
- Expression ::= CountOp Expression
- *
- CountOp ::= #
- *
- +, -
- *
- *
- *
- #
- *
- |, ||, |||
- *
- of
- *
- (Type)
- *
- closure, components, condensation, domain, range, strict
- *
- Expression ::= ( Expression )
- *
- Query ::= Statement, ...
- *
- Statement ::= Assignment | Expression
- *
- Assignment ::= Variable := Expression | Variable = Expression
application() = atom() arity() = int() | -1 bool() = true | false call() = {atom(), atom()} | funcall() constant() = mfa() | module() | application() | release() directory() = string() file() = string() funcall() = {mfa(), mfa()} function() = atom() int() = integer() >= 0 library() = atom() library_path() = path() | code_path mfa() = {module(), function(), arity()} mode() = functions | modules module() = atom() release() = atom() string_position() = int() | at_end variable() = atom() xref() = atom() | pid()
EXPORTS¶
add_application(Xref, Directory [, Options]) -> {ok, application()} | Error
Types:
Directory = directory()
Error = {error, module(), Reason}
Options = [Option] | Option
Option = {builtins, bool()} | {name, application()} | {verbose, bool()} |
{warnings, bool()}
Reason = {application_clash, {application(), directory(), directory()}} |
{file_error, file(), error()} | {invalid_filename, term()} | {invalid_options,
term()} | - see also add_directory -
Xref = xref()
Adds an application, the modules of the application and module data of
the modules to an Xref server. The modules will be members of the
application. The default is to use the base name of the directory with the
version removed as application name, but this can be overridden by the
name option. Returns the name of the application.
If the given directory has a subdirectory named ebin, modules (BEAM
files) are searched for in that directory, otherwise modules are searched for
in the given directory.
If the mode of the Xref server is functions, BEAM files that
contain no debug information are ignored.
add_directory(Xref, Directory [, Options]) -> {ok, Modules} | Error
Types:
Directory = directory()
Error = {error, module(), Reason}
Modules = [module()]
Options = [Option] | Option
Option = {builtins, bool()} | {recurse, bool()} | {verbose, bool()} | {warnings,
bool()}
Reason = {file_error, file(), error()} | {invalid_filename, term()} |
{invalid_options, term()} | {unrecognized_file, file()} | - error from
beam_lib:chunks/2 -
Xref = xref()
Adds the modules found in the given directory and the modules' data to an
Xref server. The default is not to examine subdirectories, but if the
option recurse has the value true, modules are searched for in
subdirectories on all levels as well as in the given directory. Returns a
sorted list of the names of the added modules.
The modules added will not be members of any applications.
If the mode of the Xref server is functions, BEAM files that
contain no debug information are ignored.
add_module(Xref, File [, Options]) -> {ok, module()} | Error
Types:
Error = {error, module(), Reason}
File = file()
Options = [Option] | Option
Option = {builtins, bool()} | {verbose, bool()} | {warnings, bool()}
Reason = {file_error, file(), error()} | {invalid_filename, term()} |
{invalid_options, term()} | {module_clash, {module(), file(), file()}} |
{no_debug_info, file()} | - error from beam_lib:chunks/2 -
Xref = xref()
Adds a module and its module data to an Xref server. The module
will not be member of any application. Returns the name of the module.
If the mode of the Xref server is functions, and the BEAM file
contains no debug information, the error message no_debug_info
is returned.
add_release(Xref, Directory [, Options]) -> {ok, release()} | Error
Types:
Directory = directory()
Error = {error, module(), Reason}
Options = [Option] | Option
Option = {builtins, bool()} | {name, release()} | {verbose, bool()} | {warnings,
bool()}
Reason = {application_clash, {application(), directory(), directory()}} |
{file_error, file(), error()} | {invalid_filename, term()} | {invalid_options,
term()} | {release_clash, {release(), directory(), directory()}} | - see also
add_directory -
Xref = xref()
Adds a release, the applications of the release, the modules of the
applications, and module data of the modules to an Xref server.
The applications will be members of the release, and the modules will be
members of the applications. The default is to use the base name of the
directory as release name, but this can be overridden by the name
option. Returns the name of the release.
If the given directory has a subdirectory named lib, the directories in
that directory are assumed to be application directories, otherwise all
subdirectories of the given directory are assumed to be application
directories. If there are several versions of some application, the one with
the highest version is chosen.
If the mode of the Xref server is functions, BEAM files that
contain no debug information are ignored.
analyze(Xref, Analysis [, Options]) -> {ok, Answer} | Error
Types:
Analysis = undefined_function_calls | undefined_functions
| locals_not_used | exports_not_used | deprecated_function_calls |
{deprecated_function_calls, DeprFlag} | deprecated_functions |
{deprecated_functions, DeprFlag} | {call, FuncSpec} | {use, FuncSpec} |
{module_call, ModSpec} | {module_use, ModSpec} | {application_call, AppSpec} |
{application_use, AppSpec} | {release_call, RelSpec} | {release_use, RelSpec}
Answer = [term()]
AppSpec = application() | [application()]
DeprFlag = next_version | next_major_release | eventually
Error = {error, module(), Reason}
FuncSpec = mfa() | [mfa()]
ModSpec = module() | [module()]
Options = [Option] | Option
Option = {verbose, bool()}
RelSpec = release() | [release()]
Reason = {invalid_options, term()} | {parse_error, string_position(), term()} |
{unavailable_analysis, term()} | {unknown_analysis, term()} |
{unknown_constant, string()} | {unknown_variable, variable()}
Xref = xref()
Evaluates a predefined analysis. Returns a sorted list without duplicates of
call() or constant(), depending on the chosen analysis. The
predefined analyses, which operate on all analyzed modules, are
(analyses marked with (*) are available in functionsmode only):
d(Directory) -> [DebugInfoResult] | [NoDebugInfoResult] | Error
- undefined_function_calls(*):
- Returns a list of calls to undefined functions.
- undefined_functions:
- Returns a list of undefined functions.
- locals_not_used(*):
- Returns a list of local functions that have not been locally used.
- exports_not_used:
- Returns a list of exported functions that have not been externally used.
- deprecated_function_calls(*):
- Returns a list of external calls to deprecated functions.
- {deprecated_function_calls, DeprFlag}(*):
- Returns a list of external calls to deprecated functions. If DeprFlag is equal to next_version, calls to functions to be removed in next version are returned. If DeprFlag is equal to next_major_release, calls to functions to be removed in next major release are returned as well as calls to functions to be removed in next version. Finally, if DeprFlag is equal to eventually, all calls to functions to be removed are returned, including calls to functions to be removed in next version or next major release.
- deprecated_functions:
- Returns a list of externally used deprecated functions.
- {deprecated_functions, DeprFlag}:
- Returns a list of externally used deprecated functions. If DeprFlag is equal to next_version, functions to be removed in next version are returned. If DeprFlag is equal to next_major_release, functions to be removed in next major release are returned as well as functions to be removed in next version. Finally, if DeprFlag is equal to eventually, all functions to be removed are returned, including functions to be removed in next version or next major release.
- {call, FuncSpec}(*):
- Returns a list of functions called by some of the given functions.
- {use, FuncSpec}(*):
- Returns a list of functions that use some of the given functions.
- {module_call, ModSpec}:
- Returns a list of modules called by some of the given modules.
- {module_use, ModSpec}:
- Returns a list of modules that use some of the given modules.
- {application_call, AppSpec}:
- Returns a list of applications called by some of the given applications.
- {application_use, AppSpec}:
- Returns a list of applications that use some of the given applications.
- {release_call, RelSpec}:
- Returns a list of releases called by some of the given releases.
- {release_use, RelSpec}:
- Returns a list of releases that use some of the given releases.
Types:
Directory = directory()
DebugInfoResult = {deprecated, [funcall()]} | {undefined, [funcall()]} |
{unused, [mfa()]}
Error = {error, module(), Reason}
NoDebugInfoResult = {deprecated, [mfa()]} | {undefined, [mfa()]}
Reason = {file_error, file(), error()} | {invalid_filename, term()} |
{unrecognized_file, file()} | - error from beam_lib:chunks/2 -
The modules found in the given directory are checked for calls to deprecated
functions, calls to undefined functions, and for unused local
functions. The code path is used as library path.
If some of the found BEAM files contain debug information, then those
modules are checked and a list of tuples is returned. The first element of
each tuple is one of:
If no BEAM file contains debug information, then a list of tuples is returned.
The first element of each tuple is one of:
forget(Xref) -> ok
- *
- deprecated, the second element is a sorted list of calls to deprecated functions;
- *
- undefined, the second element is a sorted list of calls to undefined functions;
- *
- unused, the second element is a sorted list of unused local functions.
- *
- deprecated, the second element is a sorted list of externally used deprecated functions;
- *
- undefined, the second element is a sorted list of undefined functions.
Types:
Error = {error, module(), Reason}
Reason = {not_user_variable, term()}
Variables = [variable()] | variable()
Xref = xref()
forget/1 and forget/2 remove all or some of the user
variables of an xref server.
format_error(Error) -> Chars
Types:
Error = {error, module(), term()}
Chars = [char() | Chars]
Given the error returned by any function of this module, the function
format_error returns a descriptive string of the error in English. For
file errors, the function format_error/1 in the file module is
called.
get_default(Xref) -> [{Option, Value}]
Types:
Error = {error, module(), Reason}
Option = builtins | recurse | verbose | warnings
Reason = {invalid_options, term()}
Value = bool()
Xref = xref()
Returns the default values of one or more options.
get_library_path(Xref) -> {ok, LibraryPath}
Types:
LibraryPath = library_path()
Xref = xref()
Returns the library path.
info(Xref) -> [Info]
Types:
Application = [] | [application()]
Category = modules | applications | releases | libraries
Info = {application, Application} | {builtins, bool()} | {directory,
directory()} | {library_path, library_path()} | {mode, mode()} |
{no_analyzed_modules, int()} | {no_applications, int()} | {no_calls,
{NoResolved, NoUnresolved}} | {no_function_calls, {NoLocal,
NoResolvedExternal, NoUnresolved}} | {no_functions, {NoLocal, NoExternal}} |
{no_inter_function_calls, int()} | {no_releases, int()} | {release, Release} |
{version, Version}
Item = module() | application() | release() | library()
Items = Item | [Item]
NoLocal = NoExternal = NoResolvedExternal, NoResolved = NoUnresolved = int()
Release = [] | [release()]
Version = [int()]
Xref = xref()
The info functions return information as a list of pairs {Tag, term()} in
some order about the state and the module data of an Xref
server.
info/1 returns information with the following tags (tags marked with (*)
are available in functions mode only):
info/2 and info/3 return information about all or some of the
analyzed modules, applications, releases or library modules of an Xref server.
The following information is returned for every analyzed module:
The following information is returned for every application:
The following information is returned for every release:
The following information is returned for every library module:
For every number of calls, functions etc. returned by the no_ tags, there
is a query returning the same number. Listed below are examples of such
queries. Some of the queries return the sum of a two or more of the no_
tags numbers. mod (app, rel) refers to any module
(application, release).
m(Module) -> [DebugInfoResult] | [NoDebugInfoResult] | Error
- *
- library_path, the library path;
- *
- mode, the mode;
- *
- no_releases, number of releases;
- *
- no_applications, total number of applications (of all releases);
- *
- no_analyzed_modules, total number of analyzed modules;
- *
- no_calls (*), total number of calls (in all modules), regarding instances of one function call in different lines as separate calls;
- *
- no_function_calls (*), total number of local calls, resolved external calls and unresolved calls;
- *
- no_functions (*), total number of local and exported functions;
- *
- no_inter_function_calls (*), total number of calls of the Inter Call Graph.
- *
- application, an empty list if the module does not belong to any application, otherwise a list of the application name;
- *
- builtins, whether calls to BIFs are included in the module's data;
- *
- directory, the directory where the module's BEAM file is located;
- *
- no_calls (*), number of calls, regarding instances of one function call in different lines as separate calls;
- *
- no_function_calls (*), number of local calls, resolved external calls and unresolved calls;
- *
- no_functions (*), number of local and exported functions;
- *
- no_inter_function_calls (*), number of calls of the Inter Call Graph;
- *
- directory, the directory where the modules' BEAM files are located;
- *
- no_analyzed_modules, number of analyzed modules;
- *
- no_calls (*), number of calls of the application's modules, regarding instances of one function call in different lines as separate calls;
- *
- no_function_calls (*), number of local calls, resolved external calls and unresolved calls of the application's modules;
- *
- no_functions (*), number of local and exported functions of the application's modules;
- *
- no_inter_function_calls (*), number of calls of the Inter Call Graph of the application's modules;
- *
- release, an empty list if the application does not belong to any release, otherwise a list of the release name;
- *
- version, the application's version as a list of numbers. For instance, the directory "kernel-2.6" results in the application name kernel and the application version [2,6]; "kernel" yields the name kernel and the version [].
- *
- directory, the release directory;
- *
- no_analyzed_modules, number of analyzed modules;
- *
- no_applications, number of applications;
- *
- no_calls (*), number of calls of the release's modules, regarding instances of one function call in different lines as separate calls;
- *
- no_function_calls (*), number of local calls, resolved external calls and unresolved calls of the release's modules;
- *
- no_functions (*), number of local and exported functions of the release's modules;
- *
- no_inter_function_calls (*), number of calls of the Inter Call Graph of the release's modules.
- *
- directory, the directory where the library module's BEAM file is located.
- *
- no_analyzed_modules
- *
- "# AM" (info/1)
- *
- "# (Mod) app:App" (application)
- *
- "# (Mod) rel:Rel" (release)
- *
- no_applications
- *
- "# A" (info/1)
- *
- no_calls. The sum of the number of resolved and unresolved calls:
- *
- "# (XLin) E + # (LLin) E" (info/1)
- *
- "T = E | mod:Mod, # (LLin) T + # (XLin) T" (module)
- *
- "T = E | app:App, # (LLin) T + # (XLin) T" (application)
- *
- "T = E | rel:Rel, # (LLin) T + # (XLin) T" (release)
- *
- no_functions. Functions in library modules and the functions module_info/0,1 are not counted by info. Assuming that "Extra := _:module_info/\"(0|1)\" + LM" has been evaluated, the sum of the number of local and exported functions are:
- *
- "# (F - Extra)" (info/1)
- *
- "# (F * mod:Mod - Extra)" (module)
- *
- "# (F * app:App - Extra)" (application)
- *
- "# (F * rel:Rel - Extra)" (release)
- *
- no_function_calls. The sum of the number of local calls, resolved external calls and unresolved calls:
- *
- "# LC + # XC" (info/1)
- *
- "# LC | mod:Mod + # XC | mod:Mod" (module)
- *
- "# LC | app:App + # XC | app:App" (application)
- *
- "# LC | rel:Rel + # XC | mod:Rel" (release)
- *
- no_inter_function_calls
- *
- "# EE" (info/1)
- *
- "# EE | mod:Mod" (module)
- *
- "# EE | app:App" (application)
- *
- "# EE | rel:Rel" (release)
- *
- no_releases
- *
- "# R" (info/1)
Types:
DebugInfoResult = {deprecated, [funcall()]} | {undefined,
[funcall()]} | {unused, [mfa()]}
Error = {error, module(), Reason}
File = file()
Module = module()
NoDebugInfoResult = {deprecated, [mfa()]} | {undefined, [mfa()]}
Reason = {file_error, file(), error()} | {interpreted, module()} |
{invalid_filename, term()} | {cover_compiled, module()} | {no_such_module,
module()} | - error from beam_lib:chunks/2 -
The given BEAM file (with or without the .beam extension) or the file
found by calling code:which(Module) is checked for calls to
deprecated functions, calls to undefined functions, and for
unused local functions. The code path is used as library path.
If the BEAM file contains debug information, then a list of tuples is
returned. The first element of each tuple is one of:
If the BEAM file does not contain debug information, then a list of tuples is
returned. The first element of each tuple is one of:
q(Xref, Query [, Options]) -> {ok, Answer} | Error
- *
- deprecated, the second element is a sorted list of calls to deprecated functions;
- *
- undefined, the second element is a sorted list of calls to undefined functions;
- *
- unused, the second element is a sorted list of unused local functions.
- *
- deprecated, the second element is a sorted list of externally used deprecated functions;
- *
- undefined, the second element is a sorted list of undefined functions.
Types:
Answer = false | [constant()] | [Call] | [Component] |
int() | [DefineAt] | [CallAt] | [AllLines]
Call = call() | ComponentCall
ComponentCall = {Component, Component}
Component = [constant()]
DefineAt = {mfa(), LineNumber}
CallAt = {funcall(), LineNumbers}
AllLines = {{DefineAt, DefineAt}, LineNumbers}
Error = {error, module(), Reason}
LineNumbers = [LineNumber]
LineNumber = int()
Options = [Option] | Option
Option = {verbose, bool()}
Query = string() | atom()
Reason = {invalid_options, term()} | {parse_error, string_position(), term()} |
{type_error, string()} | {type_mismatch, string(), string()} |
{unknown_analysis, term()} | {unknown_constant, string()} | {unknown_variable,
variable()} | {variable_reassigned, string()}
Xref = xref()
Evaluates a query in the context of an Xref server, and returns
the value of the last statement. The syntax of the value depends on the
expression:
For both CallAt and AllLines it holds that for no list element is
LineNumbers an empty list; such elements have been removed. The
constants of component and the integers of LineNumbers are
sorted and without duplicates.
remove_application(Xref, Applications) -> ok | Error
- *
- A set of calls is represented by a sorted list without duplicates of call().
- *
- A set of constants is represented by a sorted list without duplicates of constant().
- *
- A set of strongly connected components is a sorted list without duplicates of Component.
- *
- A set of calls between strongly connected components is a sorted list without duplicates of ComponentCall.
- *
- A chain of calls is represented by a list of constant(). The list contains the From vertex of every call and the To vertex of the last call.
- *
- The of operator returns false if no chain of calls between the given constants can be found.
- *
- The value of the closure operator (the digraph representation) is represented by the atom 'closure()'.
- *
- A set of line numbered functions is represented by a sorted list without duplicates of DefineAt.
- *
- A set of line numbered function calls is represented by a sorted list without duplicates of CallAt.
- *
- A set of line numbered functions and function calls is represented by a sorted list without duplicates of AllLines.
Types:
Applications = application() | [application()]
Error = {error, module(), Reason}
Reason = {no_such_application, application()}
Xref = xref()
Removes applications and their modules and module data from an Xref
server.
remove_module(Xref, Modules) -> ok | Error
Types:
Error = {error, module(), Reason}
Modules = module() | [module()]
Reason = {no_such_module, module()}
Xref = xref()
Removes analyzed modules and module data from an Xref
server.
remove_release(Xref, Releases) -> ok | Error
Types:
Error = {error, module(), Reason}
Reason = {no_such_release, release()}
Releases = release() | [release()]
Xref = xref()
Removes releases and their applications, modules and module data from an
Xref server.
replace_application(Xref, Application, Directory [, Options]) -> {ok,
application()} | Error
Types:
Application = application()
Directory = directory()
Error = {error, module(), Reason}
Options = [Option] | Option
Option = {builtins, bool()} | {verbose, bool()} | {warnings, bool()}
Reason = {no_such_application, application()} | - see also add_application -
Xref = xref()
Replaces the modules of an application with other modules read from an
application directory. Release membership of the application is retained. Note
that the name of the application is kept; the name of the given directory is
not used.
replace_module(Xref, Module, File [, Options]) -> {ok, module()} |
Error
Types:
Error = {error, module(), Reason}
File = file()
Module = module()
Options = [Option] | Option
Option = {verbose, bool()} | {warnings, bool()}
ReadModule = module()
Reason = {module_mismatch, module(), ReadModule} | {no_such_module, module()} |
- see also add_module -
Xref = xref()
Replaces module data of an analyzed module with data read from a
BEAM file. Application membership of the module is retained, and so is the
value of the builtins option of the module. An error is returned if the
name of the read module differs from the given module.
The update function is an alternative for updating module data of
recompiled modules.
set_default(Xref, Option, Value) -> {ok, OldValue} | Error
Types:
Error = {error, module(), Reason}
OptionValues = [OptionValue] | OptionValue
OptionValue = {Option, Value}
Option = builtins | recurse | verbose | warnings
Reason = {invalid_options, term()}
Value = bool()
Xref = xref()
Sets the default value of one or more options. The options that can be set this
way are:
The initial default values are set when creating an Xref server.
set_library_path(Xref, LibraryPath [, Options]) -> ok | Error
- *
- builtins, with initial default value false;
- *
- recurse, with initial default value false;
- *
- verbose, with initial default value false;
- *
- warnings, with initial default value true.
Types:
Error = {error, module(), Reason}
LibraryPath = library_path()
Options = [Option] | Option
Option = {verbose, bool()}
Reason = {invalid_options, term()} | {invalid_path, term()}
Xref = xref()
Sets the library path. If the given path is a list of directories, the
set of library modules is determined by choosing the first module
encountered while traversing the directories in the given order, for those
modules that occur in more than one directory. By default, the library path is
an empty list.
The library path code_path is used by the functions m/1 and
d/1, but can also be set explicitly. Note however that the code path
will be traversed once for each used library module while setting up
module data. On the other hand, if there are only a few modules that are used
but not analyzed, using code_path may be faster than setting the
library path to code:get_path().
If the library path is set to code_path, the set of library modules is
not determined, and the info functions will return empty lists of
library modules.
start(NameOrOptions) -> Return
Types:
NameOrOptions = Name | Options
Name = atom()
Options = [Option] | Option
Option = {xref_mode, mode()} | term()
Return = {ok, pid()} | {error, {already_started, pid()}}
Creates an Xref server. The process may optionally be given a name. The
default mode is functions. Options that are not recognized by
Xref are passed on to gen_server:start/4.
start(Name, Options) -> Return
Types:
Name = atom()
Options = [Option] | Option
Option = {xref_mode, mode()} | term()
Return = {ok, pid()} | {error, {already_started, pid()}}
Creates an Xref server with a given name. The default mode is
functions. Options that are not recognized by Xref are passed on to
gen_server:start/4.
stop(Xref)
Types:
Xref = xref()
Stops an Xref server.
update(Xref [, Options]) -> {ok, Modules} | Error
Types:
Error = {error, module(), Reason}
Modules = [module()]
Options = [Option] | Option
Option = {verbose, bool()} | {warnings, bool()}
Reason = {invalid_options, term()} | {module_mismatch, module(), ReadModule} | -
see also add_module -
Xref = xref()
Replaces the module data of all analyzed modules the BEAM files of
which have been modified since last read by an add function or
update. Application membership of the modules is retained, and so is
the value of the builtins option. Returns a sorted list of the names of
the replaced modules.
variables(Xref [, Options]) -> {ok, [VariableInfo]}
Types:
Options = [Option] | Option
Option = predefined | user | {verbose, bool()}
Reason = {invalid_options, term()}
VariableInfo = {predefined, [variable()]} | {user, [variable()]}
Xref = xref()
Returns a sorted lists of the names of the variables of an Xref server.
The default is to return the user variables only.
SEE ALSO¶
beam_lib(3erl), digraph(3erl), digraph_utils(3erl), re(3erl), TOOLS User's Guidetools 2.9 | Ericsson AB |