#51
authoradam <adamansky@gmail.com>
Fri, 15 Mar 2013 11:15:30 +0000 (18:15 +0700)
committeradam <adamansky@gmail.com>
Fri, 15 Mar 2013 11:15:30 +0000 (18:15 +0700)
luaejdb/luaejdb.c
luaejdb/middleclass.lua [deleted file]
luaejdb/test/t1.lua

index bd28e1e..d2d49b2 100644 (file)
@@ -6,10 +6,11 @@
 
 #include "luabson.h"
 
-#define EJDBLIBNAME    "luaejdb"
+//EJDB db user data
 #define EJDBUDATAKEY "__ejdb__"
-#define EJDBUDATAMT "mt.ejdb.db"
-#define EJDBCURSORMT "mt.ejdb.cur"
+#define EJDBUDATAMT "mtejdb"
+//Cursor user data
+#define EJDBCURSORMT "mtejc"
 
 #define DEFAULT_OPEN_MODE (JBOWRITER | JBOCREAT | JBOTSYNC)
 
@@ -36,7 +37,7 @@ typedef struct {
 } EJDBDATA;
 
 typedef struct {
-    TCLIST *res;
+    TCLIST *qres;
 } CURSORDATA;
 
 #define EJDBERR(_L, _DB) \
@@ -96,25 +97,75 @@ static void init_db_consts(lua_State *L) {
 
 static int cursor_del(lua_State *L) {
     CURSORDATA *cdata = luaL_checkudata(L, 1, EJDBCURSORMT);
-    if (cdata->res) {
-        tclistdel(cdata->res);
-        cdata->res = NULL;
+    if (cdata->qres) {
+        tclistdel(cdata->qres);
+        cdata->qres = NULL;
     }
     return 0;
 }
 
 static int cursor_field(lua_State *L) {
+    //todo
     return 0;
 }
 
 static int cursor_object(lua_State *L) {
+    //todo
     return 0;
 }
 
+static int cursor_iter_next(lua_State *L) {
+    //todo
+    return 0;
+};
+
 static int cursor_iter(lua_State *L) {
+    //todo
     return 0;
 }
 
+static int cursor_index(lua_State *L) {
+    CURSORDATA *cdata = luaL_checkudata(L, 1, EJDBCURSORMT);
+    TCLIST *qres = cdata->qres;
+    if (!qres) {
+        return luaL_error(L, "Cursor closed");
+    }
+    const int atype = lua_type(L, 2);
+    if (atype == LUA_TNUMBER) { //access by index
+        int idx = lua_tointeger(L, 2);
+        int sz = TCLISTNUM(qres);
+        if (idx < 0) {
+            idx = sz - idx + 1;
+        }
+        if (idx > 0 && idx <= sz ) {
+            lua_pushlstring(L, TCLISTVALPTR(qres, idx - 1), TCLISTVALSIZ(qres, idx - 1));
+            return 1;
+        } else {
+            lua_pushnil(L);
+            return 1;
+        }
+    } else if (atype == LUA_TSTRING) {
+        const char *op = lua_tostring(L, 2);
+        if (!strcmp(op, "iter")) {
+            lua_pushcfunction(L, cursor_iter);
+            return 1;
+        } else if (!strcmp(op, "field")) {
+            lua_pushcfunction(L, cursor_field);
+            return 1;
+        } else if (!strcmp(op, "object")) {
+            lua_pushcfunction(L, cursor_object);
+            return 1;
+        }
+    }
+    return 0;
+}
+
+static int cursor_len(lua_State *L) {
+    CURSORDATA *cdata = luaL_checkudata(L, 1, EJDBCURSORMT);
+    lua_pushinteger(L, (cdata->qres) ? TCLISTNUM(cdata->qres) : 0);
+    return 1;
+}
+
 static int db_del(lua_State *L) {
     EJDBDATA *data = luaL_checkudata(L, 1, EJDBUDATAMT);
     EJDB *db = data->db;
@@ -286,7 +337,6 @@ static int db_find(lua_State *L) {
             }
         }
     }
-
     if (!coll) { //No collection -> no results
         qres = (qflags & JBQRYCOUNT) ? NULL : tclistnew2(1); //empty results
     } else {
@@ -400,6 +450,13 @@ static int db_open(lua_State *L) {
     return 1;
 }
 
+static const struct luaL_Reg ejdbcursor_m[] = {
+    {"__index", cursor_index},
+    {"__len", cursor_len},
+    {"__gc", cursor_del},
+    {NULL, NULL}
+};
+
 /* Init */
 int luaopen_luaejdb(lua_State *L) {
     lua_settop(L, 0);
@@ -413,19 +470,10 @@ int luaopen_luaejdb(lua_State *L) {
 
     //Push cursor methods into metatable
     luaL_newmetatable(L, EJDBCURSORMT);
-    lua_newtable(L);
-
-    lua_pushcfunction(L, cursor_object);
-    lua_setfield(L, -2, "object");
-
-    lua_pushcfunction(L, cursor_field);
-    lua_setfield(L, -2, "field");
-
-    lua_setfield(L, -2, "__index");
+    luaL_register(L, NULL, ejdbcursor_m);
+    lua_pop(L, 1);
 
     lua_settop(L, 1);
-
-
     return 1;
 }
 
diff --git a/luaejdb/middleclass.lua b/luaejdb/middleclass.lua
deleted file mode 100644 (file)
index d0b6a45..0000000
+++ /dev/null
@@ -1,142 +0,0 @@
--- middleclass.lua - v2.0 (2011-09)
--- Copyright (c) 2011 Enrique GarcĂ­a Cota
--- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
--- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
--- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--- Based on YaciCode, from Julien Patte and LuaObject, from Sebastien Rocca-Serra
-
-local _classes = setmetatable({}, { __mode = "k" })
-
-local function _setClassDictionariesMetatables(klass)
-  local dict = klass.__instanceDict
-  dict.__index = dict
-
-  local super = klass.super
-  if super then
-    local superStatic = super.static
-    setmetatable(dict, super.__instanceDict)
-    setmetatable(klass.static, { __index = function(_, k) return dict[k] or superStatic[k] end })
-  else
-    setmetatable(klass.static, { __index = function(_, k) return dict[k] end })
-  end
-end
-
-local function _setClassMetatable(klass)
-  setmetatable(klass, {
-    __tostring = function() return "class " .. klass.name end,
-    __index = klass.static,
-    __newindex = klass.__instanceDict,
-    __call = function(self, ...) return self:new(...) end
-  })
-end
-
-local function _createClass(name, super)
-  local klass = { name = name, super = super, static = {}, __mixins = {}, __instanceDict = {} }
-  klass.subclasses = setmetatable({}, { __mode = "k" })
-
-  _setClassDictionariesMetatables(klass)
-  _setClassMetatable(klass)
-  _classes[klass] = true
-
-  return klass
-end
-
-local function _createLookupMetamethod(klass, name)
-  return function(...)
-    local method = klass.super[name]
-    assert(type(method) == 'function', tostring(klass) .. " doesn't implement metamethod '" .. name .. "'")
-    return method(...)
-  end
-end
-
-local function _setClassMetamethods(klass)
-  for _, m in ipairs(klass.__metamethods) do
-    klass[m] = _createLookupMetamethod(klass, m)
-  end
-end
-
-local function _setDefaultInitializeMethod(klass, super)
-  klass.initialize = function(instance, ...)
-    return super.initialize(instance, ...)
-  end
-end
-
-local function _includeMixin(klass, mixin)
-  assert(type(mixin) == 'table', "mixin must be a table")
-  for name, method in pairs(mixin) do
-    if name ~= "included" and name ~= "static" then klass[name] = method end
-  end
-  if mixin.static then
-    for name, method in pairs(mixin.static) do
-      klass.static[name] = method
-    end
-  end
-  if type(mixin.included) == "function" then mixin:included(klass) end
-  klass.__mixins[mixin] = true
-end
-
-Object = _createClass("Object", nil)
-
-Object.static.__metamethods = {
-  '__add', '__call', '__concat', '__div', '__le', '__lt',
-  '__mod', '__mul', '__pow', '__sub', '__tostring', '__unm',
-  '__eq'
-}
-
-function Object.static:allocate()
-  assert(_classes[self], "Make sure that you are using 'Class:allocate' instead of 'Class.allocate'")
-  return setmetatable({ class = self }, self.__instanceDict)
-end
-
-function Object.static:new(...)
-  local instance = self:allocate()
-  instance:initialize(...)
-  return instance
-end
-
-function Object.static:subclass(name)
-  assert(_classes[self], "Make sure that you are using 'Class:subclass' instead of 'Class.subclass'")
-  assert(type(name) == "string", "You must provide a name(string) for your class")
-
-  local subclass = _createClass(name, self)
-  _setClassMetamethods(subclass)
-  _setDefaultInitializeMethod(subclass, self)
-  self.subclasses[subclass] = true
-  self:subclassed(subclass)
-
-  return subclass
-end
-
-function Object.static:subclassed(other) end
-
-function Object.static:include(...)
-  assert(_classes[self], "Make sure you that you are using 'Class:include' instead of 'Class.include'")
-  for _, mixin in ipairs({ ... }) do _includeMixin(self, mixin) end
-  return self
-end
-
-function Object:initialize() end
-
-function Object:__tostring() return "instance of " .. tostring(self.class) end
-
-function class(name, super, ...)
-  super = super or Object
-  return super:subclass(name, ...)
-end
-
-function instanceOf(aClass, obj)
-  if not _classes[aClass] or type(obj) ~= 'table' or not _classes[obj.class] then return false end
-  if obj.class == aClass then return true end
-  return subclassOf(aClass, obj.class)
-end
-
-function subclassOf(other, aClass)
-  if not _classes[aClass] or not _classes[other] or aClass.super == nil then return false end
-  return aClass.super == other or subclassOf(other, aClass.super)
-end
-
-function includes(mixin, aClass)
-  if not _classes[aClass] then return false end
-  if aClass.__mixins[mixin] then return true end
-  return includes(mixin, aClass.super)
-end
\ No newline at end of file
index 327525e..897e0e2 100644 (file)
@@ -86,9 +86,11 @@ assert(type(obj) == "table")
 assert(obj["_id"] == oid)
 assert(obj.a == "g" and obj.e == 1 and obj.foo2 == "bar2" and obj.g == "d")
 
+db:save("mycoll", { foo = "bar3" });
+db:save("mycoll", { foo = "bar4" });
+db:save("mycoll", { foo = "bar6", k2 = "v2" });
 
-local cur  = db:find("mycoll", Q("foo", "bar"))
-
+local cur = db:find("mycoll", Q("foo", "bar"))
 
 db:close()