-
Notifications
You must be signed in to change notification settings - Fork 699
Expand file tree
/
Copy pathobject.cc
More file actions
executable file
·195 lines (134 loc) · 5.29 KB
/
object.cc
File metadata and controls
executable file
·195 lines (134 loc) · 5.29 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
/*
Copyright (c) 2011, Tim Branyen @tbranyen <tim@tabdeveloper.com>
*/
#include <v8.h>
#include <node.h>
#include <node_events.h>
#include "../vendor/libgit2/include/git2.h"
#include "object.h"
#include "repo.h"
#include "oid.h"
using namespace v8;
using namespace node;
void GitObject::Initialize (Handle<v8::Object> target) {
HandleScope scope;
Local<FunctionTemplate> t = FunctionTemplate::New(New);
constructor_template = Persistent<FunctionTemplate>::New(t);
constructor_template->InstanceTemplate()->SetInternalFieldCount(1);
constructor_template->SetClassName(String::NewSymbol("Object"));
NODE_SET_PROTOTYPE_METHOD(constructor_template, "id", Id);
NODE_SET_PROTOTYPE_METHOD(constructor_template, "type", Type);
NODE_SET_PROTOTYPE_METHOD(constructor_template, "owner", Owner);
NODE_SET_PROTOTYPE_METHOD(constructor_template, "type2String", Type2String);
NODE_SET_PROTOTYPE_METHOD(constructor_template, "string2Type", String2Type);
NODE_SET_PROTOTYPE_METHOD(constructor_template, "typeIsLoose", TypeIsLoose);
NODE_SET_PROTOTYPE_METHOD(constructor_template, "size", Size);
Local<Object> type = Object::New();
type->Set(String::New("ANY"), Integer::New(-2));
type->Set(String::New("BAD"), Integer::New(-1));
type->Set(String::New("_EXT1"), Integer::New(0));
type->Set(String::New("COMMIT"), Integer::New(1));
type->Set(String::New("TREE"), Integer::New(2));
type->Set(String::New("BLOB"), Integer::New(3));
type->Set(String::New("TAG"), Integer::New(4));
type->Set(String::New("_EXT2"), Integer::New(5));
type->Set(String::New("OFS_DELTA"), Integer::New(6));
type->Set(String::New("REF_DELTA"), Integer::New(7));
constructor_template->Set(String::New("type"), type);
target->Set(String::NewSymbol("Object"), constructor_template->GetFunction());
}
git_object* GitObject::GetValue() {
return this->obj;
}
void GitObject::SetValue(git_object* obj) {
this->obj = obj;
}
const git_oid* GitObject::Id() {
return git_object_id(this->obj);
}
git_otype GitObject::Type() {
return git_object_type(this->obj);
}
git_repository* GitObject::Owner() {
return git_object_owner(this->obj);
}
const char* GitObject::Type2String(git_otype type) {
return git_object_type2string(type);
}
git_otype GitObject::String2Type(const char* type) {
return git_object_string2type(type);
}
int GitObject::TypeIsLoose(git_otype type) {
return git_object_typeisloose(type);
}
size_t GitObject::Size(git_otype type) {
return git_object__size(type);
}
Handle<Value> GitObject::New(const Arguments& args) {
HandleScope scope;
GitObject *obj = new GitObject();
obj->Wrap(args.This());
return args.This();
}
Handle<Value> GitObject::Id(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
if(args.Length() == 0 || !args[0]->IsObject()) {
return ThrowException(Exception::Error(String::New("Oid is required and must be an Object.")));
}
Oid *oid = ObjectWrap::Unwrap<Oid>(args[0]->ToObject());
oid->SetValue(const_cast<git_oid *>(obj->Id()));
return Undefined();
}
Handle<Value> GitObject::Type(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
return Integer::New(obj->Type());
}
Handle<Value> GitObject::Owner(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
if(args.Length() == 0 || !args[0]->IsObject()) {
return ThrowException(Exception::Error(String::New("Repo is required and must be an Object.")));
}
Repo *repo = ObjectWrap::Unwrap<Repo>(args[0]->ToObject());
repo->SetValue(obj->Owner());
return Undefined();
}
Handle<Value> GitObject::Type2String(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
if(args.Length() == 0 || !args[0]->IsNumber()) {
return ThrowException(Exception::Error(String::New("Type is required and must be a Number.")));
}
git_otype type = (git_otype)args[0]->ToInteger()->Value();
return String::New(obj->Type2String(type));
}
Handle<Value> GitObject::String2Type(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
if(args.Length() == 0 || !args[0]->IsString()) {
return ThrowException(Exception::Error(String::New("Type is required and must be a String.")));
}
String::Utf8Value type(args[0]);
return Integer::New(obj->String2Type(*type));
}
Handle<Value> GitObject::TypeIsLoose(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
if(args.Length() == 0 || !args[0]->IsNumber()) {
return ThrowException(Exception::Error(String::New("Type is required and must be a Number.")));
}
git_otype type = (git_otype)args[0]->ToInteger()->Value();
return Integer::New(obj->TypeIsLoose(type));
}
Handle<Value> GitObject::Size(const Arguments& args) {
HandleScope scope;
GitObject *obj = ObjectWrap::Unwrap<GitObject>(args.This());
if(args.Length() == 0 || !args[0]->IsNumber()) {
return ThrowException(Exception::Error(String::New("Type is required and must be a Number.")));
}
git_otype type = (git_otype)args[0]->ToInteger()->Value();
return Integer::New(obj->Size(type));
}
Persistent<FunctionTemplate> GitObject::constructor_template;