UNPKG

2.05 kBtext/x-cView Raw
1/*
2 Source File : PDFIntegerDriver.cpp
3
4
5 Copyright 2013 Gal Kahana HummusJS
6
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18
19 */
20#include "PDFIntegerDriver.h"
21#include "RefCountPtr.h"
22#include "ConstructorsHolder.h"
23using namespace v8;
24
25
26
27DEF_SUBORDINATE_INIT(PDFIntegerDriver::Init)
28{
29 CREATE_ISOLATE_CONTEXT;
30
31 Local<FunctionTemplate> t = NEW_FUNCTION_TEMPLATE_EXTERNAL(New);
32
33 t->SetClassName(NEW_STRING("PDFInteger"));
34 t->InstanceTemplate()->SetInternalFieldCount(1);
35
36 SET_ACCESSOR_METHOD(t, "value", GetValue);
37 PDFObjectDriver::Init(t);
38 // save in factory
39 EXPOSE_EXTERNAL_FOR_INIT(ConstructorsHolder, holder)
40 SET_CONSTRUCTOR(holder->PDFInteger_constructor, t);
41 SET_CONSTRUCTOR_TEMPLATE(holder->PDFInteger_constructor_template, t);
42}
43
44METHOD_RETURN_TYPE PDFIntegerDriver::New(const ARGS_TYPE& args)
45{
46 CREATE_ISOLATE_CONTEXT;
47 CREATE_ESCAPABLE_SCOPE;
48 EXPOSE_EXTERNAL_ARGS(ConstructorsHolder, externalHolder)
49 PDFIntegerDriver* driver = new PDFIntegerDriver();
50 driver->holder = externalHolder;
51 driver->Wrap(args.This());
52 SET_FUNCTION_RETURN_VALUE( args.This())
53}
54
55PDFObject* PDFIntegerDriver::GetObject()
56{
57 return TheObject.GetPtr();
58}
59
60METHOD_RETURN_TYPE PDFIntegerDriver::GetValue(Local<String> property, const PROPERTY_TYPE &info)
61{
62 CREATE_ISOLATE_CONTEXT;
63 CREATE_ESCAPABLE_SCOPE;
64
65 Local<Number> result = NEW_NUMBER(ObjectWrap::Unwrap<PDFIntegerDriver>(info.Holder())->TheObject->GetValue());
66 SET_ACCESSOR_RETURN_VALUE(result)
67}
68
69