-
Notifications
You must be signed in to change notification settings - Fork 376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stream-management: Implement requesting ACKs #1005
Changes from all commits
c4d4bb8
6fa3127
710b167
ce30e8b
7ef1d8d
d76e479
69d0752
0190cb6
b2bf99c
0f79b3b
efad5c1
8cb8dff
8c408ef
43a2d69
97e8d28
f076fd1
f6e15ba
2209036
c66696c
bb3998a
4736120
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,7 @@ | ||||||||||||||
import XMPPError from "@xmpp/error"; | ||||||||||||||
import { procedure } from "@xmpp/events"; | ||||||||||||||
import { EventEmitter, procedure } from "@xmpp/events"; | ||||||||||||||
import xml from "@xmpp/xml"; | ||||||||||||||
import { datetime } from "@xmpp/time"; | ||||||||||||||
|
||||||||||||||
// https://xmpp.org/extensions/xep-0198.html | ||||||||||||||
|
||||||||||||||
|
@@ -45,24 +46,68 @@ | |||||||||||||
bind2, | ||||||||||||||
sasl2, | ||||||||||||||
}) { | ||||||||||||||
const sm = { | ||||||||||||||
let timeoutTimeout = null; | ||||||||||||||
let requestAckTimeout = null; | ||||||||||||||
|
||||||||||||||
const sm = new EventEmitter(); | ||||||||||||||
Object.assign(sm, { | ||||||||||||||
allowResume: true, | ||||||||||||||
preferredMaximum: null, | ||||||||||||||
enabled: false, | ||||||||||||||
id: "", | ||||||||||||||
outbound_q: [], | ||||||||||||||
outbound: 0, | ||||||||||||||
inbound: 0, | ||||||||||||||
max: null, | ||||||||||||||
}; | ||||||||||||||
timeout: 60_000, | ||||||||||||||
requestAckInterval: 300_000, | ||||||||||||||
debounceAckRequest: 100, | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
entity.on("disconnect", () => { | ||||||||||||||
clearTimeout(timeoutTimeout); | ||||||||||||||
clearTimeout(requestAckTimeout); | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
function queueToStanza({ stanza, stamp }) { | ||||||||||||||
if ( | ||||||||||||||
stanza.name === "message" && | ||||||||||||||
!stanza.getChild("delay", "urn:xmpp:delay") | ||||||||||||||
) { | ||||||||||||||
stanza.append( | ||||||||||||||
xml("delay", { | ||||||||||||||
xmlns: "urn:xmpp:delay", | ||||||||||||||
from: entity.jid.toString(), | ||||||||||||||
stamp: stamp, | ||||||||||||||
}), | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
return stanza; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
function resumed() { | ||||||||||||||
async function resumed(resumed) { | ||||||||||||||
sm.enabled = true; | ||||||||||||||
const oldOutbound = sm.outbound; | ||||||||||||||
for (let i = 0; i < resumed.attrs.h - oldOutbound; i++) { | ||||||||||||||
let item = sm.outbound_q.shift(); | ||||||||||||||
sm.outbound++; | ||||||||||||||
sm.emit("ack", item.stanza); | ||||||||||||||
} | ||||||||||||||
let q = sm.outbound_q; | ||||||||||||||
sm.outbound_q = []; | ||||||||||||||
// This will trigger the middleware and re-add to the queue | ||||||||||||||
await entity.sendMany(q.map((item) => queueToStanza(item))); | ||||||||||||||
sm.emit("resumed"); | ||||||||||||||
entity._ready(true); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
function failed() { | ||||||||||||||
sm.enabled = false; | ||||||||||||||
sm.id = ""; | ||||||||||||||
let item; | ||||||||||||||
while ((item = sm.outbound_q.shift())) { | ||||||||||||||
sm.emit("fail", item.stanza); | ||||||||||||||
} | ||||||||||||||
Comment on lines
+107
to
+110
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wdyt of
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That feels like it would make the library internals very slightly simpler in exchange for making the API slightly more complex? Is there a reason you're interested in this change? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As it stands xmpp.js is a fairly low level XMPP library. I prefer abstractions to reflect the protocols to leave room for optimizations. If that changes then we can think of what the API should be like and deal with persistence, tab reload etc |
||||||||||||||
sm.outbound = 0; | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
|
@@ -73,11 +118,20 @@ | |||||||||||||
} | ||||||||||||||
|
||||||||||||||
entity.on("online", () => { | ||||||||||||||
if (sm.outbound_q.length > 0) { | ||||||||||||||
throw new Error( | ||||||||||||||
"Stream Management assertion failure, queue should be empty during online", | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
sm.outbound = 0; | ||||||||||||||
sm.inbound = 0; | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
entity.on("offline", () => { | ||||||||||||||
let item; | ||||||||||||||
while ((item = sm.outbound_q.shift())) { | ||||||||||||||
sm.emit("fail", item.stanza); | ||||||||||||||
} | ||||||||||||||
sm.outbound = 0; | ||||||||||||||
sm.inbound = 0; | ||||||||||||||
sm.enabled = false; | ||||||||||||||
|
@@ -86,14 +140,20 @@ | |||||||||||||
|
||||||||||||||
middleware.use((context, next) => { | ||||||||||||||
const { stanza } = context; | ||||||||||||||
clearTimeout(timeoutTimeout); | ||||||||||||||
if (["presence", "message", "iq"].includes(stanza.name)) { | ||||||||||||||
sm.inbound += 1; | ||||||||||||||
} else if (stanza.is("r", NS)) { | ||||||||||||||
// > When an <r/> element ("request") is received, the recipient MUST acknowledge it by sending an <a/> element to the sender containing a value of 'h' that is equal to the number of stanzas handled by the recipient of the <r/> element. | ||||||||||||||
entity.send(xml("a", { xmlns: NS, h: sm.inbound })).catch(() => {}); | ||||||||||||||
} else if (stanza.is("a", NS)) { | ||||||||||||||
// > When a party receives an <a/> element, it SHOULD keep a record of the 'h' value returned as the sequence number of the last handled outbound stanza for the current stream (and discard the previous value). | ||||||||||||||
sm.outbound = stanza.attrs.h; | ||||||||||||||
const oldOutbound = sm.outbound; | ||||||||||||||
for (let i = 0; i < stanza.attrs.h - oldOutbound; i++) { | ||||||||||||||
let item = sm.outbound_q.shift(); | ||||||||||||||
sm.outbound++; | ||||||||||||||
sm.emit("ack", item.stanza); | ||||||||||||||
} | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
return next(); | ||||||||||||||
|
@@ -105,6 +165,33 @@ | |||||||||||||
if (sasl2) { | ||||||||||||||
setupSasl2({ sasl2, sm, failed, resumed }); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
function requestAck() { | ||||||||||||||
clearTimeout(timeoutTimeout); | ||||||||||||||
if (sm.timeout) { | ||||||||||||||
timeoutTimeout = setTimeout( | ||||||||||||||
() => entity.forceDisconnect().catch(), | ||||||||||||||
Check warning on line 173 in packages/stream-management/index.js GitHub Actions / test (20)
Check warning on line 173 in packages/stream-management/index.js GitHub Actions / test (22)
|
||||||||||||||
sm.timeout, | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
entity.send(xml("r", { xmlns: NS })).catch(() => {}); | ||||||||||||||
// Periodically send r to check the connection | ||||||||||||||
// If a stanza goes out it will cancel this and set a sooner timer | ||||||||||||||
requestAckTimeout = setTimeout(requestAck, sm.requestAckInterval); | ||||||||||||||
} | ||||||||||||||
|
||||||||||||||
middleware.filter((context, next) => { | ||||||||||||||
if (!sm.enabled) return next(); | ||||||||||||||
const { stanza } = context; | ||||||||||||||
if (!["presence", "message", "iq"].includes(stanza.name)) return next(); | ||||||||||||||
|
||||||||||||||
sm.outbound_q.push({ stanza, stamp: datetime() }); | ||||||||||||||
// Debounce requests so we send only one after a big run of stanza together | ||||||||||||||
clearTimeout(requestAckTimeout); | ||||||||||||||
requestAckTimeout = setTimeout(requestAck, sm.debounceAckRequest); | ||||||||||||||
Comment on lines
+189
to
+191
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. xmpp.js has a |
||||||||||||||
return next(); | ||||||||||||||
}); | ||||||||||||||
|
||||||||||||||
if (streamFeatures) { | ||||||||||||||
setupStreamFeature({ | ||||||||||||||
streamFeatures, | ||||||||||||||
|
@@ -133,8 +220,8 @@ | |||||||||||||
// Resuming | ||||||||||||||
if (sm.id) { | ||||||||||||||
try { | ||||||||||||||
await resume(entity, sm); | ||||||||||||||
resumed(); | ||||||||||||||
const element = await resume(entity, sm); | ||||||||||||||
await resumed(element); | ||||||||||||||
return; | ||||||||||||||
// If resumption fails, continue with session establishment | ||||||||||||||
} catch { | ||||||||||||||
|
@@ -149,6 +236,12 @@ | |||||||||||||
|
||||||||||||||
const promiseEnable = enable(entity, sm); | ||||||||||||||
|
||||||||||||||
if (sm.outbound_q.length > 0) { | ||||||||||||||
throw new Error( | ||||||||||||||
"Stream Management assertion failure, queue should be empty after enable", | ||||||||||||||
); | ||||||||||||||
} | ||||||||||||||
sonnyp marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||
|
||||||||||||||
// > The counter for an entity's own sent stanzas is set to zero and started after sending either <enable/> or <enabled/>. | ||||||||||||||
sm.outbound = 0; | ||||||||||||||
|
||||||||||||||
|
@@ -172,7 +265,7 @@ | |||||||||||||
}, | ||||||||||||||
(element) => { | ||||||||||||||
if (element.is("resumed")) { | ||||||||||||||
resumed(); | ||||||||||||||
resumed(element); | ||||||||||||||
} else if (element.is(failed)) { | ||||||||||||||
// const error = StreamError.fromElement(element) | ||||||||||||||
failed(); | ||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wdyt of something like that instead