summaryrefslogtreecommitdiff
path: root/src/rebar_prv_app_discovery.erl
blob: 5449f824f6294a03746cd11d266bf5c6129f788c (plain)
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
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ts=4 sw=4 et

-module(rebar_prv_app_discovery).

-behaviour(provider).

-export([init/1,
         do/1,
         format_error/1]).

-include("rebar.hrl").
-include_lib("providers/include/providers.hrl").

-define(PROVIDER, app_discovery).
-define(DEPS, []).

%% ===================================================================
%% Public API
%% ===================================================================

-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
    State1 = rebar_state:add_provider(State, providers:create([{name, ?PROVIDER},
                                                               {module, ?MODULE},
                                                               {bare, false},
                                                               {deps, ?DEPS},
                                                               {example, ""},
                                                               {short_desc, ""},
                                                               {desc, ""},
                                                               {opts, []}])),
    {ok, State1}.

-spec do(rebar_state:t()) -> {ok, rebar_state:t()} | {error, string()}.
do(State) ->
    LibDirs = rebar_dir:lib_dirs(State),
    try
        State1 = rebar_app_discover:do(State, LibDirs),
        {ok, State1}
    catch
        throw:{error, {rebar_packages, Error}} ->
            {error, {rebar_packages, Error}};
        throw:{error, {rebar_app_utils, Error}} ->
            {error, {rebar_app_utils, Error}};
        throw:{error, Error} ->
            ?PRV_ERROR(Error)
    end.

-spec format_error(any()) -> iolist().
format_error({multiple_app_files, Files}) ->
    io_lib:format("Multiple app files found in one app dir: ~s", [string:join(Files, " and ")]);
format_error({invalid_app_file, File, Reason}) ->
    case Reason of
        {Line, erl_parse, Description} ->
            io_lib:format("Invalid app file ~s at line ~b: ~p",
                [File, Line, lists:flatten(Description)]);
        _ ->
            io_lib:format("Invalid app file ~s: ~p", [File, Reason])
    end;
%% Provide a slightly more informative error message for consult of app file failure
format_error({rebar_file_utils, {bad_term_file, AppFile, Reason}}) ->
    io_lib:format("Error in app file ~s: ~s", [rebar_dir:make_relative_path(AppFile,
                                                                            rebar_dir:get_cwd()),
                                               file:format_error(Reason)]);
format_error(Reason) ->
    io_lib:format("~p", [Reason]).