forked from dturing/node-gstreamer-superficial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GObjectWrap.cpp
171 lines (139 loc) · 5.1 KB
/
GObjectWrap.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#include <nan.h>
#include <gst/gst.h>
#include <gst/app/gstappsink.h>
#include <gst/app/gstappsrc.h>
#include "GObjectWrap.h"
Nan::Persistent<Function> GObjectWrap::constructor;
void GObjectWrap::Init() {
Nan::HandleScope scope;
// Constructor
Local<FunctionTemplate> ctor = Nan::New<FunctionTemplate>(GObjectWrap::New);
ctor->InstanceTemplate()->SetInternalFieldCount(1);
ctor->SetClassName(Nan::New<String>("GObjectWrap").ToLocalChecked());
// Prototype
//Local<ObjectPrototype> proto = ctor->PrototypeTemplate();
constructor.Reset(Nan::GetFunction(ctor).ToLocalChecked());
}
NAN_METHOD(GObjectWrap::New) {
GObjectWrap* obj = new GObjectWrap();
obj->Wrap(info.This());
info.GetReturnValue().Set(info.This());
}
Local<Value> GObjectWrap::NewInstance( const Nan::FunctionCallbackInfo<Value>& info, GObject *obj ) {
Nan::EscapableHandleScope scope;
const unsigned argc = 1;
Isolate* isolate = info.GetIsolate();
Local<Context> context = isolate->GetCurrentContext();
Local<Function> constructorLocal = Nan::New(constructor);
constructorLocal->SetName(String::NewFromUtf8(isolate, G_OBJECT_TYPE_NAME(obj), v8::NewStringType::kNormal).ToLocalChecked());
Local<Value> argv[argc] = { info[0] };
Local<Object> instance = constructorLocal->NewInstance(context, argc, argv).ToLocalChecked();
GObjectWrap* wrap = Nan::ObjectWrap::Unwrap<GObjectWrap>(instance);
wrap->obj = obj;
guint n_properties;
GParamSpec **properties = g_object_class_list_properties(G_OBJECT_GET_CLASS(obj), &n_properties);
for(guint i = 0; i < n_properties; i++) {
GParamSpec *property = properties[i];
Local<String> name = String::NewFromUtf8(isolate, property->name, v8::NewStringType::kNormal).ToLocalChecked();
Nan::SetAccessor(instance, name, GObjectWrap::GetProperty, GObjectWrap::SetProperty);
}
g_free(properties);
if(GST_IS_APP_SINK(obj)) {
Nan::SetMethod(instance, "pull", GstAppSinkPull);
}
if (GST_IS_APP_SRC(obj)) {
Nan::SetMethod(instance, "push", GstAppSrcPush);
}
info.GetReturnValue().Set(instance);
return scope.Escape(instance);
}
NAN_GETTER(GObjectWrap::GetProperty) {
GObjectWrap* obj = Nan::ObjectWrap::Unwrap<GObjectWrap>(info.This());
Nan::Utf8String name(property);
GObject *o = obj->obj;
GParamSpec *spec = g_object_class_find_property(G_OBJECT_GET_CLASS(o), *name);
if(!spec) {
info.GetReturnValue().Set(Nan::Undefined());
} else {
GValue gv;
memset(&gv, 0, sizeof(gv));
g_value_init(&gv, G_PARAM_SPEC_VALUE_TYPE(spec));
g_object_get_property(o, *name, &gv);
info.GetReturnValue().Set(gvalue_to_v8(&gv));
g_value_unset(&gv);
}
}
NAN_SETTER(GObjectWrap::SetProperty) {
GObjectWrap* obj = Nan::ObjectWrap::Unwrap<GObjectWrap>(info.This());
Nan::Utf8String name(property);
GObject *o = obj->obj;
GParamSpec *spec = g_object_class_find_property(G_OBJECT_GET_CLASS(o), *name);
if(spec) {
GValue gv;
memset( &gv, 0, sizeof( gv ) );
v8_to_gvalue( value, &gv, spec);
g_object_set_property( o, *name, &gv );
g_value_unset(&gv);
}
}
class PullWorker : public Nan::AsyncWorker {
public:
PullWorker(Nan::Callback *callback, GstAppSink *appsink)
: AsyncWorker(callback,"node-gst-superficial.PullWorker"), appsink(appsink) {};
~PullWorker() {
if (sample) {
gst_sample_unref(sample);
}
delete callback;
}
void Execute() {
sample = gst_app_sink_pull_sample(appsink);
}
void HandleOKCallback() {
Nan::HandleScope scope;
Local<Value> buf;
Local<Object> caps = Nan::New<Object>();
if (sample) {
GstCaps *gcaps = gst_sample_get_caps(sample);
if (gcaps) {
const GstStructure *structure = gst_caps_get_structure(gcaps,0);
if (structure) gst_structure_to_v8(caps, structure);
}
buf = gstsample_to_v8(sample);
gst_sample_unref(sample);
sample = NULL;
} else {
buf = Nan::Null();
}
Local<Value> argv[] = { buf, caps };
callback->Call(2, argv, async_resource);
}
private:
GstAppSink *appsink;
GstSample *sample;
};
NAN_METHOD(GObjectWrap::GstAppSinkPull) {
GObjectWrap* obj = Nan::ObjectWrap::Unwrap<GObjectWrap>(info.This());
Nan::Callback *callback = new Nan::Callback(info[0].As<Function>());
AsyncQueueWorker(new PullWorker(callback, GST_APP_SINK(obj->obj)));
}
NAN_METHOD(GObjectWrap::GstAppSrcPush) {
auto *obj = Nan::ObjectWrap::Unwrap<GObjectWrap>(info.This());
if (info.Length() > 0) {
if (info[0]->IsObject()) {
Local<Object> o = Nan::To<Object>(info[0]).ToLocalChecked();
char *buffer = node::Buffer::Data(o);
size_t buffer_length = node::Buffer::Length(o);
GstBuffer *gst_buffer = gst_buffer_new_allocate(nullptr, buffer_length, nullptr);
gst_buffer_fill(gst_buffer, 0, buffer, buffer_length);
if (info.Length() > 1) {
char *bufferPTS = node::Buffer::Data(Nan::To<Object>(info[1]).ToLocalChecked());
gst_buffer->pts = GST_READ_UINT64_BE(bufferPTS);
}
gst_app_src_push_buffer(GST_APP_SRC(obj->obj), gst_buffer);
gst_buffer_unref(gst_buffer);
}
// TODO throw an error if arg is not a buffer object?
}
// TODO throw an error if no args are given?
}