Skip to content

Commit bd577db

Browse files
committed
added new ./docs
1 parent 83b121b commit bd577db

10 files changed

+294
-10
lines changed

Makefile

+8-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,14 @@ test:
1111
clean:
1212
node-waf clean
1313

14+
docs:
15+
dox < lib/index.js > docs/index.json
16+
jade < docs/template.jade -o "{comments:$$(cat docs/index.json)}" > docs/index.html
17+
18+
docclean:
19+
rm -fr docs/index.{json,html}
20+
1421
distclean:
1522
node-waf distclean
1623

17-
.PHONY: clean distclean test
24+
.PHONY: clean distclean test docs docclean

docs/highlight.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
$(function(){
2+
$('code').each(function(){
3+
$(this).html(highlight($(this).text()));
4+
});
5+
});
6+
7+
function highlight(js) {
8+
return js
9+
.replace(/</g, '&lt;')
10+
.replace(/>/g, '&gt;')
11+
.replace(/\/\/(.*)/gm, '<span class="comment">//$1</span>')
12+
.replace(/('.*')/gm, '<span class="string">$1</span>')
13+
.replace(/(\d+\.\d+)/gm, '<span class="number">$1</span>')
14+
.replace(/(\d+)/gm, '<span class="number">$1</span>')
15+
.replace(/\bnew *(\w+)/gm, '<span class="keyword">new</span> <span class="init">$1</span>')
16+
.replace(/\b(function|new|throw|return|var|if|else)\b/gm, '<span class="keyword">$1</span>')
17+
}

docs/index.html

+170
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
<!DOCTYPE html><html><head><title>node-zeromq</title><link rel="stylesheet" href="style.css"><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script><script src="highlight.js"></script><script src="menu.js"></script></head><body><h1>node-zeromq</h1><p><a href="http://www.zeromq.org/">ZeroMQ </a>bindings for Node.js
2+
</p><div class="comment"><h2>types</h2><div class="description"><p>Map of socket types.</p></div><a href="#" class="view-source">View source</a><pre><code>var types = exports.types = {
3+
pub: zmq.ZMQ_PUB
4+
, sub: zmq.ZMQ_SUB
5+
, req: zmq.ZMQ_REQ
6+
, xreq: zmq.ZMQ_XREQ
7+
, rep: zmq.ZMQ_REP
8+
, xrep: zmq.ZMQ_XREP
9+
, push: zmq.ZMQ_PUSH
10+
, pull: zmq.ZMQ_PULL
11+
, dealer: zmq.ZMQ_DEALER
12+
, router: zmq.ZMQ_ROUTER
13+
, pair: zmq.ZMQ_PAIR
14+
};</code></pre></div><div class="comment"><h2>opts</h2><div class="description"><p>Map of socket options.</p></div><a href="#" class="view-source">View source</a><pre><code>var opts = exports.options = {
15+
_fd: zmq.ZMQ_FD
16+
, _ioevents: zmq.ZMQ_EVENTS
17+
, _receiveMore: zmq.ZMQ_RCVMORE
18+
, _subscribe: zmq.ZMQ_SUBSCRIBE
19+
, _unsubscribe: zmq.ZMQ_UNSUBSCRIBE
20+
, affinity: zmq.ZMQ_AFFINITY
21+
, backlog: zmq.ZMQ_BACKLOG
22+
, hwm: zmq.ZMQ_HWM
23+
, identity: zmq.ZMQ_IDENTITY
24+
, linger: zmq.ZMQ_LINGER
25+
, mcast_loop: zmq.ZMQ_MCAST_LOOP
26+
, rate: zmq.ZMQ_RATE
27+
, rcvbuf: zmq.ZMQ_RCVBUF
28+
, reconnect_ivl: zmq.ZMQ_RECONNECT_IVL
29+
, recovery_ivl: zmq.ZMQ_RECOVERY_IVL
30+
, sndbuf: zmq.ZMQ_SNDBUF
31+
, swap: zmq.ZMQ_SWAP
32+
};
33+
34+
// Context management happens here. We lazily initialize a default context,
35+
// and use that everywhere. Also cleans up on exit.
36+
var ctx;
37+
function defaultContext() {
38+
if (ctx) return ctx;
39+
40+
var io_threads = 1;
41+
if (process.env.ZMQ_IO_THREADS) {
42+
io_threads = parseInt(process.env.ZMQ_IO_THREADS, 10);
43+
if (!io_threads || io_threads < 1) {
44+
console.warn('Invalid number in ZMQ_IO_THREADS, using 1 IO thread.');
45+
io_threads = 1;
46+
}
47+
}
48+
49+
ctx = new zmq.Context(io_threads);
50+
process.on('exit', function() {
51+
// ctx.close();
52+
ctx = null;
53+
});
54+
55+
return ctx;
56+
};</code></pre></div><div class="comment"><h2>Socket()</h2><div class="description"><p>Create a new socket of the given <code>type</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>function Socket(type) {
57+
this.type = type;
58+
this._zmq = new zmq.Socket(defaultContext(), types[type]);
59+
this._outgoing = [];
60+
this._watcher = new IOWatcher;
61+
this._watcher.callback = this._flush.bind(this);
62+
this._watcher.set(this._fd, true, false);
63+
this._watcher.start();
64+
};</code></pre></div><div class="comment"><h2>Socket.prototype.setsockopt()</h2><div class="description"><p>Set <code>opt</code> to <code>val</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.setsockopt = function(opt, val){
65+
this._zmq.setsockopt(opts[opt] || opt, val);
66+
return this;
67+
};</code></pre></div><div class="comment"><h2>Socket.prototype.getsockopt()</h2><div class="description"><p>Get socket <code>opt</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.getsockopt = function(opt){
68+
return this._zmq.getsockopt(opts[opt] || opt);
69+
};</code></pre></div><div class="comment"><h2>Socket.prototype.bind()</h2><div class="description"><p>Async bind.</p>
70+
71+
<p>Emits the "bind" event.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.bind = function(addr, cb) {
72+
var self = this;
73+
self._watcher.stop();
74+
self._zmq.bind(addr, function(err) {
75+
self._watcher.start();
76+
self.emit('bind');
77+
cb && cb(err);
78+
});
79+
return this;
80+
};</code></pre></div><div class="comment"><h2>Socket.prototype.bindSync()</h2><div class="description"><p>Sync bind.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.bindSync = function(addr) {
81+
this._watcher.stop();
82+
try {
83+
this._zmq.bindSync(addr);
84+
} catch (e) {
85+
this._watcher.start();
86+
throw e;
87+
}
88+
this._watcher.start();
89+
return this;
90+
};</code></pre></div><div class="comment"><h2>Socket.prototype.connect()</h2><div class="description"><p>Connect to <code>addr</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.connect = function(addr) {
91+
this._zmq.connect(addr);
92+
return this;
93+
};</code></pre></div><div class="comment"><h2>Socket.prototype.subscribe()</h2><div class="description"><p>Subscribe with the given <code>filter</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.subscribe = function(filter) {
94+
this._subscribe = filter;
95+
return this;
96+
};</code></pre></div><div class="comment"><h2>Socket.prototype.unsubscribe()</h2><div class="description"><p>Unsubscribe with the given <code>filter</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.unsubscribe = function(filter) {
97+
this._unsubscribe = filter;
98+
return this;
99+
};</code></pre></div><div class="comment"><h2>Socket.prototype.send()</h2><div class="description"><p>Send the given <code>msg</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.send = function(msg, flags) {
100+
// allow strings etc
101+
if (!Buffer.isBuffer(msg)) {
102+
msg = new Buffer(String(msg), 'utf8');
103+
}
104+
105+
this._outgoing.push([msg, flags || 0]);
106+
this._flush();
107+
108+
return this;
109+
};
110+
111+
// The workhorse that does actual send and receive operations.
112+
// This helper is called from `send` above, and in response to
113+
// the watcher noticing the signaller fd is readable.
114+
Socket.prototype._flush = function() {
115+
var args;
116+
117+
// Don't allow recursive flush invocation as it can lead to stack
118+
// exhaustion and write starvation
119+
if (this._flushing) return;
120+
121+
this._flushing = true;
122+
try {
123+
while (true) {
124+
var emitArgs
125+
, flags = this._ioevents;
126+
127+
if (!this._outgoing.length) {
128+
flags &= ~zmq.ZMQ_POLLOUT;
129+
}
130+
131+
if (!flags) break;
132+
133+
if (flags & zmq.ZMQ_POLLIN) {
134+
emitArgs = ['message'];
135+
136+
do {
137+
emitArgs.push(new Buffer(this._zmq.recv()));
138+
} while (this._receiveMore);
139+
140+
this.emit.apply(this, emitArgs);
141+
if (this._zmq.state != zmq.STATE_READY) {
142+
this._flushing = false;
143+
return;
144+
}
145+
}
146+
147+
// We send as much as possible in one burst so that we don't
148+
// starve sends if we receive more than one message for each
149+
// one sent.
150+
while (flags & zmq.ZMQ_POLLOUT && this._outgoing.length) {
151+
args = this._outgoing.shift();
152+
this._zmq.send(args[0], args[1]);
153+
flags = this._ioevents;
154+
}
155+
}
156+
} catch (e) {
157+
this.emit('error', e);
158+
}
159+
160+
this._flushing = false;
161+
};</code></pre></div><div class="comment"><h2>Socket.prototype.close()</h2><div class="description"><p>Close the socket.</p></div><a href="#" class="view-source">View source</a><pre><code>Socket.prototype.close = function() {
162+
this._watcher.stop();
163+
this._watcher = null;
164+
this._zmq.close();
165+
return this;
166+
};</code></pre></div><div class="comment"><h2>exports.socket()</h2><div class="description"><p>Create a <code>type</code> socket with the given <code>options</code>.</p></div><a href="#" class="view-source">View source</a><pre><code>exports.socket = function(type, options) {
167+
var sock = new Socket(type);
168+
for (var key in options) sock[key] = options[key];
169+
return sock;
170+
};</code></pre></div></body></html>

0 commit comments

Comments
 (0)