mirror of
https://github.com/kikito/middleclass.git
synced 2024-11-25 02:44:20 +00:00
Refactor & remove class:allocate
This commit is contained in:
parent
fc61416c81
commit
7894eb7790
@ -1,5 +1,5 @@
|
|||||||
local middleclass = {
|
local middleclass = {
|
||||||
_VERSION = 'middleclass v3.2.0',
|
_VERSION = 'middleclass v4.0.0',
|
||||||
_DESCRIPTION = 'Object Orientation for Lua',
|
_DESCRIPTION = 'Object Orientation for Lua',
|
||||||
_URL = 'https://github.com/kikito/middleclass',
|
_URL = 'https://github.com/kikito/middleclass',
|
||||||
_LICENSE = [[
|
_LICENSE = [[
|
||||||
@ -28,20 +28,6 @@ local middleclass = {
|
|||||||
]]
|
]]
|
||||||
}
|
}
|
||||||
|
|
||||||
local function _setClassDictionariesMetatables(aClass)
|
|
||||||
local dict = aClass.__instanceDict
|
|
||||||
aClass.__instanceDict.__index = dict
|
|
||||||
|
|
||||||
local super = aClass.super
|
|
||||||
if super then
|
|
||||||
local superStatic = super.static
|
|
||||||
setmetatable(dict, { __index = super.__instanceDict })
|
|
||||||
setmetatable(aClass.static, { __index = function(_,k) return rawget(dict,k) or superStatic[k] end })
|
|
||||||
else
|
|
||||||
setmetatable(aClass.static, { __index = function(_,k) return dict[k] end })
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
local function _createIndexWrapper(aClass, f)
|
local function _createIndexWrapper(aClass, f)
|
||||||
if f == nil then
|
if f == nil then
|
||||||
return aClass.__instanceDict
|
return aClass.__instanceDict
|
||||||
@ -61,7 +47,8 @@ local function _createIndexWrapper(aClass, f)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function _propagateInstanceMethod(aClass, name, f)
|
local function _propagateInstanceMethod(aClass, name, f)
|
||||||
aClass.__instanceDict[name] = name == "__index" and _createIndexWrapper(aClass, f) or f
|
f = name == "__index" and _createIndexWrapper(aClass, f) or f
|
||||||
|
aClass.__instanceDict[name] = f
|
||||||
|
|
||||||
for subclass in pairs(aClass.subclasses) do
|
for subclass in pairs(aClass.subclasses) do
|
||||||
if rawget(subclass.__declaredMethods, name) == nil then
|
if rawget(subclass.__declaredMethods, name) == nil then
|
||||||
@ -80,62 +67,64 @@ local function _declareInstanceMethod(aClass, name, f)
|
|||||||
_propagateInstanceMethod(aClass, name, f)
|
_propagateInstanceMethod(aClass, name, f)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function _setClassMetatable(aClass)
|
local function _tostring(self) return "class " .. self.name end
|
||||||
setmetatable(aClass, {
|
local function _call(self, ...) return self:new(...) end
|
||||||
__tostring = function() return "class " .. aClass.name end,
|
|
||||||
__index = aClass.static,
|
|
||||||
__newindex = _declareInstanceMethod,
|
|
||||||
__call = function(self, ...) return self:new(...) end
|
|
||||||
})
|
|
||||||
end
|
|
||||||
|
|
||||||
local function _createClass(name, super)
|
local function _createClass(name, super)
|
||||||
local aClass = { name = name, super = super, static = {}, __instanceDict = {}, __declaredMethods = {} }
|
local dict = {}
|
||||||
aClass.subclasses = setmetatable({}, {__mode = "k"})
|
dict.__index = dict
|
||||||
|
|
||||||
_setClassDictionariesMetatables(aClass)
|
local aClass = { name = name, super = super, static = {},
|
||||||
_setClassMetatable(aClass)
|
__instanceDict = dict, __declaredMethods = {},
|
||||||
|
subclasses = setmetatable({}, {__mode='k'}) }
|
||||||
|
|
||||||
|
if super then
|
||||||
|
setmetatable(dict, { __index = super.__instanceDict })
|
||||||
|
setmetatable(aClass.static, { __index = function(_,k) return rawget(dict,k) or super.static[k] end })
|
||||||
|
else
|
||||||
|
setmetatable(aClass.static, { __index = function(_,k) return dict[k] end })
|
||||||
|
end
|
||||||
|
|
||||||
|
setmetatable(aClass, { __index = aClass.static, __tostring = _tostring,
|
||||||
|
__call = _call, __newindex = _declareInstanceMethod })
|
||||||
|
|
||||||
return aClass
|
return aClass
|
||||||
end
|
end
|
||||||
|
|
||||||
local function _includeMixin(aClass, mixin)
|
local function _includeMixin(aClass, mixin)
|
||||||
assert(type(mixin)=='table', "mixin must be a table")
|
assert(type(mixin) == 'table', "mixin must be a table")
|
||||||
|
|
||||||
for name,method in pairs(mixin) do
|
for name,method in pairs(mixin) do
|
||||||
if name ~= "included" and name ~= "static" then aClass[name] = method end
|
if name ~= "included" and name ~= "static" then aClass[name] = method end
|
||||||
end
|
end
|
||||||
if mixin.static then
|
|
||||||
for name,method in pairs(mixin.static) do
|
for name,method in pairs(mixin.static or {}) do
|
||||||
aClass.static[name] = method
|
aClass.static[name] = method
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
if type(mixin.included)=="function" then mixin:included(aClass) end
|
if type(mixin.included)=="function" then mixin:included(aClass) end
|
||||||
|
return aClass
|
||||||
end
|
end
|
||||||
|
|
||||||
local Object = {
|
local DefaultMixin = {
|
||||||
__tostring = function(self) return "instance of " .. tostring(self.class) end,
|
__tostring = function(self) return "instance of " .. tostring(self.class) end,
|
||||||
|
|
||||||
initialize = function(self, ...) end,
|
initialize = function(self, ...) end,
|
||||||
|
|
||||||
isInstanceOf = function(self, aClass)
|
isInstanceOf = function(self, aClass)
|
||||||
return type(self) == 'table' and
|
return type(self) == 'table' and
|
||||||
type(self.class) == 'table' and
|
type(self.class) == 'table' and
|
||||||
type(aClass) == 'table' and
|
type(aClass) == 'table' and
|
||||||
( aClass == self.class or
|
( aClass == self.class or
|
||||||
type(aClass.isSubclassOf) == 'function' and
|
type(aClass.isSubclassOf) == 'function' and
|
||||||
self.class:isSubclassOf(aClass)
|
self.class:isSubclassOf(aClass) )
|
||||||
)
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
static = {
|
static = {
|
||||||
|
|
||||||
allocate = function(self)
|
|
||||||
assert(type(self) == 'table', "Make sure that you are using 'Class:allocate' instead of 'Class.allocate'")
|
|
||||||
return setmetatable({ class = self }, self.__instanceDict)
|
|
||||||
end,
|
|
||||||
|
|
||||||
new = function(self, ...)
|
new = function(self, ...)
|
||||||
local instance = self:allocate()
|
assert(type(self) == 'table', "Make sure that you are using 'Class:new' instead of 'Class.new'")
|
||||||
|
local instance = setmetatable({ class = self }, self.__instanceDict)
|
||||||
instance:initialize(...)
|
instance:initialize(...)
|
||||||
return instance
|
return instance
|
||||||
end,
|
end,
|
||||||
@ -160,13 +149,12 @@ local Object = {
|
|||||||
subclassed = function(self, other) end,
|
subclassed = function(self, other) end,
|
||||||
|
|
||||||
isSubclassOf = function(self, other)
|
isSubclassOf = function(self, other)
|
||||||
return type(other) == 'table' and
|
return type(other) == 'table' and
|
||||||
type(self) == 'table' and
|
type(self) == 'table' and
|
||||||
type(self.super) == 'table' and
|
type(self.super) == 'table' and
|
||||||
( self.super == other or
|
( self.super == other or
|
||||||
type(self.super.isSubclassOf) == 'function' and
|
type(self.super.isSubclassOf) == 'function' and
|
||||||
self.super:isSubclassOf(other)
|
self.super:isSubclassOf(other) )
|
||||||
)
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
include = function(self, ...)
|
include = function(self, ...)
|
||||||
@ -179,14 +167,9 @@ local Object = {
|
|||||||
|
|
||||||
function middleclass.class(name, super)
|
function middleclass.class(name, super)
|
||||||
assert(type(name) == 'string', "A name (string) is needed for the new class")
|
assert(type(name) == 'string', "A name (string) is needed for the new class")
|
||||||
if super then return super:subclass(name) end
|
return super and super:subclass(name) or _includeMixin(_createClass(name), DefaultMixin)
|
||||||
local subclass = _createClass(name)
|
|
||||||
_includeMixin(subclass, Object)
|
|
||||||
return subclass
|
|
||||||
end
|
end
|
||||||
|
|
||||||
middleclass.Object = Object
|
|
||||||
|
|
||||||
setmetatable(middleclass, { __call = function(_, ...) return middleclass.class(...) end })
|
setmetatable(middleclass, { __call = function(_, ...) return middleclass.class(...) end })
|
||||||
|
|
||||||
return middleclass
|
return middleclass
|
||||||
|
@ -68,40 +68,6 @@ describe('Default methods', function()
|
|||||||
function SubClass:initialize() self.mark=true end
|
function SubClass:initialize() self.mark=true end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
describe('allocate', function()
|
|
||||||
|
|
||||||
it('allocates instances properly', function()
|
|
||||||
local instance = SubClass:allocate()
|
|
||||||
assert.equal(instance.class, SubClass)
|
|
||||||
assert.equal(tostring(instance), "instance of " .. tostring(SubClass))
|
|
||||||
end)
|
|
||||||
|
|
||||||
it('throws an error when used without the :', function()
|
|
||||||
assert.error(Object.allocate)
|
|
||||||
end)
|
|
||||||
|
|
||||||
it('does not call the initializer', function()
|
|
||||||
local allocated = SubClass:allocate()
|
|
||||||
assert.is_nil(allocated.mark)
|
|
||||||
end)
|
|
||||||
|
|
||||||
it('can be overriden', function()
|
|
||||||
|
|
||||||
local previousAllocate = SubClass.static.allocate
|
|
||||||
|
|
||||||
function SubClass.static:allocate()
|
|
||||||
local instance = previousAllocate(SubClass)
|
|
||||||
instance.mark = true
|
|
||||||
return instance
|
|
||||||
end
|
|
||||||
|
|
||||||
local allocated = SubClass:allocate()
|
|
||||||
assert.is_true(allocated.mark)
|
|
||||||
|
|
||||||
end)
|
|
||||||
|
|
||||||
end)
|
|
||||||
|
|
||||||
describe('new', function()
|
describe('new', function()
|
||||||
|
|
||||||
it('initializes instances properly', function()
|
it('initializes instances properly', function()
|
||||||
|
Loading…
Reference in New Issue
Block a user