Packages
ex_doc
0.37.1
0.40.3
0.40.2
0.40.1
0.40.0
0.39.3
0.39.2
0.39.1
0.39.0
0.38.4
0.38.3
0.38.2
0.38.1
0.38.0
0.37.3
0.37.2
0.37.1
0.37.0
0.37.0-rc.2
0.37.0-rc.1
0.37.0-rc.0
0.36.1
0.36.0
0.35.1
0.35.0
0.34.2
0.34.1
0.34.0
0.33.0
0.32.2
0.32.1
0.32.0
0.31.2
0.31.1
0.31.0
0.30.9
0.30.8
0.30.7
0.30.6
0.30.5
0.30.4
0.30.3
0.30.2
0.30.1
0.30.0
0.29.4
0.29.3
0.29.2
0.29.1
0.29.0
0.28.6
0.28.5
0.28.4
0.28.3
0.28.2
0.28.1
0.28.0
0.27.3
0.27.2
0.27.1
0.27.0
0.26.0
0.25.5
0.25.4
0.25.3
0.25.2
0.25.1
0.25.0
0.24.2
0.24.1
0.24.0
0.23.0
0.22.6
0.22.5
0.22.4
0.22.2
0.22.1
0.22.0
0.21.3
0.21.2
0.21.1
0.21.0
0.20.2
0.20.1
0.20.0
0.19.3
0.19.2
0.19.1
0.19.0
0.19.0-rc
0.18.4
0.18.3
0.18.2
0.18.1
0.18.0
retired
0.17.1
0.17.0
retired
0.16.4
0.16.3
0.16.2
0.16.1
0.16.0
0.15.1
0.15.0
0.14.5
0.14.4
0.14.3
0.14.2
0.14.1
0.14.0
0.13.2
0.13.1
0.13.0
0.12.0
0.11.5
0.11.4
0.11.3
0.11.2
0.11.1
0.11.0
0.10.0
0.9.0
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.3
0.7.2
0.7.1
0.7.0
0.6.2
0.6.1
0.6.0
0.5.2
0.5.1
ExDoc is a documentation generation tool for Elixir
Current section
Files
Jump to
Current section
Files
lib/ex_doc/language/elixir.ex
defmodule ExDoc.Language.Elixir do
@moduledoc false
@behaviour ExDoc.Language
alias ExDoc.Autolink
alias ExDoc.Language.Source
@impl true
@spec module_data(atom, any, any) ::
false
| %{
docs: any,
id: binary,
language: ExDoc.Language.Erlang,
source_line: pos_integer,
source_file: Path.t(),
source_basedir: Path.t(),
module: module,
nesting_info: nil,
private: %{
abst_code: any,
callbacks: map,
impls: map,
optional_callbacks: any,
specs: map
},
title: binary,
type: :module | :behaviour | :task | :protocol | :implementation | :exception
}
def module_data(module, docs_chunk, config) do
{type, skip} = module_type_and_skip(module)
cond do
skip ->
false
abst_code = Source.get_abstract_code(module) ->
title = module_title(module, type)
source_basedir = Source.fetch_basedir!(abst_code, module)
{source_file, source_line} =
Source.fetch_module_location!(abst_code, source_basedir, module)
optional_callbacks = Source.get_optional_callbacks(module, type)
%{
module: module,
default_groups: ~w(Types Callbacks Functions),
docs: docs_chunk,
language: __MODULE__,
id: inspect(module),
title: title,
type: type,
source_line: source_line,
source_file: source_file,
source_basedir: source_basedir,
nesting_info: nesting_info(title, config.nest_modules_by_prefix),
private: %{
abst_code: abst_code,
specs: Source.get_specs(abst_code, source_basedir),
callbacks: Source.get_callbacks(abst_code, source_basedir),
impls: get_impls(module),
optional_callbacks: optional_callbacks
}
}
true ->
ExDoc.Utils.warn(
"skipping docs for module #{inspect(module)}, reason: :no_debug_info",
[]
)
false
end
end
@impl true
def doc_data(entry, %{type: type} = module_data) do
case entry do
{_key, _anno, _sig, :hidden, _metadata} ->
false
{{_kind, name, _arity}, _anno, _sig, _doc, _metadata}
when name in [:impl_for, :impl_for!] and type == :protocol ->
false
{{kind, _, _}, _anon, _sig, _doc, _metadata} when kind in [:function, :macro] ->
function_data(entry, module_data)
{{kind, _, _}, _anon, _sig, _doc, _metadata}
when kind in [:callback, :macrocallback] and type != :protocol ->
callback_data(entry, module_data)
{{:type, _, _}, _anon, _sig, _doc, _metadata} ->
type_data(entry, module_data)
_ ->
false
end
end
defp function_data(entry, module_data) do
{{kind, name, arity}, anno, signature, _doc_content, metadata} = entry
extra_annotations =
case {kind, name, arity} do
{:macro, _, _} -> ["macro"]
{_, :__struct__, _} -> ["struct"]
_ -> []
end
actual_def = actual_def(name, arity, kind)
%{
id_key: "",
default_group: "Functions",
doc_fallback: fn ->
impl = Map.fetch(module_data.private.impls, actual_def)
callback_doc_ast(name, arity, impl) || delegate_doc_ast(metadata[:delegate_to])
end,
extra_annotations: extra_annotations,
signature: signature,
source_file: nil,
source_line: find_function_line(module_data, actual_def) || Source.anno_line(anno),
specs: specs(kind, name, actual_def, module_data),
type: kind
}
end
defp callback_data(entry, module_data) do
{{kind, name, arity}, anno, _signature, _doc, _metadata} = entry
actual_def = actual_def(name, arity, kind)
extra_annotations =
if actual_def in module_data.private.optional_callbacks, do: ["optional"], else: []
{anno, specs} =
case module_data.private.callbacks do
%{^actual_def => {:attribute, anno, :callback, {_name, specs}}} ->
{anno,
if kind == :macrocallback do
Enum.map(specs, &remove_callback_term/1)
else
specs
end}
%{} ->
{anno, []}
end
line = Source.anno_line(anno)
quoted = Enum.map(specs, &Code.Typespec.spec_to_quoted(name, &1))
signature = [get_typespec_signature(hd(quoted), arity)]
%{
id_key: "c:",
default_group: "Callbacks",
doc_fallback: fn -> nil end,
extra_annotations: extra_annotations,
signature: signature,
source_file: nil,
source_line: line,
specs: quoted,
type: kind
}
end
defp remove_callback_term({:type, num, :bounded_fun, [lhs, rhs]}) do
{:type, num, :bounded_fun, [remove_callback_term(lhs), rhs]}
end
defp remove_callback_term({:type, num, :fun, [{:type, num, :product, [_ | rest_args]} | rest]}) do
{:type, num, :fun, [{:type, num, :product, rest_args} | rest]}
end
defp type_data(entry, module_data) do
{{_kind, name, arity}, _anno, _signature, _doc, _metadata} = entry
%{type: type, spec: spec, source_file: source, source_line: line} =
Source.fetch_type!(module_data, name, arity)
quoted = spec |> Code.Typespec.type_to_quoted() |> process_type_ast(type)
signature = [get_typespec_signature(quoted, arity)]
%{
id_key: "t:",
default_group: "Types",
doc_fallback: fn -> nil end,
extra_annotations: [],
source_file: source,
source_line: line,
signature: signature,
specs: [quoted],
type: type
}
end
@autoimported_modules [Kernel, Kernel.SpecialForms]
@impl true
def try_autoimported_function(name, arity, mode, config, original_text) do
Enum.find_value(@autoimported_modules, fn module ->
Autolink.remote_url({:function, module, name, arity}, config, original_text,
warn?: false,
mode: mode
)
end)
end
@basic_types [
any: 0,
none: 0,
atom: 0,
map: 0,
pid: 0,
port: 0,
reference: 0,
struct: 0,
tuple: 0,
float: 0,
integer: 0,
neg_integer: 0,
non_neg_integer: 0,
pos_integer: 0,
list: 1,
nonempty_list: 1,
maybe_improper_list: 2,
nonempty_improper_list: 2,
nonempty_maybe_improper_list: 2
]
@built_in_types [
term: 0,
arity: 0,
as_boolean: 1,
binary: 0,
bitstring: 0,
boolean: 0,
byte: 0,
char: 0,
charlist: 0,
nonempty_charlist: 0,
fun: 0,
function: 0,
identifier: 0,
iodata: 0,
iolist: 0,
keyword: 0,
keyword: 1,
list: 0,
nonempty_list: 0,
maybe_improper_list: 0,
nonempty_maybe_improper_list: 0,
mfa: 0,
module: 0,
no_return: 0,
node: 0,
number: 0,
struct: 0,
timeout: 0
]
@impl true
def try_builtin_type(name, arity, _mode, config, _original_text)
when {name, arity} in @basic_types do
Autolink.ex_doc_app_url(Kernel, config, "typespecs", config.ext, "#basic-types")
end
def try_builtin_type(name, arity, _mode, config, _original_text)
when {name, arity} in @built_in_types do
Autolink.ex_doc_app_url(Kernel, config, "typespecs", config.ext, "#built-in-types")
end
def try_builtin_type(_name, _arity, _mode, _config, _original_text) do
nil
end
@impl true
def parse_module_function(string) do
case string |> String.split(".") |> Enum.reverse() do
[string] ->
with {:function, function} <- parse_function(string) do
{:local, function}
end
["", "", ""] ->
{:local, :..}
["//", "", ""] ->
{:local, :..//}
["", ""] ->
{:local, :.}
["", "", "" | rest] ->
module_string = rest |> Enum.reverse() |> Enum.join(".")
with {:module, module} <- parse_module(module_string, :custom_link) do
{:remote, module, :..}
end
["", "" | rest] ->
module_string = rest |> Enum.reverse() |> Enum.join(".")
with {:module, module} <- parse_module(module_string, :custom_link) do
{:remote, module, :.}
end
[function_string | rest] ->
module_string = rest |> Enum.reverse() |> Enum.join(".")
with {:module, module} <- parse_module(module_string, :custom_link),
{:function, function} <- parse_function(function_string) do
{:remote, module, function}
end
end
end
# There are special forms that are forbidden by the tokenizer
defp parse_function("__aliases__"), do: {:function, :__aliases__}
defp parse_function("__block__"), do: {:function, :__block__}
defp parse_function("%"), do: {:function, :%}
defp parse_function(string) do
case Code.string_to_quoted("& #{string}/0", warnings: false) do
{:ok, {:&, _, [{:/, _, [{function, _, _}, 0]}]}} when is_atom(function) ->
{:function, function}
_ ->
:error
end
end
@impl true
def parse_module(<<first>> <> _ = string, _mode) when first in ?A..?Z do
if string =~ ~r/^[A-Za-z0-9_.]+$/ do
do_parse_module(string)
else
:error
end
end
def parse_module(":" <> _ = string, :custom_link) do
do_parse_module(string)
end
def parse_module(_, _) do
:error
end
defp do_parse_module(string) do
case Code.string_to_quoted(string, warn_on_unnecessary_quotes: false, emit_warnings: false) do
{:ok, module} when is_atom(module) ->
{:module, module}
{:ok, {:__aliases__, _, parts}} ->
if Enum.all?(parts, &is_atom/1) do
{:module, Module.concat(parts)}
else
:error
end
_ ->
:error
end
end
@impl true
def autolink_doc(ast, opts) do
config = struct!(Autolink, opts)
true = config.language == __MODULE__
config = %{config | force_module_prefix: false}
walk_doc(ast, config)
end
@impl true
def autolink_spec(ast, opts) do
config = struct!(Autolink, opts)
string =
ast
|> Macro.to_string()
|> safe_format_string!()
|> ExDoc.Utils.h()
name = typespec_name(ast)
{name, rest} = split_name(string, name)
name <> do_typespec(rest, config)
end
@impl true
def highlight_info() do
%{
language_name: "elixir",
lexer: Makeup.Lexers.ElixirLexer,
opts: []
}
end
@impl true
def format_spec_attribute(%{type: :type}), do: "@type"
def format_spec_attribute(%{type: :opaque}), do: "@opaque"
def format_spec_attribute(%{type: :nominal}), do: "@nominal"
def format_spec_attribute(%{type: :callback}), do: "@callback"
def format_spec_attribute(%{type: :macrocallback}), do: "@macrocallback"
def format_spec_attribute(%{}), do: "@spec"
## Module Helpers
defp nesting_info(title, prefixes) do
prefixes
|> Enum.find(&String.starts_with?(title, &1 <> "."))
|> case do
nil -> nil
prefix -> {"." <> String.trim_leading(title, prefix <> "."), prefix}
end
end
defp module_type_and_skip(module) do
cond do
function_exported?(module, :__info__, 1) and
Enum.any?(module.__info__(:struct) || [], &(&1.field == :__exception__)) ->
{:exception, false}
function_exported?(module, :__protocol__, 1) ->
{:protocol, false}
function_exported?(module, :__impl__, 1) ->
{:impl, true}
match?("Elixir.Mix.Tasks." <> _, Atom.to_string(module)) ->
{:task, false}
function_exported?(module, :behaviour_info, 1) ->
{:behaviour, false}
true ->
{:module, false}
end
end
defp module_title(module, :task), do: "mix " <> task_name(module)
defp module_title(module, _), do: inspect(module)
defp task_name(module) do
"Elixir.Mix.Tasks." <> name = Atom.to_string(module)
name |> String.split(".") |> Enum.map_join(".", &Macro.underscore/1)
end
def get_impls(module) do
for behaviour <- behaviours_implemented_by(module),
abstract_code = Source.get_abstract_code(behaviour),
{callback, _} <- Source.get_callbacks(abstract_code, ""),
do: {callback, behaviour},
into: %{}
end
defp behaviours_implemented_by(module) do
for {:behaviour, list} <- module.module_info(:attributes),
behaviour <- list,
do: behaviour
end
## Helpers
defp specs(kind, name, actual_def, module_data) do
specs =
module_data.private.specs
|> Map.get(actual_def)
|> then(fn
{:attribute, _anno, :spec, {_name, type}} -> type
nil -> []
end)
|> Enum.map(&Code.Typespec.spec_to_quoted(name, &1))
if kind == :macro do
Enum.map(specs, &remove_first_macro_arg/1)
else
specs
end
end
defp actual_def(name, arity, :macrocallback) do
{String.to_atom("MACRO-" <> to_string(name)), arity + 1}
end
defp actual_def(name, arity, :macro) do
{String.to_atom("MACRO-" <> to_string(name)), arity + 1}
end
defp actual_def(name, arity, _), do: {name, arity}
defp remove_first_macro_arg({:"::", info, [{name, info2, [_term_arg | rest_args]}, return]}) do
{:"::", info, [{name, info2, rest_args}, return]}
end
defp remove_first_macro_arg({:when, meta, [lhs, rhs]}) do
{:when, meta, [remove_first_macro_arg(lhs), rhs]}
end
defp delegate_doc_ast({m, f, a}) do
[
{:p, [],
["See ", {:code, [class: "inline"], [Exception.format_mfa(m, f, a)], %{line: 1}}, "."],
%{}}
]
end
defp delegate_doc_ast(nil) do
nil
end
defp callback_doc_ast(name, arity, {:ok, behaviour}) do
[
{:p, [],
[
"Callback implementation for ",
{:code, [class: "inline"], ["c:#{inspect(behaviour)}.#{name}/#{arity}"], %{}},
"."
], %{}}
]
end
defp callback_doc_ast(_, _, _) do
nil
end
defp find_function_line(module_data, na) do
{_source, line} = Source.fetch_function_location!(module_data, na)
line
end
defp get_typespec_signature({:when, _, [{:"::", _, [{name, meta, args}, _]}, _]}, arity) do
Macro.to_string({name, meta, strip_types(args, arity)})
end
defp get_typespec_signature({:"::", _, [{name, meta, args}, _]}, arity) do
Macro.to_string({name, meta, strip_types(args, arity)})
end
defp get_typespec_signature({name, meta, args}, arity) do
Macro.to_string({name, meta, strip_types(args, arity)})
end
defp strip_types(args, arity) do
args
|> Enum.take(-arity)
|> Enum.with_index(1)
|> Enum.map(fn
{{:"::", _, [left, _]}, position} -> to_var(left, position)
{{:|, _, _}, position} -> to_var({}, position)
{left, position} -> to_var(left, position)
end)
|> Macro.prewalk(fn node -> Macro.update_meta(node, &Keyword.delete(&1, :line)) end)
end
defp to_var({:%, meta, [name, _]}, _), do: {:%, meta, [name, {:%{}, meta, []}]}
defp to_var({:%{}, _, _}, _), do: {:map, [], nil}
defp to_var({name, meta, _}, _) when is_atom(name), do: {name, meta, nil}
defp to_var({{:., meta, [_module, name]}, _, _args}, _) when is_atom(name),
do: {name, meta, nil}
defp to_var([{:->, _, _} | _], _), do: {:function, [], nil}
defp to_var({:<<>>, _, _}, _), do: {:binary, [], nil}
defp to_var({:{}, _, _}, _), do: {:tuple, [], nil}
defp to_var({_, _}, _), do: {:tuple, [], nil}
defp to_var(integer, _) when is_integer(integer), do: {:integer, [], nil}
defp to_var(float, _) when is_integer(float), do: {:float, [], nil}
defp to_var(list, _) when is_list(list), do: {:list, [], nil}
defp to_var(atom, _) when is_atom(atom), do: {:atom, [], nil}
defp to_var(_, position), do: {:"arg#{position}", [], nil}
# Cut off the body of an opaque type while leaving it on a normal type.
defp process_type_ast({:"::", _, [d | _]}, :opaque), do: d
defp process_type_ast(ast, _), do: ast
defp walk_doc(list, config) when is_list(list) do
Enum.map(list, &walk_doc(&1, config))
end
defp walk_doc(binary, _) when is_binary(binary) do
binary
end
defp walk_doc({:pre, _, _, _} = ast, _config) do
ast
end
defp walk_doc({:a, attrs, inner, meta} = ast, config) do
case Autolink.custom_link(attrs, config) do
url when is_binary(url) ->
{:a, Keyword.put(attrs, :href, url), inner, meta}
:remove_link ->
remove_link(ast)
nil ->
ast
end
end
defp walk_doc({:code, attrs, [code], meta} = ast, config) do
config = %{config | line: meta[:line]}
case Autolink.url(code, :regular_link, config) do
url when is_binary(url) ->
code =
code
|> remove_prefix()
|> remove_fragment()
{:a, [href: url], [{:code, attrs, [code], meta}], %{}}
:remove_link ->
{:code, attrs, [code], meta}
nil ->
ast
end
end
defp walk_doc({tag, attrs, ast, meta}, config) do
{tag, attrs, List.flatten(walk_doc(ast, config)), meta}
end
defp remove_link({:a, _attrs, inner, _meta}) do
inner
end
defp remove_prefix("c:" <> rest), do: rest
defp remove_prefix("t:" <> rest), do: rest
defp remove_prefix("m:" <> rest), do: rest
defp remove_prefix(rest), do: rest
defp remove_fragment(string) do
string |> String.split("#") |> hd()
end
defp safe_format_string!(string) do
try do
string
|> Code.format_string!(line_length: 80)
|> IO.iodata_to_binary()
rescue
_ -> string
end
end
defp typespec_name({:"::", _, [{name, _, _}, _]}), do: Atom.to_string(name)
defp typespec_name({:when, _, [left, _]}), do: typespec_name(left)
defp typespec_name({name, _, _}) when is_atom(name), do: Atom.to_string(name)
# extract out function name so we don't process it. This is to avoid linking it when there's
# a type with the same name
defp split_name(string, name) do
if String.starts_with?(string, name) do
{name, binary_part(string, byte_size(name), byte_size(string) - byte_size(name))}
else
{"", string}
end
end
defp do_typespec(string, config) do
regex = ~r{
( # <call_string>
(?:
( # <module_string>
(?:
\:[a-z][_a-zA-Z0-9]* # Erlang module
)|
(?:
[A-Z][_a-zA-Z0-9]* # Elixir module
(?:\.[A-Z][_a-zA-Z0-9]*)* # Elixir submodule
)
) # </module_string>
\. # Dot operator
)?
([a-z_][_a-zA-Z0-9]*[\?\!]?) # Name <name_string />
) # </call_string>
(\(.*\)) # Arguments <rest />
}x
Regex.replace(regex, string, fn _all, call_string, module_string, name_string, rest ->
module = string_to_module(module_string)
name = String.to_atom(name_string)
arity = count_args(rest, 0, 0)
original_text = call_string <> "()"
url =
if module do
Autolink.remote_url({:type, module, name, arity}, config, original_text)
else
Autolink.local_url(:type, name, arity, config, original_text)
end
if url do
~s[<a href="#{url}">#{ExDoc.Utils.h(call_string)}</a>]
else
call_string
end <> do_typespec(rest, config)
end)
end
defp string_to_module(""), do: nil
defp string_to_module(string) do
if String.starts_with?(string, ":") do
string |> String.trim_leading(":") |> String.to_atom()
else
Module.concat([string])
end
end
defp count_args("()" <> _, 0, 0), do: 0
defp count_args("(" <> rest, counter, acc), do: count_args(rest, counter + 1, acc)
defp count_args("[" <> rest, counter, acc), do: count_args(rest, counter + 1, acc)
defp count_args("{" <> rest, counter, acc), do: count_args(rest, counter + 1, acc)
defp count_args(")" <> _, 1, acc), do: acc + 1
defp count_args(")" <> rest, counter, acc), do: count_args(rest, counter - 1, acc)
defp count_args("]" <> rest, counter, acc), do: count_args(rest, counter - 1, acc)
defp count_args("}" <> rest, counter, acc), do: count_args(rest, counter - 1, acc)
defp count_args("," <> rest, 1, acc), do: count_args(rest, 1, acc + 1)
defp count_args(<<_>> <> rest, counter, acc), do: count_args(rest, counter, acc)
defp count_args("", _counter, acc), do: acc
end