aboutsummaryrefslogtreecommitdiffstats
path: root/src/rcl_prv_discover.erl
diff options
context:
space:
mode:
authorEric <[email protected]>2013-02-09 11:06:26 -0800
committerEric B Merritt <[email protected]>2013-04-03 18:39:49 -0700
commit8dde5e2607eb18c9e1ea9a19d5b1f563ace11251 (patch)
tree2808601d2f3313467fb8e4888daef1dc157e49a3 /src/rcl_prv_discover.erl
parente8c4493943d0eed22f72074516cbe185c6069f80 (diff)
downloadrelx-8dde5e2607eb18c9e1ea9a19d5b1f563ace11251.tar.gz
relx-8dde5e2607eb18c9e1ea9a19d5b1f563ace11251.tar.bz2
relx-8dde5e2607eb18c9e1ea9a19d5b1f563ace11251.zip
move discovered releases to their own area of the relcool state
Diffstat (limited to 'src/rcl_prv_discover.erl')
-rw-r--r--src/rcl_prv_discover.erl16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/rcl_prv_discover.erl b/src/rcl_prv_discover.erl
index 2f88354..10fb28b 100644
--- a/src/rcl_prv_discover.erl
+++ b/src/rcl_prv_discover.erl
@@ -48,9 +48,9 @@ do(State0) ->
case rcl_rel_discovery:do(State0, LibDirs, AppMeta) of
{ok, Releases} ->
State1 = rcl_state:available_apps(State0, AppMeta),
- State3 = lists:foldl(fun add_if_not_found/2,
- State1, Releases),
- {ok, State3};
+ {ok, rcl_state:discovered_releases(State1, lists:foldl(fun add/2,
+ ec_dictionary:new(ec_dict),
+ Releases))};
Error ->
Error
end;
@@ -68,16 +68,10 @@ format_error(_) ->
%%% Internal Functions
%%%===================================================================
%% @doc only add the release if its not documented in the system
-add_if_not_found(Rel, State) ->
+add(Rel, Dict) ->
RelName = rcl_release:name(Rel),
RelVsn = rcl_release:vsn(Rel),
- try
- rcl_state:get_release(State, RelName, RelVsn),
- State
- catch
- throw:not_found ->
- rcl_state:add_release(State, Rel)
- end.
+ ec_dictionary:add({RelName, RelVsn}, Rel, Dict).
get_lib_dirs(State) ->
LibDirs0 = rcl_state:lib_dirs(State),