Skip to content

Commit 6237c75

Browse files
committed
0.3.4
Adds `server` options `connectRedux` and `getStatistics`
1 parent 15ea5d3 commit 6237c75

File tree

4 files changed

+100
-71
lines changed

4 files changed

+100
-71
lines changed

.travis.yml

-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,3 @@ language: node_js
33
node_js:
44
- 6.0
55
- 7.0
6-
7-
# configure notifications (email, IRC, campfire etc)
8-
# please update this section to your needs!
9-
notifications:
10-
irc: "irc.freenode.org#travis"

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 0.3.4
2+
3+
* Adds `server` options `connectRedux` and `getStatistics`
4+
5+
# 0.3.3
6+
7+
* Fixes initialState always being undefined, now uses
8+
`orderedHistory.getInitialState`
9+
* Default `getDelayedDispatch` moved to its own file.
10+
* Now depends on [`scuttlebutt-vector`](https://github.com/grrowl/scuttlebutt),
11+
instead pointing to a github branch.
12+
113
# 0.3.2
214

315
* Exports `devToolsStateSanitizer`to better display state in redux dev-tools.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-scuttlebutt",
3-
"version": "0.3.2",
3+
"version": "0.3.4",
44
"description": "Redux distributed dispatcher",
55
"main": "lib/index.js",
66
"engines": {

src/server.js

+87-65
Original file line numberDiff line numberDiff line change
@@ -4,57 +4,18 @@ const INFILE = process.env['INFILE'],
44
OUTFILE = process.env['OUTFILE'],
55
REMOTE_SB = process.env['REMOTE_SB']
66

7-
export default function scuttlebuttServer(server) {
8-
const primusServer = new (require('primus'))(server, {}),
9-
Dispatcher = require('./dispatcher').default,
10-
gossip = new Dispatcher()
11-
12-
const statistics = {}
13-
14-
var statisticsDirty = true
15-
16-
// prime statistics for when spark.id is undefined, presumably server messages
17-
statistics[undefined] = {
18-
recv: 0, sent: 0, s: 'other'
19-
}
20-
21-
setInterval(() => {
22-
if (!statisticsDirty)
23-
return
24-
25-
statisticsDirty = false
26-
27-
/*
28-
// full client statistics
29-
console.log('# ' + (new Date()) + '')
30-
for (let spark in statistics) {
31-
console.log(`${spark}: ${statistics[spark].recv} recv ${statistics[spark].sent} sent (${statistics[spark].s})`)
32-
}
33-
*/
34-
35-
// basic statistics
36-
console.log([
37-
(new Date()).toLocaleString('en-AU'),
38-
': ',
39-
(() => {
40-
let recv = 0, sent = 0, connected = 0, disconnected = 0, other = 0
41-
for (let spark in statistics) {
42-
recv += statistics[spark].recv
43-
sent += statistics[spark].sent
44-
45-
if (statistics[spark].s === 'connected')
46-
connected++
47-
else if (statistics[spark].s === 'disconnected')
48-
disconnected++
49-
else
50-
other++
51-
}
7+
const defaultOptions = {
8+
connectRedux,
9+
getStatistics,
10+
}
5211

53-
return `recv ${recv}, sent ${sent}, (${connected} 🌏, ${disconnected} 🔕, ${other} 👥)`
54-
})()
55-
].join(''))
12+
export default function scuttlebuttServer(server, options) {
13+
options = { ...defaultOptions, ...options }
5614

57-
}, 10000) // max 6/minute
15+
const primusServer = new (require('primus'))(server, {}),
16+
Dispatcher = require('./dispatcher').default,
17+
gossip = new Dispatcher(),
18+
onStatistic = getStatistics()
5819

5920
// connect dispatcher to redux
6021
connectRedux(gossip)
@@ -100,23 +61,20 @@ export default function scuttlebuttServer(server) {
10061

10162
remoteClient.pipe(remoteStream).pipe(remoteClient)
10263

103-
statistics['REMOTE_SB'] = {
104-
recv: 0, sent: 0, s: 'remote'
105-
}
64+
onStatistic('REMOTE_SB', 'connect')
10665

10766
remoteClient.on('data', function recv(data) {
10867
// console.log('[io]', 'REMOTE_SB', '<-', data);
109-
statistics['REMOTE_SB'].recv++
110-
statisticsDirty = true
68+
onStatistic('REMOTE_SB', 'recv')
11169
});
11270

11371
remoteStream.on('data', (data) => {
11472
// console.log('[io]', 'REMOTE_SB' || 'origin', '->', data);
115-
statistics['REMOTE_SB'].sent++
116-
statisticsDirty = true
73+
onStatistic('REMOTE_SB', 'sent')
11774
})
11875

11976
remoteStream.on('error', (error) => {
77+
onStatistic('REMOTE_SB', 'error', error)
12078
console.log('[io]', 'REMOTE_SB', 'ERROR:', error);
12179
remoteClient.end('Disconnecting due to error', { reconnect: true })
12280
})
@@ -127,33 +85,29 @@ export default function scuttlebuttServer(server) {
12785

12886
// console.log('[io] connection', spark.address, spark.id)
12987

130-
statistics[spark.id] = {
131-
recv: 0, sent: 0, s: 'connected'
132-
}
88+
onStatistic(spark.id, 'connect')
13389

13490
spark.on('data', function recv(data) {
13591
// console.log('[io]', spark.id, '<-', data);
136-
statistics[spark.id].recv++
137-
statisticsDirty = true
92+
onStatistic(spark.id, 'recv')
13893
stream.write(data)
13994
});
14095

14196
stream.on('data', (data) => {
14297
// console.log('[io]', spark.id || 'origin', '->', data);
143-
statistics[spark.id].sent++
144-
statisticsDirty = true
98+
onStatistic(spark.id, 'sent')
14599
spark.write(data)
146100
})
147101

148102
stream.on('error', (error) => {
103+
onStatistic(spark.id, 'error', error)
149104
console.log('[io]', spark.id, 'ERROR:', error);
150105
spark.end('Disconnecting due to error', { reconnect: true })
151106
})
152107
})
153108

154109
primusServer.on('disconnection', (spark) => {
155-
statistics[spark.id].s = 'disconnected'
156-
statisticsDirty = true
110+
onStatistic(spark.id, 'disconnect')
157111
// in case you don't want to track zombie connections
158112
// delete statistics[spark.id]
159113
})
@@ -171,3 +125,71 @@ function connectRedux(gossip) {
171125
// store.subscribe(render)
172126
// setInterval(function () { dispatch({ type: 'TICK' }) }, 1000)
173127
}
128+
129+
function getStatistics() {
130+
const statistics = {}
131+
132+
var statisticsDirty = true
133+
134+
// prime statistics for when spark.id is undefined, presumably server messages
135+
statistics[undefined] = {
136+
recv: 0, sent: 0, s: 'other'
137+
}
138+
139+
setInterval(() => {
140+
if (!statisticsDirty)
141+
return
142+
143+
statisticsDirty = false
144+
145+
/*
146+
// full client statistics
147+
console.log('# ' + (new Date()) + '')
148+
for (let spark in statistics) {
149+
console.log(`${spark}: ${statistics[spark].recv} recv ${statistics[spark].sent} sent (${statistics[spark].s})`)
150+
}
151+
*/
152+
153+
// basic statistics
154+
console.log([
155+
(new Date()).toLocaleString('en-AU'),
156+
': ',
157+
(() => {
158+
let recv = 0, sent = 0, connected = 0, disconnected = 0, other = 0
159+
for (let spark in statistics) {
160+
recv += statistics[spark].recv
161+
sent += statistics[spark].sent
162+
163+
if (statistics[spark].s === 'connected')
164+
connected++
165+
else if (statistics[spark].s === 'disconnected')
166+
disconnected++
167+
else
168+
other++
169+
}
170+
171+
return `recv ${recv}, sent ${sent}, (${connected} 🌏, ${disconnected} 🔕, ${other} 👥)`
172+
})()
173+
].join(''))
174+
175+
}, 10000) // max 6/minute
176+
177+
return (source, event, extra) => {
178+
statisticsDirty = true
179+
if (event === 'connect') {
180+
statistics[source] = {
181+
recv: 0, sent: 0, s: 'connected'
182+
}
183+
} else if (event === 'disconnect') {
184+
statistics[source] = {
185+
recv: 0, sent: 0, s: 'disconnected'
186+
}
187+
} else if (event === 'error') {
188+
statistics[source] = {
189+
recv: 0, sent: 0, s: 'error', err: extra,
190+
}
191+
} else if (event === 'recv' || event === 'sent') {
192+
statistics[source][event]++
193+
}
194+
}
195+
}

0 commit comments

Comments
 (0)