Shell no longer globs, so glob in pushBackContents

Bug: 113246065
Bug: 123057215

Test: As described in b/113246065 comment 1
Change-Id: Id766773ed4abe80a9fc1d5305f099aedfe8eed90
gugelfrei
Paul Crowley 5 years ago
parent 7573874d3f
commit 51209e9e40

@ -56,27 +56,27 @@ static void notifyProgress(int progress,
} }
} }
static status_t pushBackContents(const std::string& path, std::vector<std::string>& cmd, static bool pushBackContents(const std::string& path, std::vector<std::string>& cmd,
bool addWildcard) { int searchLevels) {
DIR* dir = opendir(path.c_str()); if (searchLevels == 0) {
if (dir == NULL) { cmd.emplace_back(path);
return -1; return true;
}
auto dirp = std::unique_ptr<DIR, int (*)(DIR*)>(opendir(path.c_str()), closedir);
if (!dirp) {
PLOG(ERROR) << "Unable to open directory: " << path;
return false;
} }
bool found = false; bool found = false;
struct dirent* ent; struct dirent* ent;
while ((ent = readdir(dir)) != NULL) { while ((ent = readdir(dirp.get())) != NULL) {
if ((!strcmp(ent->d_name, ".")) || (!strcmp(ent->d_name, ".."))) { if ((!strcmp(ent->d_name, ".")) || (!strcmp(ent->d_name, ".."))) {
continue; continue;
} }
if (addWildcard) { auto subdir = path + "/" + ent->d_name;
cmd.push_back(StringPrintf("%s/%s/*", path.c_str(), ent->d_name)); found |= pushBackContents(subdir, cmd, searchLevels - 1);
} else {
cmd.push_back(StringPrintf("%s/%s", path.c_str(), ent->d_name));
}
found = true;
} }
closedir(dir); return found;
return found ? OK : -1;
} }
static status_t execRm(const std::string& path, int startProgress, int stepProgress, static status_t execRm(const std::string& path, int startProgress, int stepProgress,
@ -90,7 +90,7 @@ static status_t execRm(const std::string& path, int startProgress, int stepProgr
cmd.push_back(kRmPath); cmd.push_back(kRmPath);
cmd.push_back("-f"); /* force: remove without confirmation, no error if it doesn't exist */ cmd.push_back("-f"); /* force: remove without confirmation, no error if it doesn't exist */
cmd.push_back("-R"); /* recursive: remove directory contents */ cmd.push_back("-R"); /* recursive: remove directory contents */
if (pushBackContents(path, cmd, true) != OK) { if (!pushBackContents(path, cmd, 2)) {
LOG(WARNING) << "No contents in " << path; LOG(WARNING) << "No contents in " << path;
return OK; return OK;
} }
@ -143,7 +143,7 @@ static status_t execCp(const std::string& fromPath, const std::string& toPath, i
cmd.push_back("-R"); /* recurse into subdirectories (DEST must be a directory) */ cmd.push_back("-R"); /* recurse into subdirectories (DEST must be a directory) */
cmd.push_back("-P"); /* Do not follow symlinks [default] */ cmd.push_back("-P"); /* Do not follow symlinks [default] */
cmd.push_back("-d"); /* don't dereference symlinks */ cmd.push_back("-d"); /* don't dereference symlinks */
if (pushBackContents(fromPath, cmd, false) != OK) { if (!pushBackContents(fromPath, cmd, 1)) {
LOG(WARNING) << "No contents in " << fromPath; LOG(WARNING) << "No contents in " << fromPath;
return OK; return OK;
} }

Loading…
Cancel
Save