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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
|
%% Compiler backend to Erlang.
-module(elixir_erl).
-export([elixir_to_erl/1, elixir_to_erl/2, definition_to_anonymous/5, compile/1, consolidate/3,
get_ann/1, debug_info/4, scope/2, format_error/1]).
-include("elixir.hrl").
-define(typespecs, 'Elixir.Kernel.Typespec').
%% debug_info callback
debug_info(elixir_v1, _Module, none, _Opts) ->
{error, missing};
debug_info(elixir_v1, _Module, {elixir_v1, Map, _Specs}, _Opts) ->
{ok, Map};
debug_info(erlang_v1, _Module, {elixir_v1, Map, Specs}, _Opts) ->
{Prefix, Forms, _, _, _} = dynamic_form(Map),
{ok, Prefix ++ Specs ++ Forms};
debug_info(core_v1, _Module, {elixir_v1, Map, Specs}, Opts) ->
{Prefix, Forms, _, _, _} = dynamic_form(Map),
#{compile_opts := CompileOpts} = Map,
AllOpts = CompileOpts ++ Opts,
%% Do not rely on elixir_erl_compiler because we don't warn
%% warnings nor the other functionality provided there.
case elixir_erl_compiler:erl_to_core(Prefix ++ Specs ++ Forms, AllOpts) of
{ok, CoreForms, _} ->
try compile:noenv_forms(CoreForms, [no_spawn_compiler_process, from_core, to_core, return | AllOpts]) of
{ok, _, Core, _} -> {ok, Core};
_What -> {error, failed_conversion}
catch
error:_ -> {error, failed_conversion}
end;
_ ->
{error, failed_conversion}
end;
debug_info(_, _, _, _) ->
{error, unknown_format}.
%% Builds Erlang AST annotation.
get_ann(Opts) when is_list(Opts) ->
get_ann(Opts, false, 0).
get_ann([{generated, true} | T], _, Line) -> get_ann(T, true, Line);
get_ann([{line, Line} | T], Gen, _) when is_integer(Line) -> get_ann(T, Gen, Line);
get_ann([_ | T], Gen, Line) -> get_ann(T, Gen, Line);
get_ann([], Gen, Line) -> erl_anno:set_generated(Gen, erl_anno:new(Line)).
%% Converts an Elixir definition to an anonymous function.
definition_to_anonymous(Kind, Meta, Clauses, LocalHandler, ExternalHandler) ->
ErlClauses = [translate_clause(Kind, 0, Clause, true) || Clause <- Clauses],
Fun = {'fun', ?ann(Meta), {clauses, ErlClauses}},
{value, Result, _Binding} = erl_eval:expr(Fun, [], LocalHandler, ExternalHandler),
Result.
%% Converts Elixir quoted literals to Erlang AST.
elixir_to_erl(Tree) ->
elixir_to_erl(Tree, erl_anno:new(0)).
elixir_to_erl(Tree, Ann) when is_tuple(Tree) ->
{tuple, Ann, [elixir_to_erl(X, Ann) || X <- tuple_to_list(Tree)]};
elixir_to_erl([], Ann) ->
{nil, Ann};
elixir_to_erl(<<>>, Ann) ->
{bin, Ann, []};
elixir_to_erl(#{} = Map, Ann) ->
Assocs = [{map_field_assoc, Ann, elixir_to_erl(K, Ann), elixir_to_erl(V, Ann)} || {K, V} <- maps:to_list(Map)],
{map, Ann, Assocs};
elixir_to_erl(Tree, Ann) when is_list(Tree) ->
elixir_to_erl_cons(Tree, Ann);
elixir_to_erl(Tree, Ann) when is_atom(Tree) ->
{atom, Ann, Tree};
elixir_to_erl(Tree, Ann) when is_integer(Tree) ->
{integer, Ann, Tree};
elixir_to_erl(Tree, Ann) when is_float(Tree) ->
{float, Ann, Tree};
elixir_to_erl(Tree, Ann) when is_binary(Tree) ->
%% Note that our binaries are UTF-8 encoded and we are converting
%% to a list using binary_to_list. The reason for this is that Erlang
%% considers a string in a binary to be encoded in latin1, so the bytes
%% are not changed in any fashion.
{bin, Ann, [{bin_element, Ann, {string, Ann, binary_to_list(Tree)}, default, default}]};
elixir_to_erl(Pid, Ann) when is_pid(Pid) ->
?remote(Ann, erlang, binary_to_term, [elixir_to_erl(term_to_binary(Pid), Ann)]);
elixir_to_erl(_Other, _Ann) ->
error(badarg).
elixir_to_erl_cons([H | T], Ann) -> {cons, Ann, elixir_to_erl(H, Ann), elixir_to_erl_cons(T, Ann)};
elixir_to_erl_cons(T, Ann) -> elixir_to_erl(T, Ann).
%% Returns a scope for translation.
scope(_Meta, ExpandCaptures) ->
#elixir_erl{expand_captures=ExpandCaptures}.
%% Static compilation hook, used in protocol consolidation
consolidate(Map, TypeSpecs, Chunks) ->
{Prefix, Forms, _Def, _Defmacro, _Macros} = dynamic_form(Map),
load_form(Map, Prefix, Forms, TypeSpecs, Chunks).
%% Dynamic compilation hook, used in regular compiler
compile(#{module := Module, line := Line} = Map) ->
{Set, Bag} = elixir_module:data_tables(Module),
TranslatedTypespecs =
case elixir_config:is_bootstrap() andalso
(code:ensure_loaded(?typespecs) /= {module, ?typespecs}) of
true -> {[], [], [], [], []};
false -> ?typespecs:translate_typespecs_for_module(Set, Bag)
end,
{Prefix, Forms, Def, Defmacro, Macros} = dynamic_form(Map),
{Types, Callbacks, TypeSpecs} = typespecs_form(Map, TranslatedTypespecs, Macros),
DocsChunk = docs_chunk(Set, Module, Line, Def, Defmacro, Types, Callbacks),
CheckerChunk = checker_chunk(Map),
load_form(Map, Prefix, Forms, TypeSpecs, DocsChunk ++ CheckerChunk).
dynamic_form(#{module := Module, line := Line, relative_file := RelativeFile,
attributes := Attributes, definitions := Definitions, unreachable := Unreachable,
deprecated := Deprecated, compile_opts := Opts} = Map) ->
{Def, Defmacro, Macros, Exports, Functions} =
split_definition(Definitions, Unreachable, Line, [], [], [], [], {[], []}),
FilteredOpts = lists:filter(fun({no_warn_undefined, _}) -> false; (_) -> true end, Opts),
Location = {elixir_utils:characters_to_list(RelativeFile), Line},
Prefix = [{attribute, Line, file, Location},
{attribute, Line, module, Module},
{attribute, Line, compile, [no_auto_import | FilteredOpts]}],
Struct = maps:get(struct, Map, nil),
Forms0 = functions_form(Line, Module, Def, Defmacro, Exports, Functions, Deprecated, Struct),
Forms1 = attributes_form(Line, Attributes, Forms0),
{Prefix, Forms1, Def, Defmacro, Macros}.
% Definitions
split_definition([{Tuple, Kind, Meta, Clauses} | T], Unreachable, Line,
Def, Defmacro, Macros, Exports, Functions) ->
case lists:member(Tuple, Unreachable) of
false ->
split_definition(Tuple, Kind, Meta, Clauses, T, Unreachable, Line,
Def, Defmacro, Macros, Exports, Functions);
true ->
split_definition(T, Unreachable, Line, Def, Defmacro, Macros, Exports, Functions)
end;
split_definition([], _Unreachable, _Line, Def, Defmacro, Macros, Exports, {Head, Tail}) ->
{Def, Defmacro, Macros, Exports, Head ++ Tail}.
split_definition(Tuple, def, Meta, Clauses, T, Unreachable, Line,
Def, Defmacro, Macros, Exports, Functions) ->
{_, _, N, A, _} = Entry = translate_definition(def, Line, Meta, Tuple, Clauses),
split_definition(T, Unreachable, Line, [Tuple | Def], Defmacro, Macros, [{N, A} | Exports],
add_definition(Meta, Entry, Functions));
split_definition(Tuple, defp, Meta, Clauses, T, Unreachable, Line,
Def, Defmacro, Macros, Exports, Functions) ->
Entry = translate_definition(defp, Line, Meta, Tuple, Clauses),
split_definition(T, Unreachable, Line, Def, Defmacro, Macros, Exports,
add_definition(Meta, Entry, Functions));
split_definition(Tuple, defmacro, Meta, Clauses, T, Unreachable, Line,
Def, Defmacro, Macros, Exports, Functions) ->
{_, _, N, A, _} = Entry = translate_definition(defmacro, Line, Meta, Tuple, Clauses),
split_definition(T, Unreachable, Line, Def, [Tuple | Defmacro], [Tuple | Macros], [{N, A} | Exports],
add_definition(Meta, Entry, Functions));
split_definition(Tuple, defmacrop, Meta, Clauses, T, Unreachable, Line,
Def, Defmacro, Macros, Exports, Functions) ->
Entry = translate_definition(defmacro, Line, Meta, Tuple, Clauses),
split_definition(T, Unreachable, Line, Def, Defmacro, [Tuple | Macros], Exports,
add_definition(Meta, Entry, Functions)).
add_definition(Meta, Body, {Head, Tail}) ->
case lists:keyfind(file, 1, Meta) of
{file, {F, L}} ->
%% Erlang's epp attempts to perform offsetting when generated is set to true
%% and that causes cover to fail when processing modules. Therefore we never
%% pass the generated annotation forward for file attributes. The function
%% will still be marked as generated though if that's the case.
FileMeta = erl_anno:set_generated(false, ?ann(Meta)),
Attr = {attribute, FileMeta, file, {elixir_utils:characters_to_list(F), L}},
{Head, [Attr, Body | Tail]};
false ->
{[Body | Head], Tail}
end.
translate_definition(Kind, Line, Meta, {Name, Arity}, Clauses) ->
ErlClauses = [translate_clause(Kind, Line, Clause, false) || Clause <- Clauses],
case is_macro(Kind) of
true -> {function, ?ann(Meta), elixir_utils:macro_name(Name), Arity + 1, ErlClauses};
false -> {function, ?ann(Meta), Name, Arity, ErlClauses}
end.
translate_clause(Kind, Line, {Meta, Args, Guards, Body}, ExpandCaptures) ->
S = scope(Meta, ExpandCaptures),
%% If the line matches the module line, then it is most likely an
%% auto-generated function and we don't want to track its contents.
Ann =
case ?line(Meta) of
Line -> erl_anno:set_generated(true, erl_anno:new(0));
_ -> ?ann(Meta)
end,
{TClause, TS} =
elixir_erl_clauses:clause(Ann, fun elixir_erl_pass:translate_args/3, Args, Body, Guards, S),
case is_macro(Kind) of
true ->
FArgs = {var, Ann, '_@CALLER'},
MClause = setelement(3, TClause, [FArgs | element(3, TClause)]),
case TS#elixir_erl.caller of
true ->
FBody = {'match', Ann,
{'var', Ann, '__CALLER__'},
?remote(Ann, elixir_env, to_caller, [{var, Ann, '_@CALLER'}])
},
setelement(5, MClause, [FBody | element(5, TClause)]);
false ->
MClause
end;
false ->
TClause
end.
is_macro(defmacro) -> true;
is_macro(defmacrop) -> true;
is_macro(_) -> false.
% Functions
functions_form(Line, Module, Def, Defmacro, Exports, Body, Deprecated, Struct) ->
{Spec, Info} = add_info_function(Line, Module, Def, Defmacro, Deprecated, Struct),
[{attribute, Line, export, lists:sort([{'__info__', 1} | Exports])}, Spec, Info | Body].
add_info_function(Line, Module, Def, Defmacro, Deprecated, Struct) ->
AllowedAttrs = [attributes, compile, functions, macros, md5, exports_md5, module, deprecated, struct],
AllowedArgs = lists:map(fun(Atom) -> {atom, Line, Atom} end, AllowedAttrs),
SortedDef = lists:sort(Def),
SortedDefmacro = lists:sort(Defmacro),
Spec =
{attribute, Line, spec, {{'__info__', 1},
[{type, Line, 'fun', [
{type, Line, product, [
{type, Line, union, AllowedArgs}
]},
{type, Line, any, []}
]}]
}},
Info =
{function, 0, '__info__', 1, [
get_module_info(Module),
functions_info(SortedDef),
macros_info(SortedDefmacro),
struct_info(Struct),
exports_md5_info(Struct, SortedDef, SortedDefmacro),
get_module_info(Module, attributes),
get_module_info(Module, compile),
get_module_info(Module, md5),
deprecated_info(Deprecated)
]},
{Spec, Info}.
get_module_info(Module) ->
{clause, 0, [{atom, 0, module}], [], [{atom, 0, Module}]}.
exports_md5_info(Struct, Def, Defmacro) ->
%% Deprecations do not need to be part of exports_md5 because it is always
%% checked by the runtime pass, so it is not really part of compilation.
Md5 = erlang:md5(erlang:term_to_binary({Def, Defmacro, Struct})),
{clause, 0, [{atom, 0, exports_md5}], [], [elixir_to_erl(Md5)]}.
functions_info(Def) ->
{clause, 0, [{atom, 0, functions}], [], [elixir_to_erl(Def)]}.
macros_info(Defmacro) ->
{clause, 0, [{atom, 0, macros}], [], [elixir_to_erl(Defmacro)]}.
struct_info(nil) ->
{clause, 0, [{atom, 0, struct}], [], [{atom, 0, nil}]};
struct_info(Fields) ->
FieldsWithoutDefault = [maps:remove(default, FieldInfo) || FieldInfo <- Fields],
{clause, 0, [{atom, 0, struct}], [], [elixir_to_erl(FieldsWithoutDefault)]}.
get_module_info(Module, Key) ->
Call = ?remote(0, erlang, get_module_info, [{atom, 0, Module}, {var, 0, 'Key'}]),
{clause, 0, [{match, 0, {var, 0, 'Key'}, {atom, 0, Key}}], [], [Call]}.
deprecated_info(Deprecated) ->
{clause, 0, [{atom, 0, deprecated}], [], [elixir_to_erl(Deprecated)]}.
% Typespecs
typespecs_form(Map, TranslatedTypespecs, MacroNames) ->
{Types, Specs, Callbacks, MacroCallbacks, OptionalCallbacks} = TranslatedTypespecs,
AllCallbacks = Callbacks ++ MacroCallbacks,
MacroCallbackNames = [NameArity || {_, NameArity, _, _} <- MacroCallbacks],
validate_behaviour_info_and_attributes(Map, AllCallbacks),
validate_optional_callbacks(Map, AllCallbacks, OptionalCallbacks),
Forms0 = [],
Forms1 = types_form(Types, Forms0),
Forms2 = callspecs_form(spec, Specs, [], MacroNames, Forms1, Map),
Forms3 = callspecs_form(callback, AllCallbacks, OptionalCallbacks, MacroCallbackNames, Forms2, Map),
AllCallbacksWithoutSpecs = lists:usort([
{Kind, Name, Arity} || {Kind, {Name, Arity}, _Line, _Spec} <- AllCallbacks
]),
{Types, AllCallbacksWithoutSpecs, Forms3}.
%% Types
types_form(Types, Forms) ->
Fun = fun
({Kind, NameArity, Line, Expr, true}, Acc) ->
[{attribute, Line, export_type, [NameArity]}, {attribute, Line, Kind, Expr} | Acc];
({Kind, _NameArity, Line, Expr, false}, Acc) ->
[{attribute, Line, Kind, Expr} | Acc]
end,
lists:foldl(Fun, Forms, Types).
%% Specs and callbacks
validate_behaviour_info_and_attributes(#{definitions := Defs} = Map, AllCallbacks) ->
case {lists:keyfind({behaviour_info, 1}, 1, Defs), AllCallbacks} of
{false, _} ->
ok;
{_, [{Kind, {Name, Arity}, _, _} | _]} when Kind == callback; Kind == macrocallback ->
file_error(Map, {callbacks_but_also_behaviour_info, {Kind, Name, Arity}});
{_, _} ->
ok
end.
validate_optional_callbacks(Map, AllCallbacks, Optional) ->
lists:foldl(fun(Callback, Acc) ->
case Callback of
{Name, Arity} when is_atom(Name) and is_integer(Arity) -> ok;
_ -> file_error(Map, {ill_defined_optional_callback, Callback})
end,
case lists:keyfind(Callback, 2, AllCallbacks) of
false -> file_error(Map, {unknown_callback, Callback});
_ -> ok
end,
case Acc of
#{Callback := _} -> file_error(Map, {duplicate_optional_callback, Callback});
_ -> ok
end,
maps:put(Callback, true, Acc)
end, #{}, Optional).
callspecs_form(_Kind, [], _Optional, _Macros, Forms, _ModuleMap) ->
Forms;
callspecs_form(Kind, Entries, Optional, Macros, Forms, ModuleMap) ->
#{unreachable := Unreachable} = ModuleMap,
{SpecsMap, Signatures} =
lists:foldl(fun({_, NameArity, Line, Spec}, {Acc, NA}) ->
case Kind of
spec -> validate_spec_for_existing_function(ModuleMap, NameArity, Line);
_ -> ok
end,
case lists:member(NameArity, Unreachable) of
false ->
case Acc of
#{NameArity := List} -> {Acc#{NameArity := [{Spec, Line} | List]}, NA};
#{} -> {Acc#{NameArity => [{Spec, Line}]}, [NameArity | NA]}
end;
true ->
{Acc, NA}
end
end, {#{}, []}, Entries),
lists:foldl(fun(NameArity, Acc) ->
#{NameArity := ExprsLines} = SpecsMap,
{Exprs, Lines} = lists:unzip(ExprsLines),
Line = lists:min(Lines),
{Key, Value} =
case lists:member(NameArity, Macros) of
true ->
{Name, Arity} = NameArity,
{{elixir_utils:macro_name(Name), Arity + 1},
lists:map(fun spec_for_macro/1, Exprs)};
false ->
{NameArity, Exprs}
end,
case lists:member(NameArity, Optional) of
true ->
[{attribute, Line, Kind, {Key, lists:reverse(Value)}},
{attribute, Line, optional_callbacks, [Key]} | Acc];
false ->
[{attribute, Line, Kind, {Key, lists:reverse(Value)}} | Acc]
end
end, Forms, lists:sort(Signatures)).
spec_for_macro({type, Line, 'bounded_fun', [H | T]}) ->
{type, Line, 'bounded_fun', [spec_for_macro(H) | T]};
spec_for_macro({type, Line, 'fun', [{type, _, product, Args} | T]}) ->
{type, Line, 'fun', [{type, Line, product, [{type, Line, term, []} | Args]} | T]};
spec_for_macro(Else) ->
Else.
validate_spec_for_existing_function(ModuleMap, NameAndArity, Line) ->
#{definitions := Defs, file := File} = ModuleMap,
case lists:keymember(NameAndArity, 1, Defs) of
true -> ok;
false -> file_error(#{line => Line, file => File}, {spec_for_undefined_function, NameAndArity})
end.
% Attributes
attributes_form(Line, Attributes, Forms) ->
Fun = fun({Key, Value}, Acc) -> [{attribute, Line, Key, Value} | Acc] end,
lists:foldr(Fun, Forms, Attributes).
% Loading forms
load_form(#{file := File, compile_opts := Opts} = Map, Prefix, Forms, Specs, Chunks) ->
CompileOpts = extra_chunks_opts(Chunks, debug_opts(Map, Specs, Opts)),
{_, Binary} = elixir_erl_compiler:forms(Prefix ++ Specs ++ Forms, File, CompileOpts),
Binary.
debug_opts(Map, Specs, Opts) ->
case take_debug_opts(Opts) of
{true, Rest} -> [{debug_info, {?MODULE, {elixir_v1, Map, Specs}}} | Rest];
{false, Rest} -> [{debug_info, {?MODULE, none}} | Rest]
end.
take_debug_opts(Opts) ->
case proplists:get_value(debug_info, Opts) of
true -> {true, proplists:delete(debug_info, Opts)};
false -> {false, proplists:delete(debug_info, Opts)};
undefined -> {elixir_config:get(debug_info), Opts}
end.
extra_chunks_opts([], Opts) -> Opts;
extra_chunks_opts(Chunks, Opts) -> [{extra_chunks, Chunks} | Opts].
docs_chunk(Set, Module, Line, Def, Defmacro, Types, Callbacks) ->
case elixir_config:get(docs) of
true ->
{ModuleDocLine, ModuleDoc} = get_moduledoc(Line, Set),
ModuleDocMeta = get_moduledoc_meta(Set),
FunctionDocs = get_docs(Set, Module, Def, function),
MacroDocs = get_docs(Set, Module, Defmacro, macro),
CallbackDocs = get_callback_docs(Set, Callbacks),
TypeDocs = get_type_docs(Set, Types),
DocsChunkData = term_to_binary({docs_v1,
erl_anno:new(ModuleDocLine),
elixir,
<<"text/markdown">>,
ModuleDoc,
ModuleDocMeta,
FunctionDocs ++ MacroDocs ++ CallbackDocs ++ TypeDocs
}, [compressed]),
[{<<"Docs">>, DocsChunkData}];
false ->
[]
end.
doc_value(Doc, Name) ->
case Doc of
false ->
hidden;
nil ->
case erlang:atom_to_list(Name) of
[$_ | _] -> hidden;
_ -> none
end;
Doc ->
#{<<"en">> => Doc}
end.
get_moduledoc(Line, Set) ->
case ets:lookup_element(Set, moduledoc, 2) of
nil -> {Line, none};
{DocLine, false} -> {DocLine, hidden};
{DocLine, nil} -> {DocLine, none};
{DocLine, Doc} -> {DocLine, #{<<"en">> => Doc}}
end.
get_moduledoc_meta(Set) ->
case ets:lookup(Set, {moduledoc, meta}) of
[] -> #{};
[{{moduledoc, meta}, Map}] when is_map(Map) -> Map
end.
get_docs(Set, Module, Definitions, Kind) ->
[{Key,
erl_anno:new(Line),
[signature_to_binary(Module, Name, Signature)],
doc_value(Doc, Name),
Meta
} || {Name, Arity} <- Definitions,
{Key, _Ctx, Line, Signature, Doc, Meta} <- ets:lookup(Set, {Kind, Name, Arity})].
get_callback_docs(Set, Callbacks) ->
[{Key,
erl_anno:new(Line),
[],
doc_value(Doc, Name),
Meta
} || Callback <- Callbacks, {{_, Name, _} = Key, Line, Doc, Meta} <- ets:lookup(Set, Callback)].
get_type_docs(Set, Types) ->
[{Key,
erl_anno:new(Line),
[],
doc_value(Doc, Name),
Meta
} || {_Kind, {Name, Arity}, _, _, true} <- Types,
{Key, Line, Doc, Meta} <- ets:lookup(Set, {type, Name, Arity})].
signature_to_binary(_Module, Name, _Signature) when Name == '__aliases__'; Name == '__block__' ->
<<(atom_to_binary(Name))/binary, "(args)">>;
signature_to_binary(_Module, fn, _Signature) ->
<<"fn(clauses)">>;
signature_to_binary(_Module, Name, _Signature)
when Name == '__CALLER__'; Name == '__DIR__'; Name == '__ENV__';
Name == '__MODULE__'; Name == '__STACKTRACE__'; Name == '%{}' ->
atom_to_binary(Name);
signature_to_binary(_Module, '%', _) ->
<<"%struct{}">>;
signature_to_binary(Module, '__struct__', []) ->
<<"%", ('Elixir.Kernel':inspect(Module))/binary, "{}">>;
signature_to_binary(_, Name, Signature) ->
Quoted = {Name, [{closing, []}], Signature},
Doc = 'Elixir.Inspect.Algebra':format('Elixir.Code':quoted_to_algebra(Quoted), infinity),
'Elixir.IO':iodata_to_binary(Doc).
checker_chunk(#{definitions := Definitions, deprecated := Deprecated, defines_behaviour := DefinesBehaviour}) ->
DeprecatedMap = maps:from_list(Deprecated),
Exports =
lists:foldl(fun({Function, Kind, _Meta, _Clauses}, Acc) ->
case Kind of
_ when Kind == def orelse Kind == defmacro ->
Reason = maps:get(Function, DeprecatedMap, nil),
[{Function, #{kind => Kind, deprecated_reason => Reason}} | Acc];
_ ->
Acc
end
end, [], Definitions),
Contents = #{
exports => lists:sort(behaviour_info_exports(DefinesBehaviour) ++ Exports)
},
[{<<"ExCk">>, erlang:term_to_binary({elixir_checker_v1, Contents})}].
behaviour_info_exports(true) -> [{{behaviour_info, 1}, #{kind => def, deprecated_reason => nil}}];
behaviour_info_exports(false) -> [].
%% Errors
file_error(#{line := Line, file := File}, Error) ->
elixir_errors:file_error([{line, Line}], File, ?MODULE, Error).
format_error({ill_defined_optional_callback, Callback}) ->
io_lib:format("invalid optional callback ~ts. @optional_callbacks expects a "
"keyword list of callback names and arities", ['Elixir.Kernel':inspect(Callback)]);
format_error({unknown_callback, {Name, Arity}}) ->
io_lib:format("unknown callback ~ts/~B given as optional callback", [Name, Arity]);
format_error({duplicate_optional_callback, {Name, Arity}}) ->
io_lib:format("~ts/~B has been specified as optional callback more than once", [Name, Arity]);
format_error({callbacks_but_also_behaviour_info, {Type, Fun, Arity}}) ->
io_lib:format("cannot define @~ts attribute for ~ts/~B when behaviour_info/1 is defined",
[Type, Fun, Arity]);
format_error({spec_for_undefined_function, {Name, Arity}}) ->
io_lib:format("spec for undefined function ~ts/~B", [Name, Arity]).
|