-
Notifications
You must be signed in to change notification settings - Fork 53
/
30log-clean.lua
210 lines (185 loc) · 6.17 KB
/
30log-clean.lua
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
local next = next
local assert = assert
local pairs = pairs
local type = type
local tostring = tostring
local setmetatable = setmetatable
local _class
local baseMt = {}
local _instances = setmetatable({},{__mode = 'k'})
local _classes = setmetatable({},{__mode = 'k'})
local function assert_call_from_class(class, method)
assert(_classes[class], ('Wrong method call. Expected class:%s.'):format(method))
end
local function assert_call_from_instance(instance, method)
assert(_instances[instance], ('Wrong method call. Expected instance:%s.'):format(method))
end
local function bind(f, v)
return function(...) return f(v, ...) end
end
local default_filter = function() return true end
local function deep_copy(t, dest, aType)
t = t or {}
local r = dest or {}
for k,v in pairs(t) do
if aType ~= nil and type(v) == aType then
r[k] = (type(v) == 'table')
and ((_classes[v] or _instances[v]) and v or deep_copy(v))
or v
elseif aType == nil then
r[k] = (type(v) == 'table')
and k~= '__index' and ((_classes[v] or _instances[v]) and v or deep_copy(v))
or v
end
end
return r
end
local function instantiate(call_init, self, ...)
assert_call_from_class(self, 'new(...) or class(...)')
local instance = {class = self}
_instances[instance] = tostring(instance)
deep_copy(self, instance, 'table')
instance.__index = nil
instance.mixins = nil
instance.__subclasses = nil
instance.__instances = nil
setmetatable(instance,self)
if call_init and self.init then
if type(self.init) == 'table' then
deep_copy(self.init, instance)
else
self.init(instance, ...)
end
end
return instance
end
local function extend(self, name, extra_params)
assert_call_from_class(self, 'extend(...)')
local heir = {}
_classes[heir] = tostring(heir)
self.__subclasses[heir] = true
deep_copy(extra_params, deep_copy(self, heir))
heir.name = extra_params and extra_params.name or name
heir.__index = heir
heir.super = self
heir.mixins = {}
return setmetatable(heir,self)
end
baseMt = {
__call = function (self,...) return self:new(...) end,
__tostring = function(self,...)
if _instances[self] then
return ("instance of '%s' (%s)"):format(rawget(self.class,'name')
or '?', _instances[self])
end
return _classes[self]
and ("class '%s' (%s)"):format(rawget(self,'name')
or '?',
_classes[self]) or self
end
}
_classes[baseMt] = tostring(baseMt)
setmetatable(baseMt, {__tostring = baseMt.__tostring})
local class = {
isClass = function(t) return not not _classes[t] end,
isInstance = function(t) return not not _instances[t] end,
}
_class = function(name, attr)
local c = deep_copy(attr)
_classes[c] = tostring(c)
c.name = name or c.name
c.__tostring = baseMt.__tostring
c.__call = baseMt.__call
c.new = bind(instantiate, true)
c.create = bind(instantiate, false)
c.extend = extend
c.__index = c
c.mixins = setmetatable({},{__mode = 'k'})
c.__instances = setmetatable({},{__mode = 'k'})
c.__subclasses = setmetatable({},{__mode = 'k'})
c.subclasses = function(self, filter, ...)
assert_call_from_class(self, 'subclasses(class)')
filter = filter or default_filter
local subclasses = {}
for class in pairs(_classes) do
if class ~= baseMt and class:subclassOf(self) and filter(class,...) then
subclasses[#subclasses + 1] = class
end
end
return subclasses
end
c.instances = function(self, filter, ...)
assert_call_from_class(self, 'instances(class)')
filter = filter or default_filter
local instances = {}
for instance in pairs(_instances) do
if instance:instanceOf(self) and filter(instance, ...) then
instances[#instances + 1] = instance
end
end
return instances
end
c.subclassOf = function(self, superclass)
assert_call_from_class(self, 'subclassOf(superclass)')
assert(class.isClass(superclass), 'Wrong argument given to method "subclassOf()". Expected a class.')
local super = self.super
while super do
if super == superclass then return true end
super = super.super
end
return false
end
c.classOf = function(self, subclass)
assert_call_from_class(self, 'classOf(subclass)')
assert(class.isClass(subclass), 'Wrong argument given to method "classOf()". Expected a class.')
return subclass:subclassOf(self)
end
c.instanceOf = function(self, fromclass)
assert_call_from_instance(self, 'instanceOf(class)')
assert(class.isClass(fromclass), 'Wrong argument given to method "instanceOf()". Expected a class.')
return ((self.class == fromclass) or (self.class:subclassOf(fromclass)))
end
c.cast = function(self, toclass)
assert_call_from_instance(self, 'instanceOf(class)')
assert(class.isClass(toclass), 'Wrong argument given to method "cast()". Expected a class.')
setmetatable(self, toclass)
self.class = toclass
return self
end
c.with = function(self,...)
assert_call_from_class(self, 'with(mixin)')
for _, mixin in ipairs({...}) do
assert(self.mixins[mixin] ~= true, ('Attempted to include a mixin which was already included in %s'):format(tostring(self)))
self.mixins[mixin] = true
deep_copy(mixin, self, 'function')
end
return self
end
c.includes = function(self, mixin)
assert_call_from_class(self,'includes(mixin)')
return not not (self.mixins[mixin] or (self.super and self.super:includes(mixin)))
end
c.without = function(self, ...)
assert_call_from_class(self, 'without(mixin)')
for _, mixin in ipairs({...}) do
assert(self.mixins[mixin] == true, ('Attempted to remove a mixin which is not included in %s'):format(tostring(self)))
local classes = self:subclasses()
classes[#classes + 1] = self
for _, class in ipairs(classes) do
for method_name, method in pairs(mixin) do
if type(method) == 'function' then
class[method_name] = nil
end
end
end
self.mixins[mixin] = nil
end
return self
end
return setmetatable(c, baseMt)
end
class._DESCRIPTION = '30 lines library for object orientation in Lua'
class._VERSION = '30log v1.3.0'
class._URL = 'http://github.com/Yonaba/30log'
class._LICENSE = 'MIT LICENSE <http://www.opensource.org/licenses/mit-license.php>'
return setmetatable(class,{__call = function(_,...) return _class(...) end })