Integrate core C implementation

This commit is contained in:
Steven Barth 2008-11-20 15:15:50 +00:00
parent 40639695cb
commit 9a203c52dd
3 changed files with 21 additions and 1 deletions

View file

@ -1,2 +1,12 @@
include ../../build/config.mk include ../../build/config.mk
include ../../build/module.mk include ../../build/module.mk
%.o: %.c
$(COMPILE) $(LUA_CFLAGS) $(FPIC) -c -o $@ $<
compile: src/luci_cutil.o
mkdir -p dist$(LUCI_LIBRARYDIR)
$(LINK) $(SHLIB_FLAGS) -o dist$(LUCI_LIBRARYDIR)/cutil.so src/luci_cutil.o
clean: luaclean
rm src/*.o

View file

@ -31,6 +31,7 @@ local debug = require "debug"
local ldebug = require "luci.debug" local ldebug = require "luci.debug"
local string = require "string" local string = require "string"
local coroutine = require "coroutine" local coroutine = require "coroutine"
local cutil = require "luci.cutil"
local getmetatable, setmetatable = getmetatable, setmetatable local getmetatable, setmetatable = getmetatable, setmetatable
local rawget, rawset, unpack = rawget, rawset, unpack local rawget, rawset, unpack = rawget, rawset, unpack
@ -44,6 +45,7 @@ module "luci.util"
-- --
-- Pythonic string formatting extension -- Pythonic string formatting extension
-- --
--[[
getmetatable("").__mod = function(a, b) getmetatable("").__mod = function(a, b)
if not b then if not b then
return a return a
@ -53,6 +55,7 @@ getmetatable("").__mod = function(a, b)
return a:format(b) return a:format(b)
end end
end end
]]--
-- --
@ -60,6 +63,7 @@ end
-- --
-- Instantiates a class -- Instantiates a class
--[[
local function _instantiate(class, ...) local function _instantiate(class, ...)
local inst = setmetatable({}, {__index = class}) local inst = setmetatable({}, {__index = class})
@ -69,6 +73,7 @@ local function _instantiate(class, ...)
return inst return inst
end end
]]--
--- Create a Class object (Python-style object model). --- Create a Class object (Python-style object model).
-- The class object can be instantiated by calling itself. -- The class object can be instantiated by calling itself.
@ -84,12 +89,15 @@ end
-- @return A class object -- @return A class object
-- @see instanceof -- @see instanceof
-- @see clone -- @see clone
--[[
function class(base) function class(base)
return setmetatable({}, { return setmetatable({}, {
__call = _instantiate, __call = _instantiate,
__index = base __index = base
}) })
end end
]]--
class = cutil.class
--- Test whether the given object is an instance of the given class. --- Test whether the given object is an instance of the given class.
-- @param object Object instance -- @param object Object instance

View file

@ -91,11 +91,13 @@ static int luci__instantiate(lua_State *L) {
/* luci.cutil.class(baseclass) */ /* luci.cutil.class(baseclass) */
static int luci_class(lua_State *L) { static int luci_class(lua_State *L) {
int n = lua_gettop(L);
/* Create class */ /* Create class */
lua_newtable(L); lua_newtable(L);
/* Create metatable and register parent class if any */ /* Create metatable and register parent class if any */
if (lua_istable(L, 1)) { if (n && lua_istable(L, 1)) {
lua_createtable(L, 0, 2); lua_createtable(L, 0, 2);
lua_pushvalue(L, 1); lua_pushvalue(L, 1);
lua_setfield(L, -2, "__index"); lua_setfield(L, -2, "__index");