summaryrefslogtreecommitdiff
path: root/src/rebar_app_discover.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-07-27 18:36:31 -0500
committerTristan Sloughter <t@crashfast.com>2014-08-16 07:22:27 -0500
commiteb8fa02df7d71435a879de987b3139bb5bffb963 (patch)
treee3ac360353b37811be1a3775d986e4a3ceab16e2 /src/rebar_app_discover.erl
parent19c215ee9fe0726a1983b36f4f8bcc21d42a5ef8 (diff)
large refactoring
Removed separate compilers Resolves apps to build Finds avail deps before pulling/building Includes relx Simplifies build commands
Diffstat (limited to 'src/rebar_app_discover.erl')
-rw-r--r--src/rebar_app_discover.erl84
1 files changed, 84 insertions, 0 deletions
diff --git a/src/rebar_app_discover.erl b/src/rebar_app_discover.erl
new file mode 100644
index 0000000..4252262
--- /dev/null
+++ b/src/rebar_app_discover.erl
@@ -0,0 +1,84 @@
+-module(rebar_app_discover).
+
+-export([do/2,
+ find_apps/1]).
+
+do(Config, LibDirs) ->
+ Apps = find_apps(LibDirs),
+ lists:foldl(fun(AppInfo, ConfigAcc) ->
+ rebar_config:add_app(ConfigAcc, AppInfo)
+ end, Config, Apps).
+
+-spec all_app_dirs(list(file:name())) -> list(file:name()).
+all_app_dirs(LibDirs) ->
+ lists:flatmap(fun(LibDir) ->
+ app_dirs(LibDir)
+ end, LibDirs).
+
+app_dirs(LibDir) ->
+ Path1 = filename:join([LibDir,
+ "*",
+ "src",
+ "*.app.src"]),
+ Path2 = filename:join([LibDir,
+ "src",
+ "*.app.src"]),
+
+ Path3 = filename:join([LibDir,
+ "*",
+ "ebin",
+ "*.app"]),
+ Path4 = filename:join([LibDir,
+ "ebin",
+ "*.app"]),
+
+ lists:usort(lists:foldl(fun(Path, Acc) ->
+ Files = filelib:wildcard(Path),
+ [app_dir(File) || File <- Files] ++ Acc
+ end, [], [Path1, Path2, Path3, Path4])).
+
+find_apps(LibDirs) ->
+ lists:map(fun(AppDir) ->
+ AppFile = filelib:wildcard(filename:join([AppDir, "ebin", "*.app"])),
+ AppSrcFile = filelib:wildcard(filename:join([AppDir, "src", "*.app.src"])),
+ case AppFile of
+ [File] ->
+ AppInfo = create_app_info(AppDir, File),
+ AppInfo1 = rebar_app_info:app_file(AppInfo, File),
+ case AppSrcFile of
+ [F] ->
+ rebar_app_info:app_file_src(AppInfo1, F);
+ [] ->
+ AppInfo1
+ end;
+ [] ->
+ case AppSrcFile of
+ [File] ->
+ AppInfo = create_app_info(AppDir, File),
+ rebar_app_info:app_file_src(AppInfo, File);
+ [] ->
+ error
+ end
+ end
+ end, all_app_dirs(LibDirs)).
+
+app_dir(AppFile) ->
+ filename:join(lists:droplast(filename:split(filename:dirname(AppFile)))).
+
+create_app_info(AppDir, AppFile) ->
+ case file:consult(AppFile) of
+ {ok, [{application, AppName, AppDetails}]} ->
+ AppVsn = proplists:get_value(vsn, AppDetails),
+ AbsCwd = filename:absname(rebar_utils:get_cwd()),
+ {ok, AppInfo} = rebar_app_info:new(AppName, AppVsn, AppDir),
+ RebarConfig = filename:join(AppDir, "rebar.config"),
+ AppConfig = case filelib:is_file(RebarConfig) of
+ true ->
+ rebar_config:new(RebarConfig);
+ false ->
+ rebar_config:new()
+ end,
+ AppConfig1 = rebar_config:set_xconf(AppConfig, base_dir, AbsCwd),
+ AppInfo1 = rebar_app_info:config(AppInfo, AppConfig1),
+ rebar_app_info:dir(AppInfo1, AppDir)
+ end.