summaryrefslogtreecommitdiffstats
path: root/gin/test/file.cc
blob: 38efbb434f915381884fc9643e267598e44e0ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// 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/files/file_enumerator.h"
#include "base/files/file_path.h"
#include "base/files/file_util.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::Local<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);
}

v8::Local<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::Local<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());
  }

  v8::Local<v8::Value> v8_names;
  if (!TryConvertToV8(args->isolate(), names, &v8_names))
    return v8::Null(args->isolate());
  return v8_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