Index: gin/test/file.cc |
diff --git a/gin/test/file.cc b/gin/test/file.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cfd0af24e4730ed029270fec4d67650c35f6e27d |
--- /dev/null |
+++ b/gin/test/file.cc |
@@ -0,0 +1,85 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "gin/test/file.h" |
+ |
+#include <iostream> |
+ |
+#include "base/bind.h" |
+#include "base/file_util.h" |
+#include "base/files/file_enumerator.h" |
+#include "base/files/file_path.h" |
+#include "base/path_service.h" |
+#include "gin/arguments.h" |
+#include "gin/converter.h" |
+#include "gin/object_template_builder.h" |
+#include "gin/per_isolate_data.h" |
+#include "gin/public/wrapper_info.h" |
+ |
+using v8::ObjectTemplate; |
+ |
+namespace gin { |
+ |
+namespace { |
+ |
+v8::Handle<v8::Value> ReadFileToString(gin::Arguments* args) { |
+ std::string filename; |
+ if (!args->GetNext(&filename)) |
+ return v8::Null(args->isolate()); |
+ |
+ const base::FilePath& path = base::FilePath::FromUTF8Unsafe(filename); |
+ std::string contents; |
+ if (!ReadFileToString(path, &contents)) |
+ return v8::Null(args->isolate()); |
+ |
+ return gin::Converter<std::string>::ToV8(args->isolate(), contents); |
abarth-chromium
2014/07/29 16:47:04
We should use a type like base::NullableString16 i
hansmuller
2014/07/29 17:16:25
That sounds sensible. I will do that in a separate
|
+} |
+ |
+v8::Handle<v8::Value> GetSourceRootDirectory(gin::Arguments* args) { |
+ base::FilePath path; |
+ if (!PathService::Get(base::DIR_SOURCE_ROOT, &path)) |
+ return v8::Null(args->isolate()); |
+ return gin::Converter<std::string>::ToV8(args->isolate(), |
+ path.AsUTF8Unsafe()); |
+} |
+ |
+v8::Handle<v8::Value> GetFilesInDirectory(gin::Arguments* args) { |
+ std::string filename; |
+ if (!args->GetNext(&filename)) |
+ return v8::Null(args->isolate()); |
+ |
+ const base::FilePath& path = base::FilePath::FromUTF8Unsafe(filename); |
+ if (!base::DirectoryExists(path)) |
+ return v8::Null(args->isolate()); |
+ |
+ std::vector<std::string> names; |
+ base::FileEnumerator e(path, false, base::FileEnumerator::FILES); |
+ for (base::FilePath name = e.Next(); !name.empty(); name = e.Next()) { |
+ names.push_back(name.BaseName().AsUTF8Unsafe()); |
+ } |
+ |
+ return gin::Converter<std::vector<std::string>>::ToV8(args->isolate(), names); |
+} |
+ |
+gin::WrapperInfo g_wrapper_info = { gin::kEmbedderNativeGin }; |
+ |
+} // namespace |
+ |
+const char File::kModuleName[] = "file"; |
+ |
+v8::Local<v8::Value> File::GetModule(v8::Isolate* isolate) { |
+ gin::PerIsolateData* data = gin::PerIsolateData::From(isolate); |
+ v8::Local<ObjectTemplate> templ = data->GetObjectTemplate(&g_wrapper_info); |
+ if (templ.IsEmpty()) { |
+ templ = gin::ObjectTemplateBuilder(isolate) |
+ .SetMethod("readFileToString", ReadFileToString) |
+ .SetMethod("getFilesInDirectory", GetFilesInDirectory) |
+ .SetMethod("getSourceRootDirectory", GetSourceRootDirectory) |
+ .Build(); |
+ data->SetObjectTemplate(&g_wrapper_info, templ); |
+ } |
+ return templ->NewInstance(); |
+} |
+ |
+} // namespace gin |