mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-24 12:20:41 +00:00
Compare commits
68 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a8a683b48e | ||
|
|
4cdf034f15 | ||
|
|
68ddeab8fa | ||
|
|
3bc7304609 | ||
|
|
2e35f405e7 | ||
|
|
6813fd9ef7 | ||
|
|
7b5e62b896 | ||
|
|
a090899bce | ||
|
|
3a5de32ad0 | ||
|
|
54e6d03d36 | ||
|
|
83289b7612 | ||
|
|
b7c12846a0 | ||
|
|
b5e10b8f9f | ||
|
|
0855bf30d9 | ||
|
|
d05859b766 | ||
|
|
fe5c73b1e8 | ||
|
|
35775685c3 | ||
|
|
e60fb1d722 | ||
|
|
4e4dacbb4d | ||
|
|
8f8b844bde | ||
|
|
54f4d94ba2 | ||
|
|
4967dc2fce | ||
|
|
ece89a1b49 | ||
|
|
f874fdc618 | ||
|
|
711c04e6a9 | ||
|
|
1e0189962b | ||
|
|
f4d865a882 | ||
|
|
60b0976253 | ||
|
|
2b9efcec3f | ||
|
|
d343f3b374 | ||
|
|
ceeb9912bf | ||
|
|
be1db23ea3 | ||
|
|
36cab8e060 | ||
|
|
b1d6f7fd88 | ||
|
|
e0d8b00226 | ||
|
|
1cbe639186 | ||
|
|
f849c522bb | ||
|
|
3cadd29796 | ||
|
|
db952dc658 | ||
|
|
813e6c764d | ||
|
|
79b6b80676 | ||
|
|
d30a206a15 | ||
|
|
cc2cffacb7 | ||
|
|
d8b0e977f3 | ||
|
|
2128a82571 | ||
|
|
4e2dc64f8f | ||
|
|
d910686cb8 | ||
|
|
9937081854 | ||
|
|
7137850eb2 | ||
|
|
c3eb5cd202 | ||
|
|
1a44bfb09a | ||
|
|
e4197daa54 | ||
|
|
d0468a39f4 | ||
|
|
ad9898a209 | ||
|
|
33e51a4de9 | ||
|
|
4ccb677e84 | ||
|
|
942c2d3a67 | ||
|
|
44bef99f64 | ||
|
|
078ac2bcd2 | ||
|
|
c7887cceb7 | ||
|
|
4fbd433199 | ||
|
|
87d276caf6 | ||
|
|
0f64e909fa | ||
|
|
4bc2e800fd | ||
|
|
bf6501f2ee | ||
|
|
f92fc153e4 | ||
|
|
c10e5412c0 | ||
|
|
9477cc8171 |
8
.gitignore
vendored
8
.gitignore
vendored
@@ -1,10 +1,10 @@
|
|||||||
*.o
|
*.o
|
||||||
*.a
|
*.a
|
||||||
skynet
|
/skynet
|
||||||
skynet.pid
|
/skynet.pid
|
||||||
3rd/lua/lua
|
3rd/lua/lua
|
||||||
3rd/lua/luac
|
3rd/lua/luac
|
||||||
cservice
|
/cservice
|
||||||
luaclib
|
/luaclib
|
||||||
*.so
|
*.so
|
||||||
*.dSYM
|
*.dSYM
|
||||||
|
|||||||
41
HISTORY.md
41
HISTORY.md
@@ -1,3 +1,44 @@
|
|||||||
|
v0.4.2 (2014-7-14)
|
||||||
|
-----------
|
||||||
|
* Bugfix : invalid negative socket id
|
||||||
|
* Add optional TCP_NODELAY support
|
||||||
|
* Add worker thread weight
|
||||||
|
* Add skynet.queue
|
||||||
|
* Bugfix: socketchannel
|
||||||
|
* cluster can throw error
|
||||||
|
* Add readline and writeline to clientsocket lib
|
||||||
|
* Add cluster.reload to reload config file
|
||||||
|
* Add datacenter.wait
|
||||||
|
|
||||||
|
v0.4.1 (2014-7-7)
|
||||||
|
-----------
|
||||||
|
* Add SERVICE_NAME in loader
|
||||||
|
* Throw error back when skynet.error
|
||||||
|
* Add skynet.task
|
||||||
|
* Bugfix for last version (harbor service bugs)
|
||||||
|
|
||||||
|
v0.4.0 (2014-6-30)
|
||||||
|
-----------
|
||||||
|
* Optimize redis driver `compose_message`.
|
||||||
|
* Add module skynet.harbor for monitor harbor connect/disconnect, see test/testharborlink.lua .
|
||||||
|
* cluster.open support cluster name.
|
||||||
|
* Add new api skynet.packstring , and skynet.unpack support lua string
|
||||||
|
* socket.listen support put port into address. (address:port)
|
||||||
|
* Redesign harbor/master/dummy, remove lots of C code and rewite in lua.
|
||||||
|
* Remove block connect api, queue sending message during connecting now.
|
||||||
|
* Add skynet.time()
|
||||||
|
|
||||||
|
v0.3.2 (2014-6-23)
|
||||||
|
----------
|
||||||
|
* Bugfix : cluster (double free).
|
||||||
|
* Add socket.header() to decode big-endian package header (and fix the bug in cluster).
|
||||||
|
|
||||||
|
v0.3.1 (2014-6-16)
|
||||||
|
-----------
|
||||||
|
* Bugfix: lua mongo driver . Hold reply string before decode bson data.
|
||||||
|
* More check in bson decoding.
|
||||||
|
* Use big-endian for encoding bson objectid.
|
||||||
|
|
||||||
v0.3.0 (2014-6-2)
|
v0.3.0 (2014-6-2)
|
||||||
-----------
|
-----------
|
||||||
* Add cluster support
|
* Add cluster support
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -40,7 +40,7 @@ jemalloc : $(MALLOC_STATICLIB)
|
|||||||
|
|
||||||
# skynet
|
# skynet
|
||||||
|
|
||||||
CSERVICE = snlua logger gate master harbor dummy
|
CSERVICE = snlua logger gate harbor
|
||||||
LUA_CLIB = skynet socketdriver int64 bson mongo md5 netpack \
|
LUA_CLIB = skynet socketdriver int64 bson mongo md5 netpack \
|
||||||
cjson clientsocket memory profile multicast \
|
cjson clientsocket memory profile multicast \
|
||||||
cluster
|
cluster
|
||||||
@@ -66,7 +66,7 @@ $(CSERVICE_PATH) :
|
|||||||
|
|
||||||
define CSERVICE_TEMP
|
define CSERVICE_TEMP
|
||||||
$$(CSERVICE_PATH)/$(1).so : service-src/service_$(1).c | $$(CSERVICE_PATH)
|
$$(CSERVICE_PATH)/$(1).so : service-src/service_$(1).c | $$(CSERVICE_PATH)
|
||||||
$(CC) $$(CFLAGS) $$(SHARED) $$< -o $$@ -Iskynet-src
|
$$(CC) $$(CFLAGS) $$(SHARED) $$< -o $$@ -Iskynet-src
|
||||||
endef
|
endef
|
||||||
|
|
||||||
$(foreach v, $(CSERVICE), $(eval $(call CSERVICE_TEMP,$(v))))
|
$(foreach v, $(CSERVICE), $(eval $(call CSERVICE_TEMP,$(v))))
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
## Build
|
## Build
|
||||||
|
|
||||||
Install autoconf first for jemalloc
|
For linux, install autoconf first for jemalloc
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone git@github.com:cloudwu/skynet.git
|
git clone https://github.com/cloudwu/skynet.git
|
||||||
cd skynet
|
cd skynet
|
||||||
make 'PLATFORM' # PLATFORM can be linux, macosx, freebsd now
|
make 'PLATFORM' # PLATFORM can be linux, macosx, freebsd now
|
||||||
```
|
```
|
||||||
@@ -15,6 +15,8 @@ export PLAT=linux
|
|||||||
make
|
make
|
||||||
```
|
```
|
||||||
|
|
||||||
|
For freeBSD , use gmake instead of make .
|
||||||
|
|
||||||
## Test
|
## Test
|
||||||
|
|
||||||
Run these in different console
|
Run these in different console
|
||||||
@@ -36,5 +38,4 @@ You can also use the offical lua version , edit the makefile by yourself .
|
|||||||
|
|
||||||
* http://blog.codingnow.com/2012/09/the_design_of_skynet.html
|
* http://blog.codingnow.com/2012/09/the_design_of_skynet.html
|
||||||
* http://blog.codingnow.com/2012/08/skynet.html
|
* http://blog.codingnow.com/2012/08/skynet.html
|
||||||
* http://blog.codingnow.com/2012/08/skynet_harbor_rpc.html
|
|
||||||
* http://blog.codingnow.com/eo/skynet/
|
* http://blog.codingnow.com/eo/skynet/
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ end
|
|||||||
|
|
||||||
while true do
|
while true do
|
||||||
dispatch()
|
dispatch()
|
||||||
local cmd = socket.readline()
|
local cmd = socket.readstdin()
|
||||||
if cmd then
|
if cmd then
|
||||||
local args = {}
|
local args = {}
|
||||||
string.gsub(cmd, '[^ ]+', function(v) table.insert(args, v) end )
|
string.gsub(cmd, '[^ ]+', function(v) table.insert(args, v) end )
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ skynet.start(function()
|
|||||||
skynet.newservice("simpledb")
|
skynet.newservice("simpledb")
|
||||||
print(skynet.call("SIMPLEDB", "lua", "SET", "a", "foobar"))
|
print(skynet.call("SIMPLEDB", "lua", "SET", "a", "foobar"))
|
||||||
print(skynet.call("SIMPLEDB", "lua", "GET", "a"))
|
print(skynet.call("SIMPLEDB", "lua", "GET", "a"))
|
||||||
cluster.open(2528)
|
cluster.open "db"
|
||||||
end)
|
end)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
local skynet = require "skynet"
|
local skynet = require "skynet"
|
||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
skynet.dispatch("text", function(session, address, text)
|
skynet.dispatch("lua", function(session, address, ...)
|
||||||
print("[GLOBALLOG]", skynet.address(address),text)
|
print("[GLOBALLOG]", skynet.address(address), ...)
|
||||||
end)
|
end)
|
||||||
skynet.register "LOG"
|
skynet.register "LOG"
|
||||||
end)
|
end)
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ skynet.start(function()
|
|||||||
port = 8888,
|
port = 8888,
|
||||||
maxclient = max_client,
|
maxclient = max_client,
|
||||||
})
|
})
|
||||||
|
print("Watchdog listen on ", 8888)
|
||||||
|
|
||||||
skynet.exit()
|
skynet.exit()
|
||||||
end)
|
end)
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ local skynet = require "skynet"
|
|||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
print("Log server start")
|
print("Log server start")
|
||||||
local service = skynet.newservice("service_mgr")
|
|
||||||
skynet.monitor "simplemonitor"
|
skynet.monitor "simplemonitor"
|
||||||
local log = skynet.newservice("globallog")
|
local log = skynet.newservice("globallog")
|
||||||
skynet.exit()
|
skynet.exit()
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ skynet.register_protocol {
|
|||||||
local w = service_map[address]
|
local w = service_map[address]
|
||||||
if w then
|
if w then
|
||||||
for watcher in pairs(w) do
|
for watcher in pairs(w) do
|
||||||
skynet.redirect(watcher, address, "error", "")
|
skynet.redirect(watcher, address, "error", 0, "")
|
||||||
end
|
end
|
||||||
service_map[address] = false
|
service_map[address] = false
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ function SOCKET.data(fd, msg)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function CMD.start(conf)
|
function CMD.start(conf)
|
||||||
|
skynet.call(gate, "lua", "nodelay", true)
|
||||||
skynet.call(gate, "lua", "open" , conf)
|
skynet.call(gate, "lua", "open" , conf)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -68,6 +68,13 @@ struct bson_reader {
|
|||||||
int size;
|
int size;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static inline int32_t
|
||||||
|
get_length(const uint8_t * data) {
|
||||||
|
const uint8_t * b = (const uint8_t *)data;
|
||||||
|
int32_t len = b[0] | b[1]<<8 | b[2]<<16 | b[3]<<24;
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
bson_destroy(struct bson *b) {
|
bson_destroy(struct bson *b) {
|
||||||
if (b->ptr != b->buffer) {
|
if (b->ptr != b->buffer) {
|
||||||
@@ -532,8 +539,8 @@ unpack_dict(lua_State *L, struct bson_reader *br, bool array) {
|
|||||||
break;
|
break;
|
||||||
case BSON_STRING: {
|
case BSON_STRING: {
|
||||||
int sz = read_int32(L, &t);
|
int sz = read_int32(L, &t);
|
||||||
if (sz == 0) {
|
if (sz <= 0) {
|
||||||
luaL_error(L, "Invalid bson string , length = 0");
|
luaL_error(L, "Invalid bson string , length = %d", sz);
|
||||||
}
|
}
|
||||||
lua_pushlstring(L, read_bytes(L, &t, sz), sz-1);
|
lua_pushlstring(L, read_bytes(L, &t, sz), sz-1);
|
||||||
break;
|
break;
|
||||||
@@ -644,7 +651,7 @@ static int
|
|||||||
lmakeindex(lua_State *L) {
|
lmakeindex(lua_State *L) {
|
||||||
int32_t *bson = luaL_checkudata(L,1,"bson");
|
int32_t *bson = luaL_checkudata(L,1,"bson");
|
||||||
const uint8_t * start = (const uint8_t *)bson;
|
const uint8_t * start = (const uint8_t *)bson;
|
||||||
struct bson_reader br = { start+4, *bson - 5 };
|
struct bson_reader br = { start+4, get_length(start) - 5 };
|
||||||
lua_newtable(L);
|
lua_newtable(L);
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
@@ -820,7 +827,9 @@ ldecode(lua_State *L) {
|
|||||||
if (data == NULL) {
|
if (data == NULL) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
struct bson_reader br = { (const uint8_t *)data , *data };
|
const uint8_t * b = (const uint8_t *)data;
|
||||||
|
int32_t len = get_length(b);
|
||||||
|
struct bson_reader br = { b , len };
|
||||||
|
|
||||||
unpack_dict(L, &br, false);
|
unpack_dict(L, &br, false);
|
||||||
|
|
||||||
@@ -1140,14 +1149,14 @@ lobjectid(lua_State *L) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
time_t ti = time(NULL);
|
time_t ti = time(NULL);
|
||||||
oid[2] = ti & 0xff;
|
oid[2] = (ti>>24) & 0xff;
|
||||||
oid[3] = (ti>>8) & 0xff;
|
oid[3] = (ti>>16) & 0xff;
|
||||||
oid[4] = (ti>>16) & 0xff;
|
oid[4] = (ti>>8) & 0xff;
|
||||||
oid[5] = (ti>>24) & 0xff;
|
oid[5] = ti & 0xff;
|
||||||
memcpy(oid+6 , oid_header, 5);
|
memcpy(oid+6 , oid_header, 5);
|
||||||
oid[11] = oid_counter & 0xff;
|
oid[11] = (oid_counter>>16) & 0xff;
|
||||||
oid[12] = (oid_counter>>8) & 0xff;
|
oid[12] = (oid_counter>>8) & 0xff;
|
||||||
oid[13] = (oid_counter>>16) & 0xff;
|
oid[13] = oid_counter & 0xff;
|
||||||
++oid_counter;
|
++oid_counter;
|
||||||
}
|
}
|
||||||
lua_pushlstring( L, (const char *)oid, 14);
|
lua_pushlstring( L, (const char *)oid, 14);
|
||||||
|
|||||||
@@ -125,14 +125,19 @@ _block:
|
|||||||
boolean (true: data, false: block, nil: close)
|
boolean (true: data, false: block, nil: close)
|
||||||
string last
|
string last
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
struct socket_buffer {
|
||||||
|
void * buffer;
|
||||||
|
int sz;
|
||||||
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
lrecv(lua_State *L) {
|
recv_socket(lua_State *L, char *tmp, struct socket_buffer *result) {
|
||||||
int fd = luaL_checkinteger(L,1);
|
int fd = luaL_checkinteger(L,1);
|
||||||
size_t sz = 0;
|
size_t sz = 0;
|
||||||
const char * last = lua_tolstring(L,2,&sz);
|
const char * last = lua_tolstring(L,2,&sz);
|
||||||
luaL_checktype(L, 3, LUA_TTABLE);
|
luaL_checktype(L, 3, LUA_TTABLE);
|
||||||
|
|
||||||
char tmp[CACHE_SIZE];
|
|
||||||
char * buffer;
|
char * buffer;
|
||||||
int r = recv(fd, tmp, CACHE_SIZE, 0);
|
int r = recv(fd, tmp, CACHE_SIZE, 0);
|
||||||
if (r == 0) {
|
if (r == 0) {
|
||||||
@@ -163,10 +168,64 @@ lrecv(lua_State *L) {
|
|||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
lua_rawseti(L, 3, i);
|
lua_rawseti(L, 3, i);
|
||||||
}
|
}
|
||||||
|
result->buffer = buffer;
|
||||||
return unpack(L, (uint8_t *)buffer, r+sz, 0);
|
result->sz = r + sz;
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
lrecv(lua_State *L) {
|
||||||
|
struct socket_buffer sb;
|
||||||
|
char tmp[CACHE_SIZE];
|
||||||
|
int ret = recv_socket(L, tmp, &sb);
|
||||||
|
if (ret < 0) {
|
||||||
|
return unpack(L, sb.buffer, sb.sz, 0);
|
||||||
|
} else {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
unpack_line(lua_State *L, uint8_t *buffer, int sz, int n) {
|
||||||
|
if (sz == 0)
|
||||||
|
goto _block;
|
||||||
|
if (buffer[0] == '\n') {
|
||||||
|
return unpack_line(L, buffer+1, sz-1, n);
|
||||||
|
}
|
||||||
|
int i;
|
||||||
|
for (i=1;i<sz;i++) {
|
||||||
|
if (buffer[i] == '\n') {
|
||||||
|
++n;
|
||||||
|
lua_pushlstring(L, (const char *)buffer, i);
|
||||||
|
lua_rawseti(L, 3, n);
|
||||||
|
buffer += i + 1;
|
||||||
|
sz -= i + 1;
|
||||||
|
return unpack_line(L, buffer, sz, n);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_block:
|
||||||
|
lua_pushboolean(L, n==0 ? 0:1);
|
||||||
|
if (sz == 0) {
|
||||||
|
lua_pushnil(L);
|
||||||
|
} else {
|
||||||
|
lua_pushlstring(L, (const char *)buffer, sz);
|
||||||
|
}
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
lreadline(lua_State *L) {
|
||||||
|
struct socket_buffer sb;
|
||||||
|
char tmp[CACHE_SIZE];
|
||||||
|
int ret = recv_socket(L, tmp, &sb);
|
||||||
|
if (ret < 0) {
|
||||||
|
return unpack_line(L, sb.buffer, sb.sz, 0);
|
||||||
|
} else {
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
lusleep(lua_State *L) {
|
lusleep(lua_State *L) {
|
||||||
int n = luaL_checknumber(L, 1);
|
int n = luaL_checknumber(L, 1);
|
||||||
@@ -219,7 +278,7 @@ readline_stdin(void * arg) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
lreadline(lua_State *L) {
|
lreadstdin(lua_State *L) {
|
||||||
struct queue *q = lua_touserdata(L, lua_upvalueindex(1));
|
struct queue *q = lua_touserdata(L, lua_upvalueindex(1));
|
||||||
LOCK(q);
|
LOCK(q);
|
||||||
if (q->head == q->tail) {
|
if (q->head == q->tail) {
|
||||||
@@ -236,6 +295,18 @@ lreadline(lua_State *L) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
lwriteline(lua_State *L) {
|
||||||
|
size_t sz = 0;
|
||||||
|
int fd = luaL_checkinteger(L,1);
|
||||||
|
const char * msg = luaL_checklstring(L, 2, &sz);
|
||||||
|
block_send(L, fd, msg, sz);
|
||||||
|
char nl[1] = { '\n' };
|
||||||
|
block_send(L, fd, nl, 1);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
luaopen_clientsocket(lua_State *L) {
|
luaopen_clientsocket(lua_State *L) {
|
||||||
luaL_checkversion(L);
|
luaL_checkversion(L);
|
||||||
@@ -245,14 +316,16 @@ luaopen_clientsocket(lua_State *L) {
|
|||||||
{ "send", lsend },
|
{ "send", lsend },
|
||||||
{ "close", lclose },
|
{ "close", lclose },
|
||||||
{ "usleep", lusleep },
|
{ "usleep", lusleep },
|
||||||
|
{ "readline", lreadline },
|
||||||
|
{ "writeline", lwriteline },
|
||||||
{ NULL, NULL },
|
{ NULL, NULL },
|
||||||
};
|
};
|
||||||
luaL_newlib(L, l);
|
luaL_newlib(L, l);
|
||||||
|
|
||||||
struct queue * q = lua_newuserdata(L, sizeof(*q));
|
struct queue * q = lua_newuserdata(L, sizeof(*q));
|
||||||
memset(q, 0, sizeof(*q));
|
memset(q, 0, sizeof(*q));
|
||||||
lua_pushcclosure(L, lreadline, 1);
|
lua_pushcclosure(L, lreadstdin, 1);
|
||||||
lua_setfield(L, -2, "readline");
|
lua_setfield(L, -2, "readstdin");
|
||||||
|
|
||||||
pthread_t pid ;
|
pthread_t pid ;
|
||||||
pthread_create(&pid, NULL, readline_stdin, q);
|
pthread_create(&pid, NULL, readline_stdin, q);
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
uint32_t next_session
|
uint32_t next_session
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define TEMP_LENGTH 0x10002
|
#define TEMP_LENGTH 0x10007
|
||||||
|
|
||||||
static void
|
static void
|
||||||
fill_uint32(uint8_t * buf, uint32_t n) {
|
fill_uint32(uint8_t * buf, uint32_t n) {
|
||||||
@@ -146,6 +146,7 @@ lunpackrequest(lua_State *L) {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
int session
|
int session
|
||||||
|
boolean ok
|
||||||
lightuserdata msg
|
lightuserdata msg
|
||||||
int sz
|
int sz
|
||||||
return string response
|
return string response
|
||||||
@@ -153,17 +154,29 @@ lunpackrequest(lua_State *L) {
|
|||||||
static int
|
static int
|
||||||
lpackresponse(lua_State *L) {
|
lpackresponse(lua_State *L) {
|
||||||
uint32_t session = luaL_checkunsigned(L,1);
|
uint32_t session = luaL_checkunsigned(L,1);
|
||||||
void * msg = lua_touserdata(L,2);
|
// clusterd.lua:command.socket call lpackresponse,
|
||||||
size_t sz = luaL_checkunsigned(L, 3);
|
// and the msg/sz is return by skynet.rawcall , so don't free(msg)
|
||||||
|
int ok = lua_toboolean(L,2);
|
||||||
|
void * msg;
|
||||||
|
size_t sz;
|
||||||
|
|
||||||
|
if (lua_type(L,3) == LUA_TSTRING) {
|
||||||
|
msg = (void *)lua_tolstring(L, 3, &sz);
|
||||||
|
if (sz > 0x1000) {
|
||||||
|
sz = 0x1000;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
msg = lua_touserdata(L,3);
|
||||||
|
sz = luaL_checkunsigned(L, 4);
|
||||||
|
}
|
||||||
|
|
||||||
uint8_t buf[TEMP_LENGTH];
|
uint8_t buf[TEMP_LENGTH];
|
||||||
fill_header(L, buf, sz+4, msg);
|
fill_header(L, buf, sz+5, msg);
|
||||||
fill_uint32(buf+2, session);
|
fill_uint32(buf+2, session);
|
||||||
memcpy(buf+6,msg,sz);
|
buf[6] = ok;
|
||||||
|
memcpy(buf+7,msg,sz);
|
||||||
|
|
||||||
skynet_free(msg);
|
lua_pushlstring(L, (const char *)buf, sz+7);
|
||||||
|
|
||||||
lua_pushlstring(L, (const char *)buf, sz+6);
|
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@@ -178,13 +191,13 @@ static int
|
|||||||
lunpackresponse(lua_State *L) {
|
lunpackresponse(lua_State *L) {
|
||||||
size_t sz;
|
size_t sz;
|
||||||
const char * buf = luaL_checklstring(L, 1, &sz);
|
const char * buf = luaL_checklstring(L, 1, &sz);
|
||||||
if (sz < 4) {
|
if (sz < 5) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
uint32_t session = unpack_uint32((const uint8_t *)buf);
|
uint32_t session = unpack_uint32((const uint8_t *)buf);
|
||||||
lua_pushunsigned(L, session);
|
lua_pushunsigned(L, session);
|
||||||
lua_pushboolean(L, 1);
|
lua_pushboolean(L, buf[4]);
|
||||||
lua_pushlstring(L, buf+4, sz-4);
|
lua_pushlstring(L, buf+5, sz-5);
|
||||||
|
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -260,6 +260,13 @@ op_reply(lua_State *L) {
|
|||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
lua_rawseti(L, 2, i);
|
lua_rawseti(L, 2, i);
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
if (sz >= 4) {
|
||||||
|
sz -= get_length((document)doc);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (sz != 0) {
|
||||||
|
return luaL_error(L, "Invalid result bson document");
|
||||||
}
|
}
|
||||||
lua_pushboolean(L,1);
|
lua_pushboolean(L,1);
|
||||||
lua_pushinteger(L, id);
|
lua_pushinteger(L, id);
|
||||||
@@ -499,7 +506,7 @@ op_insert(lua_State *L) {
|
|||||||
int i;
|
int i;
|
||||||
for (i=1;i<=s;i++) {
|
for (i=1;i<=s;i++) {
|
||||||
lua_rawgeti(L,3,i);
|
lua_rawgeti(L,3,i);
|
||||||
document doc = lua_touserdata(L,3);
|
document doc = lua_touserdata(L,-1);
|
||||||
luaL_addlstring(&b, (const char *)doc, get_length(doc));
|
luaL_addlstring(&b, (const char *)doc, get_length(doc));
|
||||||
lua_pop(L,1);
|
lua_pop(L,1);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -581,8 +581,16 @@ _luaseri_unpack(lua_State *L) {
|
|||||||
if (lua_isnoneornil(L,1)) {
|
if (lua_isnoneornil(L,1)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
void * buffer = lua_touserdata(L,1);
|
void * buffer;
|
||||||
int len = luaL_checkinteger(L,2);
|
int len;
|
||||||
|
if (lua_type(L,1) == LUA_TSTRING) {
|
||||||
|
size_t sz;
|
||||||
|
buffer = (void *)lua_tolstring(L,1,&sz);
|
||||||
|
len = (int)sz;
|
||||||
|
} else {
|
||||||
|
buffer = lua_touserdata(L,1);
|
||||||
|
len = luaL_checkinteger(L,2);
|
||||||
|
}
|
||||||
if (len == 0) {
|
if (len == 0) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -149,7 +149,7 @@ _sendname(lua_State *L, struct skynet_context * context, const char * dest) {
|
|||||||
luaL_error(L, "skynet.send invalid param %s", lua_typename(L,lua_type(L,4)));
|
luaL_error(L, "skynet.send invalid param %s", lua_typename(L,lua_type(L,4)));
|
||||||
}
|
}
|
||||||
if (session < 0) {
|
if (session < 0) {
|
||||||
luaL_error(L, "skynet.send session (%d) < 0", session);
|
return 0;
|
||||||
}
|
}
|
||||||
lua_pushinteger(L,session);
|
lua_pushinteger(L,session);
|
||||||
return 1;
|
return 1;
|
||||||
@@ -221,7 +221,7 @@ _send(lua_State *L) {
|
|||||||
}
|
}
|
||||||
if (session < 0) {
|
if (session < 0) {
|
||||||
// send to invalid address
|
// send to invalid address
|
||||||
// todo: maybe throw error is better
|
// todo: maybe throw error whould be better
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
lua_pushinteger(L,session);
|
lua_pushinteger(L,session);
|
||||||
@@ -289,6 +289,16 @@ _harbor(lua_State *L) {
|
|||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
lpackstring(lua_State *L) {
|
||||||
|
_luaseri_pack(L);
|
||||||
|
char * str = (char *)lua_touserdata(L, -2);
|
||||||
|
int sz = lua_tointeger(L, -1);
|
||||||
|
lua_pushlstring(L, str, sz);
|
||||||
|
skynet_free(str);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
luaopen_skynet_c(lua_State *L) {
|
luaopen_skynet_c(lua_State *L) {
|
||||||
luaL_checkversion(L);
|
luaL_checkversion(L);
|
||||||
@@ -303,6 +313,7 @@ luaopen_skynet_c(lua_State *L) {
|
|||||||
{ "harbor", _harbor },
|
{ "harbor", _harbor },
|
||||||
{ "pack", _luaseri_pack },
|
{ "pack", _luaseri_pack },
|
||||||
{ "unpack", _luaseri_unpack },
|
{ "unpack", _luaseri_unpack },
|
||||||
|
{ "packstring", lpackstring },
|
||||||
{ "callback", _callback },
|
{ "callback", _callback },
|
||||||
{ NULL, NULL },
|
{ NULL, NULL },
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
#define BACKLOG 32
|
#define BACKLOG 32
|
||||||
// 2 ** 12 == 4096
|
// 2 ** 12 == 4096
|
||||||
#define LARGE_PAGE_NODE 12
|
#define LARGE_PAGE_NODE 12
|
||||||
|
#define BUFFER_LIMIT (256 * 1024)
|
||||||
|
|
||||||
struct buffer_node {
|
struct buffer_node {
|
||||||
char * msg;
|
char * msg;
|
||||||
@@ -22,6 +23,7 @@ struct buffer_node {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct socket_buffer {
|
struct socket_buffer {
|
||||||
|
int limit;
|
||||||
int size;
|
int size;
|
||||||
int offset;
|
int offset;
|
||||||
struct buffer_node *head;
|
struct buffer_node *head;
|
||||||
@@ -64,6 +66,7 @@ lnewpool(lua_State *L, int sz) {
|
|||||||
static int
|
static int
|
||||||
lnewbuffer(lua_State *L) {
|
lnewbuffer(lua_State *L) {
|
||||||
struct socket_buffer * sb = lua_newuserdata(L, sizeof(*sb));
|
struct socket_buffer * sb = lua_newuserdata(L, sizeof(*sb));
|
||||||
|
sb->limit = luaL_optint(L,1,BUFFER_LIMIT);
|
||||||
sb->size = 0;
|
sb->size = 0;
|
||||||
sb->offset = 0;
|
sb->offset = 0;
|
||||||
sb->head = NULL;
|
sb->head = NULL;
|
||||||
@@ -126,6 +129,9 @@ lpushbuffer(lua_State *L) {
|
|||||||
sb->size += sz;
|
sb->size += sz;
|
||||||
|
|
||||||
lua_pushinteger(L, sb->size);
|
lua_pushinteger(L, sb->size);
|
||||||
|
if (sb->limit > 0 && sb->size > sb->limit) {
|
||||||
|
return luaL_error(L, "buffer overflow (limit = %d, size = %d)", sb->limit, sb->size);
|
||||||
|
}
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@@ -188,10 +194,29 @@ pop_lstring(lua_State *L, struct socket_buffer *sb, int sz, int skip) {
|
|||||||
luaL_pushresult(&b);
|
luaL_pushresult(&b);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
lheader(lua_State *L) {
|
||||||
|
size_t len;
|
||||||
|
const uint8_t * s = (const uint8_t *)luaL_checklstring(L, 1, &len);
|
||||||
|
if (len > 4 || len < 1) {
|
||||||
|
return luaL_error(L, "Invalid read %s", s);
|
||||||
|
}
|
||||||
|
int i;
|
||||||
|
size_t sz = 0;
|
||||||
|
for (i=0;i<(int)len;i++) {
|
||||||
|
sz <<= 8;
|
||||||
|
sz |= s[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
lua_pushunsigned(L, sz);
|
||||||
|
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
userdata send_buffer
|
userdata send_buffer
|
||||||
table pool
|
table pool
|
||||||
integer sz or string (big endian)
|
integer sz
|
||||||
*/
|
*/
|
||||||
static int
|
static int
|
||||||
lpopbuffer(lua_State *L) {
|
lpopbuffer(lua_State *L) {
|
||||||
@@ -200,23 +225,7 @@ lpopbuffer(lua_State *L) {
|
|||||||
return luaL_error(L, "Need buffer object at param 1");
|
return luaL_error(L, "Need buffer object at param 1");
|
||||||
}
|
}
|
||||||
luaL_checktype(L,2,LUA_TTABLE);
|
luaL_checktype(L,2,LUA_TTABLE);
|
||||||
int type = lua_type(L,3);
|
int sz = luaL_checkinteger(L,3);
|
||||||
int sz;
|
|
||||||
if (type == LUA_TNUMBER) {
|
|
||||||
sz = lua_tointeger(L,3);
|
|
||||||
} else {
|
|
||||||
size_t len;
|
|
||||||
const uint8_t * s = (const uint8_t *)luaL_checklstring(L, 3, &len);
|
|
||||||
if (len > 4 || len < 1) {
|
|
||||||
return luaL_error(L, "Invalid read %s", s);
|
|
||||||
}
|
|
||||||
int i;
|
|
||||||
sz = 0;
|
|
||||||
for (i=0;i<(int)len;i++) {
|
|
||||||
sz <<= 8;
|
|
||||||
sz |= s[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (sb->size < sz || sz == 0) {
|
if (sb->size < sz || sz == 0) {
|
||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
} else {
|
} else {
|
||||||
@@ -473,6 +482,14 @@ lstart(lua_State *L) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
lnodelay(lua_State *L) {
|
||||||
|
struct skynet_context * ctx = lua_touserdata(L, lua_upvalueindex(1));
|
||||||
|
int id = luaL_checkinteger(L, 1);
|
||||||
|
skynet_socket_nodelay(ctx,id);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
luaopen_socketdriver(lua_State *L) {
|
luaopen_socketdriver(lua_State *L) {
|
||||||
luaL_checkversion(L);
|
luaL_checkversion(L);
|
||||||
@@ -485,6 +502,7 @@ luaopen_socketdriver(lua_State *L) {
|
|||||||
{ "clear", lclearbuffer },
|
{ "clear", lclearbuffer },
|
||||||
{ "readline", lreadline },
|
{ "readline", lreadline },
|
||||||
{ "str2p", lstr2p },
|
{ "str2p", lstr2p },
|
||||||
|
{ "header", lheader },
|
||||||
|
|
||||||
{ "unpack", lunpack },
|
{ "unpack", lunpack },
|
||||||
{ NULL, NULL },
|
{ NULL, NULL },
|
||||||
@@ -498,6 +516,7 @@ luaopen_socketdriver(lua_State *L) {
|
|||||||
{ "lsend", lsendlow },
|
{ "lsend", lsendlow },
|
||||||
{ "bind", lbind },
|
{ "bind", lbind },
|
||||||
{ "start", lstart },
|
{ "start", lstart },
|
||||||
|
{ "nodelay", lnodelay },
|
||||||
{ NULL, NULL },
|
{ NULL, NULL },
|
||||||
};
|
};
|
||||||
lua_getfield(L, LUA_REGISTRYINDEX, "skynet_context");
|
lua_getfield(L, LUA_REGISTRYINDEX, "skynet_context");
|
||||||
|
|||||||
@@ -9,7 +9,15 @@ function cluster.call(node, address, ...)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function cluster.open(port)
|
function cluster.open(port)
|
||||||
skynet.call(clusterd, "lua", "listen", "0.0.0.0", port)
|
if type(port) == "string" then
|
||||||
|
skynet.call(clusterd, "lua", "listen", port)
|
||||||
|
else
|
||||||
|
skynet.call(clusterd, "lua", "listen", "0.0.0.0", port)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function cluster.reload()
|
||||||
|
skynet.call(clusterd, "lua", "reload")
|
||||||
end
|
end
|
||||||
|
|
||||||
skynet.init(function()
|
skynet.init(function()
|
||||||
|
|||||||
@@ -10,5 +10,9 @@ function datacenter.set(...)
|
|||||||
return skynet.call("DATACENTER", "lua", "UPDATE", ...)
|
return skynet.call("DATACENTER", "lua", "UPDATE", ...)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function datacenter.wait(...)
|
||||||
|
return skynet.call("DATACENTER", "lua", "WAIT", ...)
|
||||||
|
end
|
||||||
|
|
||||||
return datacenter
|
return datacenter
|
||||||
|
|
||||||
|
|||||||
@@ -3,11 +3,13 @@ for word in string.gmatch(..., "%S+") do
|
|||||||
table.insert(args, word)
|
table.insert(args, word)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
SERVICE_NAME = args[1]
|
||||||
|
|
||||||
local main, pattern
|
local main, pattern
|
||||||
|
|
||||||
local err = {}
|
local err = {}
|
||||||
for pat in string.gmatch(LUA_SERVICE, "([^;]+);*") do
|
for pat in string.gmatch(LUA_SERVICE, "([^;]+);*") do
|
||||||
local filename = string.gsub(pat, "?", args[1])
|
local filename = string.gsub(pat, "?", SERVICE_NAME)
|
||||||
local f, msg = loadfile(filename)
|
local f, msg = loadfile(filename)
|
||||||
if not f then
|
if not f then
|
||||||
table.insert(err, msg)
|
table.insert(err, msg)
|
||||||
|
|||||||
@@ -98,7 +98,7 @@ function mongo.client( conf )
|
|||||||
host = obj.host,
|
host = obj.host,
|
||||||
port = obj.port,
|
port = obj.port,
|
||||||
response = dispatch_reply,
|
response = dispatch_reply,
|
||||||
auth = mongo_auth(conf),
|
auth = mongo_auth(obj),
|
||||||
}
|
}
|
||||||
setmetatable(obj, client_meta)
|
setmetatable(obj, client_meta)
|
||||||
obj.__sock:connect(true) -- try connect only once
|
obj.__sock:connect(true) -- try connect only once
|
||||||
@@ -167,7 +167,9 @@ function mongo_db:runCommand(cmd,cmd_v,...)
|
|||||||
bson_cmd = bson_encode_order(cmd,cmd_v,...)
|
bson_cmd = bson_encode_order(cmd,cmd_v,...)
|
||||||
end
|
end
|
||||||
local pack = driver.query(request_id, 0, self.__cmd, 0, 1, bson_cmd)
|
local pack = driver.query(request_id, 0, self.__cmd, 0, 1, bson_cmd)
|
||||||
local doc = sock:request(pack, request_id).document
|
-- we must hold req (req.data), because req.document is a lightuserdata, it's a pointer to the string (req.data)
|
||||||
|
local req = sock:request(pack, request_id)
|
||||||
|
local doc = req.document
|
||||||
return bson_decode(doc)
|
return bson_decode(doc)
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -224,7 +226,9 @@ function mongo_collection:findOne(query, selector)
|
|||||||
local request_id = conn:genId()
|
local request_id = conn:genId()
|
||||||
local sock = conn.__sock
|
local sock = conn.__sock
|
||||||
local pack = driver.query(request_id, 0, self.full_name, 0, 1, query and bson_encode(query) or empty_bson, selector and bson_encode(selector))
|
local pack = driver.query(request_id, 0, self.full_name, 0, 1, query and bson_encode(query) or empty_bson, selector and bson_encode(selector))
|
||||||
local doc = sock:request(pack, request_id).document
|
-- we must hold req (req.data), because req.document is a lightuserdata, it's a pointer to the string (req.data)
|
||||||
|
local req = sock:request(pack, request_id)
|
||||||
|
local doc = req.document
|
||||||
return bson_decode(doc)
|
return bson_decode(doc)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,5 @@
|
|||||||
|
-- This is a deprecated module, use skynet.queue instead.
|
||||||
|
|
||||||
local skynet = require "skynet"
|
local skynet = require "skynet"
|
||||||
local c = require "skynet.c"
|
local c = require "skynet.c"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
local skynet = require "skynet"
|
local skynet = require "skynet"
|
||||||
local socket = require "socket"
|
local socket = require "socket"
|
||||||
local socketchannel = require "socketchannel"
|
local socketchannel = require "socketchannel"
|
||||||
|
local int64 = require "int64"
|
||||||
|
|
||||||
local table = table
|
local table = table
|
||||||
local string = string
|
local string = string
|
||||||
@@ -94,31 +95,56 @@ function command:disconnect()
|
|||||||
setmetatable(self, nil)
|
setmetatable(self, nil)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function compose_message(msg)
|
-- msg could be any type of value
|
||||||
if #msg == 1 then
|
local function pack_value(lines, v)
|
||||||
return msg[1] .. "\r\n"
|
if v == nil then
|
||||||
|
return
|
||||||
end
|
end
|
||||||
local lines = { "*" .. #msg }
|
|
||||||
for _,v in ipairs(msg) do
|
|
||||||
local t = type(v)
|
|
||||||
if t == "number" then
|
|
||||||
v = tostring(v)
|
|
||||||
elseif t == "userdata" then
|
|
||||||
v = int64.tostring(int64.new(v),10)
|
|
||||||
end
|
|
||||||
table.insert(lines,"$"..#v)
|
|
||||||
table.insert(lines,v)
|
|
||||||
end
|
|
||||||
table.insert(lines,"")
|
|
||||||
|
|
||||||
local cmd = table.concat(lines,"\r\n")
|
local t = type(v)
|
||||||
return cmd
|
if t == "number" then
|
||||||
|
v = tostring(v)
|
||||||
|
elseif t == "userdata" then
|
||||||
|
v = int64.tostring(int64.new(v),10)
|
||||||
|
end
|
||||||
|
table.insert(lines,"$"..#v)
|
||||||
|
table.insert(lines,v)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function compose_message(cmd, msg)
|
||||||
|
local len = 1
|
||||||
|
local t = type(msg)
|
||||||
|
|
||||||
|
if t == "table" then
|
||||||
|
len = len + #msg
|
||||||
|
elseif t ~= nil then
|
||||||
|
len = len + 1
|
||||||
|
end
|
||||||
|
|
||||||
|
local lines = {"*" .. len}
|
||||||
|
pack_value(lines, cmd)
|
||||||
|
|
||||||
|
if t == "table" then
|
||||||
|
for _,v in ipairs(msg) do
|
||||||
|
pack_value(lines, v)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
pack_value(lines, msg)
|
||||||
|
end
|
||||||
|
table.insert(lines, "")
|
||||||
|
|
||||||
|
local chunk = table.concat(lines,"\r\n")
|
||||||
|
return chunk
|
||||||
end
|
end
|
||||||
|
|
||||||
setmetatable(command, { __index = function(t,k)
|
setmetatable(command, { __index = function(t,k)
|
||||||
local cmd = string.upper(k)
|
local cmd = string.upper(k)
|
||||||
local f = function (self, ...)
|
local f = function (self, v, ...)
|
||||||
return self[1]:request(compose_message { cmd, ... }, read_response)
|
if type(v) == "table" then
|
||||||
|
return self[1]:request(compose_message(cmd, v), read_response)
|
||||||
|
else
|
||||||
|
return self[1]:request(compose_message(cmd, {v, ...}), read_response)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
t[k] = f
|
t[k] = f
|
||||||
return f
|
return f
|
||||||
@@ -131,12 +157,12 @@ end
|
|||||||
|
|
||||||
function command:exists(key)
|
function command:exists(key)
|
||||||
local fd = self[1]
|
local fd = self[1]
|
||||||
return fd:request(compose_message { "EXISTS", key }, read_boolean)
|
return fd:request(compose_message ("EXISTS", key), read_boolean)
|
||||||
end
|
end
|
||||||
|
|
||||||
function command:sismember(key, value)
|
function command:sismember(key, value)
|
||||||
local fd = self[1]
|
local fd = self[1]
|
||||||
return fd:request(compose_message { "SISMEMBER", key, value }, read_boolean)
|
return fd:request(compose_message ("SISMEMBER", {key, value}), read_boolean)
|
||||||
end
|
end
|
||||||
|
|
||||||
--- watch mode
|
--- watch mode
|
||||||
@@ -156,10 +182,10 @@ local function watch_login(obj, auth)
|
|||||||
so:request("AUTH "..auth.."\r\n", read_response)
|
so:request("AUTH "..auth.."\r\n", read_response)
|
||||||
end
|
end
|
||||||
for k in pairs(obj.__psubscribe) do
|
for k in pairs(obj.__psubscribe) do
|
||||||
so:request(compose_message { "PSUBSCRIBE", k })
|
so:request(compose_message ("PSUBSCRIBE", k))
|
||||||
end
|
end
|
||||||
for k in pairs(obj.__subscribe) do
|
for k in pairs(obj.__subscribe) do
|
||||||
so:request(compose_message { "SUBSCRIBE", k })
|
so:request(compose_message("SUBSCRIBE", k))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -192,7 +218,7 @@ local function watch_func( name )
|
|||||||
local so = self.__sock
|
local so = self.__sock
|
||||||
for i = 1, select("#", ...) do
|
for i = 1, select("#", ...) do
|
||||||
local v = select(i, ...)
|
local v = select(i, ...)
|
||||||
so:request(compose_message { NAME, v })
|
so:request(compose_message(NAME, v))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ local skynet = {
|
|||||||
PTYPE_HARBOR = 5,
|
PTYPE_HARBOR = 5,
|
||||||
PTYPE_SOCKET = 6,
|
PTYPE_SOCKET = 6,
|
||||||
PTYPE_ERROR = 7,
|
PTYPE_ERROR = 7,
|
||||||
PTYPE_QUEUE = 8,
|
PTYPE_QUEUE = 8, -- use in deprecated mqueue, use skynet.queue instead
|
||||||
PTYPE_DEBUG = 9,
|
PTYPE_DEBUG = 9,
|
||||||
PTYPE_LUA = 10,
|
PTYPE_LUA = 10,
|
||||||
PTYPE_SNAX = 11,
|
PTYPE_SNAX = 11,
|
||||||
@@ -190,12 +190,33 @@ function skynet.wait()
|
|||||||
session_id_coroutine[session] = nil
|
session_id_coroutine[session] = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function globalname(name, handle)
|
||||||
|
local c = string.sub(name,1,1)
|
||||||
|
assert(c ~= ':')
|
||||||
|
if c == '.' then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
assert(#name <= 16) -- GLOBALNAME_LENGTH is 16, defined in skynet_harbor.h
|
||||||
|
assert(tonumber(name) == nil) -- global name can't be number
|
||||||
|
|
||||||
|
local harbor = require "skynet.harbor"
|
||||||
|
|
||||||
|
harbor.globalname(name, handle)
|
||||||
|
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
function skynet.register(name)
|
function skynet.register(name)
|
||||||
c.command("REG", name)
|
if not globalname(name) then
|
||||||
|
c.command("REG", name)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function skynet.name(name, handle)
|
function skynet.name(name, handle)
|
||||||
c.command("NAME", name .. " " .. skynet.address(handle))
|
if not globalname(name, handle) then
|
||||||
|
c.command("NAME", name .. " " .. skynet.address(handle))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local self_handle
|
local self_handle
|
||||||
@@ -208,7 +229,10 @@ function skynet.self()
|
|||||||
end
|
end
|
||||||
|
|
||||||
function skynet.localname(name)
|
function skynet.localname(name)
|
||||||
return string_to_handle(c.command("QUERY", name))
|
local addr = c.command("QUERY", name)
|
||||||
|
if addr then
|
||||||
|
return string_to_handle(addr)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function skynet.launch(...)
|
function skynet.launch(...)
|
||||||
@@ -226,8 +250,19 @@ function skynet.starttime()
|
|||||||
return tonumber(c.command("STARTTIME"))
|
return tonumber(c.command("STARTTIME"))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function skynet.time()
|
||||||
|
return skynet.now()/100 + skynet.starttime() -- get now first would be better
|
||||||
|
end
|
||||||
|
|
||||||
function skynet.exit()
|
function skynet.exit()
|
||||||
skynet.send(".launcher","lua","REMOVE",skynet.self())
|
skynet.send(".launcher","lua","REMOVE",skynet.self())
|
||||||
|
for co, session in pairs(session_coroutine_id) do
|
||||||
|
local address = session_coroutine_address[co]
|
||||||
|
local self = skynet.self()
|
||||||
|
if session~=0 and address then
|
||||||
|
skynet.redirect(address, self, "error", session, "")
|
||||||
|
end
|
||||||
|
end
|
||||||
c.command("EXIT")
|
c.command("EXIT")
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -267,6 +302,7 @@ skynet.redirect = function(dest,source,typename,...)
|
|||||||
end
|
end
|
||||||
|
|
||||||
skynet.pack = assert(c.pack)
|
skynet.pack = assert(c.pack)
|
||||||
|
skynet.packstring = assert(c.packstring)
|
||||||
skynet.unpack = assert(c.unpack)
|
skynet.unpack = assert(c.unpack)
|
||||||
skynet.tostring = assert(c.tostring)
|
skynet.tostring = assert(c.tostring)
|
||||||
|
|
||||||
@@ -292,6 +328,9 @@ end
|
|||||||
|
|
||||||
function skynet.rawcall(addr, typename, msg, sz)
|
function skynet.rawcall(addr, typename, msg, sz)
|
||||||
local p = proto[typename]
|
local p = proto[typename]
|
||||||
|
if watching_service[addr] == false then
|
||||||
|
error("Service is dead")
|
||||||
|
end
|
||||||
local session = assert(c.send(addr, p.id , nil , msg, sz), "call to invalid address")
|
local session = assert(c.send(addr, p.id , nil , msg, sz), "call to invalid address")
|
||||||
return yield_call(addr, session)
|
return yield_call(addr, session)
|
||||||
end
|
end
|
||||||
@@ -318,8 +357,8 @@ function skynet.dispatch(typename, func)
|
|||||||
p.dispatch = func
|
p.dispatch = func
|
||||||
end
|
end
|
||||||
|
|
||||||
local function unknown_request(session, address, msg, sz)
|
local function unknown_request(session, address, msg, sz, prototype)
|
||||||
print("Unknown request :" , c.tostring(msg,sz))
|
skynet.error(string.format("Unknown request (%s): %s", prototype, c.tostring(msg,sz)))
|
||||||
error(string.format("Unknown session : %d from %x", session, address))
|
error(string.format("Unknown session : %d from %x", session, address))
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -373,7 +412,7 @@ local function raw_dispatch_message(prototype, msg, sz, session, source, ...)
|
|||||||
session_coroutine_address[co] = source
|
session_coroutine_address[co] = source
|
||||||
suspend(co, coroutine.resume(co, session,source, p.unpack(msg,sz, ...)))
|
suspend(co, coroutine.resume(co, session,source, p.unpack(msg,sz, ...)))
|
||||||
else
|
else
|
||||||
unknown_request(session, source, msg, sz)
|
unknown_request(session, source, msg, sz, proto[prototype])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@@ -502,7 +541,7 @@ end
|
|||||||
local function init_service(start)
|
local function init_service(start)
|
||||||
local ok, err = xpcall(init_template, debug.traceback, start)
|
local ok, err = xpcall(init_template, debug.traceback, start)
|
||||||
if not ok then
|
if not ok then
|
||||||
print("init service failed:", err)
|
skynet.error("init service failed: " .. tostring(err))
|
||||||
skynet.send(".launcher","lua", "ERROR")
|
skynet.send(".launcher","lua", "ERROR")
|
||||||
skynet.exit()
|
skynet.exit()
|
||||||
else
|
else
|
||||||
@@ -543,12 +582,24 @@ function skynet.monitor(service, query)
|
|||||||
end
|
end
|
||||||
assert(monitor, "Monitor launch failed")
|
assert(monitor, "Monitor launch failed")
|
||||||
c.command("MONITOR", string.format(":%08x", monitor))
|
c.command("MONITOR", string.format(":%08x", monitor))
|
||||||
|
return monitor
|
||||||
end
|
end
|
||||||
|
|
||||||
function skynet.mqlen()
|
function skynet.mqlen()
|
||||||
return tonumber(c.command "MQLEN")
|
return tonumber(c.command "MQLEN")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function skynet.task(ret)
|
||||||
|
local t = 0
|
||||||
|
for session,co in pairs(session_id_coroutine) do
|
||||||
|
if ret then
|
||||||
|
ret[session] = debug.traceback(co)
|
||||||
|
end
|
||||||
|
t = t + 1
|
||||||
|
end
|
||||||
|
return t
|
||||||
|
end
|
||||||
|
|
||||||
-- Inject internal debug framework
|
-- Inject internal debug framework
|
||||||
local debug = require "skynet.debug"
|
local debug = require "skynet.debug"
|
||||||
debug(skynet)
|
debug(skynet)
|
||||||
|
|||||||
@@ -21,9 +21,16 @@ end
|
|||||||
function dbgcmd.STAT()
|
function dbgcmd.STAT()
|
||||||
local stat = {}
|
local stat = {}
|
||||||
stat.mqlen = skynet.mqlen()
|
stat.mqlen = skynet.mqlen()
|
||||||
|
stat.task = skynet.task()
|
||||||
skynet.ret(skynet.pack(stat))
|
skynet.ret(skynet.pack(stat))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function dbgcmd.TASK()
|
||||||
|
local task = {}
|
||||||
|
skynet.task(task)
|
||||||
|
skynet.ret(skynet.pack(task))
|
||||||
|
end
|
||||||
|
|
||||||
function dbgcmd.INFO()
|
function dbgcmd.INFO()
|
||||||
if internal_info_func then
|
if internal_info_func then
|
||||||
skynet.ret(skynet.pack(internal_info_func()))
|
skynet.ret(skynet.pack(internal_info_func()))
|
||||||
|
|||||||
18
lualib/skynet/harbor.lua
Normal file
18
lualib/skynet/harbor.lua
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
|
||||||
|
local harbor = {}
|
||||||
|
|
||||||
|
function harbor.globalname(name, handle)
|
||||||
|
handle = handle or skynet.self()
|
||||||
|
skynet.send(".slave", "lua", "REGISTER", name, handle)
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.link(id)
|
||||||
|
skynet.call(".slave", "lua", "LINK", id)
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.connect(id)
|
||||||
|
skynet.call(".slave", "lua", "CONNECT", id)
|
||||||
|
end
|
||||||
|
|
||||||
|
return harbor
|
||||||
33
lualib/skynet/queue.lua
Normal file
33
lualib/skynet/queue.lua
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local coroutine = coroutine
|
||||||
|
local pcall = pcall
|
||||||
|
local table = table
|
||||||
|
|
||||||
|
function skynet.queue()
|
||||||
|
local current_thread
|
||||||
|
local ref = 0
|
||||||
|
local thread_queue = {}
|
||||||
|
return function(f, ...)
|
||||||
|
local thread = coroutine.running()
|
||||||
|
if ref == 0 then
|
||||||
|
current_thread = thread
|
||||||
|
elseif current_thread ~= thread then
|
||||||
|
table.insert(thread_queue, thread)
|
||||||
|
skynet.wait()
|
||||||
|
assert(ref == 0)
|
||||||
|
end
|
||||||
|
ref = ref + 1
|
||||||
|
local ok, err = pcall(f, ...)
|
||||||
|
ref = ref - 1
|
||||||
|
if ref == 0 then
|
||||||
|
current_thread = nil
|
||||||
|
local co = table.remove(thread_queue,1)
|
||||||
|
if co then
|
||||||
|
skynet.wakeup(co)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
assert(ok,err)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
return skynet.queue
|
||||||
@@ -2,6 +2,7 @@ local driver = require "socketdriver"
|
|||||||
local skynet = require "skynet"
|
local skynet = require "skynet"
|
||||||
local assert = assert
|
local assert = assert
|
||||||
|
|
||||||
|
local buffer_limit = -1
|
||||||
local socket = {} -- api
|
local socket = {} -- api
|
||||||
local buffer_pool = {} -- store all message buffer object
|
local buffer_pool = {} -- store all message buffer object
|
||||||
local socket_pool = setmetatable( -- store all socket object
|
local socket_pool = setmetatable( -- store all socket object
|
||||||
@@ -47,7 +48,13 @@ socket_message[1] = function(id, size, data)
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
local sz = driver.push(s.buffer, buffer_pool, data, size)
|
local ok , sz = pcall(driver.push, s.buffer, buffer_pool, data, size)
|
||||||
|
if not ok then
|
||||||
|
skynet.error("socket: error on ", id , sz)
|
||||||
|
driver.clear(s.buffer,buffer_pool)
|
||||||
|
driver.close(id)
|
||||||
|
return
|
||||||
|
end
|
||||||
local rr = s.read_required
|
local rr = s.read_required
|
||||||
local rrt = type(rr)
|
local rrt = type(rr)
|
||||||
if rrt == "number" then
|
if rrt == "number" then
|
||||||
@@ -123,7 +130,7 @@ skynet.register_protocol {
|
|||||||
local function connect(id, func)
|
local function connect(id, func)
|
||||||
local newbuffer
|
local newbuffer
|
||||||
if func == nil then
|
if func == nil then
|
||||||
newbuffer = driver.buffer()
|
newbuffer = driver.buffer(buffer_limit)
|
||||||
end
|
end
|
||||||
local s = {
|
local s = {
|
||||||
id = id,
|
id = id,
|
||||||
@@ -266,12 +273,19 @@ end
|
|||||||
|
|
||||||
socket.write = assert(driver.send)
|
socket.write = assert(driver.send)
|
||||||
socket.lwrite = assert(driver.lsend)
|
socket.lwrite = assert(driver.lsend)
|
||||||
|
socket.header = assert(driver.header)
|
||||||
|
|
||||||
function socket.invalid(id)
|
function socket.invalid(id)
|
||||||
return socket_pool[id] == nil
|
return socket_pool[id] == nil
|
||||||
end
|
end
|
||||||
|
|
||||||
socket.listen = assert(driver.listen)
|
function socket.listen(host, port, backlog)
|
||||||
|
if port == nil then
|
||||||
|
host, port = string.match(host, "([^:]+):(.+)$")
|
||||||
|
port = tonumber(port)
|
||||||
|
end
|
||||||
|
return driver.listen(host, port, backlog)
|
||||||
|
end
|
||||||
|
|
||||||
function socket.lock(id)
|
function socket.lock(id)
|
||||||
local s = socket_pool[id]
|
local s = socket_pool[id]
|
||||||
@@ -311,4 +325,8 @@ function socket.abandon(id)
|
|||||||
socket_pool[id] = nil
|
socket_pool[id] = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function socket.limit(limit)
|
||||||
|
buffer_limit = limit
|
||||||
|
end
|
||||||
|
|
||||||
return socket
|
return socket
|
||||||
|
|||||||
@@ -135,6 +135,9 @@ local function dispatch_by_order(self)
|
|||||||
if result ~= socket_error then
|
if result ~= socket_error then
|
||||||
errmsg = result_ok
|
errmsg = result_ok
|
||||||
end
|
end
|
||||||
|
self.__result[co] = socket_error
|
||||||
|
self.__result_data[co] = errmsg
|
||||||
|
skynet.wakeup(co)
|
||||||
wakeup_all(self, errmsg)
|
wakeup_all(self, errmsg)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,292 +0,0 @@
|
|||||||
#include "skynet.h"
|
|
||||||
#include "skynet_harbor.h"
|
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include <assert.h>
|
|
||||||
|
|
||||||
#define HASH_SIZE 4096
|
|
||||||
#define DEFAULT_QUEUE_SIZE 1024
|
|
||||||
|
|
||||||
struct msg {
|
|
||||||
uint8_t * buffer;
|
|
||||||
size_t size;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct msg_queue {
|
|
||||||
int size;
|
|
||||||
int head;
|
|
||||||
int tail;
|
|
||||||
struct msg * data;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct keyvalue {
|
|
||||||
struct keyvalue * next;
|
|
||||||
char key[GLOBALNAME_LENGTH];
|
|
||||||
uint32_t hash;
|
|
||||||
uint32_t value;
|
|
||||||
struct msg_queue * queue;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct hashmap {
|
|
||||||
struct keyvalue *node[HASH_SIZE];
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
message type (8bits) is in destination high 8bits
|
|
||||||
harbor id (8bits) is also in that place , but remote message doesn't need harbor id.
|
|
||||||
*/
|
|
||||||
struct remote_message_header {
|
|
||||||
uint32_t source;
|
|
||||||
uint32_t destination;
|
|
||||||
uint32_t session;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 12 is sizeof(struct remote_message_header)
|
|
||||||
#define HEADER_COOKIE_LENGTH 12
|
|
||||||
|
|
||||||
struct dummy {
|
|
||||||
struct skynet_context *ctx;
|
|
||||||
struct hashmap * map;
|
|
||||||
};
|
|
||||||
|
|
||||||
// hash table
|
|
||||||
|
|
||||||
static void
|
|
||||||
_push_queue(struct msg_queue * queue, const void * buffer, size_t sz, struct remote_message_header * header) {
|
|
||||||
// If there is only 1 free slot which is reserved to distinguish full/empty
|
|
||||||
// of circular buffer, expand it.
|
|
||||||
if (((queue->tail + 1) % queue->size) == queue->head) {
|
|
||||||
struct msg * new_buffer = skynet_malloc(queue->size * 2 * sizeof(struct msg));
|
|
||||||
int i;
|
|
||||||
for (i=0;i<queue->size-1;i++) {
|
|
||||||
new_buffer[i] = queue->data[(i+queue->head) % queue->size];
|
|
||||||
}
|
|
||||||
skynet_free(queue->data);
|
|
||||||
queue->data = new_buffer;
|
|
||||||
queue->head = 0;
|
|
||||||
queue->tail = queue->size - 1;
|
|
||||||
queue->size *= 2;
|
|
||||||
}
|
|
||||||
struct msg * slot = &queue->data[queue->tail];
|
|
||||||
queue->tail = (queue->tail + 1) % queue->size;
|
|
||||||
|
|
||||||
slot->buffer = skynet_malloc(sz + sizeof(*header));
|
|
||||||
memcpy(slot->buffer, buffer, sz);
|
|
||||||
memcpy(slot->buffer + sz, header, sizeof(*header));
|
|
||||||
slot->size = sz + sizeof(*header);
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct msg *
|
|
||||||
_pop_queue(struct msg_queue * queue) {
|
|
||||||
if (queue->head == queue->tail) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
struct msg * slot = &queue->data[queue->head];
|
|
||||||
queue->head = (queue->head + 1) % queue->size;
|
|
||||||
return slot;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct msg_queue *
|
|
||||||
_new_queue() {
|
|
||||||
struct msg_queue * queue = skynet_malloc(sizeof(*queue));
|
|
||||||
queue->size = DEFAULT_QUEUE_SIZE;
|
|
||||||
queue->head = 0;
|
|
||||||
queue->tail = 0;
|
|
||||||
queue->data = skynet_malloc(DEFAULT_QUEUE_SIZE * sizeof(struct msg));
|
|
||||||
|
|
||||||
return queue;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_release_queue(struct msg_queue *queue) {
|
|
||||||
if (queue == NULL)
|
|
||||||
return;
|
|
||||||
struct msg * m = _pop_queue(queue);
|
|
||||||
while (m) {
|
|
||||||
skynet_free(m->buffer);
|
|
||||||
m = _pop_queue(queue);
|
|
||||||
}
|
|
||||||
skynet_free(queue->data);
|
|
||||||
skynet_free(queue);
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct keyvalue *
|
|
||||||
_hash_search(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
|
||||||
uint32_t *ptr = (uint32_t*) name;
|
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
|
||||||
struct keyvalue * node = hash->node[h % HASH_SIZE];
|
|
||||||
while (node) {
|
|
||||||
if (node->hash == h && strncmp(node->key, name, GLOBALNAME_LENGTH) == 0) {
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
node = node->next;
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct keyvalue *
|
|
||||||
_hash_insert(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
|
||||||
uint32_t *ptr = (uint32_t *)name;
|
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
|
||||||
struct keyvalue ** pkv = &hash->node[h % HASH_SIZE];
|
|
||||||
struct keyvalue * node = skynet_malloc(sizeof(*node));
|
|
||||||
memcpy(node->key, name, GLOBALNAME_LENGTH);
|
|
||||||
node->next = *pkv;
|
|
||||||
node->queue = NULL;
|
|
||||||
node->hash = h;
|
|
||||||
node->value = 0;
|
|
||||||
*pkv = node;
|
|
||||||
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct hashmap *
|
|
||||||
_hash_new() {
|
|
||||||
struct hashmap * h = skynet_malloc(sizeof(struct hashmap));
|
|
||||||
memset(h,0,sizeof(*h));
|
|
||||||
return h;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_hash_delete(struct hashmap *hash) {
|
|
||||||
int i;
|
|
||||||
for (i=0;i<HASH_SIZE;i++) {
|
|
||||||
struct keyvalue * node = hash->node[i];
|
|
||||||
while (node) {
|
|
||||||
struct keyvalue * next = node->next;
|
|
||||||
_release_queue(node->queue);
|
|
||||||
skynet_free(node);
|
|
||||||
node = next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
skynet_free(hash);
|
|
||||||
}
|
|
||||||
|
|
||||||
///////////////
|
|
||||||
|
|
||||||
struct dummy *
|
|
||||||
dummy_create(void) {
|
|
||||||
struct dummy * d = skynet_malloc(sizeof(*d));
|
|
||||||
d->map = _hash_new();
|
|
||||||
return d;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
dummy_release(struct dummy *d) {
|
|
||||||
_hash_delete(d->map);
|
|
||||||
skynet_free(d);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
to_bigendian(uint8_t *buffer, uint32_t n) {
|
|
||||||
buffer[0] = (n >> 24) & 0xff;
|
|
||||||
buffer[1] = (n >> 16) & 0xff;
|
|
||||||
buffer[2] = (n >> 8) & 0xff;
|
|
||||||
buffer[3] = n & 0xff;
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
_header_to_message(const struct remote_message_header * header, uint8_t * message) {
|
|
||||||
to_bigendian(message , header->source);
|
|
||||||
to_bigendian(message+4 , header->destination);
|
|
||||||
to_bigendian(message+8 , header->session);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline uint32_t
|
|
||||||
from_bigendian(uint32_t n) {
|
|
||||||
union {
|
|
||||||
uint32_t big;
|
|
||||||
uint8_t bytes[4];
|
|
||||||
} u;
|
|
||||||
u.big = n;
|
|
||||||
return u.bytes[0] << 24 | u.bytes[1] << 16 | u.bytes[2] << 8 | u.bytes[3];
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
_message_to_header(const uint32_t *message, struct remote_message_header *header) {
|
|
||||||
header->source = from_bigendian(message[0]);
|
|
||||||
header->destination = from_bigendian(message[1]);
|
|
||||||
header->session = from_bigendian(message[2]);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_dispatch_queue(struct dummy *h, struct msg_queue * queue, uint32_t handle, const char name[GLOBALNAME_LENGTH] ) {
|
|
||||||
struct msg * m = _pop_queue(queue);
|
|
||||||
while (m) {
|
|
||||||
struct remote_message_header cookie;
|
|
||||||
uint8_t *ptr = m->buffer + m->size - sizeof(cookie);
|
|
||||||
memcpy(&cookie, ptr, sizeof(cookie));
|
|
||||||
int type = cookie.destination >> HANDLE_REMOTE_SHIFT;
|
|
||||||
skynet_send(h->ctx, cookie.source, handle , type | PTYPE_TAG_DONTCOPY, cookie.session, m->buffer, m->size - sizeof(cookie));
|
|
||||||
m = _pop_queue(queue);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_update_name(struct dummy *h, const char name[GLOBALNAME_LENGTH], uint32_t handle) {
|
|
||||||
struct keyvalue * node = _hash_search(h->map, name);
|
|
||||||
if (node == NULL) {
|
|
||||||
node = _hash_insert(h->map, name);
|
|
||||||
}
|
|
||||||
node->value = handle;
|
|
||||||
if (node->queue) {
|
|
||||||
_dispatch_queue(h, node->queue, handle, name);
|
|
||||||
_release_queue(node->queue);
|
|
||||||
node->queue = NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_send_name(struct dummy *h, uint32_t source, const char name[GLOBALNAME_LENGTH], int type, int session, const char * msg, size_t sz) {
|
|
||||||
struct keyvalue * node = _hash_search(h->map, name);
|
|
||||||
if (node == NULL) {
|
|
||||||
node = _hash_insert(h->map, name);
|
|
||||||
}
|
|
||||||
if (node->value == 0) {
|
|
||||||
if (node->queue == NULL) {
|
|
||||||
node->queue = _new_queue();
|
|
||||||
}
|
|
||||||
struct remote_message_header header;
|
|
||||||
header.source = source;
|
|
||||||
header.destination = type << HANDLE_REMOTE_SHIFT;
|
|
||||||
header.session = (uint32_t)session;
|
|
||||||
_push_queue(node->queue, msg, sz, &header);
|
|
||||||
} else {
|
|
||||||
// local message
|
|
||||||
skynet_send(h->ctx, source, node->value , type | PTYPE_TAG_DONTCOPY, session, (void *)msg, sz);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
_mainloop(struct skynet_context * context, void * ud, int type, int session, uint32_t source, const void * msg, size_t sz) {
|
|
||||||
struct dummy * h = ud;
|
|
||||||
switch (type) {
|
|
||||||
case PTYPE_SYSTEM: {
|
|
||||||
// register name message
|
|
||||||
const struct remote_message *rmsg = msg;
|
|
||||||
assert (sz == sizeof(rmsg->destination));
|
|
||||||
_update_name(h, rmsg->destination.name, rmsg->destination.handle);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
default: {
|
|
||||||
// remote message out
|
|
||||||
const struct remote_message *rmsg = msg;
|
|
||||||
if (rmsg->destination.handle == 0) {
|
|
||||||
_send_name(h, source , rmsg->destination.name, type, session, rmsg->message, rmsg->sz);
|
|
||||||
} else {
|
|
||||||
// local message
|
|
||||||
skynet_send(context, source, rmsg->destination.handle , type | PTYPE_TAG_DONTCOPY, session, (void *)rmsg->message, rmsg->sz);
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
dummy_init(struct dummy *d, struct skynet_context *ctx, const char * args) {
|
|
||||||
d->ctx = ctx;
|
|
||||||
skynet_harbor_start(ctx);
|
|
||||||
skynet_callback(ctx, d, _mainloop);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -2,6 +2,16 @@
|
|||||||
#include "skynet_harbor.h"
|
#include "skynet_harbor.h"
|
||||||
#include "skynet_socket.h"
|
#include "skynet_socket.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
harbor listen the PTYPE_HARBOR (in text)
|
||||||
|
N name : update the global name
|
||||||
|
S fd id: connect to new harbor , we should send self_id to fd first , and then recv a id (check it), and at last send queue.
|
||||||
|
A fd id: accept new harbor , we should send self_id to fd , and then send queue.
|
||||||
|
|
||||||
|
If the fd is disconnected, send message to slave in PTYPE_TEXT. D id
|
||||||
|
If we don't known a globalname, send message to slave in PTYPE_TEXT. Q name
|
||||||
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
@@ -13,8 +23,22 @@
|
|||||||
#define HASH_SIZE 4096
|
#define HASH_SIZE 4096
|
||||||
#define DEFAULT_QUEUE_SIZE 1024
|
#define DEFAULT_QUEUE_SIZE 1024
|
||||||
|
|
||||||
|
// 12 is sizeof(struct remote_message_header)
|
||||||
|
#define HEADER_COOKIE_LENGTH 12
|
||||||
|
|
||||||
|
/*
|
||||||
|
message type (8bits) is in destination high 8bits
|
||||||
|
harbor id (8bits) is also in that place , but remote message doesn't need harbor id.
|
||||||
|
*/
|
||||||
|
struct remote_message_header {
|
||||||
|
uint32_t source;
|
||||||
|
uint32_t destination;
|
||||||
|
uint32_t session;
|
||||||
|
};
|
||||||
|
|
||||||
struct msg {
|
struct msg {
|
||||||
uint8_t * buffer;
|
struct remote_message_header header;
|
||||||
|
void * buffer;
|
||||||
size_t size;
|
size_t size;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -37,35 +61,34 @@ struct hashmap {
|
|||||||
struct keyvalue *node[HASH_SIZE];
|
struct keyvalue *node[HASH_SIZE];
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
#define STATUS_WAIT 0
|
||||||
message type (8bits) is in destination high 8bits
|
#define STATUS_HANDSHAKE 1
|
||||||
harbor id (8bits) is also in that place , but remote message doesn't need harbor id.
|
#define STATUS_HEADER 2
|
||||||
*/
|
#define STATUS_CONTENT 3
|
||||||
struct remote_message_header {
|
#define STATUS_DOWN 4
|
||||||
uint32_t source;
|
|
||||||
uint32_t destination;
|
|
||||||
uint32_t session;
|
|
||||||
};
|
|
||||||
|
|
||||||
// 12 is sizeof(struct remote_message_header)
|
struct slave {
|
||||||
#define HEADER_COOKIE_LENGTH 12
|
int fd;
|
||||||
|
struct msg_queue *queue;
|
||||||
|
int status;
|
||||||
|
int length;
|
||||||
|
int read;
|
||||||
|
uint8_t size[4];
|
||||||
|
char * recv_buffer;
|
||||||
|
};
|
||||||
|
|
||||||
struct harbor {
|
struct harbor {
|
||||||
struct skynet_context *ctx;
|
struct skynet_context *ctx;
|
||||||
char * local_addr;
|
|
||||||
int id;
|
int id;
|
||||||
|
uint32_t slave;
|
||||||
struct hashmap * map;
|
struct hashmap * map;
|
||||||
int master_fd;
|
struct slave s[REMOTE_MAX];
|
||||||
char * master_addr;
|
|
||||||
int remote_fd[REMOTE_MAX];
|
|
||||||
bool connected[REMOTE_MAX];
|
|
||||||
char * remote_addr[REMOTE_MAX];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// hash table
|
// hash table
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_push_queue(struct msg_queue * queue, const void * buffer, size_t sz, struct remote_message_header * header) {
|
push_queue_msg(struct msg_queue * queue, struct msg * m) {
|
||||||
// If there is only 1 free slot which is reserved to distinguish full/empty
|
// If there is only 1 free slot which is reserved to distinguish full/empty
|
||||||
// of circular buffer, expand it.
|
// of circular buffer, expand it.
|
||||||
if (((queue->tail + 1) % queue->size) == queue->head) {
|
if (((queue->tail + 1) % queue->size) == queue->head) {
|
||||||
@@ -81,16 +104,21 @@ _push_queue(struct msg_queue * queue, const void * buffer, size_t sz, struct rem
|
|||||||
queue->size *= 2;
|
queue->size *= 2;
|
||||||
}
|
}
|
||||||
struct msg * slot = &queue->data[queue->tail];
|
struct msg * slot = &queue->data[queue->tail];
|
||||||
|
*slot = *m;
|
||||||
queue->tail = (queue->tail + 1) % queue->size;
|
queue->tail = (queue->tail + 1) % queue->size;
|
||||||
|
}
|
||||||
|
|
||||||
slot->buffer = skynet_malloc(sz + sizeof(*header));
|
static void
|
||||||
memcpy(slot->buffer, buffer, sz);
|
push_queue(struct msg_queue * queue, void * buffer, size_t sz, struct remote_message_header * header) {
|
||||||
memcpy(slot->buffer + sz, header, sizeof(*header));
|
struct msg m;
|
||||||
slot->size = sz + sizeof(*header);
|
m.header = *header;
|
||||||
|
m.buffer = buffer;
|
||||||
|
m.size = sz;
|
||||||
|
push_queue_msg(queue, &m);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct msg *
|
static struct msg *
|
||||||
_pop_queue(struct msg_queue * queue) {
|
pop_queue(struct msg_queue * queue) {
|
||||||
if (queue->head == queue->tail) {
|
if (queue->head == queue->tail) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -100,7 +128,7 @@ _pop_queue(struct msg_queue * queue) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static struct msg_queue *
|
static struct msg_queue *
|
||||||
_new_queue() {
|
new_queue() {
|
||||||
struct msg_queue * queue = skynet_malloc(sizeof(*queue));
|
struct msg_queue * queue = skynet_malloc(sizeof(*queue));
|
||||||
queue->size = DEFAULT_QUEUE_SIZE;
|
queue->size = DEFAULT_QUEUE_SIZE;
|
||||||
queue->head = 0;
|
queue->head = 0;
|
||||||
@@ -111,20 +139,19 @@ _new_queue() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_release_queue(struct msg_queue *queue) {
|
release_queue(struct msg_queue *queue) {
|
||||||
if (queue == NULL)
|
if (queue == NULL)
|
||||||
return;
|
return;
|
||||||
struct msg * m = _pop_queue(queue);
|
struct msg * m;
|
||||||
while (m) {
|
while ((m=pop_queue(queue)) != NULL) {
|
||||||
skynet_free(m->buffer);
|
skynet_free(m->buffer);
|
||||||
m = _pop_queue(queue);
|
|
||||||
}
|
}
|
||||||
skynet_free(queue->data);
|
skynet_free(queue->data);
|
||||||
skynet_free(queue);
|
skynet_free(queue);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct keyvalue *
|
static struct keyvalue *
|
||||||
_hash_search(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
hash_search(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
||||||
uint32_t *ptr = (uint32_t*) name;
|
uint32_t *ptr = (uint32_t*) name;
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
||||||
struct keyvalue * node = hash->node[h % HASH_SIZE];
|
struct keyvalue * node = hash->node[h % HASH_SIZE];
|
||||||
@@ -142,7 +169,7 @@ _hash_search(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
|||||||
// Don't support erase name yet
|
// Don't support erase name yet
|
||||||
|
|
||||||
static struct void
|
static struct void
|
||||||
_hash_erase(struct hashmap * hash, char name[GLOBALNAME_LENGTH) {
|
hash_erase(struct hashmap * hash, char name[GLOBALNAME_LENGTH) {
|
||||||
uint32_t *ptr = name;
|
uint32_t *ptr = name;
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
||||||
struct keyvalue ** ptr = &hash->node[h % HASH_SIZE];
|
struct keyvalue ** ptr = &hash->node[h % HASH_SIZE];
|
||||||
@@ -160,7 +187,7 @@ _hash_erase(struct hashmap * hash, char name[GLOBALNAME_LENGTH) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static struct keyvalue *
|
static struct keyvalue *
|
||||||
_hash_insert(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
hash_insert(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
||||||
uint32_t *ptr = (uint32_t *)name;
|
uint32_t *ptr = (uint32_t *)name;
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
||||||
struct keyvalue ** pkv = &hash->node[h % HASH_SIZE];
|
struct keyvalue ** pkv = &hash->node[h % HASH_SIZE];
|
||||||
@@ -176,20 +203,20 @@ _hash_insert(struct hashmap * hash, const char name[GLOBALNAME_LENGTH]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static struct hashmap *
|
static struct hashmap *
|
||||||
_hash_new() {
|
hash_new() {
|
||||||
struct hashmap * h = skynet_malloc(sizeof(struct hashmap));
|
struct hashmap * h = skynet_malloc(sizeof(struct hashmap));
|
||||||
memset(h,0,sizeof(*h));
|
memset(h,0,sizeof(*h));
|
||||||
return h;
|
return h;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_hash_delete(struct hashmap *hash) {
|
hash_delete(struct hashmap *hash) {
|
||||||
int i;
|
int i;
|
||||||
for (i=0;i<HASH_SIZE;i++) {
|
for (i=0;i<HASH_SIZE;i++) {
|
||||||
struct keyvalue * node = hash->node[i];
|
struct keyvalue * node = hash->node[i];
|
||||||
while (node) {
|
while (node) {
|
||||||
struct keyvalue * next = node->next;
|
struct keyvalue * next = node->next;
|
||||||
_release_queue(node->queue);
|
release_queue(node->queue);
|
||||||
skynet_free(node);
|
skynet_free(node);
|
||||||
node = next;
|
node = next;
|
||||||
}
|
}
|
||||||
@@ -199,64 +226,50 @@ _hash_delete(struct hashmap *hash) {
|
|||||||
|
|
||||||
///////////////
|
///////////////
|
||||||
|
|
||||||
|
static void
|
||||||
|
close_harbor(struct harbor *h, int id) {
|
||||||
|
struct slave *s = &h->s[id];
|
||||||
|
s->status = STATUS_DOWN;
|
||||||
|
if (s->fd) {
|
||||||
|
skynet_socket_close(h->ctx, s->fd);
|
||||||
|
}
|
||||||
|
if (s->queue) {
|
||||||
|
release_queue(s->queue);
|
||||||
|
s->queue = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
report_harbor_down(struct harbor *h, int id) {
|
||||||
|
char down[64];
|
||||||
|
int n = sprintf(down, "D %d",id);
|
||||||
|
|
||||||
|
skynet_send(h->ctx, 0, h->slave, PTYPE_TEXT, 0, down, n);
|
||||||
|
}
|
||||||
|
|
||||||
struct harbor *
|
struct harbor *
|
||||||
harbor_create(void) {
|
harbor_create(void) {
|
||||||
struct harbor * h = skynet_malloc(sizeof(*h));
|
struct harbor * h = skynet_malloc(sizeof(*h));
|
||||||
h->ctx = NULL;
|
memset(h,0,sizeof(*h));
|
||||||
h->id = 0;
|
h->map = hash_new();
|
||||||
h->master_fd = -1;
|
|
||||||
h->master_addr = NULL;
|
|
||||||
int i;
|
|
||||||
for (i=0;i<REMOTE_MAX;i++) {
|
|
||||||
h->remote_fd[i] = -1;
|
|
||||||
h->connected[i] = false;
|
|
||||||
h->remote_addr[i] = NULL;
|
|
||||||
}
|
|
||||||
h->map = _hash_new();
|
|
||||||
return h;
|
return h;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
harbor_release(struct harbor *h) {
|
harbor_release(struct harbor *h) {
|
||||||
struct skynet_context *ctx = h->ctx;
|
|
||||||
if (h->master_fd >= 0) {
|
|
||||||
skynet_socket_close(ctx, h->master_fd);
|
|
||||||
}
|
|
||||||
skynet_free(h->master_addr);
|
|
||||||
skynet_free(h->local_addr);
|
|
||||||
int i;
|
int i;
|
||||||
for (i=0;i<REMOTE_MAX;i++) {
|
for (i=1;i<REMOTE_MAX;i++) {
|
||||||
if (h->remote_fd[i] >= 0) {
|
struct slave *s = &h->s[i];
|
||||||
skynet_socket_close(ctx, h->remote_fd[i]);
|
if (s->fd && s->status != STATUS_DOWN) {
|
||||||
skynet_free(h->remote_addr[i]);
|
close_harbor(h,i);
|
||||||
|
// don't call report_harbor_down.
|
||||||
|
// never call skynet_send during module exit, because of dead lock
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_hash_delete(h->map);
|
hash_delete(h->map);
|
||||||
skynet_free(h);
|
skynet_free(h);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
|
||||||
_connect_to(struct harbor *h, const char *ipaddress, bool blocking) {
|
|
||||||
char * port = strchr(ipaddress,':');
|
|
||||||
if (port==NULL) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
int sz = port - ipaddress;
|
|
||||||
char tmp[sz + 1];
|
|
||||||
memcpy(tmp,ipaddress,sz);
|
|
||||||
tmp[sz] = '\0';
|
|
||||||
|
|
||||||
int portid = strtol(port+1, NULL,10);
|
|
||||||
|
|
||||||
skynet_error(h->ctx, "Harbor(%d) connect to %s:%d", h->id, tmp, portid);
|
|
||||||
|
|
||||||
if (blocking) {
|
|
||||||
return skynet_socket_block_connect(h->ctx, tmp, portid);
|
|
||||||
} else {
|
|
||||||
return skynet_socket_connect(h->ctx, tmp, portid);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
to_bigendian(uint8_t *buffer, uint32_t n) {
|
to_bigendian(uint8_t *buffer, uint32_t n) {
|
||||||
buffer[0] = (n >> 24) & 0xff;
|
buffer[0] = (n >> 24) & 0xff;
|
||||||
@@ -266,7 +279,7 @@ to_bigendian(uint8_t *buffer, uint32_t n) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
_header_to_message(const struct remote_message_header * header, uint8_t * message) {
|
header_to_message(const struct remote_message_header * header, uint8_t * message) {
|
||||||
to_bigendian(message , header->source);
|
to_bigendian(message , header->source);
|
||||||
to_bigendian(message+4 , header->destination);
|
to_bigendian(message+4 , header->destination);
|
||||||
to_bigendian(message+8 , header->session);
|
to_bigendian(message+8 , header->session);
|
||||||
@@ -283,112 +296,207 @@ from_bigendian(uint32_t n) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
_message_to_header(const uint32_t *message, struct remote_message_header *header) {
|
message_to_header(const uint32_t *message, struct remote_message_header *header) {
|
||||||
header->source = from_bigendian(message[0]);
|
header->source = from_bigendian(message[0]);
|
||||||
header->destination = from_bigendian(message[1]);
|
header->destination = from_bigendian(message[1]);
|
||||||
header->session = from_bigendian(message[2]);
|
header->session = from_bigendian(message[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
// socket package
|
||||||
_send_package(struct skynet_context *ctx, int fd, const void * buffer, size_t sz) {
|
|
||||||
uint8_t * sendbuf = skynet_malloc(sz+4);
|
|
||||||
to_bigendian(sendbuf, sz);
|
|
||||||
memcpy(sendbuf+4, buffer, sz);
|
|
||||||
|
|
||||||
if (skynet_socket_send(ctx, fd, sendbuf, sz+4)) {
|
static void
|
||||||
skynet_error(ctx, "Send to %d error", fd);
|
forward_local_messsage(struct harbor *h, void *msg, int sz) {
|
||||||
|
const char * cookie = msg;
|
||||||
|
cookie += sz - HEADER_COOKIE_LENGTH;
|
||||||
|
struct remote_message_header header;
|
||||||
|
message_to_header((const uint32_t *)cookie, &header);
|
||||||
|
|
||||||
|
uint32_t destination = header.destination;
|
||||||
|
int type = (destination >> HANDLE_REMOTE_SHIFT) | PTYPE_TAG_DONTCOPY;
|
||||||
|
destination = (destination & HANDLE_MASK) | ((uint32_t)h->id << HANDLE_REMOTE_SHIFT);
|
||||||
|
|
||||||
|
if (skynet_send(h->ctx, header.source, destination, type, (int)header.session, (void *)msg, sz-HEADER_COOKIE_LENGTH) < 0) {
|
||||||
|
skynet_error(h->ctx, "Unknown destination :%x from :%x", destination, header.source);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_send_remote(struct skynet_context * ctx, int fd, const char * buffer, size_t sz, struct remote_message_header * cookie) {
|
send_remote(struct skynet_context * ctx, int fd, const char * buffer, size_t sz, struct remote_message_header * cookie) {
|
||||||
uint32_t sz_header = sz+sizeof(*cookie);
|
uint32_t sz_header = sz+sizeof(*cookie);
|
||||||
uint8_t * sendbuf = skynet_malloc(sz_header+4);
|
uint8_t * sendbuf = skynet_malloc(sz_header+4);
|
||||||
to_bigendian(sendbuf, sz_header);
|
to_bigendian(sendbuf, sz_header);
|
||||||
memcpy(sendbuf+4, buffer, sz);
|
memcpy(sendbuf+4, buffer, sz);
|
||||||
_header_to_message(cookie, sendbuf+4+sz);
|
header_to_message(cookie, sendbuf+4+sz);
|
||||||
|
|
||||||
if (skynet_socket_send(ctx, fd, sendbuf, sz_header+4)) {
|
// ignore send error, because if the connection is broken, the mainloop will recv a message.
|
||||||
skynet_error(ctx, "Remote send to %d error", fd);
|
skynet_socket_send(ctx, fd, sendbuf, sz_header+4);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_update_remote_address(struct harbor *h, int harbor_id, const char * ipaddr) {
|
dispatch_name_queue(struct harbor *h, struct keyvalue * node) {
|
||||||
if (harbor_id == h->id) {
|
struct msg_queue * queue = node->queue;
|
||||||
return;
|
uint32_t handle = node->value;
|
||||||
}
|
|
||||||
assert(harbor_id > 0 && harbor_id< REMOTE_MAX);
|
|
||||||
struct skynet_context * context = h->ctx;
|
|
||||||
if (h->remote_fd[harbor_id] >=0) {
|
|
||||||
skynet_socket_close(context, h->remote_fd[harbor_id]);
|
|
||||||
skynet_free(h->remote_addr[harbor_id]);
|
|
||||||
h->remote_addr[harbor_id] = NULL;
|
|
||||||
}
|
|
||||||
h->remote_fd[harbor_id] = _connect_to(h, ipaddr, false);
|
|
||||||
h->connected[harbor_id] = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_dispatch_queue(struct harbor *h, struct msg_queue * queue, uint32_t handle, const char name[GLOBALNAME_LENGTH] ) {
|
|
||||||
int harbor_id = handle >> HANDLE_REMOTE_SHIFT;
|
int harbor_id = handle >> HANDLE_REMOTE_SHIFT;
|
||||||
assert(harbor_id != 0);
|
assert(harbor_id != 0);
|
||||||
struct skynet_context * context = h->ctx;
|
struct skynet_context * context = h->ctx;
|
||||||
int fd = h->remote_fd[harbor_id];
|
struct slave *s = &h->s[harbor_id];
|
||||||
if (fd < 0) {
|
int fd = s->fd;
|
||||||
char tmp [GLOBALNAME_LENGTH+1];
|
if (fd == 0) {
|
||||||
memcpy(tmp, name , GLOBALNAME_LENGTH);
|
if (s->status == STATUS_DOWN) {
|
||||||
tmp[GLOBALNAME_LENGTH] = '\0';
|
char tmp [GLOBALNAME_LENGTH+1];
|
||||||
skynet_error(context, "Drop message to %s (in harbor %d)",tmp,harbor_id);
|
memcpy(tmp, node->key, GLOBALNAME_LENGTH);
|
||||||
|
tmp[GLOBALNAME_LENGTH] = '\0';
|
||||||
|
skynet_error(context, "Drop message to %s (in harbor %d)",tmp,harbor_id);
|
||||||
|
} else {
|
||||||
|
if (s->queue == NULL) {
|
||||||
|
s->queue = node->queue;
|
||||||
|
node->queue = NULL;
|
||||||
|
} else {
|
||||||
|
struct msg * m;
|
||||||
|
while ((m = pop_queue(queue))!=NULL) {
|
||||||
|
push_queue_msg(s->queue, m);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
struct msg * m = _pop_queue(queue);
|
struct msg * m;
|
||||||
while (m) {
|
while ((m = pop_queue(queue)) != NULL) {
|
||||||
struct remote_message_header cookie;
|
m->header.destination |= (handle & HANDLE_MASK);
|
||||||
uint8_t *ptr = m->buffer + m->size - sizeof(cookie);
|
send_remote(context, fd, m->buffer, m->size, &m->header);
|
||||||
memcpy(&cookie, ptr, sizeof(cookie));
|
|
||||||
cookie.destination |= (handle & HANDLE_MASK);
|
|
||||||
_header_to_message(&cookie, ptr);
|
|
||||||
_send_package(context, fd, m->buffer, m->size);
|
|
||||||
m = _pop_queue(queue);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
_update_remote_name(struct harbor *h, const char name[GLOBALNAME_LENGTH], uint32_t handle) {
|
dispatch_queue(struct harbor *h, int id) {
|
||||||
struct keyvalue * node = _hash_search(h->map, name);
|
struct slave *s = &h->s[id];
|
||||||
|
int fd = s->fd;
|
||||||
|
assert(fd != 0);
|
||||||
|
|
||||||
|
struct msg_queue *queue = s->queue;
|
||||||
|
if (queue == NULL)
|
||||||
|
return;
|
||||||
|
|
||||||
|
struct msg * m;
|
||||||
|
while ((m = pop_queue(queue)) != NULL) {
|
||||||
|
send_remote(h->ctx, fd, m->buffer, m->size, &m->header);
|
||||||
|
}
|
||||||
|
release_queue(queue);
|
||||||
|
s->queue = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
push_socket_data(struct harbor *h, const struct skynet_socket_message * message) {
|
||||||
|
assert(message->type == SKYNET_SOCKET_TYPE_DATA);
|
||||||
|
int fd = message->id;
|
||||||
|
int i;
|
||||||
|
int id = 0;
|
||||||
|
struct slave * s = NULL;
|
||||||
|
for (i=1;i<REMOTE_MAX;i++) {
|
||||||
|
if (h->s[i].fd == fd) {
|
||||||
|
s = &h->s[i];
|
||||||
|
id = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (s == NULL) {
|
||||||
|
skynet_free(message->buffer);
|
||||||
|
skynet_error(h->ctx, "Invalid socket fd (%d) data", fd);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
uint8_t * buffer = (uint8_t *)message->buffer;
|
||||||
|
int size = message->ud;
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
switch(s->status) {
|
||||||
|
case STATUS_HANDSHAKE: {
|
||||||
|
// check id
|
||||||
|
uint8_t remote_id = buffer[0];
|
||||||
|
if (remote_id != id) {
|
||||||
|
skynet_error(h->ctx, "Invalid shakehand id (%d) from fd = %d , harbor = %d", id, fd, remote_id);
|
||||||
|
close_harbor(h,id);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
++buffer;
|
||||||
|
--size;
|
||||||
|
s->status = STATUS_HEADER;
|
||||||
|
|
||||||
|
dispatch_queue(h, id);
|
||||||
|
|
||||||
|
if (size == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// go though
|
||||||
|
}
|
||||||
|
case STATUS_HEADER: {
|
||||||
|
// big endian 4 bytes length, the first one must be 0.
|
||||||
|
int need = 4 - s->read;
|
||||||
|
if (size < need) {
|
||||||
|
memcpy(s->size + s->read, buffer, size);
|
||||||
|
s->read += size;
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
memcpy(s->size + s->read, buffer, need);
|
||||||
|
buffer += need;
|
||||||
|
size -= need;
|
||||||
|
|
||||||
|
if (s->size[0] != 0) {
|
||||||
|
skynet_error(h->ctx, "Message is too long from harbor %d", id);
|
||||||
|
close_harbor(h,id);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
s->length = s->size[1] << 16 | s->size[2] << 8 | s->size[3];
|
||||||
|
s->read = 0;
|
||||||
|
s->recv_buffer = skynet_malloc(s->length);
|
||||||
|
s->status = STATUS_CONTENT;
|
||||||
|
if (size == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// go though
|
||||||
|
case STATUS_CONTENT: {
|
||||||
|
int need = s->length - s->read;
|
||||||
|
if (size < need) {
|
||||||
|
memcpy(s->recv_buffer + s->read, buffer, size);
|
||||||
|
s->read += size;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
memcpy(s->recv_buffer + s->read, buffer, need);
|
||||||
|
forward_local_messsage(h, s->recv_buffer, s->length);
|
||||||
|
s->length = 0;
|
||||||
|
s->read = 0;
|
||||||
|
s->recv_buffer = NULL;
|
||||||
|
size -= need;
|
||||||
|
buffer += need;
|
||||||
|
s->status = STATUS_HEADER;
|
||||||
|
if (size == 0)
|
||||||
|
return;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
update_name(struct harbor *h, const char name[GLOBALNAME_LENGTH], uint32_t handle) {
|
||||||
|
struct keyvalue * node = hash_search(h->map, name);
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
node = _hash_insert(h->map, name);
|
node = hash_insert(h->map, name);
|
||||||
}
|
}
|
||||||
node->value = handle;
|
node->value = handle;
|
||||||
if (node->queue) {
|
if (node->queue) {
|
||||||
_dispatch_queue(h, node->queue, handle, name);
|
dispatch_name_queue(h, node);
|
||||||
_release_queue(node->queue);
|
release_queue(node->queue);
|
||||||
node->queue = NULL;
|
node->queue = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
_request_master(struct harbor *h, const char name[GLOBALNAME_LENGTH], size_t i, uint32_t handle) {
|
|
||||||
uint8_t buffer[4+i];
|
|
||||||
to_bigendian(buffer, handle);
|
|
||||||
memcpy(buffer+4,name,i);
|
|
||||||
|
|
||||||
_send_package(h->ctx, h->master_fd, buffer, 4+i);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
update global name to master
|
|
||||||
|
|
||||||
2 bytes (size)
|
|
||||||
4 bytes (handle) (handle == 0 for request)
|
|
||||||
n bytes string (name)
|
|
||||||
*/
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
_remote_send_handle(struct harbor *h, uint32_t source, uint32_t destination, int type, int session, const char * msg, size_t sz) {
|
remote_send_handle(struct harbor *h, uint32_t source, uint32_t destination, int type, int session, const char * msg, size_t sz) {
|
||||||
int harbor_id = destination >> HANDLE_REMOTE_SHIFT;
|
int harbor_id = destination >> HANDLE_REMOTE_SHIFT;
|
||||||
assert(harbor_id != 0);
|
|
||||||
struct skynet_context * context = h->ctx;
|
struct skynet_context * context = h->ctx;
|
||||||
if (harbor_id == h->id) {
|
if (harbor_id == h->id) {
|
||||||
// local message
|
// local message
|
||||||
@@ -396,55 +504,117 @@ _remote_send_handle(struct harbor *h, uint32_t source, uint32_t destination, int
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
int fd = h->remote_fd[harbor_id];
|
struct slave * s = &h->s[harbor_id];
|
||||||
if (fd >= 0 && h->connected[harbor_id]) {
|
if (s->fd == 0 || s->status == STATUS_HANDSHAKE) {
|
||||||
|
if (s->status == STATUS_DOWN) {
|
||||||
|
// throw an error return to source
|
||||||
|
// report the destination is dead
|
||||||
|
skynet_send(context, destination, source, PTYPE_ERROR, 0 , NULL, 0);
|
||||||
|
skynet_error(context, "Drop message to harbor %d from %x to %x (session = %d, msgsz = %d)",harbor_id, source, destination,session,(int)sz);
|
||||||
|
} else {
|
||||||
|
if (s->queue == NULL) {
|
||||||
|
s->queue = new_queue();
|
||||||
|
}
|
||||||
|
struct remote_message_header header;
|
||||||
|
header.source = source;
|
||||||
|
header.destination = (type << HANDLE_REMOTE_SHIFT) | (destination & HANDLE_MASK);
|
||||||
|
header.session = (uint32_t)session;
|
||||||
|
push_queue(s->queue, (void *)msg, sz, &header);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
struct remote_message_header cookie;
|
struct remote_message_header cookie;
|
||||||
cookie.source = source;
|
cookie.source = source;
|
||||||
cookie.destination = (destination & HANDLE_MASK) | ((uint32_t)type << HANDLE_REMOTE_SHIFT);
|
cookie.destination = (destination & HANDLE_MASK) | ((uint32_t)type << HANDLE_REMOTE_SHIFT);
|
||||||
cookie.session = (uint32_t)session;
|
cookie.session = (uint32_t)session;
|
||||||
_send_remote(context, fd, msg,sz,&cookie);
|
send_remote(context, s->fd, msg,sz,&cookie);
|
||||||
} else {
|
|
||||||
// throw an error return to source
|
|
||||||
// report the destination is dead
|
|
||||||
skynet_send(context, destination, source, PTYPE_ERROR, 0 , NULL, 0);
|
|
||||||
skynet_error(context, "Drop message to harbor %d from %x to %x (session = %d, msgsz = %d)",harbor_id, source, destination,session,(int)sz);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
_remote_register_name(struct harbor *h, const char name[GLOBALNAME_LENGTH], uint32_t handle) {
|
|
||||||
int i;
|
|
||||||
for (i=0;i<GLOBALNAME_LENGTH;i++) {
|
|
||||||
if (name[i] == '\0')
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (handle != 0) {
|
|
||||||
_update_remote_name(h, name, handle);
|
|
||||||
}
|
|
||||||
_request_master(h, name,i,handle);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
_remote_send_name(struct harbor *h, uint32_t source, const char name[GLOBALNAME_LENGTH], int type, int session, const char * msg, size_t sz) {
|
remote_send_name(struct harbor *h, uint32_t source, const char name[GLOBALNAME_LENGTH], int type, int session, const char * msg, size_t sz) {
|
||||||
struct keyvalue * node = _hash_search(h->map, name);
|
struct keyvalue * node = hash_search(h->map, name);
|
||||||
if (node == NULL) {
|
if (node == NULL) {
|
||||||
node = _hash_insert(h->map, name);
|
node = hash_insert(h->map, name);
|
||||||
}
|
}
|
||||||
if (node->value == 0) {
|
if (node->value == 0) {
|
||||||
if (node->queue == NULL) {
|
if (node->queue == NULL) {
|
||||||
node->queue = _new_queue();
|
node->queue = new_queue();
|
||||||
}
|
}
|
||||||
struct remote_message_header header;
|
struct remote_message_header header;
|
||||||
header.source = source;
|
header.source = source;
|
||||||
header.destination = type << HANDLE_REMOTE_SHIFT;
|
header.destination = type << HANDLE_REMOTE_SHIFT;
|
||||||
header.session = (uint32_t)session;
|
header.session = (uint32_t)session;
|
||||||
_push_queue(node->queue, msg, sz, &header);
|
push_queue(node->queue, (void *)msg, sz, &header);
|
||||||
// 0 for request
|
char query[2+GLOBALNAME_LENGTH+1] = "Q ";
|
||||||
_remote_register_name(h, name, 0);
|
query[2+GLOBALNAME_LENGTH] = 0;
|
||||||
|
memcpy(query+2, name, GLOBALNAME_LENGTH);
|
||||||
|
skynet_send(h->ctx, 0, h->slave, PTYPE_TEXT, 0, query, strlen(query));
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
return _remote_send_handle(h, source, node->value, type, session, msg, sz);
|
return remote_send_handle(h, source, node->value, type, session, msg, sz);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
handshake(struct harbor *h, int id) {
|
||||||
|
struct slave *s = &h->s[id];
|
||||||
|
uint8_t * handshake = skynet_malloc(1);
|
||||||
|
handshake[0] = (uint8_t)h->id;
|
||||||
|
skynet_socket_send(h->ctx, s->fd, handshake, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
harbor_command(struct harbor * h, const char * msg, size_t sz, int session, uint32_t source) {
|
||||||
|
const char * name = msg + 2;
|
||||||
|
int s = (int)sz;
|
||||||
|
s -= 2;
|
||||||
|
switch(msg[0]) {
|
||||||
|
case 'N' : {
|
||||||
|
if (s <=0 || s>= GLOBALNAME_LENGTH) {
|
||||||
|
skynet_error(h->ctx, "Invalid global name %s", name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
struct remote_name rn;
|
||||||
|
memset(&rn, 0, sizeof(rn));
|
||||||
|
memcpy(rn.name, name, s);
|
||||||
|
rn.handle = source;
|
||||||
|
update_name(h, rn.name, rn.handle);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'S' :
|
||||||
|
case 'A' : {
|
||||||
|
char buffer[s+1];
|
||||||
|
memcpy(buffer, name, s);
|
||||||
|
buffer[s] = 0;
|
||||||
|
int fd=0, id=0;
|
||||||
|
sscanf(buffer, "%d %d",&fd,&id);
|
||||||
|
if (fd == 0 || id <= 0 || id>=REMOTE_MAX) {
|
||||||
|
skynet_error(h->ctx, "Invalid command %c %s", msg[0], buffer);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
struct slave * slave = &h->s[id];
|
||||||
|
if (slave->fd != 0) {
|
||||||
|
skynet_error(h->ctx, "Harbor %d alreay exist", id);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
slave->fd = fd;
|
||||||
|
|
||||||
|
skynet_socket_start(h->ctx, fd);
|
||||||
|
handshake(h, id);
|
||||||
|
if (msg[0] == 'S') {
|
||||||
|
slave->status = STATUS_HANDSHAKE;
|
||||||
|
} else {
|
||||||
|
slave->status = STATUS_HEADER;
|
||||||
|
dispatch_queue(h,id);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
skynet_error(h->ctx, "Unknown command %s", msg);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -452,105 +622,57 @@ static int
|
|||||||
harbor_id(struct harbor *h, int fd) {
|
harbor_id(struct harbor *h, int fd) {
|
||||||
int i;
|
int i;
|
||||||
for (i=1;i<REMOTE_MAX;i++) {
|
for (i=1;i<REMOTE_MAX;i++) {
|
||||||
if (h->remote_fd[i] == fd)
|
struct slave *s = &h->s[i];
|
||||||
|
if (s->fd == fd) {
|
||||||
return i;
|
return i;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
close_harbor(struct harbor *h, int fd) {
|
|
||||||
int id = harbor_id(h,fd);
|
|
||||||
if (id == 0)
|
|
||||||
return;
|
|
||||||
skynet_error(h->ctx, "Harbor %d closed",id);
|
|
||||||
skynet_socket_close(h->ctx, fd);
|
|
||||||
h->remote_fd[id] = -1;
|
|
||||||
h->connected[id] = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
open_harbor(struct harbor *h, int fd) {
|
|
||||||
int id = harbor_id(h,fd);
|
|
||||||
if (id == 0)
|
|
||||||
return;
|
|
||||||
assert(h->connected[id] == false);
|
|
||||||
h->connected[id] = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
static int
|
||||||
_mainloop(struct skynet_context * context, void * ud, int type, int session, uint32_t source, const void * msg, size_t sz) {
|
mainloop(struct skynet_context * context, void * ud, int type, int session, uint32_t source, const void * msg, size_t sz) {
|
||||||
struct harbor * h = ud;
|
struct harbor * h = ud;
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case PTYPE_SOCKET: {
|
case PTYPE_SOCKET: {
|
||||||
const struct skynet_socket_message * message = msg;
|
const struct skynet_socket_message * message = msg;
|
||||||
switch(message->type) {
|
switch(message->type) {
|
||||||
case SKYNET_SOCKET_TYPE_DATA:
|
case SKYNET_SOCKET_TYPE_DATA:
|
||||||
|
push_socket_data(h, message);
|
||||||
skynet_free(message->buffer);
|
skynet_free(message->buffer);
|
||||||
skynet_error(context, "recv invalid socket message (size=%d)", message->ud);
|
|
||||||
break;
|
|
||||||
case SKYNET_SOCKET_TYPE_ACCEPT:
|
|
||||||
skynet_error(context, "recv invalid socket accept message");
|
|
||||||
break;
|
break;
|
||||||
case SKYNET_SOCKET_TYPE_ERROR:
|
case SKYNET_SOCKET_TYPE_ERROR:
|
||||||
case SKYNET_SOCKET_TYPE_CLOSE:
|
case SKYNET_SOCKET_TYPE_CLOSE: {
|
||||||
close_harbor(h, message->id);
|
int id = harbor_id(h, message->id);
|
||||||
|
if (id) {
|
||||||
|
report_harbor_down(h,id);
|
||||||
|
} else {
|
||||||
|
skynet_error(context, "Unkown fd (%d) closed", message->id);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case SKYNET_SOCKET_TYPE_CONNECT:
|
case SKYNET_SOCKET_TYPE_CONNECT:
|
||||||
open_harbor(h, message->id);
|
// fd forward to this service
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
skynet_error(context, "recv invalid socket message type %d", type);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
case PTYPE_HARBOR: {
|
case PTYPE_HARBOR: {
|
||||||
// remote message in
|
harbor_command(h, msg,sz,session,source);
|
||||||
const char * cookie = msg;
|
|
||||||
cookie += sz - HEADER_COOKIE_LENGTH;
|
|
||||||
struct remote_message_header header;
|
|
||||||
_message_to_header((const uint32_t *)cookie, &header);
|
|
||||||
if (header.source == 0) {
|
|
||||||
if (header.destination < REMOTE_MAX) {
|
|
||||||
// 1 byte harbor id (0~255)
|
|
||||||
// update remote harbor address
|
|
||||||
char ip [sz - HEADER_COOKIE_LENGTH + 1];
|
|
||||||
memcpy(ip, msg, sz-HEADER_COOKIE_LENGTH);
|
|
||||||
ip[sz-HEADER_COOKIE_LENGTH] = '\0';
|
|
||||||
_update_remote_address(h, header.destination, ip);
|
|
||||||
} else {
|
|
||||||
// update global name
|
|
||||||
if (sz - HEADER_COOKIE_LENGTH > GLOBALNAME_LENGTH) {
|
|
||||||
char name[sz-HEADER_COOKIE_LENGTH+1];
|
|
||||||
memcpy(name, msg, sz-HEADER_COOKIE_LENGTH);
|
|
||||||
name[sz-HEADER_COOKIE_LENGTH] = '\0';
|
|
||||||
skynet_error(context, "Global name is too long %s", name);
|
|
||||||
}
|
|
||||||
_update_remote_name(h, msg, header.destination);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
uint32_t destination = header.destination;
|
|
||||||
int type = (destination >> HANDLE_REMOTE_SHIFT) | PTYPE_TAG_DONTCOPY;
|
|
||||||
destination = (destination & HANDLE_MASK) | ((uint32_t)h->id << HANDLE_REMOTE_SHIFT);
|
|
||||||
skynet_send(context, header.source, destination, type, (int)header.session, (void *)msg, sz-HEADER_COOKIE_LENGTH);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
case PTYPE_SYSTEM: {
|
|
||||||
// register name message
|
|
||||||
const struct remote_message *rmsg = msg;
|
|
||||||
assert (sz == sizeof(rmsg->destination));
|
|
||||||
_remote_register_name(h, rmsg->destination.name, rmsg->destination.handle);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
// remote message out
|
// remote message out
|
||||||
const struct remote_message *rmsg = msg;
|
const struct remote_message *rmsg = msg;
|
||||||
if (rmsg->destination.handle == 0) {
|
if (rmsg->destination.handle == 0) {
|
||||||
if (_remote_send_name(h, source , rmsg->destination.name, type, session, rmsg->message, rmsg->sz)) {
|
if (remote_send_name(h, source , rmsg->destination.name, type, session, rmsg->message, rmsg->sz)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (_remote_send_handle(h, source , rmsg->destination.handle, type, session, rmsg->message, rmsg->sz)) {
|
if (remote_send_handle(h, source , rmsg->destination.handle, type, session, rmsg->message, rmsg->sz)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -560,48 +682,19 @@ _mainloop(struct skynet_context * context, void * ud, int type, int session, uin
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
|
||||||
_launch_gate(struct skynet_context * ctx, const char * local_addr) {
|
|
||||||
char tmp[128];
|
|
||||||
sprintf(tmp,"gate L ! %s %d %d 0",local_addr, PTYPE_HARBOR, REMOTE_MAX);
|
|
||||||
const char * gate_addr = skynet_command(ctx, "LAUNCH", tmp);
|
|
||||||
if (gate_addr == NULL) {
|
|
||||||
fprintf(stderr, "Harbor : launch gate failed\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
uint32_t gate = strtoul(gate_addr+1 , NULL, 16);
|
|
||||||
if (gate == 0) {
|
|
||||||
fprintf(stderr, "Harbor : launch gate invalid %s", gate_addr);
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
const char * self_addr = skynet_command(ctx, "REG", NULL);
|
|
||||||
int n = sprintf(tmp,"broker %s",self_addr);
|
|
||||||
skynet_send(ctx, 0, gate, PTYPE_TEXT, 0, tmp, n);
|
|
||||||
skynet_send(ctx, 0, gate, PTYPE_TEXT, 0, "start", 5);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
harbor_init(struct harbor *h, struct skynet_context *ctx, const char * args) {
|
harbor_init(struct harbor *h, struct skynet_context *ctx, const char * args) {
|
||||||
h->ctx = ctx;
|
h->ctx = ctx;
|
||||||
int sz = strlen(args)+1;
|
|
||||||
char master_addr[sz];
|
|
||||||
char local_addr[sz];
|
|
||||||
int harbor_id = 0;
|
int harbor_id = 0;
|
||||||
sscanf(args,"%s %s %d",master_addr, local_addr, &harbor_id);
|
uint32_t slave = 0;
|
||||||
h->master_addr = skynet_strdup(master_addr);
|
sscanf(args,"%d %u", &harbor_id, &slave);
|
||||||
h->id = harbor_id;
|
if (slave == 0) {
|
||||||
h->master_fd = _connect_to(h, master_addr, true);
|
return 1;
|
||||||
if (h->master_fd == -1) {
|
|
||||||
fprintf(stderr, "Harbor: Connect to master failed\n");
|
|
||||||
exit(1);
|
|
||||||
}
|
}
|
||||||
|
h->id = harbor_id;
|
||||||
|
h->slave = slave;
|
||||||
|
skynet_callback(ctx, h, mainloop);
|
||||||
skynet_harbor_start(ctx);
|
skynet_harbor_start(ctx);
|
||||||
|
|
||||||
h->local_addr = skynet_strdup(local_addr);
|
|
||||||
|
|
||||||
_launch_gate(ctx, local_addr);
|
|
||||||
skynet_callback(ctx, h, _mainloop);
|
|
||||||
_request_master(h, local_addr, strlen(local_addr), harbor_id);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,313 +0,0 @@
|
|||||||
#include "skynet.h"
|
|
||||||
#include "skynet_harbor.h"
|
|
||||||
#include "skynet_socket.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <assert.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
#define HASH_SIZE 4096
|
|
||||||
|
|
||||||
struct name {
|
|
||||||
struct name * next;
|
|
||||||
char key[GLOBALNAME_LENGTH];
|
|
||||||
uint32_t hash;
|
|
||||||
uint32_t value;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct namemap {
|
|
||||||
struct name *node[HASH_SIZE];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct master {
|
|
||||||
struct skynet_context *ctx;
|
|
||||||
int remote_fd[REMOTE_MAX];
|
|
||||||
bool connected[REMOTE_MAX];
|
|
||||||
char * remote_addr[REMOTE_MAX];
|
|
||||||
struct namemap map;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct master *
|
|
||||||
master_create() {
|
|
||||||
struct master *m = skynet_malloc(sizeof(*m));
|
|
||||||
int i;
|
|
||||||
for (i=0;i<REMOTE_MAX;i++) {
|
|
||||||
m->remote_fd[i] = -1;
|
|
||||||
m->remote_addr[i] = NULL;
|
|
||||||
m->connected[i] = false;
|
|
||||||
}
|
|
||||||
memset(&m->map, 0, sizeof(m->map));
|
|
||||||
return m;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
||||||
master_release(struct master * m) {
|
|
||||||
int i;
|
|
||||||
struct skynet_context *ctx = m->ctx;
|
|
||||||
for (i=0;i<REMOTE_MAX;i++) {
|
|
||||||
int fd = m->remote_fd[i];
|
|
||||||
if (fd >= 0) {
|
|
||||||
assert(ctx);
|
|
||||||
skynet_socket_close(ctx, fd);
|
|
||||||
}
|
|
||||||
skynet_free(m->remote_addr[i]);
|
|
||||||
}
|
|
||||||
for (i=0;i<HASH_SIZE;i++) {
|
|
||||||
struct name * node = m->map.node[i];
|
|
||||||
while (node) {
|
|
||||||
struct name * next = node->next;
|
|
||||||
skynet_free(node);
|
|
||||||
node = next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
skynet_free(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct name *
|
|
||||||
_search_name(struct master *m, char name[GLOBALNAME_LENGTH]) {
|
|
||||||
uint32_t *ptr = (uint32_t *) name;
|
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
|
||||||
struct name * node = m->map.node[h % HASH_SIZE];
|
|
||||||
while (node) {
|
|
||||||
if (node->hash == h && strncmp(node->key, name, GLOBALNAME_LENGTH) == 0) {
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
node = node->next;
|
|
||||||
}
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct name *
|
|
||||||
_insert_name(struct master *m, char name[GLOBALNAME_LENGTH]) {
|
|
||||||
uint32_t *ptr = (uint32_t *)name;
|
|
||||||
uint32_t h = ptr[0] ^ ptr[1] ^ ptr[2] ^ ptr[3];
|
|
||||||
struct name **pname = &m->map.node[h % HASH_SIZE];
|
|
||||||
struct name * node = skynet_malloc(sizeof(*node));
|
|
||||||
memcpy(node->key, name, GLOBALNAME_LENGTH);
|
|
||||||
node->next = *pname;
|
|
||||||
node->hash = h;
|
|
||||||
node->value = 0;
|
|
||||||
*pname = node;
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_copy_name(char *name, const char * buffer, size_t sz) {
|
|
||||||
if (sz < GLOBALNAME_LENGTH) {
|
|
||||||
memcpy(name, buffer, sz);
|
|
||||||
memset(name+sz, 0 , GLOBALNAME_LENGTH - sz);
|
|
||||||
} else {
|
|
||||||
memcpy(name, buffer, GLOBALNAME_LENGTH);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_connect_to(struct master *m, int id) {
|
|
||||||
assert(m->connected[id] == false);
|
|
||||||
struct skynet_context * ctx = m->ctx;
|
|
||||||
const char *ipaddress = m->remote_addr[id];
|
|
||||||
char * portstr = strchr(ipaddress,':');
|
|
||||||
if (portstr==NULL) {
|
|
||||||
skynet_error(ctx, "Harbor %d : address invalid (%s)",id, ipaddress);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
int sz = portstr - ipaddress;
|
|
||||||
char tmp[sz + 1];
|
|
||||||
memcpy(tmp,ipaddress,sz);
|
|
||||||
tmp[sz] = '\0';
|
|
||||||
int port = strtol(portstr+1,NULL,10);
|
|
||||||
skynet_error(ctx, "Master connect to harbor(%d) %s:%d", id, tmp, port);
|
|
||||||
m->remote_fd[id] = skynet_socket_connect(ctx, tmp, port);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
to_bigendian(uint8_t *buffer, uint32_t n) {
|
|
||||||
buffer[0] = (n >> 24) & 0xff;
|
|
||||||
buffer[1] = (n >> 16) & 0xff;
|
|
||||||
buffer[2] = (n >> 8) & 0xff;
|
|
||||||
buffer[3] = n & 0xff;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_send_to(struct master *m, int id, const void * buf, int sz, uint32_t handle) {
|
|
||||||
uint8_t * buffer= (uint8_t *)skynet_malloc(4 + sz + 12);
|
|
||||||
to_bigendian(buffer, sz+12);
|
|
||||||
memcpy(buffer+4, buf, sz);
|
|
||||||
to_bigendian(buffer+4+sz, 0);
|
|
||||||
to_bigendian(buffer+4+sz+4, handle);
|
|
||||||
to_bigendian(buffer+4+sz+8, 0);
|
|
||||||
|
|
||||||
sz += 4 + 12;
|
|
||||||
|
|
||||||
if (skynet_socket_send(m->ctx, m->remote_fd[id], buffer, sz)) {
|
|
||||||
skynet_error(m->ctx, "Harbor %d : send error", id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_broadcast(struct master *m, const char *name, size_t sz, uint32_t handle) {
|
|
||||||
int i;
|
|
||||||
for (i=1;i<REMOTE_MAX;i++) {
|
|
||||||
int fd = m->remote_fd[i];
|
|
||||||
if (fd < 0 || m->connected[i]==false)
|
|
||||||
continue;
|
|
||||||
_send_to(m, i , name, sz, handle);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_request_name(struct master *m, const char * buffer, size_t sz) {
|
|
||||||
char name[GLOBALNAME_LENGTH];
|
|
||||||
_copy_name(name, buffer, sz);
|
|
||||||
struct name * n = _search_name(m, name);
|
|
||||||
if (n == NULL) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
_broadcast(m, name, GLOBALNAME_LENGTH, n->value);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_update_name(struct master *m, uint32_t handle, const char * buffer, size_t sz) {
|
|
||||||
char name[GLOBALNAME_LENGTH];
|
|
||||||
_copy_name(name, buffer, sz);
|
|
||||||
struct name * n = _search_name(m, name);
|
|
||||||
if (n==NULL) {
|
|
||||||
n = _insert_name(m,name);
|
|
||||||
}
|
|
||||||
n->value = handle;
|
|
||||||
_broadcast(m,name,GLOBALNAME_LENGTH, handle);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
close_harbor(struct master *m, int harbor_id) {
|
|
||||||
if (m->connected[harbor_id]) {
|
|
||||||
struct skynet_context * context = m->ctx;
|
|
||||||
skynet_socket_close(context, m->remote_fd[harbor_id]);
|
|
||||||
m->remote_fd[harbor_id] = -1;
|
|
||||||
m->connected[harbor_id] = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
_update_address(struct master *m, int harbor_id, const char * buffer, size_t sz) {
|
|
||||||
if (m->remote_fd[harbor_id] >= 0) {
|
|
||||||
close_harbor(m, harbor_id);
|
|
||||||
}
|
|
||||||
skynet_free(m->remote_addr[harbor_id]);
|
|
||||||
char * addr = skynet_malloc(sz+1);
|
|
||||||
memcpy(addr, buffer, sz);
|
|
||||||
addr[sz] = '\0';
|
|
||||||
m->remote_addr[harbor_id] = addr;
|
|
||||||
_connect_to(m, harbor_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int
|
|
||||||
socket_id(struct master *m, int id) {
|
|
||||||
int i;
|
|
||||||
for (i=1;i<REMOTE_MAX;i++) {
|
|
||||||
if (m->remote_fd[i] == id)
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
on_connected(struct master *m, int id) {
|
|
||||||
_broadcast(m, m->remote_addr[id], strlen(m->remote_addr[id]), id);
|
|
||||||
m->connected[id] = true;
|
|
||||||
int i;
|
|
||||||
for (i=1;i<REMOTE_MAX;i++) {
|
|
||||||
if (i == id)
|
|
||||||
continue;
|
|
||||||
const char * addr = m->remote_addr[i];
|
|
||||||
if (addr == NULL || m->connected[i] == false) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
_send_to(m, id , addr, strlen(addr), i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
dispatch_socket(struct master *m, const struct skynet_socket_message *msg, int sz) {
|
|
||||||
int id = socket_id(m, msg->id);
|
|
||||||
switch(msg->type) {
|
|
||||||
case SKYNET_SOCKET_TYPE_CONNECT:
|
|
||||||
assert(id);
|
|
||||||
on_connected(m, id);
|
|
||||||
break;
|
|
||||||
case SKYNET_SOCKET_TYPE_ERROR:
|
|
||||||
skynet_error(m->ctx, "socket error on harbor %d", id);
|
|
||||||
// go though, close socket
|
|
||||||
case SKYNET_SOCKET_TYPE_CLOSE:
|
|
||||||
close_harbor(m, id);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
skynet_error(m->ctx, "Invalid socket message type %d", msg->type);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
update global name to master
|
|
||||||
|
|
||||||
4 bytes (handle) (handle == 0 for request)
|
|
||||||
n bytes string (name)
|
|
||||||
*/
|
|
||||||
|
|
||||||
static int
|
|
||||||
_mainloop(struct skynet_context * context, void * ud, int type, int session, uint32_t source, const void * msg, size_t sz) {
|
|
||||||
if (type == PTYPE_SOCKET) {
|
|
||||||
dispatch_socket(ud, msg, (int)sz);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
if (type != PTYPE_HARBOR) {
|
|
||||||
skynet_error(context, "None harbor message recv from %x (type = %d)", source, type);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
assert(sz >= 4);
|
|
||||||
struct master *m = ud;
|
|
||||||
const uint8_t *handlen = msg;
|
|
||||||
uint32_t handle = handlen[0]<<24 | handlen[1]<<16 | handlen[2]<<8 | handlen[3];
|
|
||||||
sz -= 4;
|
|
||||||
const char * name = msg;
|
|
||||||
name += 4;
|
|
||||||
|
|
||||||
if (handle == 0) {
|
|
||||||
_request_name(m , name, sz);
|
|
||||||
} else if (handle < REMOTE_MAX) {
|
|
||||||
_update_address(m , handle, name, sz);
|
|
||||||
} else {
|
|
||||||
_update_name(m , handle, name, sz);
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
|
||||||
master_init(struct master *m, struct skynet_context *ctx, const char * args) {
|
|
||||||
char tmp[strlen(args) + 32];
|
|
||||||
sprintf(tmp,"gate L ! %s %d %d 0",args,PTYPE_HARBOR,REMOTE_MAX);
|
|
||||||
const char * gate_addr = skynet_command(ctx, "LAUNCH", tmp);
|
|
||||||
if (gate_addr == NULL) {
|
|
||||||
skynet_error(ctx, "Master : launch gate failed");
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
uint32_t gate = strtoul(gate_addr+1, NULL, 16);
|
|
||||||
if (gate == 0) {
|
|
||||||
skynet_error(ctx, "Master : launch gate invalid %s", gate_addr);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
const char * self_addr = skynet_command(ctx, "REG", NULL);
|
|
||||||
int n = sprintf(tmp,"broker %s",self_addr);
|
|
||||||
skynet_send(ctx, 0, gate, PTYPE_TEXT, 0, tmp, n);
|
|
||||||
skynet_send(ctx, 0, gate, PTYPE_TEXT, 0, "start", 5);
|
|
||||||
|
|
||||||
skynet_callback(ctx, m, _mainloop);
|
|
||||||
|
|
||||||
m->ctx = ctx;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1,30 +1,38 @@
|
|||||||
local skynet = require "skynet"
|
local skynet = require "skynet"
|
||||||
|
local harbor = require "skynet.harbor"
|
||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
assert(skynet.launch("logger", skynet.getenv "logger"))
|
|
||||||
|
|
||||||
local standalone = skynet.getenv "standalone"
|
local standalone = skynet.getenv "standalone"
|
||||||
|
|
||||||
|
local launcher = assert(skynet.launch("snlua","launcher"))
|
||||||
|
skynet.name(".launcher", launcher)
|
||||||
|
|
||||||
local harbor_id = tonumber(skynet.getenv "harbor")
|
local harbor_id = tonumber(skynet.getenv "harbor")
|
||||||
if harbor_id == 0 then
|
if harbor_id == 0 then
|
||||||
assert(standalone == nil)
|
assert(standalone == nil)
|
||||||
standalone = true
|
standalone = true
|
||||||
skynet.setenv("standalone", "true")
|
skynet.setenv("standalone", "true")
|
||||||
assert(skynet.launch("dummy"))
|
|
||||||
else
|
|
||||||
local master_addr = skynet.getenv "master"
|
|
||||||
|
|
||||||
|
local slave = skynet.newservice "cdummy"
|
||||||
|
if slave == nil then
|
||||||
|
skynet.abort()
|
||||||
|
end
|
||||||
|
skynet.name(".slave", slave)
|
||||||
|
|
||||||
|
else
|
||||||
if standalone then
|
if standalone then
|
||||||
assert(skynet.launch("master", master_addr))
|
if not skynet.newservice "cmaster" then
|
||||||
|
skynet.abort()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local local_addr = skynet.getenv "address"
|
local slave = skynet.newservice "cslave"
|
||||||
|
if slave == nil then
|
||||||
assert(skynet.launch("harbor",master_addr, local_addr, harbor_id))
|
skynet.abort()
|
||||||
|
end
|
||||||
|
skynet.name(".slave", slave)
|
||||||
end
|
end
|
||||||
|
|
||||||
local launcher = assert(skynet.launch("snlua","launcher"))
|
|
||||||
skynet.name(".launcher", launcher)
|
|
||||||
|
|
||||||
if standalone then
|
if standalone then
|
||||||
local datacenter = assert(skynet.newservice "datacenterd")
|
local datacenter = assert(skynet.newservice "datacenterd")
|
||||||
skynet.name("DATACENTER", datacenter)
|
skynet.name("DATACENTER", datacenter)
|
||||||
|
|||||||
47
service/cdummy.lua
Normal file
47
service/cdummy.lua
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
|
||||||
|
local globalname = {}
|
||||||
|
local harbor = {}
|
||||||
|
|
||||||
|
skynet.register_protocol {
|
||||||
|
name = "harbor",
|
||||||
|
id = skynet.PTYPE_HARBOR,
|
||||||
|
pack = function(...) return ... end,
|
||||||
|
unpack = skynet.tostring,
|
||||||
|
}
|
||||||
|
|
||||||
|
skynet.register_protocol {
|
||||||
|
name = "text",
|
||||||
|
id = skynet.PTYPE_TEXT,
|
||||||
|
pack = function(...) return ... end,
|
||||||
|
unpack = skynet.tostring,
|
||||||
|
}
|
||||||
|
|
||||||
|
function harbor.REGISTER(name, handle)
|
||||||
|
assert(globalname[name] == nil)
|
||||||
|
globalname[name] = handle
|
||||||
|
skynet.redirect(harbor_service, handle, "harbor", 0, "N " .. name)
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.LINK(id)
|
||||||
|
skynet.ret()
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.CONNECT(id)
|
||||||
|
skynet.error("Can't connect to other harbor in single node mode")
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.start(function()
|
||||||
|
local harbor_id = tonumber(skynet.getenv "harbor")
|
||||||
|
assert(harbor_id == 0)
|
||||||
|
|
||||||
|
skynet.dispatch("lua", function (session,source,command,...)
|
||||||
|
local f = assert(harbor[command])
|
||||||
|
f(...)
|
||||||
|
end)
|
||||||
|
skynet.dispatch("text", function(session,source,command)
|
||||||
|
-- ignore all the command
|
||||||
|
end)
|
||||||
|
|
||||||
|
harbor_service = assert(skynet.launch("harbor", harbor_id, skynet.self()))
|
||||||
|
end)
|
||||||
@@ -5,12 +5,19 @@ local cluster = require "cluster.c"
|
|||||||
|
|
||||||
local config_name = skynet.getenv "cluster"
|
local config_name = skynet.getenv "cluster"
|
||||||
local node_address = {}
|
local node_address = {}
|
||||||
assert(loadfile(config_name, "t", node_address))()
|
|
||||||
|
local function loadconfig()
|
||||||
|
local f = assert(io.open(config_name))
|
||||||
|
local source = f:read "*a"
|
||||||
|
f:close()
|
||||||
|
assert(load(source, "@"..config_name, "t", node_address))()
|
||||||
|
end
|
||||||
|
|
||||||
local node_session = {}
|
local node_session = {}
|
||||||
local command = {}
|
local command = {}
|
||||||
|
|
||||||
local function read_response(sock)
|
local function read_response(sock)
|
||||||
local sz = sock:read(2)
|
local sz = socket.header(sock:read(2))
|
||||||
local msg = sock:read(sz)
|
local msg = sock:read(sz)
|
||||||
return cluster.unpackresponse(msg) -- session, ok, data
|
return cluster.unpackresponse(msg) -- session, ok, data
|
||||||
end
|
end
|
||||||
@@ -30,8 +37,16 @@ end
|
|||||||
|
|
||||||
local node_channel = setmetatable({}, { __index = open_channel })
|
local node_channel = setmetatable({}, { __index = open_channel })
|
||||||
|
|
||||||
|
function command.reload()
|
||||||
|
loadconfig()
|
||||||
|
skynet.ret(skynet.pack(nil))
|
||||||
|
end
|
||||||
|
|
||||||
function command.listen(source, addr, port)
|
function command.listen(source, addr, port)
|
||||||
local gate = skynet.newservice("gate")
|
local gate = skynet.newservice("gate")
|
||||||
|
if port == nil then
|
||||||
|
addr, port = string.match(node_address[addr], "([^:]+):(.*)$")
|
||||||
|
end
|
||||||
skynet.call(gate, "lua", "open", { address = addr, port = port })
|
skynet.call(gate, "lua", "open", { address = addr, port = port })
|
||||||
skynet.ret(skynet.pack(nil))
|
skynet.ret(skynet.pack(nil))
|
||||||
end
|
end
|
||||||
@@ -50,8 +65,13 @@ local request_fd = {}
|
|||||||
function command.socket(source, subcmd, fd, msg)
|
function command.socket(source, subcmd, fd, msg)
|
||||||
if subcmd == "data" then
|
if subcmd == "data" then
|
||||||
local addr, session, msg = cluster.unpackrequest(msg)
|
local addr, session, msg = cluster.unpackrequest(msg)
|
||||||
local msg, sz = skynet.rawcall(addr, "lua", msg)
|
local ok , msg, sz = pcall(skynet.rawcall, addr, "lua", msg)
|
||||||
local response = cluster.packresponse(session, msg, sz)
|
local response
|
||||||
|
if ok then
|
||||||
|
response = cluster.packresponse(session, true, msg, sz)
|
||||||
|
else
|
||||||
|
response = cluster.packresponse(session, false, msg)
|
||||||
|
end
|
||||||
socket.write(fd, response)
|
socket.write(fd, response)
|
||||||
elseif subcmd == "open" then
|
elseif subcmd == "open" then
|
||||||
skynet.error(string.format("socket accept from %s", msg))
|
skynet.error(string.format("socket accept from %s", msg))
|
||||||
@@ -62,7 +82,8 @@ function command.socket(source, subcmd, fd, msg)
|
|||||||
end
|
end
|
||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
skynet.dispatch("lua", function(_, source, cmd, ...)
|
loadconfig()
|
||||||
|
skynet.dispatch("lua", function(session , source, cmd, ...)
|
||||||
local f = assert(command[cmd])
|
local f = assert(command[cmd])
|
||||||
f(source, ...)
|
f(source, ...)
|
||||||
end)
|
end)
|
||||||
|
|||||||
125
service/cmaster.lua
Normal file
125
service/cmaster.lua
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local socket = require "socket"
|
||||||
|
|
||||||
|
--[[
|
||||||
|
master manage data :
|
||||||
|
1. all the slaves address : id -> ipaddr:port
|
||||||
|
2. all the global names : name -> address
|
||||||
|
|
||||||
|
master hold connections from slaves .
|
||||||
|
|
||||||
|
protocol slave->master :
|
||||||
|
package size 1 byte
|
||||||
|
type 1 byte :
|
||||||
|
'H' : HANDSHAKE, report slave id, and address.
|
||||||
|
'R' : REGISTER name address
|
||||||
|
'Q' : QUERY name
|
||||||
|
|
||||||
|
|
||||||
|
protocol master->slave:
|
||||||
|
package size 1 byte
|
||||||
|
type 1 byte :
|
||||||
|
'W' : WAIT n
|
||||||
|
'C' : CONNECT slave_id slave_address
|
||||||
|
'N' : NAME globalname address
|
||||||
|
'D' : DISCONNECT slave_id
|
||||||
|
]]
|
||||||
|
|
||||||
|
local slave_node = {}
|
||||||
|
local global_name = {}
|
||||||
|
|
||||||
|
local function read_package(fd)
|
||||||
|
local sz = socket.read(fd, 1)
|
||||||
|
assert(sz, "closed")
|
||||||
|
sz = string.byte(sz)
|
||||||
|
local content = socket.read(fd, sz)
|
||||||
|
return skynet.unpack(content)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function pack_package(...)
|
||||||
|
local message = skynet.packstring(...)
|
||||||
|
local size = #message
|
||||||
|
assert(size <= 255 , "too long")
|
||||||
|
return string.char(size) .. message
|
||||||
|
end
|
||||||
|
|
||||||
|
local function report_slave(fd, slave_id, slave_addr)
|
||||||
|
local message = pack_package("C", slave_id, slave_addr)
|
||||||
|
local n = 0
|
||||||
|
for k,v in pairs(slave_node) do
|
||||||
|
if v.fd ~= 0 then
|
||||||
|
socket.write(v.fd, message)
|
||||||
|
n = n + 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
socket.write(fd, pack_package("W", n))
|
||||||
|
end
|
||||||
|
|
||||||
|
local function handshake(fd)
|
||||||
|
local t, slave_id, slave_addr = read_package(fd)
|
||||||
|
assert(t=='H', "Invalid handshake type " .. t)
|
||||||
|
assert(slave_id ~= 0 , "Invalid slave id 0")
|
||||||
|
if slave_node[slave_id] then
|
||||||
|
error(string.format("Slave %d already register on %s", slave_id, slave_node[slave_id].addr))
|
||||||
|
end
|
||||||
|
report_slave(fd, slave_id, slave_addr)
|
||||||
|
slave_node[slave_id] = {
|
||||||
|
fd = fd,
|
||||||
|
id = slave_id,
|
||||||
|
addr = slave_addr,
|
||||||
|
}
|
||||||
|
return slave_id , slave_addr
|
||||||
|
end
|
||||||
|
|
||||||
|
local function dispatch_slave(fd)
|
||||||
|
local t, name, address = read_package(fd)
|
||||||
|
if t == 'R' then
|
||||||
|
-- register name
|
||||||
|
assert(type(address)=="number", "Invalid request")
|
||||||
|
if not global_name[name] then
|
||||||
|
global_name[name] = address
|
||||||
|
end
|
||||||
|
local message = pack_package("N", name, address)
|
||||||
|
for k,v in pairs(slave_node) do
|
||||||
|
socket.write(v.fd, message)
|
||||||
|
end
|
||||||
|
elseif t == 'Q' then
|
||||||
|
-- query name
|
||||||
|
local address = global_name[name]
|
||||||
|
if address then
|
||||||
|
socket.write(fd, pack_package("N", name, address))
|
||||||
|
end
|
||||||
|
else
|
||||||
|
skynet.error("Invalid slave message type " .. t)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function monitor_slave(slave_id, slave_address)
|
||||||
|
local fd = slave_node[slave_id].fd
|
||||||
|
skynet.error(string.format("Harbor %d (fd=%d) report %s", slave_id, fd, slave_address))
|
||||||
|
while pcall(dispatch_slave, fd) do end
|
||||||
|
skynet.error("slave " ..slave_id .. " is down")
|
||||||
|
local message = pack_package("D", slave_id)
|
||||||
|
slave_node[slave_id].fd = 0
|
||||||
|
for k,v in pairs(slave_node) do
|
||||||
|
socket.write(v.fd, message)
|
||||||
|
end
|
||||||
|
socket.close(fd)
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.start(function()
|
||||||
|
local master_addr = skynet.getenv "standalone"
|
||||||
|
skynet.error("master listen socket " .. tostring(master_addr))
|
||||||
|
local fd = socket.listen(master_addr)
|
||||||
|
socket.start(fd , function(id, addr)
|
||||||
|
skynet.error("connect from " .. addr .. " " .. id)
|
||||||
|
socket.start(id)
|
||||||
|
local ok, slave, slave_addr = pcall(handshake, id)
|
||||||
|
if ok then
|
||||||
|
skynet.fork(monitor_slave, slave, slave_addr)
|
||||||
|
else
|
||||||
|
skynet.error(string.format("disconnect fd = %d, error = %s", id, slave))
|
||||||
|
socket.close(id)
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
end)
|
||||||
222
service/cslave.lua
Normal file
222
service/cslave.lua
Normal file
@@ -0,0 +1,222 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local socket = require "socket"
|
||||||
|
|
||||||
|
local slaves = {}
|
||||||
|
local connect_queue = {}
|
||||||
|
local globalname = {}
|
||||||
|
local harbor = {}
|
||||||
|
local harbor_service
|
||||||
|
local monitor = {}
|
||||||
|
|
||||||
|
local function read_package(fd)
|
||||||
|
local sz = socket.read(fd, 1)
|
||||||
|
assert(sz, "closed")
|
||||||
|
sz = string.byte(sz)
|
||||||
|
local content = socket.read(fd, sz)
|
||||||
|
return skynet.unpack(content)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function pack_package(...)
|
||||||
|
local message = skynet.packstring(...)
|
||||||
|
local size = #message
|
||||||
|
assert(size <= 255 , "too long")
|
||||||
|
return string.char(size) .. message
|
||||||
|
end
|
||||||
|
|
||||||
|
local function monitor_clear(id)
|
||||||
|
local v = monitor[id]
|
||||||
|
if v then
|
||||||
|
monitor[id] = nil
|
||||||
|
for _, v in ipairs(v) do
|
||||||
|
skynet.redirect(v.address, 0, "response", v.session, "")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function connect_slave(slave_id, address)
|
||||||
|
local ok, err = pcall(function()
|
||||||
|
if slaves[slave_id] == nil then
|
||||||
|
local fd = assert(socket.open(address), "Can't connect to "..address)
|
||||||
|
skynet.error(string.format("Connect to harbor %d (fd=%d), %s", slave_id, fd, address))
|
||||||
|
slaves[slave_id] = fd
|
||||||
|
monitor_clear(slave_id)
|
||||||
|
socket.abandon(fd)
|
||||||
|
skynet.send(harbor_service, "harbor", string.format("S %d %d",fd,slave_id))
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
if not ok then
|
||||||
|
skynet.error(err)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function ready()
|
||||||
|
local queue = connect_queue
|
||||||
|
connect_queue = nil
|
||||||
|
for k,v in pairs(queue) do
|
||||||
|
connect_slave(k,v)
|
||||||
|
end
|
||||||
|
for name,address in pairs(globalname) do
|
||||||
|
skynet.redirect(harbor_service, address, "harbor", "N " .. name)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function monitor_master(master_fd)
|
||||||
|
while true do
|
||||||
|
local ok, t, id_name, address = pcall(read_package,master_fd)
|
||||||
|
if ok then
|
||||||
|
if t == 'C' then
|
||||||
|
if connect_queue then
|
||||||
|
connect_queue[id_name] = address
|
||||||
|
else
|
||||||
|
connect_slave(id_name, address)
|
||||||
|
end
|
||||||
|
elseif t == 'N' then
|
||||||
|
globalname[id_name] = address
|
||||||
|
if connect_queue == nil then
|
||||||
|
skynet.redirect(harbor_service, address, "harbor", 0, "N " .. id_name)
|
||||||
|
end
|
||||||
|
elseif t == 'D' then
|
||||||
|
local fd = slaves[id_name]
|
||||||
|
slaves[id_name] = false
|
||||||
|
if fd then
|
||||||
|
socket.close(fd)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
skynet.error("Master disconnect")
|
||||||
|
socket.close(master_fd)
|
||||||
|
break
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function accept_slave(fd)
|
||||||
|
socket.start(fd)
|
||||||
|
local id = socket.read(fd, 1)
|
||||||
|
if not id then
|
||||||
|
skynet.error(string.format("Connection (fd =%d) closed", fd))
|
||||||
|
socket.close(fd)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
id = string.byte(id)
|
||||||
|
if slaves[id] ~= nil then
|
||||||
|
skynet.error(string.format("Slave %d exist (fd =%d)", id, fd))
|
||||||
|
socket.close(fd)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
slaves[id] = fd
|
||||||
|
monitor_clear(id)
|
||||||
|
socket.abandon(fd)
|
||||||
|
skynet.error(string.format("Harbor %d connected (fd = %d)", id, fd))
|
||||||
|
skynet.send(harbor_service, "harbor", string.format("A %d %d", fd, id))
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.register_protocol {
|
||||||
|
name = "harbor",
|
||||||
|
id = skynet.PTYPE_HARBOR,
|
||||||
|
pack = function(...) return ... end,
|
||||||
|
unpack = skynet.tostring,
|
||||||
|
}
|
||||||
|
|
||||||
|
skynet.register_protocol {
|
||||||
|
name = "text",
|
||||||
|
id = skynet.PTYPE_TEXT,
|
||||||
|
pack = function(...) return ... end,
|
||||||
|
unpack = skynet.tostring,
|
||||||
|
}
|
||||||
|
|
||||||
|
local function monitor_harbor(master_fd)
|
||||||
|
return function(session, source, command)
|
||||||
|
local t = string.sub(command, 1, 1)
|
||||||
|
local arg = string.sub(command, 3)
|
||||||
|
if t == "Q" then
|
||||||
|
-- query name
|
||||||
|
if globalname[arg] then
|
||||||
|
skynet.redirect(harbor_service, globalname[arg], "harbor", 0, "N " .. arg)
|
||||||
|
else
|
||||||
|
socket.write(master_fd, pack_package("Q", arg))
|
||||||
|
end
|
||||||
|
elseif t == "D" then
|
||||||
|
-- harbor down
|
||||||
|
local id = tonumber(arg)
|
||||||
|
if slaves[id] then
|
||||||
|
monitor_clear(id)
|
||||||
|
end
|
||||||
|
slaves[id] = false
|
||||||
|
else
|
||||||
|
skynet.error("Unknown command ", command)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.REGISTER(_,_, fd, name, handle)
|
||||||
|
assert(globalname[name] == nil)
|
||||||
|
globalname[name] = handle
|
||||||
|
socket.write(fd, pack_package("R", name, handle))
|
||||||
|
skynet.redirect(harbor_service, handle, "harbor", 0, "N " .. name)
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.LINK(session, source, fd, id)
|
||||||
|
if slaves[id] then
|
||||||
|
if monitor[id] == nil then
|
||||||
|
monitor[id] = {}
|
||||||
|
end
|
||||||
|
table.insert(monitor[id], { address = source, session = session })
|
||||||
|
else
|
||||||
|
skynet.ret()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
function harbor.CONNECT(session, source, fd, id)
|
||||||
|
if not slaves[id] then
|
||||||
|
if monitor[id] == nil then
|
||||||
|
monitor[id] = {}
|
||||||
|
end
|
||||||
|
table.insert(monitor[id], { address = source, session = session })
|
||||||
|
else
|
||||||
|
skynet.ret()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.start(function()
|
||||||
|
local master_addr = skynet.getenv "master"
|
||||||
|
local harbor_id = tonumber(skynet.getenv "harbor")
|
||||||
|
local slave_address = assert(skynet.getenv "address")
|
||||||
|
local slave_fd = socket.listen(slave_address)
|
||||||
|
skynet.error("slave connect to master " .. tostring(master_addr))
|
||||||
|
local master_fd = socket.open(master_addr)
|
||||||
|
|
||||||
|
skynet.dispatch("lua", function (session,source,command,...)
|
||||||
|
local f = assert(harbor[command])
|
||||||
|
f(session, source, master_fd, ...)
|
||||||
|
end)
|
||||||
|
skynet.dispatch("text", monitor_harbor(master_fd))
|
||||||
|
|
||||||
|
harbor_service = assert(skynet.launch("harbor", harbor_id, skynet.self()))
|
||||||
|
|
||||||
|
local hs_message = pack_package("H", harbor_id, slave_address)
|
||||||
|
socket.write(master_fd, hs_message)
|
||||||
|
local t, n = read_package(master_fd)
|
||||||
|
assert(t == "W" and type(n) == "number", "slave shakehand failed")
|
||||||
|
skynet.error(string.format("Waiting for %d harbors", n))
|
||||||
|
skynet.fork(monitor_master, master_fd)
|
||||||
|
if n > 0 then
|
||||||
|
local co = coroutine.running()
|
||||||
|
socket.start(slave_fd, function(fd, addr)
|
||||||
|
skynet.error(string.format("New connection (fd = %d, %s)",fd, addr))
|
||||||
|
if pcall(accept_slave,fd) then
|
||||||
|
local s = 0
|
||||||
|
for k,v in pairs(slaves) do
|
||||||
|
s = s + 1
|
||||||
|
end
|
||||||
|
if s >= n then
|
||||||
|
skynet.wakeup(co)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
skynet.wait()
|
||||||
|
end
|
||||||
|
socket.close(slave_fd)
|
||||||
|
skynet.error("Shakehand ready")
|
||||||
|
skynet.fork(ready)
|
||||||
|
end)
|
||||||
@@ -2,6 +2,8 @@ local skynet = require "skynet"
|
|||||||
|
|
||||||
local command = {}
|
local command = {}
|
||||||
local database = {}
|
local database = {}
|
||||||
|
local wait_queue = {}
|
||||||
|
local mode = {}
|
||||||
|
|
||||||
local function query(db, key, ...)
|
local function query(db, key, ...)
|
||||||
if key == nil then
|
if key == nil then
|
||||||
@@ -22,7 +24,7 @@ local function update(db, key, value, ...)
|
|||||||
if select("#",...) == 0 then
|
if select("#",...) == 0 then
|
||||||
local ret = db[key]
|
local ret = db[key]
|
||||||
db[key] = value
|
db[key] = value
|
||||||
return ret
|
return ret, value
|
||||||
else
|
else
|
||||||
if db[key] == nil then
|
if db[key] == nil then
|
||||||
db[key] = {}
|
db[key] = {}
|
||||||
@@ -31,13 +33,82 @@ local function update(db, key, value, ...)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function wakeup(db, key1, key2, value, ...)
|
||||||
|
if key1 == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
local q = db[key1]
|
||||||
|
if q == nil then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if q[mode] == "queue" then
|
||||||
|
db[key1] = nil
|
||||||
|
if value then
|
||||||
|
-- throw error because can't wake up a branch
|
||||||
|
for _,v in ipairs(q) do
|
||||||
|
local session = v[1]
|
||||||
|
local source = v[2]
|
||||||
|
skynet.redirect(source, 0, "error", session, "")
|
||||||
|
end
|
||||||
|
else
|
||||||
|
return q
|
||||||
|
end
|
||||||
|
else
|
||||||
|
-- it's branch
|
||||||
|
return wakeup(q , key2, value, ...)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function command.UPDATE(...)
|
function command.UPDATE(...)
|
||||||
return update(database, ...)
|
local ret, value = update(database, ...)
|
||||||
|
if ret or value == nil then
|
||||||
|
return ret
|
||||||
|
end
|
||||||
|
local q = wakeup(wait_queue, ...)
|
||||||
|
if q then
|
||||||
|
for _, v in ipairs(q) do
|
||||||
|
local session = v[1]
|
||||||
|
local source = v[2]
|
||||||
|
skynet.redirect(source, 0, "response", session, skynet.pack(value))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
local function waitfor(session, source, db, key1, key2, ...)
|
||||||
|
if key2 == nil then
|
||||||
|
-- push queue
|
||||||
|
local q = db[key1]
|
||||||
|
if q == nil then
|
||||||
|
q = { [mode] = "queue" }
|
||||||
|
db[key1] = q
|
||||||
|
else
|
||||||
|
assert(q[mode] == "queue")
|
||||||
|
end
|
||||||
|
table.insert(q, { session, source })
|
||||||
|
else
|
||||||
|
local q = db[key1]
|
||||||
|
if q == nil then
|
||||||
|
q = { [mode] = "branch" }
|
||||||
|
db[key1] = q
|
||||||
|
else
|
||||||
|
assert(q[mode] == "branch")
|
||||||
|
end
|
||||||
|
return waitfor(session, source, q, key2, ...)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
skynet.dispatch("lua", function (_, source, cmd, ...)
|
skynet.dispatch("lua", function (session, source, cmd, ...)
|
||||||
local f = assert(command[cmd])
|
if cmd == "WAIT" then
|
||||||
skynet.ret(skynet.pack(f(...)))
|
local ret = command.QUERY(...)
|
||||||
|
if ret then
|
||||||
|
skynet.ret(skynet.pack(ret))
|
||||||
|
else
|
||||||
|
waitfor(session, source, wait_queue, ...)
|
||||||
|
end
|
||||||
|
else
|
||||||
|
local f = assert(command[cmd])
|
||||||
|
skynet.ret(skynet.pack(f(...)))
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ end
|
|||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
local listen_socket = socket.listen ("127.0.0.1", port)
|
local listen_socket = socket.listen ("127.0.0.1", port)
|
||||||
print("Start debug console at 127.0.0.1",port)
|
skynet.error("Start debug console at 127.0.0.1 " .. port)
|
||||||
socket.start(listen_socket , function(id, addr)
|
socket.start(listen_socket , function(id, addr)
|
||||||
local function print(...)
|
local function print(...)
|
||||||
local t = { ... }
|
local t = { ... }
|
||||||
@@ -113,6 +113,7 @@ function COMMAND.help()
|
|||||||
snax = "lanuch a new snax service",
|
snax = "lanuch a new snax service",
|
||||||
clearcache = "clear lua code cache",
|
clearcache = "clear lua code cache",
|
||||||
service = "List unique service",
|
service = "List unique service",
|
||||||
|
task = "task address : show service task detail",
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ local watchdog
|
|||||||
local maxclient
|
local maxclient
|
||||||
local client_number = 0
|
local client_number = 0
|
||||||
local CMD = setmetatable({}, { __gc = function() netpack.clear(queue) end })
|
local CMD = setmetatable({}, { __gc = function() netpack.clear(queue) end })
|
||||||
|
local nodelay = false
|
||||||
|
|
||||||
local connection = {} -- fd -> connection : { fd , client, agent , ip, mode }
|
local connection = {} -- fd -> connection : { fd , client, agent , ip, mode }
|
||||||
local forwarding = {} -- agent -> connection
|
local forwarding = {} -- agent -> connection
|
||||||
@@ -22,6 +23,13 @@ function CMD.open( source , conf )
|
|||||||
socketdriver.start(socket)
|
socketdriver.start(socket)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function CMD.nodelay(source, v)
|
||||||
|
if v ~= false then
|
||||||
|
v = true
|
||||||
|
end
|
||||||
|
nodelay = v
|
||||||
|
end
|
||||||
|
|
||||||
function CMD.close()
|
function CMD.close()
|
||||||
assert(socket)
|
assert(socket)
|
||||||
socketdriver.close(socket)
|
socketdriver.close(socket)
|
||||||
@@ -106,6 +114,9 @@ function MSG.open(fd, msg)
|
|||||||
}
|
}
|
||||||
connection[fd] = c
|
connection[fd] = c
|
||||||
client_number = client_number + 1
|
client_number = client_number + 1
|
||||||
|
if nodelay then
|
||||||
|
socketdriver.nodelay(fd)
|
||||||
|
end
|
||||||
skynet.send(watchdog, "lua", "socket", "open", fd, msg)
|
skynet.send(watchdog, "lua", "socket", "open", fd, msg)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -38,6 +38,16 @@ function command.INFO(_, _, handle)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function command.TASK(_, _, handle)
|
||||||
|
handle = handle_to_address(handle)
|
||||||
|
if services[handle] == nil then
|
||||||
|
return
|
||||||
|
else
|
||||||
|
local result = skynet.call(handle,"debug","TASK")
|
||||||
|
return result
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function command.KILL(_, _, handle)
|
function command.KILL(_, _, handle)
|
||||||
handle = handle_to_address(handle)
|
handle = handle_to_address(handle)
|
||||||
skynet.kill(handle)
|
skynet.kill(handle)
|
||||||
|
|||||||
@@ -176,7 +176,7 @@ skynet.start(function()
|
|||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
local handle = skynet.localname ".service"
|
local handle = skynet.localname ".service"
|
||||||
if handle ~= 0 then
|
if handle then
|
||||||
skynet.error(".service is already register by ", skynet.address(handle))
|
skynet.error(".service is already register by ", skynet.address(handle))
|
||||||
skynet.exit()
|
skynet.exit()
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -17,23 +17,6 @@ skynet_harbor_send(struct remote_message *rmsg, uint32_t source, int session) {
|
|||||||
skynet_context_send(REMOTE, rmsg, sizeof(*rmsg) , source, type , session);
|
skynet_context_send(REMOTE, rmsg, sizeof(*rmsg) , source, type , session);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
skynet_harbor_register(struct remote_name *rname) {
|
|
||||||
if (REMOTE == NULL)
|
|
||||||
return;
|
|
||||||
int i;
|
|
||||||
int number = 1;
|
|
||||||
for (i=0;i<GLOBALNAME_LENGTH;i++) {
|
|
||||||
char c = rname->name[i];
|
|
||||||
if (!(c >= '0' && c <='9')) {
|
|
||||||
number = 0;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
assert(number == 0);
|
|
||||||
skynet_context_send(REMOTE, rname, sizeof(*rname), 0, PTYPE_SYSTEM , 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
skynet_harbor_message_isremote(uint32_t handle) {
|
skynet_harbor_message_isremote(uint32_t handle) {
|
||||||
assert(HARBOR != ~0);
|
assert(HARBOR != ~0);
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ struct remote_message {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void skynet_harbor_send(struct remote_message *rmsg, uint32_t source, int session);
|
void skynet_harbor_send(struct remote_message *rmsg, uint32_t source, int session);
|
||||||
void skynet_harbor_register(struct remote_name *rname);
|
|
||||||
int skynet_harbor_message_isremote(uint32_t handle);
|
int skynet_harbor_message_isremote(uint32_t handle);
|
||||||
void skynet_harbor_init(int harbor);
|
void skynet_harbor_init(int harbor);
|
||||||
void skynet_harbor_start(void * ctx);
|
void skynet_harbor_start(void * ctx);
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ struct skynet_config {
|
|||||||
const char * daemon;
|
const char * daemon;
|
||||||
const char * module_path;
|
const char * module_path;
|
||||||
const char * bootstrap;
|
const char * bootstrap;
|
||||||
|
const char * logger;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define THREAD_WORKER 0
|
#define THREAD_WORKER 0
|
||||||
|
|||||||
@@ -115,6 +115,7 @@ main(int argc, char *argv[]) {
|
|||||||
config.harbor = optint("harbor", 1);
|
config.harbor = optint("harbor", 1);
|
||||||
config.bootstrap = optstring("bootstrap","snlua bootstrap");
|
config.bootstrap = optstring("bootstrap","snlua bootstrap");
|
||||||
config.daemon = optstring("daemon", NULL);
|
config.daemon = optstring("daemon", NULL);
|
||||||
|
config.logger = optstring("logger", NULL);
|
||||||
|
|
||||||
lua_close(L);
|
lua_close(L);
|
||||||
|
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ struct skynet_context {
|
|||||||
|
|
||||||
struct skynet_node {
|
struct skynet_node {
|
||||||
int total;
|
int total;
|
||||||
|
int init;
|
||||||
uint32_t monitor_exit;
|
uint32_t monitor_exit;
|
||||||
pthread_key_t handle_key;
|
pthread_key_t handle_key;
|
||||||
};
|
};
|
||||||
@@ -75,8 +76,13 @@ context_dec() {
|
|||||||
|
|
||||||
uint32_t
|
uint32_t
|
||||||
skynet_current_handle(void) {
|
skynet_current_handle(void) {
|
||||||
void * handle = pthread_getspecific(G_NODE.handle_key);
|
if (G_NODE.init) {
|
||||||
return (uint32_t)(uintptr_t)handle;
|
void * handle = pthread_getspecific(G_NODE.handle_key);
|
||||||
|
return (uint32_t)(uintptr_t)handle;
|
||||||
|
} else {
|
||||||
|
uintptr_t v = (uint32_t)(-THREAD_MAIN);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@@ -228,8 +234,18 @@ _dispatch_message(struct skynet_context *ctx, struct skynet_message *msg) {
|
|||||||
CHECKCALLING_END(ctx)
|
CHECKCALLING_END(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
skynet_context_dispatchall(struct skynet_context * ctx) {
|
||||||
|
// for skynet_error
|
||||||
|
struct skynet_message msg;
|
||||||
|
struct message_queue *q = ctx->queue;
|
||||||
|
while (!skynet_mq_pop(q,&msg)) {
|
||||||
|
_dispatch_message(ctx, &msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct message_queue *
|
struct message_queue *
|
||||||
skynet_context_message_dispatch(struct skynet_monitor *sm, struct message_queue *q) {
|
skynet_context_message_dispatch(struct skynet_monitor *sm, struct message_queue *q, int weight) {
|
||||||
if (q == NULL) {
|
if (q == NULL) {
|
||||||
q = skynet_globalmq_pop();
|
q = skynet_globalmq_pop();
|
||||||
if (q==NULL)
|
if (q==NULL)
|
||||||
@@ -245,18 +261,27 @@ skynet_context_message_dispatch(struct skynet_monitor *sm, struct message_queue
|
|||||||
return skynet_globalmq_pop();
|
return skynet_globalmq_pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int i,n=1;
|
||||||
struct skynet_message msg;
|
struct skynet_message msg;
|
||||||
if (skynet_mq_pop(q,&msg)) {
|
|
||||||
skynet_context_release(ctx);
|
|
||||||
return skynet_globalmq_pop();
|
|
||||||
}
|
|
||||||
|
|
||||||
skynet_monitor_trigger(sm, msg.source , handle);
|
for (i=0;i<n;i++) {
|
||||||
|
if (skynet_mq_pop(q,&msg)) {
|
||||||
|
skynet_context_release(ctx);
|
||||||
|
return skynet_globalmq_pop();
|
||||||
|
} else if (i==0 && weight >= 0) {
|
||||||
|
n = skynet_mq_length(q);
|
||||||
|
n >>= weight;
|
||||||
|
}
|
||||||
|
|
||||||
if (ctx->cb == NULL) {
|
skynet_monitor_trigger(sm, msg.source , handle);
|
||||||
skynet_free(msg.data);
|
|
||||||
} else {
|
if (ctx->cb == NULL) {
|
||||||
_dispatch_message(ctx, &msg);
|
skynet_free(msg.data);
|
||||||
|
} else {
|
||||||
|
_dispatch_message(ctx, &msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
skynet_monitor_trigger(sm, 0,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(q == ctx->queue);
|
assert(q == ctx->queue);
|
||||||
@@ -269,8 +294,6 @@ skynet_context_message_dispatch(struct skynet_monitor *sm, struct message_queue
|
|||||||
}
|
}
|
||||||
skynet_context_release(ctx);
|
skynet_context_release(ctx);
|
||||||
|
|
||||||
skynet_monitor_trigger(sm, 0,0);
|
|
||||||
|
|
||||||
return q;
|
return q;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -336,11 +359,7 @@ cmd_reg(struct skynet_context * context, const char * param) {
|
|||||||
} else if (param[0] == '.') {
|
} else if (param[0] == '.') {
|
||||||
return skynet_handle_namehandle(context->handle, param + 1);
|
return skynet_handle_namehandle(context->handle, param + 1);
|
||||||
} else {
|
} else {
|
||||||
assert(context->handle!=0);
|
skynet_error(context, "Can't register global name %s in C", param);
|
||||||
struct remote_name *rname = skynet_malloc(sizeof(*rname));
|
|
||||||
copy_name(rname->name, param);
|
|
||||||
rname->handle = context->handle;
|
|
||||||
skynet_harbor_register(rname);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -349,8 +368,10 @@ static const char *
|
|||||||
cmd_query(struct skynet_context * context, const char * param) {
|
cmd_query(struct skynet_context * context, const char * param) {
|
||||||
if (param[0] == '.') {
|
if (param[0] == '.') {
|
||||||
uint32_t handle = skynet_handle_findname(param+1);
|
uint32_t handle = skynet_handle_findname(param+1);
|
||||||
sprintf(context->result, ":%x", handle);
|
if (handle) {
|
||||||
return context->result;
|
sprintf(context->result, ":%x", handle);
|
||||||
|
return context->result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -371,10 +392,7 @@ cmd_name(struct skynet_context * context, const char * param) {
|
|||||||
if (name[0] == '.') {
|
if (name[0] == '.') {
|
||||||
return skynet_handle_namehandle(handle_id, name + 1);
|
return skynet_handle_namehandle(handle_id, name + 1);
|
||||||
} else {
|
} else {
|
||||||
struct remote_name *rname = skynet_malloc(sizeof(*rname));
|
skynet_error(context, "Can't set global name %s in C", name);
|
||||||
copy_name(rname->name, name);
|
|
||||||
rname->handle = handle_id;
|
|
||||||
skynet_harbor_register(rname);
|
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -553,12 +571,16 @@ _filter_args(struct skynet_context * context, int type, int *session, void ** da
|
|||||||
*data = msg;
|
*data = msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert((*sz & HANDLE_MASK) == *sz);
|
|
||||||
*sz |= type << HANDLE_REMOTE_SHIFT;
|
*sz |= type << HANDLE_REMOTE_SHIFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
skynet_send(struct skynet_context * context, uint32_t source, uint32_t destination , int type, int session, void * data, size_t sz) {
|
skynet_send(struct skynet_context * context, uint32_t source, uint32_t destination , int type, int session, void * data, size_t sz) {
|
||||||
|
if ((sz & HANDLE_MASK) != sz) {
|
||||||
|
skynet_error(context, "The message to %x is too large (sz = %lu)", destination, sz);
|
||||||
|
skynet_free(data);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
_filter_args(context, type, &session, (void **)&data, &sz);
|
_filter_args(context, type, &session, (void **)&data, &sz);
|
||||||
|
|
||||||
if (source == 0) {
|
if (source == 0) {
|
||||||
@@ -650,6 +672,7 @@ void
|
|||||||
skynet_globalinit(void) {
|
skynet_globalinit(void) {
|
||||||
G_NODE.total = 0;
|
G_NODE.total = 0;
|
||||||
G_NODE.monitor_exit = 0;
|
G_NODE.monitor_exit = 0;
|
||||||
|
G_NODE.init = 1;
|
||||||
if (pthread_key_create(&G_NODE.handle_key, NULL)) {
|
if (pthread_key_create(&G_NODE.handle_key, NULL)) {
|
||||||
fprintf(stderr, "pthread_key_create failed");
|
fprintf(stderr, "pthread_key_create failed");
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|||||||
@@ -16,8 +16,9 @@ void skynet_context_init(struct skynet_context *, uint32_t handle);
|
|||||||
int skynet_context_push(uint32_t handle, struct skynet_message *message);
|
int skynet_context_push(uint32_t handle, struct skynet_message *message);
|
||||||
void skynet_context_send(struct skynet_context * context, void * msg, size_t sz, uint32_t source, int type, int session);
|
void skynet_context_send(struct skynet_context * context, void * msg, size_t sz, uint32_t source, int type, int session);
|
||||||
int skynet_context_newsession(struct skynet_context *);
|
int skynet_context_newsession(struct skynet_context *);
|
||||||
struct message_queue * skynet_context_message_dispatch(struct skynet_monitor *, struct message_queue *); // return next queue
|
struct message_queue * skynet_context_message_dispatch(struct skynet_monitor *, struct message_queue *, int weight); // return next queue
|
||||||
int skynet_context_total();
|
int skynet_context_total();
|
||||||
|
void skynet_context_dispatchall(struct skynet_context * context); // for skynet_error output before exit
|
||||||
|
|
||||||
void skynet_context_endless(uint32_t handle); // for monitor
|
void skynet_context_endless(uint32_t handle); // for monitor
|
||||||
|
|
||||||
|
|||||||
@@ -133,12 +133,6 @@ skynet_socket_connect(struct skynet_context *ctx, const char *host, int port) {
|
|||||||
return socket_server_connect(SOCKET_SERVER, source, host, port);
|
return socket_server_connect(SOCKET_SERVER, source, host, port);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
|
||||||
skynet_socket_block_connect(struct skynet_context *ctx, const char *host, int port) {
|
|
||||||
uint32_t source = skynet_context_handle(ctx);
|
|
||||||
return socket_server_block_connect(SOCKET_SERVER, source, host, port);
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
skynet_socket_bind(struct skynet_context *ctx, int fd) {
|
skynet_socket_bind(struct skynet_context *ctx, int fd) {
|
||||||
uint32_t source = skynet_context_handle(ctx);
|
uint32_t source = skynet_context_handle(ctx);
|
||||||
@@ -156,3 +150,8 @@ skynet_socket_start(struct skynet_context *ctx, int id) {
|
|||||||
uint32_t source = skynet_context_handle(ctx);
|
uint32_t source = skynet_context_handle(ctx);
|
||||||
socket_server_start(SOCKET_SERVER, source, id);
|
socket_server_start(SOCKET_SERVER, source, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
skynet_socket_nodelay(struct skynet_context *ctx, int id) {
|
||||||
|
socket_server_nodelay(SOCKET_SERVER, id);
|
||||||
|
}
|
||||||
|
|||||||
@@ -25,9 +25,9 @@ int skynet_socket_send(struct skynet_context *ctx, int id, void *buffer, int sz)
|
|||||||
void skynet_socket_send_lowpriority(struct skynet_context *ctx, int id, void *buffer, int sz);
|
void skynet_socket_send_lowpriority(struct skynet_context *ctx, int id, void *buffer, int sz);
|
||||||
int skynet_socket_listen(struct skynet_context *ctx, const char *host, int port, int backlog);
|
int skynet_socket_listen(struct skynet_context *ctx, const char *host, int port, int backlog);
|
||||||
int skynet_socket_connect(struct skynet_context *ctx, const char *host, int port);
|
int skynet_socket_connect(struct skynet_context *ctx, const char *host, int port);
|
||||||
int skynet_socket_block_connect(struct skynet_context *ctx, const char *host, int port);
|
|
||||||
int skynet_socket_bind(struct skynet_context *ctx, int fd);
|
int skynet_socket_bind(struct skynet_context *ctx, int fd);
|
||||||
void skynet_socket_close(struct skynet_context *ctx, int id);
|
void skynet_socket_close(struct skynet_context *ctx, int id);
|
||||||
void skynet_socket_start(struct skynet_context *ctx, int id);
|
void skynet_socket_start(struct skynet_context *ctx, int id);
|
||||||
|
void skynet_socket_nodelay(struct skynet_context *ctx, int id);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ struct monitor {
|
|||||||
struct worker_parm {
|
struct worker_parm {
|
||||||
struct monitor *m;
|
struct monitor *m;
|
||||||
int id;
|
int id;
|
||||||
|
int weight;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define CHECK_ABORT if (skynet_context_total()==0) break;
|
#define CHECK_ABORT if (skynet_context_total()==0) break;
|
||||||
@@ -118,12 +119,13 @@ static void *
|
|||||||
_worker(void *p) {
|
_worker(void *p) {
|
||||||
struct worker_parm *wp = p;
|
struct worker_parm *wp = p;
|
||||||
int id = wp->id;
|
int id = wp->id;
|
||||||
|
int weight = wp->weight;
|
||||||
struct monitor *m = wp->m;
|
struct monitor *m = wp->m;
|
||||||
struct skynet_monitor *sm = m->m[id];
|
struct skynet_monitor *sm = m->m[id];
|
||||||
skynet_initthread(THREAD_WORKER);
|
skynet_initthread(THREAD_WORKER);
|
||||||
struct message_queue * q = NULL;
|
struct message_queue * q = NULL;
|
||||||
for (;;) {
|
for (;;) {
|
||||||
q = skynet_context_message_dispatch(sm, q);
|
q = skynet_context_message_dispatch(sm, q, weight);
|
||||||
if (q == NULL) {
|
if (q == NULL) {
|
||||||
CHECK_ABORT
|
CHECK_ABORT
|
||||||
if (pthread_mutex_lock(&m->mutex) == 0) {
|
if (pthread_mutex_lock(&m->mutex) == 0) {
|
||||||
@@ -169,10 +171,20 @@ _start(int thread) {
|
|||||||
create_thread(&pid[1], _timer, m);
|
create_thread(&pid[1], _timer, m);
|
||||||
create_thread(&pid[2], _socket, m);
|
create_thread(&pid[2], _socket, m);
|
||||||
|
|
||||||
|
static int weight[] = {
|
||||||
|
-1, -1, -1, -1, 0, 0, 0, 0,
|
||||||
|
1, 1, 1, 1, 1, 1, 1, 1,
|
||||||
|
2, 2, 2, 2, 2, 2, 2, 2,
|
||||||
|
3, 3, 3, 3, 3, 3, 3, 3, };
|
||||||
struct worker_parm wp[thread];
|
struct worker_parm wp[thread];
|
||||||
for (i=0;i<thread;i++) {
|
for (i=0;i<thread;i++) {
|
||||||
wp[i].m = m;
|
wp[i].m = m;
|
||||||
wp[i].id = i;
|
wp[i].id = i;
|
||||||
|
if (i < sizeof(weight)/sizeof(weight[0])) {
|
||||||
|
wp[i].weight= weight[i];
|
||||||
|
} else {
|
||||||
|
wp[i].weight = 0;
|
||||||
|
}
|
||||||
create_thread(&pid[i+3], _worker, &wp[i]);
|
create_thread(&pid[i+3], _worker, &wp[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,7 +196,7 @@ _start(int thread) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
bootstrap(const char * cmdline) {
|
bootstrap(struct skynet_context * logger, const char * cmdline) {
|
||||||
int sz = strlen(cmdline);
|
int sz = strlen(cmdline);
|
||||||
char name[sz+1];
|
char name[sz+1];
|
||||||
char args[sz+1];
|
char args[sz+1];
|
||||||
@@ -192,6 +204,7 @@ bootstrap(const char * cmdline) {
|
|||||||
struct skynet_context *ctx = skynet_context_new(name, args);
|
struct skynet_context *ctx = skynet_context_new(name, args);
|
||||||
if (ctx == NULL) {
|
if (ctx == NULL) {
|
||||||
skynet_error(NULL, "Bootstrap error : %s\n", cmdline);
|
skynet_error(NULL, "Bootstrap error : %s\n", cmdline);
|
||||||
|
skynet_context_dispatchall(logger);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -210,7 +223,13 @@ skynet_start(struct skynet_config * config) {
|
|||||||
skynet_timer_init();
|
skynet_timer_init();
|
||||||
skynet_socket_init();
|
skynet_socket_init();
|
||||||
|
|
||||||
bootstrap(config->bootstrap);
|
struct skynet_context *ctx = skynet_context_new("logger", config->logger);
|
||||||
|
if (ctx == NULL) {
|
||||||
|
fprintf(stderr, "Can't launch logger service\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
bootstrap(ctx, config->bootstrap);
|
||||||
|
|
||||||
_start(config->thread);
|
_start(config->thread);
|
||||||
skynet_socket_free();
|
skynet_socket_free();
|
||||||
|
|||||||
@@ -48,6 +48,8 @@ struct timer {
|
|||||||
int time;
|
int time;
|
||||||
uint32_t current;
|
uint32_t current;
|
||||||
uint32_t starttime;
|
uint32_t starttime;
|
||||||
|
uint64_t current_point;
|
||||||
|
uint64_t origin_point;
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct timer * TI = NULL;
|
static struct timer * TI = NULL;
|
||||||
@@ -218,18 +220,41 @@ skynet_timeout(uint32_t handle, int time, int session) {
|
|||||||
return session;
|
return session;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t
|
// centisecond: 1/100 second
|
||||||
_gettime(void) {
|
static void
|
||||||
uint32_t t;
|
systime(uint32_t *sec, uint32_t *cs) {
|
||||||
#if !defined(__APPLE__)
|
#if !defined(__APPLE__)
|
||||||
struct timespec ti;
|
struct timespec ti;
|
||||||
clock_gettime(CLOCK_MONOTONIC, &ti);
|
clock_gettime(CLOCK_REALTIME, &ti);
|
||||||
t = (uint32_t)(ti.tv_sec & 0xffffff) * 100;
|
*sec = (uint32_t)ti.tv_sec;
|
||||||
|
*cs = (uint32_t)(ti.tv_nsec / 10000000);
|
||||||
|
#else
|
||||||
|
struct timeval tv;
|
||||||
|
gettimeofday(&tv, NULL);
|
||||||
|
*sec = tv.tv_sec;
|
||||||
|
*cs = tv.tv_usec / 10000;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint64_t
|
||||||
|
gettime() {
|
||||||
|
uint64_t t;
|
||||||
|
#if !defined(__APPLE__)
|
||||||
|
|
||||||
|
#ifdef CLOCK_MONOTONIC_RAW
|
||||||
|
#define CLOCK_TIMER CLOCK_MONOTONIC_RAW
|
||||||
|
#else
|
||||||
|
#define CLOCK_TIMER CLOCK_MONOTONIC
|
||||||
|
#endif
|
||||||
|
|
||||||
|
struct timespec ti;
|
||||||
|
clock_gettime(CLOCK_TIMER, &ti);
|
||||||
|
t = (uint64_t)ti.tv_sec * 100;
|
||||||
t += ti.tv_nsec / 10000000;
|
t += ti.tv_nsec / 10000000;
|
||||||
#else
|
#else
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
gettimeofday(&tv, NULL);
|
gettimeofday(&tv, NULL);
|
||||||
t = (uint32_t)(tv.tv_sec & 0xffffff) * 100;
|
t = (uint64_t)tv.tv_sec * 100;
|
||||||
t += tv.tv_usec / 10000;
|
t += tv.tv_usec / 10000;
|
||||||
#endif
|
#endif
|
||||||
return t;
|
return t;
|
||||||
@@ -237,10 +262,19 @@ _gettime(void) {
|
|||||||
|
|
||||||
void
|
void
|
||||||
skynet_updatetime(void) {
|
skynet_updatetime(void) {
|
||||||
uint32_t ct = _gettime();
|
uint64_t cp = gettime();
|
||||||
if (ct != TI->current) {
|
if(cp < TI->current_point) {
|
||||||
int diff = ct>=TI->current?ct-TI->current:(0xffffff+1)*100-TI->current+ct;
|
skynet_error(NULL, "time diff error: change from %lld to %lld", cp, TI->current_point);
|
||||||
TI->current = ct;
|
} else if (cp != TI->current_point) {
|
||||||
|
uint32_t diff = (uint32_t)(cp - TI->current_point);
|
||||||
|
TI->current_point = cp;
|
||||||
|
|
||||||
|
uint32_t oc = TI->current;
|
||||||
|
TI->current += diff;
|
||||||
|
if (TI->current < oc) {
|
||||||
|
// when cs > 0xffffffff(about 497 days), time rewind
|
||||||
|
TI->starttime += 0xffffffff / 100;
|
||||||
|
}
|
||||||
int i;
|
int i;
|
||||||
for (i=0;i<diff;i++) {
|
for (i=0;i<diff;i++) {
|
||||||
timer_update(TI);
|
timer_update(TI);
|
||||||
@@ -261,18 +295,9 @@ skynet_gettime(void) {
|
|||||||
void
|
void
|
||||||
skynet_timer_init(void) {
|
skynet_timer_init(void) {
|
||||||
TI = timer_create_timer();
|
TI = timer_create_timer();
|
||||||
TI->current = _gettime();
|
systime(&TI->starttime, &TI->current);
|
||||||
|
uint64_t point = gettime();
|
||||||
#if !defined(__APPLE__)
|
TI->current_point = point;
|
||||||
struct timespec ti;
|
TI->origin_point = point;
|
||||||
clock_gettime(CLOCK_REALTIME, &ti);
|
|
||||||
uint32_t sec = (uint32_t)ti.tv_sec;
|
|
||||||
#else
|
|
||||||
struct timeval tv;
|
|
||||||
gettimeofday(&tv, NULL);
|
|
||||||
uint32_t sec = (uint32_t)tv.tv_sec;
|
|
||||||
#endif
|
|
||||||
uint32_t mono = _gettime() / 100;
|
|
||||||
|
|
||||||
TI->starttime = sec - mono;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
|
#include <netinet/tcp.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@@ -34,6 +35,8 @@
|
|||||||
#define PRIORITY_HIGH 0
|
#define PRIORITY_HIGH 0
|
||||||
#define PRIORITY_LOW 1
|
#define PRIORITY_LOW 1
|
||||||
|
|
||||||
|
#define HASH_ID(id) (((unsigned)id) % MAX_SOCKET)
|
||||||
|
|
||||||
struct write_buffer {
|
struct write_buffer {
|
||||||
struct write_buffer * next;
|
struct write_buffer * next;
|
||||||
char *ptr;
|
char *ptr;
|
||||||
@@ -107,6 +110,12 @@ struct request_start {
|
|||||||
uintptr_t opaque;
|
uintptr_t opaque;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct request_setopt {
|
||||||
|
int id;
|
||||||
|
int what;
|
||||||
|
int value;
|
||||||
|
};
|
||||||
|
|
||||||
struct request_package {
|
struct request_package {
|
||||||
uint8_t header[8]; // 6 bytes dummy
|
uint8_t header[8]; // 6 bytes dummy
|
||||||
union {
|
union {
|
||||||
@@ -117,6 +126,7 @@ struct request_package {
|
|||||||
struct request_listen listen;
|
struct request_listen listen;
|
||||||
struct request_bind bind;
|
struct request_bind bind;
|
||||||
struct request_start start;
|
struct request_start start;
|
||||||
|
struct request_setopt setopt;
|
||||||
} u;
|
} u;
|
||||||
uint8_t dummy[256];
|
uint8_t dummy[256];
|
||||||
};
|
};
|
||||||
@@ -144,9 +154,11 @@ reserve_id(struct socket_server *ss) {
|
|||||||
if (id < 0) {
|
if (id < 0) {
|
||||||
id = __sync_and_and_fetch(&(ss->alloc_id), 0x7fffffff);
|
id = __sync_and_and_fetch(&(ss->alloc_id), 0x7fffffff);
|
||||||
}
|
}
|
||||||
struct socket *s = &ss->slot[id % MAX_SOCKET];
|
struct socket *s = &ss->slot[HASH_ID(id)];
|
||||||
if (s->type == SOCKET_TYPE_INVALID) {
|
if (s->type == SOCKET_TYPE_INVALID) {
|
||||||
if (__sync_bool_compare_and_swap(&s->type, SOCKET_TYPE_INVALID, SOCKET_TYPE_RESERVE)) {
|
if (__sync_bool_compare_and_swap(&s->type, SOCKET_TYPE_INVALID, SOCKET_TYPE_RESERVE)) {
|
||||||
|
s->id = id;
|
||||||
|
s->fd = -1;
|
||||||
return id;
|
return id;
|
||||||
} else {
|
} else {
|
||||||
// retry
|
// retry
|
||||||
@@ -265,7 +277,7 @@ check_wb_list(struct wb_list *s) {
|
|||||||
|
|
||||||
static struct socket *
|
static struct socket *
|
||||||
new_fd(struct socket_server *ss, int id, int fd, uintptr_t opaque, bool add) {
|
new_fd(struct socket_server *ss, int id, int fd, uintptr_t opaque, bool add) {
|
||||||
struct socket * s = &ss->slot[id % MAX_SOCKET];
|
struct socket * s = &ss->slot[HASH_ID(id)];
|
||||||
assert(s->type == SOCKET_TYPE_RESERVE);
|
assert(s->type == SOCKET_TYPE_RESERVE);
|
||||||
|
|
||||||
if (add) {
|
if (add) {
|
||||||
@@ -287,7 +299,7 @@ new_fd(struct socket_server *ss, int id, int fd, uintptr_t opaque, bool add) {
|
|||||||
|
|
||||||
// return -1 when connecting
|
// return -1 when connecting
|
||||||
static int
|
static int
|
||||||
open_socket(struct socket_server *ss, struct request_open * request, struct socket_message *result, bool blocking) {
|
open_socket(struct socket_server *ss, struct request_open * request, struct socket_message *result) {
|
||||||
int id = request->id;
|
int id = request->id;
|
||||||
result->opaque = request->opaque;
|
result->opaque = request->opaque;
|
||||||
result->id = id;
|
result->id = id;
|
||||||
@@ -316,18 +328,14 @@ open_socket(struct socket_server *ss, struct request_open * request, struct sock
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
socket_keepalive(sock);
|
socket_keepalive(sock);
|
||||||
if (!blocking) {
|
sp_nonblocking(sock);
|
||||||
sp_nonblocking(sock);
|
|
||||||
}
|
|
||||||
status = connect( sock, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
|
status = connect( sock, ai_ptr->ai_addr, ai_ptr->ai_addrlen);
|
||||||
if ( status != 0 && errno != EINPROGRESS) {
|
if ( status != 0 && errno != EINPROGRESS) {
|
||||||
close(sock);
|
close(sock);
|
||||||
sock = -1;
|
sock = -1;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (blocking) {
|
sp_nonblocking(sock);
|
||||||
sp_nonblocking(sock);
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -359,7 +367,7 @@ open_socket(struct socket_server *ss, struct request_open * request, struct sock
|
|||||||
return -1;
|
return -1;
|
||||||
_failed:
|
_failed:
|
||||||
freeaddrinfo( ai_list );
|
freeaddrinfo( ai_list );
|
||||||
ss->slot[id % MAX_SOCKET].type = SOCKET_TYPE_INVALID;
|
ss->slot[HASH_ID(id)].type = SOCKET_TYPE_INVALID;
|
||||||
return SOCKET_ERROR;
|
return SOCKET_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -504,7 +512,7 @@ send_buffer_empty(struct socket *s) {
|
|||||||
static int
|
static int
|
||||||
send_socket(struct socket_server *ss, struct request_send * request, struct socket_message *result, int priority) {
|
send_socket(struct socket_server *ss, struct request_send * request, struct socket_message *result, int priority) {
|
||||||
int id = request->id;
|
int id = request->id;
|
||||||
struct socket * s = &ss->slot[id % MAX_SOCKET];
|
struct socket * s = &ss->slot[HASH_ID(id)];
|
||||||
if (s->type == SOCKET_TYPE_INVALID || s->id != id
|
if (s->type == SOCKET_TYPE_INVALID || s->id != id
|
||||||
|| s->type == SOCKET_TYPE_HALFCLOSE
|
|| s->type == SOCKET_TYPE_HALFCLOSE
|
||||||
|| s->type == SOCKET_TYPE_PACCEPT) {
|
|| s->type == SOCKET_TYPE_PACCEPT) {
|
||||||
@@ -512,7 +520,7 @@ send_socket(struct socket_server *ss, struct request_send * request, struct sock
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
assert(s->type != SOCKET_TYPE_PLISTEN && s->type != SOCKET_TYPE_LISTEN);
|
assert(s->type != SOCKET_TYPE_PLISTEN && s->type != SOCKET_TYPE_LISTEN);
|
||||||
if (send_buffer_empty(s)) {
|
if (send_buffer_empty(s) && s->type == SOCKET_TYPE_CONNECTED) {
|
||||||
int n = write(s->fd, request->buffer, request->sz);
|
int n = write(s->fd, request->buffer, request->sz);
|
||||||
if (n<0) {
|
if (n<0) {
|
||||||
switch(errno) {
|
switch(errno) {
|
||||||
@@ -558,7 +566,7 @@ _failed:
|
|||||||
result->id = id;
|
result->id = id;
|
||||||
result->ud = 0;
|
result->ud = 0;
|
||||||
result->data = NULL;
|
result->data = NULL;
|
||||||
ss->slot[id % MAX_SOCKET].type = SOCKET_TYPE_INVALID;
|
ss->slot[HASH_ID(id)].type = SOCKET_TYPE_INVALID;
|
||||||
|
|
||||||
return SOCKET_ERROR;
|
return SOCKET_ERROR;
|
||||||
}
|
}
|
||||||
@@ -566,7 +574,7 @@ _failed:
|
|||||||
static int
|
static int
|
||||||
close_socket(struct socket_server *ss, struct request_close *request, struct socket_message *result) {
|
close_socket(struct socket_server *ss, struct request_close *request, struct socket_message *result) {
|
||||||
int id = request->id;
|
int id = request->id;
|
||||||
struct socket * s = &ss->slot[id % MAX_SOCKET];
|
struct socket * s = &ss->slot[HASH_ID(id)];
|
||||||
if (s->type == SOCKET_TYPE_INVALID || s->id != id) {
|
if (s->type == SOCKET_TYPE_INVALID || s->id != id) {
|
||||||
result->id = id;
|
result->id = id;
|
||||||
result->opaque = request->opaque;
|
result->opaque = request->opaque;
|
||||||
@@ -614,7 +622,7 @@ start_socket(struct socket_server *ss, struct request_start *request, struct soc
|
|||||||
result->opaque = request->opaque;
|
result->opaque = request->opaque;
|
||||||
result->ud = 0;
|
result->ud = 0;
|
||||||
result->data = NULL;
|
result->data = NULL;
|
||||||
struct socket *s = &ss->slot[id % MAX_SOCKET];
|
struct socket *s = &ss->slot[HASH_ID(id)];
|
||||||
if (s->type == SOCKET_TYPE_INVALID || s->id !=id) {
|
if (s->type == SOCKET_TYPE_INVALID || s->id !=id) {
|
||||||
return SOCKET_ERROR;
|
return SOCKET_ERROR;
|
||||||
}
|
}
|
||||||
@@ -635,6 +643,17 @@ start_socket(struct socket_server *ss, struct request_start *request, struct soc
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
setopt_socket(struct socket_server *ss, struct request_setopt *request) {
|
||||||
|
int id = request->id;
|
||||||
|
struct socket *s = &ss->slot[HASH_ID(id)];
|
||||||
|
if (s->type == SOCKET_TYPE_INVALID || s->id !=id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
int v = request->value;
|
||||||
|
setsockopt(s->fd, IPPROTO_TCP, request->what, &v, sizeof(v));
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
block_readpipe(int pipefd, void *buffer, int sz) {
|
block_readpipe(int pipefd, void *buffer, int sz) {
|
||||||
for (;;) {
|
for (;;) {
|
||||||
@@ -687,7 +706,7 @@ ctrl_cmd(struct socket_server *ss, struct socket_message *result) {
|
|||||||
case 'K':
|
case 'K':
|
||||||
return close_socket(ss,(struct request_close *)buffer, result);
|
return close_socket(ss,(struct request_close *)buffer, result);
|
||||||
case 'O':
|
case 'O':
|
||||||
return open_socket(ss, (struct request_open *)buffer, result, false);
|
return open_socket(ss, (struct request_open *)buffer, result);
|
||||||
case 'X':
|
case 'X':
|
||||||
result->opaque = 0;
|
result->opaque = 0;
|
||||||
result->id = 0;
|
result->id = 0;
|
||||||
@@ -698,6 +717,9 @@ ctrl_cmd(struct socket_server *ss, struct socket_message *result) {
|
|||||||
return send_socket(ss, (struct request_send *)buffer, result, PRIORITY_HIGH);
|
return send_socket(ss, (struct request_send *)buffer, result, PRIORITY_HIGH);
|
||||||
case 'P':
|
case 'P':
|
||||||
return send_socket(ss, (struct request_send *)buffer, result, PRIORITY_LOW);
|
return send_socket(ss, (struct request_send *)buffer, result, PRIORITY_LOW);
|
||||||
|
case 'T':
|
||||||
|
setopt_socket(ss, (struct request_setopt *)buffer);
|
||||||
|
return -1;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "socket-server: Unknown ctrl %c.\n",type);
|
fprintf(stderr, "socket-server: Unknown ctrl %c.\n",type);
|
||||||
return -1;
|
return -1;
|
||||||
@@ -765,7 +787,9 @@ report_connect(struct socket_server *ss, struct socket *s, struct socket_message
|
|||||||
result->opaque = s->opaque;
|
result->opaque = s->opaque;
|
||||||
result->id = s->id;
|
result->id = s->id;
|
||||||
result->ud = 0;
|
result->ud = 0;
|
||||||
sp_write(ss->event_fd, s->fd, s, false);
|
if (send_buffer_empty(s)) {
|
||||||
|
sp_write(ss->event_fd, s->fd, s, false);
|
||||||
|
}
|
||||||
union sockaddr_all u;
|
union sockaddr_all u;
|
||||||
socklen_t slen = sizeof(u);
|
socklen_t slen = sizeof(u);
|
||||||
if (getpeername(s->fd, &u.s, &slen) == 0) {
|
if (getpeername(s->fd, &u.s, &slen) == 0) {
|
||||||
@@ -939,27 +963,13 @@ socket_server_connect(struct socket_server *ss, uintptr_t opaque, const char * a
|
|||||||
return request.u.open.id;
|
return request.u.open.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
|
||||||
socket_server_block_connect(struct socket_server *ss, uintptr_t opaque, const char * addr, int port) {
|
|
||||||
struct request_package request;
|
|
||||||
struct socket_message result;
|
|
||||||
open_request(ss, &request, opaque, addr, port);
|
|
||||||
int ret = open_socket(ss, &request.u.open, &result, true);
|
|
||||||
if (ret == SOCKET_OPEN) {
|
|
||||||
return result.id;
|
|
||||||
} else {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// return -1 when error
|
// return -1 when error
|
||||||
int64_t
|
int64_t
|
||||||
socket_server_send(struct socket_server *ss, int id, const void * buffer, int sz) {
|
socket_server_send(struct socket_server *ss, int id, const void * buffer, int sz) {
|
||||||
struct socket * s = &ss->slot[id % MAX_SOCKET];
|
struct socket * s = &ss->slot[HASH_ID(id)];
|
||||||
if (s->id != id || s->type == SOCKET_TYPE_INVALID) {
|
if (s->id != id || s->type == SOCKET_TYPE_INVALID) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
assert(s->type != SOCKET_TYPE_RESERVE);
|
|
||||||
|
|
||||||
struct request_package request;
|
struct request_package request;
|
||||||
request.u.send.id = id;
|
request.u.send.id = id;
|
||||||
@@ -972,11 +982,10 @@ socket_server_send(struct socket_server *ss, int id, const void * buffer, int sz
|
|||||||
|
|
||||||
void
|
void
|
||||||
socket_server_send_lowpriority(struct socket_server *ss, int id, const void * buffer, int sz) {
|
socket_server_send_lowpriority(struct socket_server *ss, int id, const void * buffer, int sz) {
|
||||||
struct socket * s = &ss->slot[id % MAX_SOCKET];
|
struct socket * s = &ss->slot[HASH_ID(id)];
|
||||||
if (s->id != id || s->type == SOCKET_TYPE_INVALID) {
|
if (s->id != id || s->type == SOCKET_TYPE_INVALID) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
assert(s->type != SOCKET_TYPE_RESERVE);
|
|
||||||
|
|
||||||
struct request_package request;
|
struct request_package request;
|
||||||
request.u.send.id = id;
|
request.u.send.id = id;
|
||||||
@@ -1068,4 +1077,11 @@ socket_server_start(struct socket_server *ss, uintptr_t opaque, int id) {
|
|||||||
send_request(ss, &request, 'S', sizeof(request.u.start));
|
send_request(ss, &request, 'S', sizeof(request.u.start));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
socket_server_nodelay(struct socket_server *ss, int id) {
|
||||||
|
struct request_package request;
|
||||||
|
request.u.setopt.id = id;
|
||||||
|
request.u.setopt.what = TCP_NODELAY;
|
||||||
|
request.u.setopt.value = 1;
|
||||||
|
send_request(ss, &request, 'T', sizeof(request.u.setopt));
|
||||||
|
}
|
||||||
|
|||||||
@@ -36,6 +36,6 @@ int socket_server_listen(struct socket_server *, uintptr_t opaque, const char *
|
|||||||
int socket_server_connect(struct socket_server *, uintptr_t opaque, const char * addr, int port);
|
int socket_server_connect(struct socket_server *, uintptr_t opaque, const char * addr, int port);
|
||||||
int socket_server_bind(struct socket_server *, uintptr_t opaque, int fd);
|
int socket_server_bind(struct socket_server *, uintptr_t opaque, int fd);
|
||||||
|
|
||||||
int socket_server_block_connect(struct socket_server *, uintptr_t opaque, const char * addr, int port);
|
void socket_server_nodelay(struct socket_server *, int id);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
local skynet = require "skynet"
|
local skynet = require "skynet"
|
||||||
|
local queue = require "skynet.queue"
|
||||||
|
|
||||||
local i = 0
|
local i = 0
|
||||||
local hello = "hello"
|
local hello = "hello"
|
||||||
@@ -8,9 +9,27 @@ function response.ping(hello)
|
|||||||
return hello
|
return hello
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- response.sleep and accept.hello share one lock
|
||||||
|
local lock
|
||||||
|
|
||||||
|
function accept.sleep(queue, n)
|
||||||
|
if queue then
|
||||||
|
lock(
|
||||||
|
function()
|
||||||
|
print("queue=",queue, n)
|
||||||
|
skynet.sleep(n)
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
print("queue=",queue, n)
|
||||||
|
skynet.sleep(n)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function accept.hello()
|
function accept.hello()
|
||||||
|
lock(function()
|
||||||
i = i + 1
|
i = i + 1
|
||||||
print (i, hello)
|
print (i, hello)
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
function response.error()
|
function response.error()
|
||||||
@@ -19,6 +38,8 @@ end
|
|||||||
|
|
||||||
function init( ... )
|
function init( ... )
|
||||||
print ("ping server start:", ...)
|
print ("ping server start:", ...)
|
||||||
|
-- init queue
|
||||||
|
lock = queue()
|
||||||
|
|
||||||
-- You can return "queue" for queue service mode
|
-- You can return "queue" for queue service mode
|
||||||
-- return "queue"
|
-- return "queue"
|
||||||
|
|||||||
23
test/testdatacenter.lua
Normal file
23
test/testdatacenter.lua
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local datacenter = require "datacenter"
|
||||||
|
|
||||||
|
local function f1()
|
||||||
|
print("====1==== wait hello")
|
||||||
|
print("\t1>",datacenter.wait ("hello"))
|
||||||
|
print("====1==== wait key.foobar")
|
||||||
|
print("\t1>", pcall(datacenter.wait,"key")) -- will failed, because "key" is a branch
|
||||||
|
print("\t1>",datacenter.wait ("key", "foobar"))
|
||||||
|
end
|
||||||
|
|
||||||
|
local function f2()
|
||||||
|
skynet.sleep(10)
|
||||||
|
print("====2==== set key.foobar")
|
||||||
|
datacenter.set("key", "foobar", "bingo")
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.start(function()
|
||||||
|
datacenter.set("hello", "world")
|
||||||
|
print(datacenter.get "hello")
|
||||||
|
skynet.fork(f1)
|
||||||
|
skynet.fork(f2)
|
||||||
|
end)
|
||||||
@@ -14,12 +14,10 @@ end)
|
|||||||
else
|
else
|
||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
local test = skynet.newservice("testdeadcall", "test") -- launch self in test mode
|
local test = skynet.newservice(SERVICE_NAME, "test") -- launch self in test mode
|
||||||
|
|
||||||
print(pcall(function()
|
print(pcall(function()
|
||||||
skynet.send(test,"lua", "hello world")
|
skynet.call(test,"lua", "dead call")
|
||||||
skynet.send(test,"lua", "never get there")
|
|
||||||
skynet.call(test,"lua", "fake call")
|
|
||||||
end))
|
end))
|
||||||
|
|
||||||
skynet.exit()
|
skynet.exit()
|
||||||
|
|||||||
11
test/testharborlink.lua
Normal file
11
test/testharborlink.lua
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local harbor = require "skynet.harbor"
|
||||||
|
|
||||||
|
skynet.start(function()
|
||||||
|
print("wait for harbor 2")
|
||||||
|
print("run skynet examples/config_log please")
|
||||||
|
harbor.connect(2)
|
||||||
|
print("harbor 2 connected")
|
||||||
|
harbor.link(2)
|
||||||
|
print("disconnected")
|
||||||
|
end)
|
||||||
@@ -27,7 +27,7 @@ skynet.start(function()
|
|||||||
local channel = mc.new()
|
local channel = mc.new()
|
||||||
print("New channel", channel)
|
print("New channel", channel)
|
||||||
for i=1,10 do
|
for i=1,10 do
|
||||||
local sub = skynet.newservice("testmulticast", "sub")
|
local sub = skynet.newservice(SERVICE_NAME, "sub")
|
||||||
skynet.call(sub, "lua", "init", channel.channel)
|
skynet.call(sub, "lua", "init", channel.channel)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
18
test/testqueue.lua
Normal file
18
test/testqueue.lua
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local snax = require "snax"
|
||||||
|
|
||||||
|
skynet.start(function()
|
||||||
|
local ps = snax.uniqueservice ("pingserver", "test queue")
|
||||||
|
for i=1, 10 do
|
||||||
|
ps.post.sleep(true,i*10)
|
||||||
|
ps.post.hello()
|
||||||
|
end
|
||||||
|
for i=1, 10 do
|
||||||
|
ps.post.sleep(false,i*10)
|
||||||
|
ps.post.hello()
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.exit()
|
||||||
|
end)
|
||||||
|
|
||||||
|
|
||||||
53
test/testredis2.lua
Normal file
53
test/testredis2.lua
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
local redis = require "redis"
|
||||||
|
|
||||||
|
local db
|
||||||
|
|
||||||
|
function add1(key, count)
|
||||||
|
local t = {}
|
||||||
|
for i = 1, count do
|
||||||
|
t[2*i -1] = "key" ..i
|
||||||
|
t[2*i] = "value" .. i
|
||||||
|
end
|
||||||
|
db:hmset(key, table.unpack(t))
|
||||||
|
end
|
||||||
|
|
||||||
|
function add2(key, count)
|
||||||
|
local t = {}
|
||||||
|
for i = 1, count do
|
||||||
|
t[2*i -1] = "key" ..i
|
||||||
|
t[2*i] = "value" .. i
|
||||||
|
end
|
||||||
|
table.insert(t, 1, key)
|
||||||
|
db:hmset(t)
|
||||||
|
end
|
||||||
|
|
||||||
|
function __init__()
|
||||||
|
db = redis.connect {
|
||||||
|
host = "127.0.0.1",
|
||||||
|
port = 6300,
|
||||||
|
db = 0,
|
||||||
|
auth = "foobared"
|
||||||
|
}
|
||||||
|
print("dbsize:", db:dbsize())
|
||||||
|
local ok, msg = xpcall(add1, debug.traceback, "test1", 250000)
|
||||||
|
if not ok then
|
||||||
|
print("add1 failed", msg)
|
||||||
|
else
|
||||||
|
print("add1 succeed")
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
local ok, msg = xpcall(add2, debug.traceback, "test2", 250000)
|
||||||
|
if not ok then
|
||||||
|
print("add2 failed", msg)
|
||||||
|
else
|
||||||
|
print("add2 succeed")
|
||||||
|
end
|
||||||
|
print("dbsize:", db:dbsize())
|
||||||
|
|
||||||
|
print("redistest launched")
|
||||||
|
end
|
||||||
|
|
||||||
|
skynet.start(__init__)
|
||||||
|
|
||||||
@@ -21,6 +21,9 @@ if mode == "agent" then
|
|||||||
id = tonumber(id)
|
id = tonumber(id)
|
||||||
|
|
||||||
skynet.start(function()
|
skynet.start(function()
|
||||||
|
-- A small limit, if socket buffer overflow, close the client
|
||||||
|
socket.limit(64)
|
||||||
|
|
||||||
skynet.fork(function()
|
skynet.fork(function()
|
||||||
echo(id)
|
echo(id)
|
||||||
skynet.exit()
|
skynet.exit()
|
||||||
@@ -30,7 +33,7 @@ else
|
|||||||
local function accept(id)
|
local function accept(id)
|
||||||
socket.start(id)
|
socket.start(id)
|
||||||
socket.write(id, "Hello Skynet\n")
|
socket.write(id, "Hello Skynet\n")
|
||||||
skynet.newservice("testsocket", "agent", id)
|
skynet.newservice(SERVICE_NAME, "agent", id)
|
||||||
-- notice: Some data on this connection(id) may lost before new service start.
|
-- notice: Some data on this connection(id) may lost before new service start.
|
||||||
-- So, be careful when you want to use start / abandon / start .
|
-- So, be careful when you want to use start / abandon / start .
|
||||||
socket.abandon(id)
|
socket.abandon(id)
|
||||||
|
|||||||
22
test/time.lua
Normal file
22
test/time.lua
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
local skynet = require "skynet"
|
||||||
|
skynet.start(function()
|
||||||
|
print(skynet.starttime())
|
||||||
|
print(skynet.now())
|
||||||
|
|
||||||
|
skynet.timeout(1, function()
|
||||||
|
print("in 1", skynet.now())
|
||||||
|
end)
|
||||||
|
skynet.timeout(2, function()
|
||||||
|
print("in 2", skynet.now())
|
||||||
|
end)
|
||||||
|
skynet.timeout(3, function()
|
||||||
|
print("in 3", skynet.now())
|
||||||
|
end)
|
||||||
|
|
||||||
|
skynet.timeout(4, function()
|
||||||
|
print("in 4", skynet.now())
|
||||||
|
end)
|
||||||
|
skynet.timeout(100, function()
|
||||||
|
print("in 100", skynet.now())
|
||||||
|
end)
|
||||||
|
end)
|
||||||
Reference in New Issue
Block a user