@livedesk/hub 0.1.52 → 0.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/remote-hub.js +90 -54
- package/src/server.js +4 -3
package/package.json
CHANGED
package/src/remote-hub.js
CHANGED
|
@@ -320,11 +320,14 @@ function serializeRemoteInputWrite(socket, payload) {
|
|
|
320
320
|
* - Ordered transitions: keyboard and pointer-button events are never
|
|
321
321
|
* coalesced. If their bounded queue cannot retain order, the input socket is
|
|
322
322
|
* closed so the Agent releases native pressed state.
|
|
323
|
-
* - High-rate input: only adjacent pointermove/mousemove/wheel samples from the
|
|
324
|
-
* same binding may replace an older queued sample.
|
|
325
|
-
* -
|
|
326
|
-
*
|
|
327
|
-
|
|
323
|
+
* - High-rate input: only adjacent pointermove/mousemove/wheel samples from the
|
|
324
|
+
* same binding may replace an older queued sample.
|
|
325
|
+
* - Acknowledgement health: an acknowledged sample becomes a deadline
|
|
326
|
+
* checkpoint only after that exact message is accepted by the socket write.
|
|
327
|
+
* A sample replaced or dropped in the userland queue owns no timer.
|
|
328
|
+
* - Bounds: one drain listener, one drain deadline, at most 16 userland items,
|
|
329
|
+
* 32 KiB queued bytes, and 64 KiB socket writableLength.
|
|
330
|
+
*/
|
|
328
331
|
export function createBoundedRemoteInputWriter(options = {}) {
|
|
329
332
|
const socket = options.socket;
|
|
330
333
|
const connectionId = safeString(options.connectionId, 128);
|
|
@@ -357,9 +360,12 @@ export function createBoundedRemoteInputWriter(options = {}) {
|
|
|
357
360
|
const isOwnerCurrent = typeof options.isOwnerCurrent === 'function'
|
|
358
361
|
? options.isOwnerCurrent
|
|
359
362
|
: () => true;
|
|
360
|
-
const onFailClosed = typeof options.onFailClosed === 'function'
|
|
361
|
-
? options.onFailClosed
|
|
362
|
-
: () => {};
|
|
363
|
+
const onFailClosed = typeof options.onFailClosed === 'function'
|
|
364
|
+
? options.onFailClosed
|
|
365
|
+
: () => {};
|
|
366
|
+
const onAcknowledgedWrite = typeof options.onAcknowledgedWrite === 'function'
|
|
367
|
+
? options.onAcknowledgedWrite
|
|
368
|
+
: () => {};
|
|
363
369
|
|
|
364
370
|
let closed = false;
|
|
365
371
|
let closeReason = '';
|
|
@@ -501,16 +507,23 @@ export function createBoundedRemoteInputWriter(options = {}) {
|
|
|
501
507
|
if (writableLength() > maxWritableBytes) {
|
|
502
508
|
return failClosed('input-writable-length-exceeded');
|
|
503
509
|
}
|
|
504
|
-
if (writable === false && !armDrainOwner()) {
|
|
505
|
-
return {
|
|
506
|
-
ok: false,
|
|
507
|
-
error: closeReason || 'INPUT_CHANNEL_RECONNECTING',
|
|
508
|
-
failClosed: true
|
|
509
|
-
};
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
510
|
+
if (writable === false && !armDrainOwner()) {
|
|
511
|
+
return {
|
|
512
|
+
ok: false,
|
|
513
|
+
error: closeReason || 'INPUT_CHANNEL_RECONNECTING',
|
|
514
|
+
failClosed: true
|
|
515
|
+
};
|
|
516
|
+
}
|
|
517
|
+
if (item.ackRequested) {
|
|
518
|
+
try {
|
|
519
|
+
onAcknowledgedWrite(item.payload, item.bindingKey);
|
|
520
|
+
} catch {
|
|
521
|
+
return failClosed('input-ack-write-observer-failed');
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
return {
|
|
525
|
+
ok: true,
|
|
526
|
+
queued: false,
|
|
514
527
|
backpressured: writable === false
|
|
515
528
|
};
|
|
516
529
|
}
|
|
@@ -613,12 +626,14 @@ export function createBoundedRemoteInputWriter(options = {}) {
|
|
|
613
626
|
return failClosed('input-transition-message-too-large');
|
|
614
627
|
}
|
|
615
628
|
|
|
616
|
-
const item = {
|
|
617
|
-
payload,
|
|
618
|
-
bindingKey: normalizedBindingKey,
|
|
619
|
-
serialized,
|
|
620
|
-
coalescible
|
|
621
|
-
|
|
629
|
+
const item = {
|
|
630
|
+
payload,
|
|
631
|
+
bindingKey: normalizedBindingKey,
|
|
632
|
+
serialized,
|
|
633
|
+
coalescible,
|
|
634
|
+
ackRequested: payload?.payload?.requestAck === true
|
|
635
|
+
|| payload?.requestAck === true
|
|
636
|
+
};
|
|
622
637
|
if (blocked || queue.length > 0 || writableLength() >= maxWritableBytes) {
|
|
623
638
|
const queued = queueItem(item);
|
|
624
639
|
if (queued.ok && !blocked && !armDrainOwner()) {
|
|
@@ -4982,22 +4997,38 @@ export function createRemoteHub(options = {}) {
|
|
|
4982
4997
|
&& device.inputSocket === socket
|
|
4983
4998
|
&& device.inputSocketConnectionId === inputSocketConnectionId
|
|
4984
4999
|
&& device.inputWriteOwner === writeOwner,
|
|
4985
|
-
onFailClosed: reason => {
|
|
4986
|
-
if (device.inputWriteOwner !== writeOwner
|
|
4987
|
-
|| device.inputSocket !== socket
|
|
4988
|
-
|| device.inputSocketConnectionId !== inputSocketConnectionId) {
|
|
4989
|
-
return;
|
|
4990
|
-
}
|
|
4991
|
-
device
|
|
4992
|
-
device.
|
|
4993
|
-
device.
|
|
5000
|
+
onFailClosed: reason => {
|
|
5001
|
+
if (device.inputWriteOwner !== writeOwner
|
|
5002
|
+
|| device.inputSocket !== socket
|
|
5003
|
+
|| device.inputSocketConnectionId !== inputSocketConnectionId) {
|
|
5004
|
+
return;
|
|
5005
|
+
}
|
|
5006
|
+
clearPendingDedicatedInputAcks(device);
|
|
5007
|
+
device.inputWriteOwner = null;
|
|
5008
|
+
device.inputSocket = null;
|
|
5009
|
+
device.inputSocketConnectionId = '';
|
|
4994
5010
|
device.inputOwnerConnectionId = '';
|
|
4995
5011
|
device.inputOwnerBindingKey = '';
|
|
4996
5012
|
inputSockets.delete(socket);
|
|
4997
|
-
device.inputLastSeenAt = new Date().toISOString();
|
|
4998
|
-
emitRemoteEvent('RemoteInputSocketDisconnected', device, { reason });
|
|
4999
|
-
}
|
|
5000
|
-
|
|
5013
|
+
device.inputLastSeenAt = new Date().toISOString();
|
|
5014
|
+
emitRemoteEvent('RemoteInputSocketDisconnected', device, { reason });
|
|
5015
|
+
},
|
|
5016
|
+
onAcknowledgedWrite: (message, bindingKey) => {
|
|
5017
|
+
if (device.inputWriteOwner !== writeOwner
|
|
5018
|
+
|| device.inputSocket !== socket
|
|
5019
|
+
|| device.inputSocketConnectionId !== inputSocketConnectionId) {
|
|
5020
|
+
return;
|
|
5021
|
+
}
|
|
5022
|
+
const pending = message?.payload && typeof message.payload === 'object'
|
|
5023
|
+
? message.payload
|
|
5024
|
+
: message;
|
|
5025
|
+
schedulePendingDedicatedInputAck(device, {
|
|
5026
|
+
...pending,
|
|
5027
|
+
inputSocketConnectionId,
|
|
5028
|
+
bindingKey
|
|
5029
|
+
});
|
|
5030
|
+
}
|
|
5031
|
+
});
|
|
5001
5032
|
device.inputWriteOwner = writeOwner;
|
|
5002
5033
|
|
|
5003
5034
|
emitRemoteEvent('RemoteInputSocketConnected', device);
|
|
@@ -5757,11 +5788,17 @@ export function createRemoteHub(options = {}) {
|
|
|
5757
5788
|
});
|
|
5758
5789
|
}
|
|
5759
5790
|
|
|
5760
|
-
function emitRemoteInputError(
|
|
5761
|
-
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
5791
|
+
function emitRemoteInputError(
|
|
5792
|
+
device,
|
|
5793
|
+
message = {},
|
|
5794
|
+
pending = null,
|
|
5795
|
+
fallbackError = 'remote-input-failed',
|
|
5796
|
+
errorKind = 'route') {
|
|
5797
|
+
const outcome = buildRemoteInputOutcome(device, message, pending);
|
|
5798
|
+
emitEvent('RemoteInputError', {
|
|
5799
|
+
...outcome,
|
|
5800
|
+
errorKind: errorKind === 'native-apply' ? 'native-apply' : 'route',
|
|
5801
|
+
error: safeString(
|
|
5765
5802
|
message.error
|
|
5766
5803
|
|| message.Error
|
|
5767
5804
|
|| message.result?.error
|
|
@@ -5791,9 +5828,9 @@ export function createRemoteHub(options = {}) {
|
|
|
5791
5828
|
// session cannot acknowledge input from the current control session.
|
|
5792
5829
|
if (!pending && source === 'main') {
|
|
5793
5830
|
return false;
|
|
5794
|
-
}
|
|
5795
|
-
if (message.type === 'input.error') {
|
|
5796
|
-
emitRemoteInputError(device, message, pending);
|
|
5831
|
+
}
|
|
5832
|
+
if (message.type === 'input.error') {
|
|
5833
|
+
emitRemoteInputError(device, message, pending, 'remote-input-failed', 'native-apply');
|
|
5797
5834
|
} else {
|
|
5798
5835
|
emitRemoteInputApplied(device, message, pending);
|
|
5799
5836
|
}
|
|
@@ -5813,8 +5850,13 @@ export function createRemoteHub(options = {}) {
|
|
|
5813
5850
|
|| !!error
|
|
5814
5851
|
|| result.ok === false
|
|
5815
5852
|
|| safeString(result.status, 40).toLowerCase() === 'failed';
|
|
5816
|
-
if (failed) {
|
|
5817
|
-
emitRemoteInputError(
|
|
5853
|
+
if (failed) {
|
|
5854
|
+
emitRemoteInputError(
|
|
5855
|
+
device,
|
|
5856
|
+
{ ...message, error: error || 'remote-input-failed' },
|
|
5857
|
+
completed,
|
|
5858
|
+
'remote-input-failed',
|
|
5859
|
+
'native-apply');
|
|
5818
5860
|
} else {
|
|
5819
5861
|
emitRemoteInputApplied(device, message, completed);
|
|
5820
5862
|
}
|
|
@@ -9459,13 +9501,7 @@ export function createRemoteHub(options = {}) {
|
|
|
9459
9501
|
device.inputOwnerBindingKey = activeInputBindingKey;
|
|
9460
9502
|
device.counters.commandsSent += 1;
|
|
9461
9503
|
device.inputLastSeenAt = new Date().toISOString();
|
|
9462
|
-
|
|
9463
|
-
...normalized,
|
|
9464
|
-
inputSocketConnectionId: device.inputSocketConnectionId,
|
|
9465
|
-
bindingKey: activeInputBindingKey,
|
|
9466
|
-
hubForwardedAtEpochMs
|
|
9467
|
-
});
|
|
9468
|
-
if (clipboardOperationKey) {
|
|
9504
|
+
if (clipboardOperationKey) {
|
|
9469
9505
|
const operation = clipboardOperations.get(clipboardOperationKey);
|
|
9470
9506
|
if (operation) {
|
|
9471
9507
|
operation.status = 'pasting';
|
package/src/server.js
CHANGED
|
@@ -5927,13 +5927,13 @@ inputWss.on('connection', ws => {
|
|
|
5927
5927
|
try {
|
|
5928
5928
|
payload = JSON.parse(Buffer.isBuffer(data) ? data.toString('utf8') : String(data || ''));
|
|
5929
5929
|
} catch {
|
|
5930
|
-
sendJson(ws, { type: 'RemoteInputError', error: 'invalid-json' });
|
|
5930
|
+
sendJson(ws, { type: 'RemoteInputError', errorKind: 'route', error: 'invalid-json' });
|
|
5931
5931
|
return;
|
|
5932
5932
|
}
|
|
5933
5933
|
const deviceId = String(payload?.deviceId || '').trim();
|
|
5934
5934
|
if (payload?.type === 'watch') {
|
|
5935
5935
|
if (!deviceId) {
|
|
5936
|
-
sendJson(ws, { type: 'RemoteInputError', error: 'device-id-required' });
|
|
5936
|
+
sendJson(ws, { type: 'RemoteInputError', errorKind: 'route', error: 'device-id-required' });
|
|
5937
5937
|
return;
|
|
5938
5938
|
}
|
|
5939
5939
|
for (const previousDeviceId of ws.liveDeskInputDeviceIds) {
|
|
@@ -5970,7 +5970,8 @@ inputWss.on('connection', ws => {
|
|
|
5970
5970
|
return;
|
|
5971
5971
|
}
|
|
5972
5972
|
sendJson(ws, {
|
|
5973
|
-
type: result?.ok ? 'RemoteInputQueued' : 'RemoteInputError',
|
|
5973
|
+
type: result?.ok ? 'RemoteInputQueued' : 'RemoteInputError',
|
|
5974
|
+
errorKind: result?.ok ? '' : 'route',
|
|
5974
5975
|
requestId: payload?.requestId || '',
|
|
5975
5976
|
deviceId,
|
|
5976
5977
|
inputSeq: Number(input?.inputSeq || 0) || 0,
|