Compare commits

..

13 Commits

Author SHA1 Message Date
云风
f15cd1d458 Merge pull request #212 from cloudwu/dev
release 0.9.2
2014-12-08 10:57:23 +08:00
Cloud Wu
24a2df9383 Merge branch 'dev' of github.com:cloudwu/skynet into dev 2014-12-08 10:53:53 +08:00
Cloud Wu
176e4df90c ready for v0.9.2 2014-12-08 10:53:14 +08:00
云风
babd730d07 Merge pull request #210 from dpull/dev
扩展mongodb库功能
2014-12-05 12:07:19 +08:00
dpull
fe9640e2dd 1、mongo_collection:createIndex 创建索引
2、mongo_collection:safe_insert 可以判断返回值的insert
3、mongo_collection:findAndModify 查询并修改
2014-12-04 20:10:24 +08:00
云风
906008f667 Merge pull request #208 from xjdrew/bugfix-mq
使用spinlock,避免cas不能充分调度testdeadloop这样的用例
2014-12-04 16:31:19 +08:00
xjdrew
2da2f121c8 delete unneccessary comment 2014-12-04 16:16:17 +08:00
xjdrew
a0d2c7172c 使用spinlock,避免cas不能充分调度testdeadloop这样的用例 2014-12-04 15:50:19 +08:00
云风
463a789898 Merge pull request #207 from lmess/master
Update mongo.lua
2014-12-03 16:11:29 +08:00
lmess
175529b114 Update mongo.lua
mongo auth config
2014-12-03 15:31:32 +08:00
Cloud Wu
6f6039c136 include sys/socket.h for freebsd 2014-12-03 11:06:09 +08:00
Cloud Wu
2b13eb250d update sproto for big-endian 2014-11-26 21:18:49 +08:00
Cloud Wu
84cb4bb4c1 use explicit conversion 2014-11-25 16:04:26 +08:00
8 changed files with 103 additions and 68 deletions

View File

@@ -1,4 +1,10 @@
v0.9.0 (2014-11-17) v0.9.2 (2014-12-8)
-----------
* Simplify the message queue
* Add create_index in mongo driver
* Fix a bug in big-endian architecture (sproto)
v0.9.0 / v0.9.1 (2014-11-17)
----------- -----------
* Add UDP support * Add UDP support
* Add IPv6 support * Add IPv6 support

View File

@@ -9,6 +9,7 @@
#include <lua.h> #include <lua.h>
#include <lauxlib.h> #include <lauxlib.h>
#include <sys/socket.h>
#include <arpa/inet.h> #include <arpa/inet.h>
#include "skynet_socket.h" #include "skynet_socket.h"

View File

@@ -87,7 +87,7 @@ struct encode_ud {
int deep; int deep;
}; };
static int static int
encode(void *ud, const char *tagname, int type, int index, struct sproto_type *st, void *value, int length) { encode(void *ud, const char *tagname, int type, int index, struct sproto_type *st, void *value, int length) {
struct encode_ud *self = ud; struct encode_ud *self = ud;
lua_State *L = self->L; lua_State *L = self->L;
@@ -189,7 +189,7 @@ expand_buffer(lua_State *L, int osz, int nsz) {
lightuserdata sproto_type lightuserdata sproto_type
table source table source
return string return string
*/ */
static int static int
lencode(lua_State *L) { lencode(lua_State *L) {
@@ -229,7 +229,7 @@ struct decode_ud {
int deep; int deep;
}; };
static int static int
decode(void *ud, const char *tagname, int type, int index, struct sproto_type *st, void *value, int length) { decode(void *ud, const char *tagname, int type, int index, struct sproto_type *st, void *value, int length) {
struct decode_ud * self = ud; struct decode_ud * self = ud;
lua_State *L = self->L; lua_State *L = self->L;
@@ -252,12 +252,12 @@ decode(void *ud, const char *tagname, int type, int index, struct sproto_type *s
switch (type) { switch (type) {
case SPROTO_TINTEGER: { case SPROTO_TINTEGER: {
// notice: in lua 5.2, 52bit integer support (not 64) // notice: in lua 5.2, 52bit integer support (not 64)
lua_Integer v = *(lua_Integer *)value; lua_Integer v = *(uint64_t*)value;
lua_pushinteger(L, v); lua_pushinteger(L, v);
break; break;
} }
case SPROTO_TBOOLEAN: { case SPROTO_TBOOLEAN: {
int v = *(lua_Integer*)value; int v = *(uint64_t*)value;
lua_pushboolean(L,v); lua_pushboolean(L,v);
break; break;
} }

View File

@@ -500,7 +500,7 @@ sproto_dump(struct sproto *s) {
} }
// query // query
int int
sproto_prototag(struct sproto *sp, const char * name) { sproto_prototag(struct sproto *sp, const char * name) {
int i; int i;
for (i=0;i<sp->protocol_n;i++) { for (i=0;i<sp->protocol_n;i++) {
@@ -529,7 +529,7 @@ query_proto(struct sproto *sp, int tag) {
return NULL; return NULL;
} }
struct sproto_type * struct sproto_type *
sproto_protoquery(struct sproto *sp, int proto, int what) { sproto_protoquery(struct sproto *sp, int proto, int what) {
struct protocol * p; struct protocol * p;
if (what <0 || what >1) { if (what <0 || what >1) {
@@ -542,7 +542,7 @@ sproto_protoquery(struct sproto *sp, int proto, int what) {
return NULL; return NULL;
} }
const char * const char *
sproto_protoname(struct sproto *sp, int proto) { sproto_protoname(struct sproto *sp, int proto) {
struct protocol * p = query_proto(sp, proto); struct protocol * p = query_proto(sp, proto);
if (p) { if (p) {
@@ -551,7 +551,7 @@ sproto_protoname(struct sproto *sp, int proto) {
return NULL; return NULL;
} }
struct sproto_type * struct sproto_type *
sproto_type(struct sproto *sp, const char * type_name) { sproto_type(struct sproto *sp, const char * type_name) {
int i; int i;
for (i=0;i<sp->type_n;i++) { for (i=0;i<sp->type_n;i++) {
@@ -806,7 +806,7 @@ encode_array(sproto_callback cb, void *ud, struct field *f, uint8_t *data, int s
return fill_size(data, sz); return fill_size(data, sz);
} }
int int
sproto_encode(struct sproto_type *st, void * buffer, int size, sproto_callback cb, void *ud) { sproto_encode(struct sproto_type *st, void * buffer, int size, sproto_callback cb, void *ud) {
uint8_t * header = buffer; uint8_t * header = buffer;
uint8_t * data; uint8_t * data;
@@ -830,7 +830,7 @@ sproto_encode(struct sproto_type *st, void * buffer, int size, sproto_callback c
sz = encode_array(cb,ud, f, data, size); sz = encode_array(cb,ud, f, data, size);
} else { } else {
switch(type) { switch(type) {
case SPROTO_TINTEGER: case SPROTO_TINTEGER:
case SPROTO_TBOOLEAN: { case SPROTO_TBOOLEAN: {
union { union {
uint64_t u64; uint64_t u64;
@@ -971,7 +971,7 @@ decode_array(sproto_callback cb, void *ud, struct field *f, uint8_t * stream) {
} }
case SPROTO_TBOOLEAN: case SPROTO_TBOOLEAN:
for (i=0;i<sz;i++) { for (i=0;i<sz;i++) {
int value = stream[i]; uint64_t value = stream[i];
cb(ud, f->name, SPROTO_TBOOLEAN, i+1, NULL, &value, sizeof(value)); cb(ud, f->name, SPROTO_TBOOLEAN, i+1, NULL, &value, sizeof(value));
} }
break; break;
@@ -1050,7 +1050,7 @@ sproto_decode(struct sproto_type *st, const void * data, int size, sproto_callba
} }
break; break;
} }
case SPROTO_TSTRING: case SPROTO_TSTRING:
case SPROTO_TSTRUCT: { case SPROTO_TSTRUCT: {
uint32_t sz = todword(currentdata); uint32_t sz = todword(currentdata);
if (cb(ud, f->name, f->type, 0, f->st, currentdata+SIZEOF_LENGTH, sz)) if (cb(ud, f->name, f->type, 0, f->st, currentdata+SIZEOF_LENGTH, sz))
@@ -1124,7 +1124,7 @@ write_ff(const uint8_t * src, uint8_t * des, int n) {
} }
} }
int int
sproto_pack(const void * srcv, int srcsz, void * bufferv, int bufsz) { sproto_pack(const void * srcv, int srcsz, void * bufferv, int bufsz) {
uint8_t tmp[8]; uint8_t tmp[8];
int i; int i;
@@ -1181,7 +1181,7 @@ sproto_pack(const void * srcv, int srcsz, void * bufferv, int bufsz) {
return size; return size;
} }
int int
sproto_unpack(const void * srcv, int srcsz, void * bufferv, int bufsz) { sproto_unpack(const void * srcv, int srcsz, void * bufferv, int bufsz) {
const uint8_t * src = srcv; const uint8_t * src = srcv;
uint8_t * buffer = bufferv; uint8_t * buffer = bufferv;

View File

@@ -120,6 +120,8 @@ function mongo.client( conf )
local obj = { local obj = {
host = first.host, host = first.host,
port = first.port or 27017, port = first.port or 27017,
username = first.username,
password = first.password,
} }
obj.__id = 0 obj.__id = 0
@@ -227,7 +229,11 @@ function mongo_collection:insert(doc)
sock:request(pack) sock:request(pack)
end end
function mongo_collection:batch_insert(docs) function mongo_collection:safe_insert(doc)
return self.database:runCommand("insert", self.name, "documents", {bson_encode(doc)})
end
function mongo_collection:batch_insert(docs)
for i=1,#docs do for i=1,#docs do
if docs[i]._id == nil then if docs[i]._id == nil then
docs[i]._id = bson.objectid() docs[i]._id = bson.objectid()
@@ -276,6 +282,48 @@ function mongo_collection:find(query, selector)
} , cursor_meta) } , cursor_meta)
end end
-- collection:createIndex({username = 1}, {unique = true})
function mongo_collection:createIndex(keys, option)
local name
for k, v in pairs(keys) do
assert(v == 1)
name = (name == nil) and k or (name .. "_" .. k)
end
local doc = {};
doc.name = name
doc.key = keys
for k, v in pairs(option) do
if v then
doc[k] = true
end
end
return self.database:runCommand("createIndexes", self.name, "indexes", {doc})
end
mongo_collection.ensureIndex = mongo_collection.createIndex;
-- collection:findAndModify({query = {name = "userid"}, update = {["$inc"] = {nextid = 1}}, })
-- keys, value type
-- query, table
-- sort, table
-- remove, bool
-- update, table
-- new, bool
-- fields, bool
-- upsert, boolean
function mongo_collection:findAndModify(doc)
assert(doc.query)
assert(doc.update or doc.remove)
local cmd = {"findAndModify", self.name};
for k, v in pairs(doc) do
table.insert(cmd, k)
table.insert(cmd, v)
end
return self.database:runCommand(unpack(cmd))
end
function mongo_cursor:hasNext() function mongo_cursor:hasNext()
if self.__ptr == nil then if self.__ptr == nil then
if self.__document == nil then if self.__document == nil then

View File

@@ -32,12 +32,9 @@ struct message_queue {
}; };
struct global_queue { struct global_queue {
uint32_t head; struct message_queue *head;
uint32_t tail; struct message_queue *tail;
struct message_queue ** queue; int lock;
// We use a separated flag array to ensure the mq is pushed.
// See the comments below.
struct message_queue *list;
}; };
static struct global_queue *Q = NULL; static struct global_queue *Q = NULL;
@@ -51,57 +48,32 @@ void
skynet_globalmq_push(struct message_queue * queue) { skynet_globalmq_push(struct message_queue * queue) {
struct global_queue *q= Q; struct global_queue *q= Q;
uint32_t tail = GP(__sync_fetch_and_add(&q->tail,1)); LOCK(q)
assert(queue->next == NULL);
// only one thread can set the slot (change q->queue[tail] from NULL to queue) if(q->tail) {
if (!__sync_bool_compare_and_swap(&q->queue[tail], NULL, queue)) { q->tail->next = queue;
// The queue may full seldom, save queue in list q->tail = queue;
assert(queue->next == NULL); } else {
struct message_queue * last; q->head = q->tail = queue;
do {
last = q->list;
queue->next = last;
} while(!__sync_bool_compare_and_swap(&q->list, last, queue));
return;
} }
UNLOCK(q)
} }
struct message_queue * struct message_queue *
skynet_globalmq_pop() { skynet_globalmq_pop() {
struct global_queue *q = Q; struct global_queue *q = Q;
uint32_t head = q->head;
if (head == q->tail) { LOCK(q)
// The queue is empty. struct message_queue *mq = q->head;
return NULL; if(mq) {
} q->head = mq->next;
if(q->head == NULL) {
uint32_t head_ptr = GP(head); assert(mq == q->tail);
q->tail = NULL;
struct message_queue * list = q->list;
if (list) {
// If q->list is not empty, try to load it back to the queue
struct message_queue *newhead = list->next;
if (__sync_bool_compare_and_swap(&q->list, list, newhead)) {
// try load list only once, if success , push it back to the queue.
list->next = NULL;
skynet_globalmq_push(list);
} }
mq->next = NULL;
} }
UNLOCK(q)
struct message_queue * mq = q->queue[head_ptr];
if (mq == NULL) {
// globalmq push not complete
return NULL;
}
if (!__sync_bool_compare_and_swap(&q->head, head, head+1)) {
return NULL;
}
// only one thread can get the slot (change q->queue[head_ptr] to NULL)
if (!__sync_bool_compare_and_swap(&q->queue[head_ptr], mq, NULL)) {
return NULL;
}
return mq; return mq;
} }
@@ -243,8 +215,6 @@ void
skynet_mq_init() { skynet_mq_init() {
struct global_queue *q = skynet_malloc(sizeof(*q)); struct global_queue *q = skynet_malloc(sizeof(*q));
memset(q,0,sizeof(*q)); memset(q,0,sizeof(*q));
q->queue = skynet_malloc(MAX_GLOBAL_MQ * sizeof(struct message_queue *));
memset(q->queue, 0, sizeof(struct message_queue *) * MAX_GLOBAL_MQ);
Q=q; Q=q;
} }

View File

@@ -628,7 +628,7 @@ append_sendbuffer_(struct socket_server *ss, struct wb_list *s, struct request_s
struct write_buffer * buf = MALLOC(size); struct write_buffer * buf = MALLOC(size);
struct send_object so; struct send_object so;
buf->userobject = send_object_init(ss, &so, request->buffer, request->sz); buf->userobject = send_object_init(ss, &so, request->buffer, request->sz);
buf->ptr = so.buffer+n; buf->ptr = (char*)so.buffer+n;
buf->sz = so.sz - n; buf->sz = so.sz - n;
buf->buffer = request->buffer; buf->buffer = request->buffer;
buf->next = NULL; buf->next = NULL;

10
test/testdeadloop.lua Normal file
View File

@@ -0,0 +1,10 @@
local skynet = require "skynet"
local function dead_loop()
while true do
skynet.sleep(0)
end
end
skynet.start(function()
skynet.fork(dead_loop)
end)