UNPKG

2.59 kBtext/x-cView Raw
1/*
2 Source File : PDFIndirectObjectReferenceDriver.h
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 "PDFIndirectObjectReferenceDriver.h"
21#include "RefCountPtr.h"
22#include "ConstructorsHolder.h"
23using namespace v8;
24
25
26
27DEF_SUBORDINATE_INIT(PDFIndirectObjectReferenceDriver::Init)
28{
29 CREATE_ISOLATE_CONTEXT;
30
31 Local<FunctionTemplate> t = NEW_FUNCTION_TEMPLATE_EXTERNAL(New);
32
33 t->SetClassName(NEW_STRING("PDFIndirectObjectReference"));
34 t->InstanceTemplate()->SetInternalFieldCount(1);
35
36 SET_PROTOTYPE_METHOD(t, "getObjectID", GetObjectID);
37 SET_PROTOTYPE_METHOD(t, "getVersion", GetVersion);
38 PDFObjectDriver::Init(t);
39
40 // save in factory
41 EXPOSE_EXTERNAL_FOR_INIT(ConstructorsHolder, holder)
42 SET_CONSTRUCTOR(holder->PDFIndirectObjectReference_constructor, t);
43 SET_CONSTRUCTOR_TEMPLATE(holder->PDFIndirectObjectReference_constructor_template, t);
44}
45
46METHOD_RETURN_TYPE PDFIndirectObjectReferenceDriver::New(const ARGS_TYPE& args)
47{
48 CREATE_ISOLATE_CONTEXT;
49 CREATE_ESCAPABLE_SCOPE;
50 EXPOSE_EXTERNAL_ARGS(ConstructorsHolder, externalHolder)
51 PDFIndirectObjectReferenceDriver* driver = new PDFIndirectObjectReferenceDriver();
52 driver->holder = externalHolder;
53 driver->Wrap(args.This());
54 SET_FUNCTION_RETURN_VALUE( args.This())
55}
56
57PDFObject* PDFIndirectObjectReferenceDriver::GetObject()
58{
59 return TheObject.GetPtr();
60}
61
62METHOD_RETURN_TYPE PDFIndirectObjectReferenceDriver::GetObjectID(const ARGS_TYPE& args)
63{
64 CREATE_ISOLATE_CONTEXT;
65 CREATE_ESCAPABLE_SCOPE;
66
67 Local<Number> result = NEW_NUMBER(ObjectWrap::Unwrap<PDFIndirectObjectReferenceDriver>(args.This())->TheObject->mObjectID);
68 SET_FUNCTION_RETURN_VALUE(result)
69}
70
71METHOD_RETURN_TYPE PDFIndirectObjectReferenceDriver::GetVersion(const ARGS_TYPE& args)
72{
73 CREATE_ISOLATE_CONTEXT;
74 CREATE_ESCAPABLE_SCOPE;
75
76 Local<Number> result = NEW_NUMBER(ObjectWrap::Unwrap<PDFIndirectObjectReferenceDriver>(args.This())->TheObject->mVersion);
77 SET_FUNCTION_RETURN_VALUE(result)
78}