Blame view

publish/skynet/service/cslave.lua 6.53 KB
4d6f285d   zhouhaihai   增加发布功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
  local skynet = require "skynet"
  local socket = require "skynet.socket"
  local socketdriver = require "skynet.socketdriver"
  require "skynet.manager"	-- import skynet.launch, ...
  local table = table
  
  local slaves = {}
  local connect_queue = {}
  local globalname = {}
  local queryname = {}
  local harbor = {}
  local harbor_service
  local monitor = {}
  local monitor_master_set = {}
  
  local function read_package(fd)
  	local sz = socket.read(fd, 1)
  	assert(sz, "closed")
  	sz = string.byte(sz)
  	local content = assert(socket.read(fd, sz), "closed")
  	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
  			v(true)
  		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)
  			socketdriver.nodelay(fd)
  			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", 0, "N " .. name)
  	end
  end
  
  local function response_name(name)
  	local address = globalname[name]
  	if queryname[name] then
  		local tmp = queryname[name]
  		queryname[name] = nil
  		for _,resp in ipairs(tmp) do
  			resp(true, address)
  		end
  	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
  				response_name(id_name)
  				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
  					monitor_clear(id_name)
  					socket.close(fd)
  				end
  			end
  		else
  			skynet.error("Master disconnect")
  			for _, v in ipairs(monitor_master_set) do
  				v(true)
  			end
  			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
  	response_name(name)
  	socket.write(fd, pack_package("R", name, handle))
  	skynet.redirect(harbor_service, handle, "harbor", 0, "N " .. name)
  end
  
  function harbor.LINK(fd, id)
  	if slaves[id] then
  		if monitor[id] == nil then
  			monitor[id] = {}
  		end
  		table.insert(monitor[id], skynet.response())
  	else
  		skynet.ret()
  	end
  end
  
  function harbor.LINKMASTER()
  	table.insert(monitor_master_set, skynet.response())
  end
  
  function harbor.CONNECT(fd, id)
  	if not slaves[id] then
  		if monitor[id] == nil then
  			monitor[id] = {}
  		end
  		table.insert(monitor[id], skynet.response())
  	else
  		skynet.ret()
  	end
  end
  
  function harbor.QUERYNAME(fd, name)
  	if name:byte() == 46 then	-- "." , local name
  		skynet.ret(skynet.pack(skynet.localname(name)))
  		return
  	end
  	local result = globalname[name]
  	if result then
  		skynet.ret(skynet.pack(result))
  		return
  	end
  	local queue = queryname[name]
  	if queue == nil then
  		socket.write(fd, pack_package("Q", name))
  		queue = { skynet.response() }
  		queryname[name] = queue
  	else
  		table.insert(queue, skynet.response())
  	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 = assert(socket.open(master_addr), "Can't connect to master")
  
  	skynet.dispatch("lua", function (_,_,command,...)
  		local f = assert(harbor[command])
  		f(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))
  			socketdriver.nodelay(fd)
  			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()
  		socket.close(slave_fd)
  	else
  		-- slave_fd does not start, so use close_fd.
  		socket.close_fd(slave_fd)
  	end
  	skynet.error("Shakehand ready")
  	skynet.fork(ready)
  end)