-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpimple.js
126 lines (126 loc) · 3.49 KB
/
pimple.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
/*global String,Boolean,Object,Function */
/*
Pimple dependency injection container
@copyright 2011 M.PARAISO <[email protected]>
@license LGPL
@version 0.0.3
*/
(function(){
"use strict";
var self=this;
/**
* Pimple dependency injection container
* @param {Object} object
* @return {Boolean}
*/
var _isFunction=function(object){
return object instanceof Function;
};
var reservedProperties=['get','set','factory','raw','protect','share','toString','constructor'];
/**
*
* @param {Object} definitions
* @constructor
*/
this.Pimple = function(definitions){
if(!(this instanceof self.Pimple)){
return new self.Pimple(definitions);
}
this._definitions={};
for(var key in definitions){
if(definitions.hasOwnProperty(key)){
this.set(key,definitions[key]);
}
}
};
this.Pimple.prototype={
/**
*
* @param {String} key
* @returns {*}
*/
get:function(key){
if(this._definitions[key]===undefined)return;
if(_isFunction(this._definitions[key])){
return this._definitions[key].call(this,this);
}
return this._definitions[key];
},
/**
* register a new service
* @param {String} key
* @param {Object|Function}
* @return {Pimple} container
*/
set:function(key,definition){
this._definitions[key]=definition;
if(reservedProperties.indexOf(key)===-1){
Object.defineProperty(this,key,{
get:function(){
return this.get(key);
},
configurable:true,
enumerable:true
});
}
return this
},
/**
* get raw service definition
* @param {String} key
* @returns {*}
*/
raw:function(key){
return this._definitions[key];
},
/**
*
* @param {Object,Function} definition
* @return {Function}
*/
share:function(definition){
var cached,self=this;
return function(){
if(cached===undefined){
cached=definition.call(self,self);
}
return cached;
}
},
/**
* @param {Function}definition
* @param {Object} context
* @returns {Function}
*/
protect:function(definition,context){
context=context||this;
return function(){
return definition.bind(context);
}
},
/**
* @param {String} key
* @param {Function} definition
* @returns {Function}
*/
extend:function(key,definition){
return definition.bind(this,this.get(key),this);
},
/**
* use a function to register a set of definitions
* @param {Function} definitionProvider
* @returns {*}
*/
register:function(definitionProvider){
return definitionProvider(this);
}
};
if(this.define instanceof Function){
var self=this;
this.define('pimple',[],function(){return self.Pimple});
}
//CommonJS
if(module && module.exports){
module.exports = this.Pimple;
}
}).apply(this);