2011-01-31 16:43:31 +00:00
|
|
|
%% -*- erlang-indent-level: 4;indent-tabs-mode: nil -*-
|
2009-12-31 18:42:53 +00:00
|
|
|
%% ex: ts=4 sw=4 et
|
2009-11-30 14:00:48 +00:00
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
%%
|
|
|
|
%% rebar: Erlang Build Tools
|
|
|
|
%%
|
|
|
|
%% Copyright (c) 2009 Dave Smith (dizzyd@dizzyd.com)
|
|
|
|
%%
|
|
|
|
%% Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
%% of this software and associated documentation files (the "Software"), to deal
|
|
|
|
%% in the Software without restriction, including without limitation the rights
|
|
|
|
%% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
%% copies of the Software, and to permit persons to whom the Software is
|
|
|
|
%% furnished to do so, subject to the following conditions:
|
|
|
|
%%
|
|
|
|
%% The above copyright notice and this permission notice shall be included in
|
|
|
|
%% all copies or substantial portions of the Software.
|
|
|
|
%%
|
|
|
|
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
%% THE SOFTWARE.
|
|
|
|
%% -------------------------------------------------------------------
|
|
|
|
-module(rebar_file_utils).
|
|
|
|
|
|
|
|
-export([rm_rf/1,
|
2009-11-30 19:02:09 +00:00
|
|
|
cp_r/2,
|
2010-12-05 00:07:12 +00:00
|
|
|
mv/2,
|
2009-12-01 17:37:19 +00:00
|
|
|
delete_each/1]).
|
2009-11-30 14:00:48 +00:00
|
|
|
|
|
|
|
-include("rebar.hrl").
|
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Public API
|
|
|
|
%% ===================================================================
|
|
|
|
|
2010-10-26 04:19:30 +00:00
|
|
|
%% @doc Remove files and directories.
|
|
|
|
%% Target is a single filename, directoryname or wildcard expression.
|
2011-09-02 17:51:48 +00:00
|
|
|
-spec rm_rf(Target::string()) -> ok.
|
2009-11-30 14:00:48 +00:00
|
|
|
rm_rf(Target) ->
|
2010-10-26 04:19:30 +00:00
|
|
|
case os:type() of
|
2010-12-05 00:07:12 +00:00
|
|
|
{unix, _} ->
|
2011-08-25 17:55:26 +00:00
|
|
|
EscTarget = re:replace(Target, " ", "\\\\ ",
|
|
|
|
[global, {return, list}]),
|
|
|
|
{ok, []} = rebar_utils:sh(?FMT("rm -rf ~s", [EscTarget]),
|
2010-12-05 00:07:12 +00:00
|
|
|
[{use_stdout, false}, return_on_error]),
|
2010-10-26 04:19:30 +00:00
|
|
|
ok;
|
2010-12-05 00:07:12 +00:00
|
|
|
{win32, _} ->
|
|
|
|
Filelist = filelib:wildcard(Target),
|
2011-01-08 18:09:24 +00:00
|
|
|
Dirs = [F || F <- Filelist, filelib:is_dir(F)],
|
|
|
|
Files = Filelist -- Dirs,
|
2010-12-05 00:07:12 +00:00
|
|
|
ok = delete_each(Files),
|
|
|
|
ok = delete_each_dir_win32(Dirs),
|
|
|
|
ok
|
2010-10-26 04:19:30 +00:00
|
|
|
end.
|
2009-11-30 14:00:48 +00:00
|
|
|
|
2011-03-10 14:07:41 +00:00
|
|
|
-spec cp_r(Sources::list(string()), Dest::file:filename()) -> ok.
|
2009-11-30 14:00:48 +00:00
|
|
|
cp_r(Sources, Dest) ->
|
2010-10-26 04:19:30 +00:00
|
|
|
case os:type() of
|
2010-12-05 00:07:12 +00:00
|
|
|
{unix, _} ->
|
2010-10-26 04:19:30 +00:00
|
|
|
SourceStr = string:join(Sources, " "),
|
2011-08-25 17:55:26 +00:00
|
|
|
{ok, []} = rebar_utils:sh(?FMT("cp -R \"~s\" \"~s\"",
|
|
|
|
[SourceStr, Dest]),
|
2010-12-05 00:07:12 +00:00
|
|
|
[{use_stdout, false}, return_on_error]),
|
2010-10-26 04:19:30 +00:00
|
|
|
ok;
|
2010-12-05 00:07:12 +00:00
|
|
|
{win32, _} ->
|
2010-10-26 04:19:30 +00:00
|
|
|
lists:foreach(fun(Src) -> ok = cp_r_win32(Src,Dest) end, Sources),
|
|
|
|
ok
|
|
|
|
end.
|
2009-11-30 14:00:48 +00:00
|
|
|
|
2011-03-10 14:07:41 +00:00
|
|
|
-spec mv(Source::string(), Dest::file:filename()) -> ok.
|
2010-12-05 00:07:12 +00:00
|
|
|
mv(Source, Dest) ->
|
|
|
|
case os:type() of
|
|
|
|
{unix, _} ->
|
2011-08-25 17:55:26 +00:00
|
|
|
{ok, []} = rebar_utils:sh(?FMT("mv \"~s\" \"~s\"", [Source, Dest]),
|
2010-12-05 00:07:12 +00:00
|
|
|
[{use_stdout, false}, return_on_error]),
|
|
|
|
ok;
|
|
|
|
{win32, _} ->
|
|
|
|
{ok, R} = rebar_utils:sh(
|
2011-08-25 17:55:26 +00:00
|
|
|
?FMT("cmd " "/c move /y \"~s\" \"~s\" 1> nul",
|
2010-12-05 00:07:12 +00:00
|
|
|
[filename:nativename(Source),
|
|
|
|
filename:nativename(Dest)]),
|
|
|
|
[{use_stdout, false}, return_on_error]),
|
2011-01-08 18:09:24 +00:00
|
|
|
case R of
|
|
|
|
[] ->
|
|
|
|
ok;
|
|
|
|
_ ->
|
2010-12-05 00:07:12 +00:00
|
|
|
{error, lists:flatten(
|
|
|
|
io_lib:format("Failed to move ~s to ~s~n",
|
|
|
|
[Source, Dest]))}
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2009-12-01 17:37:19 +00:00
|
|
|
delete_each([]) ->
|
|
|
|
ok;
|
|
|
|
delete_each([File | Rest]) ->
|
|
|
|
case file:delete(File) of
|
|
|
|
ok ->
|
|
|
|
delete_each(Rest);
|
|
|
|
{error, enoent} ->
|
|
|
|
delete_each(Rest);
|
|
|
|
{error, Reason} ->
|
|
|
|
?ERROR("Failed to delete file ~s: ~p\n", [File, Reason]),
|
|
|
|
?FAIL
|
|
|
|
end.
|
2009-12-30 12:13:39 +00:00
|
|
|
|
2010-10-26 04:19:30 +00:00
|
|
|
%% ===================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%% ===================================================================
|
|
|
|
|
|
|
|
delete_each_dir_win32([]) -> ok;
|
|
|
|
delete_each_dir_win32([Dir | Rest]) ->
|
2011-08-25 17:55:26 +00:00
|
|
|
{ok, []} = rebar_utils:sh(?FMT("cmd /c rd /q /s \"~s\"",
|
2010-12-05 00:07:12 +00:00
|
|
|
[filename:nativename(Dir)]),
|
|
|
|
[{use_stdout, false}, return_on_error]),
|
2010-10-26 04:19:30 +00:00
|
|
|
delete_each_dir_win32(Rest).
|
|
|
|
|
|
|
|
xcopy_win32(Source,Dest)->
|
2010-12-05 00:07:12 +00:00
|
|
|
{ok, R} = rebar_utils:sh(
|
2011-08-25 17:55:26 +00:00
|
|
|
?FMT("cmd /c xcopy \"~s\" \"~s\" /q /y /e 2> nul",
|
2010-12-05 00:07:12 +00:00
|
|
|
[filename:nativename(Source), filename:nativename(Dest)]),
|
|
|
|
[{use_stdout, false}, return_on_error]),
|
|
|
|
case length(R) > 0 of
|
2010-10-26 04:19:30 +00:00
|
|
|
%% when xcopy fails, stdout is empty and and error message is printed
|
|
|
|
%% to stderr (which is redirected to nul)
|
|
|
|
true -> ok;
|
|
|
|
false ->
|
|
|
|
{error, lists:flatten(
|
2010-12-05 00:07:12 +00:00
|
|
|
io_lib:format("Failed to xcopy from ~s to ~s~n",
|
|
|
|
[Source, Dest]))}
|
2010-10-26 04:19:30 +00:00
|
|
|
end.
|
|
|
|
|
2011-01-08 18:09:24 +00:00
|
|
|
cp_r_win32({true, SourceDir}, {true, DestDir}) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
%% from directory to directory
|
2010-10-26 04:19:30 +00:00
|
|
|
SourceBase = filename:basename(SourceDir),
|
2011-01-08 18:09:24 +00:00
|
|
|
ok = case file:make_dir(filename:join(DestDir, SourceBase)) of
|
|
|
|
{error, eexist} -> ok;
|
2010-10-26 04:19:30 +00:00
|
|
|
Other -> Other
|
|
|
|
end,
|
2011-01-08 18:09:24 +00:00
|
|
|
ok = xcopy_win32(SourceDir, filename:join(DestDir, SourceBase));
|
|
|
|
cp_r_win32({false, Source} = S,{true, DestDir}) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
%% from file to directory
|
2011-01-08 18:09:24 +00:00
|
|
|
cp_r_win32(S, {false, filename:join(DestDir, filename:basename(Source))});
|
|
|
|
cp_r_win32({false, Source},{false, Dest}) ->
|
2011-01-28 15:08:27 +00:00
|
|
|
%% from file to file
|
2011-01-08 18:09:24 +00:00
|
|
|
{ok,_} = file:copy(Source, Dest),
|
2010-10-26 04:19:30 +00:00
|
|
|
ok;
|
|
|
|
cp_r_win32(Source,Dest) ->
|
2011-01-08 18:09:24 +00:00
|
|
|
Dst = {filelib:is_dir(Dest), Dest},
|
2010-10-26 04:19:30 +00:00
|
|
|
lists:foreach(fun(Src) ->
|
2011-01-08 18:09:24 +00:00
|
|
|
ok = cp_r_win32({filelib:is_dir(Src), Src}, Dst)
|
2010-10-26 04:19:30 +00:00
|
|
|
end, filelib:wildcard(Source)),
|
|
|
|
ok.
|