This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
forked from creationix/node-gir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gir.js
152 lines (127 loc) · 4.46 KB
/
gir.js
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
var gir = require('./build/Release/girepository.node'),
EventEmitter = require("events").EventEmitter;
gir.init();
var oldLoad = gir.load;
gir.load = function(namespace, version) {
if(!version) {
var namespaces = gir.loadedNamespaces();
for(var i=0; i<namespaces.length; i++) {
if(namespace == namespaces[i]) {
version = gir.getVersion(namespaces[i]);
break;
}
}
}
var ns = oldLoad(namespace, version);
for(var i=0; i<ns.__objects__.length; i++) {
var obj = ns[ns.__objects__[i]];
if(!obj) {
continue;
}
for(var j in obj.__methods__) {
var cname = obj.__methods__[j];
obj.prototype[camelcase(cname)] = (function(fname) {
return function() {
var arg = Array.prototype.slice.call(arguments);
arg.unshift(fname);
this.__call__.apply(this, arg);
};
})(cname);
}
for(var j in obj.__properties__) {
var cname = obj.__properties__[j];
(function(propname) {
obj.prototype.__defineGetter__(camelcase(cname), function() {
return this.__get_property__.apply(this, [propname]);
});
obj.prototype.__defineSetter__(camelcase(cname), function(x) {
return this.__set_property__.apply(this, [propname, x]);
});
})(cname);
}
}
for(var i=0; i<ns.__roots__.length; i++) {
extend(true, ns[ns.__roots__[i]].prototype, EventEmitter.prototype);
}
return ns;
};
module.exports = gir;
function camelcase(x) {
return x.replace(/\_[a-z]/g, function(h) {
return h.substr(1).toUpperCase();
});
}
/**
* Adopted from jquery's extend method. Under the terms of MIT License.
*
* http://code.jquery.com/jquery-1.4.2.js
*
* Modified by Brian White to use Array.isArray instead of the custom isArray
* method
*/
function extend() {
// copy reference to target object
var target = arguments[0] || {},
i = 1,
length = arguments.length,
deep = false,
options,
name,
src,
copy;
// Handle a deep copy situation
if (typeof target === "boolean") {
deep = target;
target = arguments[1] || {};
// skip the boolean and the target
i = 2;
}
// Handle case when target is a string or something (possible in deep copy)
if (typeof target !== "object" && !typeof target === 'function')
target = {};
var isPlainObject = function(obj) {
// Must be an Object.
// Because of IE, we also have to check the presence of the constructor
// property.
// Make sure that DOM nodes and window objects don't pass through, as well
if (!obj || toString.call(obj) !== "[object Object]" || obj.nodeType
|| obj.setInterval)
return false;
var has_own_constructor = hasOwnProperty.call(obj, "constructor");
var has_is_prop_of_method = hasOwnProperty.call(obj.constructor.prototype,
"isPrototypeOf");
// Not own constructor property must be Object
if (obj.constructor && !has_own_constructor && !has_is_prop_of_method)
return false;
// Own properties are enumerated firstly, so to speed up,
// if last one is own, then all properties are own.
var last_key;
for (key in obj)
last_key = key;
return typeof last_key === "undefined" || hasOwnProperty.call(obj, last_key);
};
for (; i < length; i++) {
// Only deal with non-null/undefined values
if ((options = arguments[i]) !== null) {
// Extend the base object
for (name in options) {
src = target[name];
copy = options[name];
// Prevent never-ending loop
if (target === copy)
continue;
// Recurse if we're merging object literal values or arrays
if (deep && copy && (isPlainObject(copy) || Array.isArray(copy))) {
var clone = src && (isPlainObject(src) || Array.isArray(src)
? src : (Array.isArray(copy) ? [] : {}));
// Never move original objects, clone them
target[name] = extend(deep, clone, copy);
// Don't bring in undefined values
} else if (typeof copy !== "undefined")
target[name] = copy;
}
}
}
// Return the modified object
return target;
};