forked from pmed/v8pp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile.cpp
139 lines (119 loc) · 3.11 KB
/
file.cpp
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include <v8pp/module.hpp>
#include <v8pp/class.hpp>
#include <v8pp/config.hpp>
#include <fstream>
namespace file {
class file_base
{
public:
bool is_open() const { return stream_.is_open(); }
bool good() const { return stream_.good(); }
bool eof() const { return stream_.eof(); }
void close() { stream_.close(); }
protected:
std::fstream stream_;
};
class file_writer : public file_base
{
public:
explicit file_writer(v8::FunctionCallbackInfo<v8::Value> const& args)
{
if (args.Length() == 1)
{
v8::String::Utf8Value const str(args.GetIsolate(), args[0]);
open(*str);
}
}
bool open(char const* path)
{
stream_.open(path, std::ios_base::out);
return stream_.good();
}
void print(v8::FunctionCallbackInfo<v8::Value> const& args)
{
v8::HandleScope scope(args.GetIsolate());
for (int i = 0; i < args.Length(); ++i)
{
if (i > 0) stream_ << ' ';
v8::String::Utf8Value const str(args.GetIsolate(), args[i]);
stream_ << *str;
}
}
void println(v8::FunctionCallbackInfo<v8::Value> const& args)
{
print(args);
stream_ << std::endl;
}
};
class file_reader : public file_base
{
public:
explicit file_reader(char const* path)
{
open(path);
}
bool open(const char* path)
{
stream_.open(path, std::ios_base::in);
return stream_.good();
}
v8::Local<v8::Value> getline(v8::Isolate* isolate)
{
if (stream_.good() && !stream_.eof())
{
std::string line;
std::getline(stream_, line);
return v8pp::to_v8(isolate, line);
}
else
{
return v8::Undefined(isolate);
}
}
};
v8::Local<v8::Value> init(v8::Isolate* isolate)
{
v8::EscapableHandleScope scope(isolate);
// file_base binding, no .ctor() specified, object creation disallowed in JavaScript
v8pp::class_<file_base> file_base_class(isolate);
file_base_class
.function("close", &file_base::close)
.function("good", &file_base::good)
.function("is_open", &file_base::is_open)
.function("eof", &file_base::eof)
;
// .ctor<> template arguments declares types of file_writer constructor
// file_writer inherits from file_base_class
v8pp::class_<file_writer> file_writer_class(isolate);
file_writer_class
.ctor<v8::FunctionCallbackInfo<v8::Value> const&>()
.inherit<file_base>()
.function("open", &file_writer::open)
.function("print", &file_writer::print)
.function("println", &file_writer::println)
;
// .ctor<> template arguments declares types of file_reader constructor.
// file_base inherits from file_base_class
v8pp::class_<file_reader> file_reader_class(isolate);
file_reader_class
.ctor<char const*>()
.inherit<file_base>()
.function("open", &file_reader::open)
.function("getln", &file_reader::getline)
;
// Create a module to add classes and functions to and return a
// new instance of the module to be embedded into the v8 context
v8pp::module m(isolate);
m.function("rename", +[](char const* src, char const* dest) -> bool
{
return std::rename(src, dest) == 0;
});
m.class_("writer", file_writer_class);
m.class_("reader", file_reader_class);
return scope.Escape(m.new_instance());
}
} // namespace file
V8PP_PLUGIN_INIT(v8::Isolate* isolate)
{
return file::init(isolate);
}