Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Unified Diff: services/files/directory_impl.cc

Issue 963093004: Files: Add basic implementation of Directory and some basic tests. (Closed) Base URL: https://github.com/domokit/mojo.git@file_man
Patch Set: oops Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/files/BUILD.gn ('k') | services/files/file_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/files/directory_impl.cc
diff --git a/services/files/directory_impl.cc b/services/files/directory_impl.cc
index c346ce692bfaa7b76092f10eb44d9ea475490e4a..3d921d7f029a6c0147d3c038efc9bf6e79eb6e0e 100644
--- a/services/files/directory_impl.cc
+++ b/services/files/directory_impl.cc
@@ -4,21 +4,21 @@
#include "services/files/directory_impl.h"
+#include <dirent.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
-#include <time.h>
#include <unistd.h>
-#include "base/files/file_path.h"
#include "base/files/scoped_temp_dir.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "base/posix/eintr_wrapper.h"
#include "build/build_config.h"
#include "services/files/file_impl.h"
+#include "services/files/shared_impl.h"
#include "services/files/util.h"
namespace mojo {
@@ -26,6 +26,12 @@ namespace files {
namespace {
+// Calls |closedir()| on a |DIR*|.
+struct DIRDeleter {
+ void operator()(DIR* dir) const { PCHECK(closedir(dir) == 0); }
+};
+typedef scoped_ptr<DIR, DIRDeleter> ScopedDIR;
+
Error ValidateOpenFlags(uint32_t open_flags, bool is_directory) {
// Treat unknown flags as "unimplemented".
if ((open_flags &
@@ -65,6 +71,27 @@ Error ValidateOpenFlags(uint32_t open_flags, bool is_directory) {
return ERROR_OK;
}
+Error ValidateDeleteFlags(uint32_t delete_flags) {
+ // Treat unknown flags as "unimplemented".
+ if ((delete_flags &
+ ~(kDeleteFlagFileOnly | kDeleteFlagDirectoryOnly |
+ kDeleteFlagRecursive)))
+ return ERROR_UNIMPLEMENTED;
+
+ // Only one of the three currently-defined flags may be set.
+ if ((delete_flags & kDeleteFlagFileOnly) &&
+ (delete_flags & (kDeleteFlagDirectoryOnly | kDeleteFlagRecursive)))
+ return ERROR_INVALID_ARGUMENT;
+ if ((delete_flags & kDeleteFlagDirectoryOnly) &&
+ (delete_flags & (kDeleteFlagFileOnly | kDeleteFlagRecursive)))
+ return ERROR_INVALID_ARGUMENT;
+ if ((delete_flags & kDeleteFlagRecursive) &&
+ (delete_flags & (kDeleteFlagFileOnly | kDeleteFlagDirectoryOnly)))
+ return ERROR_INVALID_ARGUMENT;
+
+ return ERROR_OK;
+}
+
} // namespace
DirectoryImpl::DirectoryImpl(InterfaceRequest<Directory> request,
@@ -81,24 +108,80 @@ DirectoryImpl::~DirectoryImpl() {
void DirectoryImpl::Read(
const Callback<void(Error, Array<DirectoryEntryPtr>)>& callback) {
- // TODO(vtl): FIXME sooner
- NOTIMPLEMENTED();
- callback.Run(ERROR_UNIMPLEMENTED, Array<DirectoryEntryPtr>());
+ static const size_t kMaxReadCount = 1000;
+
+ DCHECK(dir_fd_.is_valid());
+
+ // |fdopendir()| takes ownership of the FD (giving it to the |DIR| --
+ // |closedir()| will close the FD)), so we need to |dup()| ours.
+ base::ScopedFD fd(dup(dir_fd_.get()));
+ if (!fd.is_valid()) {
+ callback.Run(ErrnoToError(errno), Array<DirectoryEntryPtr>());
+ return;
+ }
+
+ ScopedDIR dir(fdopendir(fd.release()));
+ if (!dir) {
+ callback.Run(ErrnoToError(errno), Array<DirectoryEntryPtr>());
+ return;
+ }
+
+ Array<DirectoryEntryPtr> result(0);
+
+// Warning: This is not portable (per POSIX.1 -- |buffer| may not be large
+// enough), but it's fine for Linux.
+#if !defined(OS_ANDROID) && !defined(OS_LINUX)
+#error "Use of struct dirent for readdir_r() buffer not portable; please check."
+#endif
+ struct dirent buffer;
+ for (size_t n = 0;;) {
+ struct dirent* entry = nullptr;
+ if (int error = readdir_r(dir.get(), &buffer, &entry)) {
+ // |error| is effectively an errno (for |readdir_r()|), AFAICT.
+ callback.Run(ErrnoToError(error), Array<DirectoryEntryPtr>());
+ return;
+ }
+
+ if (!entry)
+ break;
+
+ n++;
+ if (n > kMaxReadCount) {
+ LOG(WARNING) << "Directory contents truncated";
+ callback.Run(ERROR_OUT_OF_RANGE, result.Pass());
+ return;
+ }
+
+ DirectoryEntryPtr e = DirectoryEntry::New();
+ switch (entry->d_type) {
+ case DT_DIR:
+ e->type = FILE_TYPE_DIRECTORY;
+ break;
+ case DT_REG:
+ e->type = FILE_TYPE_REGULAR_FILE;
+ break;
+ default:
+ e->type = FILE_TYPE_UNKNOWN;
+ break;
+ }
+ e->name = String(entry->d_name);
+ result.push_back(e.Pass());
+ }
+
+ callback.Run(ERROR_OK, result.Pass());
}
void DirectoryImpl::Stat(
const Callback<void(Error, FileInformationPtr)>& callback) {
- // TODO(vtl): FIXME sooner
- NOTIMPLEMENTED();
- callback.Run(ERROR_UNIMPLEMENTED, nullptr);
+ DCHECK(dir_fd_.is_valid());
+ StatFD(dir_fd_.get(), callback);
}
void DirectoryImpl::Touch(TimespecOrNowPtr atime,
TimespecOrNowPtr mtime,
const Callback<void(Error)>& callback) {
- // TODO(vtl): FIXME sooner
- NOTIMPLEMENTED();
- callback.Run(ERROR_UNIMPLEMENTED);
+ DCHECK(dir_fd_.is_valid());
+ TouchFD(dir_fd_.get(), atime.Pass(), mtime.Pass(), callback);
}
// TODO(vtl): Move the implementation to a thread pool.
@@ -151,9 +234,49 @@ void DirectoryImpl::OpenDirectory(const String& path,
InterfaceRequest<Directory> directory,
uint32_t open_flags,
const Callback<void(Error)>& callback) {
- // TODO(vtl): FIXME sooner
- NOTIMPLEMENTED();
- callback.Run(ERROR_UNIMPLEMENTED);
+ DCHECK(!path.is_null());
+ DCHECK(dir_fd_.is_valid());
+
+ if (Error error = IsPathValid(path)) {
+ callback.Run(error);
+ return;
+ }
+ // TODO(vtl): Make sure the path doesn't exit this directory (if appropriate).
+ // TODO(vtl): Maybe allow absolute paths?
+
+ if (Error error = ValidateOpenFlags(open_flags, false)) {
+ callback.Run(error);
+ return;
+ }
+
+ // TODO(vtl): Implement read-only (whatever that means).
+ if (!(open_flags & kOpenFlagWrite)) {
+ callback.Run(ERROR_UNIMPLEMENTED);
+ return;
+ }
+
+ if ((open_flags & kOpenFlagCreate)) {
+ if (mkdirat(dir_fd_.get(), path.get().c_str(), 0700) != 0) {
+ // Allow |EEXIST| if |kOpenFlagExclusive| is not set. Note, however, that
+ // it does not guarantee that |path| is a directory.
+ // TODO(vtl): Hrm, ponder if we should check that |path| is a directory.
+ if (errno != EEXIST || !(open_flags & kOpenFlagExclusive)) {
+ callback.Run(ErrnoToError(errno));
+ return;
+ }
+ }
+ }
+
+ base::ScopedFD new_dir_fd(
+ HANDLE_EINTR(openat(dir_fd_.get(), path.get().c_str(), O_DIRECTORY, 0)));
+ if (!new_dir_fd.is_valid()) {
+ callback.Run(ErrnoToError(errno));
+ return;
+ }
+
+ if (directory.is_pending())
+ new DirectoryImpl(directory.Pass(), new_dir_fd.Pass(), nullptr);
+ callback.Run(ERROR_OK);
}
void DirectoryImpl::Rename(const String& path,
@@ -171,7 +294,7 @@ void DirectoryImpl::Rename(const String& path,
callback.Run(error);
return;
}
- // TODO(vtl): see TODOs about |path| in OpenFile()
+ // TODO(vtl): See TODOs about |path| in OpenFile().
if (renameat(dir_fd_.get(), path.get().c_str(), dir_fd_.get(),
new_path.get().c_str())) {
@@ -185,9 +308,47 @@ void DirectoryImpl::Rename(const String& path,
void DirectoryImpl::Delete(const String& path,
uint32_t delete_flags,
const Callback<void(Error)>& callback) {
- // TODO(vtl): FIXME sooner
- NOTIMPLEMENTED();
- callback.Run(ERROR_UNIMPLEMENTED);
+ DCHECK(!path.is_null());
+ DCHECK(dir_fd_.is_valid());
+
+ if (Error error = IsPathValid(path)) {
+ callback.Run(error);
+ return;
+ }
+ // TODO(vtl): See TODOs about |path| in OpenFile().
+
+ if (Error error = ValidateDeleteFlags(delete_flags)) {
+ callback.Run(error);
+ return;
+ }
+
+ // TODO(vtl): Recursive not yet supported.
+ if ((delete_flags & kDeleteFlagRecursive)) {
+ callback.Run(ERROR_UNIMPLEMENTED);
+ return;
+ }
+
+ // First try deleting it as a file, unless we're told to do directory-only.
+ if (!(delete_flags & kDeleteFlagDirectoryOnly)) {
+ if (unlinkat(dir_fd_.get(), path.get().c_str(), 0) == 0) {
+ callback.Run(ERROR_OK);
+ return;
+ }
+
+ // If file-only, don't continue.
+ if ((delete_flags & kDeleteFlagFileOnly)) {
+ callback.Run(ErrnoToError(errno));
+ return;
+ }
+ }
+
+ // Try deleting it as a directory.
+ if (unlinkat(dir_fd_.get(), path.get().c_str(), AT_REMOVEDIR) == 0) {
+ callback.Run(ERROR_OK);
+ return;
+ }
+
+ callback.Run(ErrnoToError(errno));
}
} // namespace files
« no previous file with comments | « services/files/BUILD.gn ('k') | services/files/file_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698