PadMessageHandler: Factor out common USER_CHANGES error message formatting
parent
35b2aeb3b1
commit
1447ab8899
|
@ -600,7 +600,6 @@ const handleUserChanges = async (socket, message) => {
|
||||||
const pad = await padManager.getPad(thisSession.padId);
|
const pad = await padManager.getPad(thisSession.padId);
|
||||||
|
|
||||||
// create the changeset
|
// create the changeset
|
||||||
try {
|
|
||||||
try {
|
try {
|
||||||
// Verify that the changeset has valid syntax and is in canonical form
|
// Verify that the changeset has valid syntax and is in canonical form
|
||||||
Changeset.checkRep(changeset);
|
Changeset.checkRep(changeset);
|
||||||
|
@ -644,9 +643,6 @@ const handleUserChanges = async (socket, message) => {
|
||||||
|
|
||||||
// Afaik, it copies the new attributes from the changeset, to the global Attribute Pool
|
// Afaik, it copies the new attributes from the changeset, to the global Attribute Pool
|
||||||
changeset = Changeset.moveOpsToNewPool(changeset, wireApool, pad.pool);
|
changeset = Changeset.moveOpsToNewPool(changeset, wireApool, pad.pool);
|
||||||
} catch (e) {
|
|
||||||
throw new Error(`Can't apply USER_CHANGES from Socket ${socket.id} because: ${e.message}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
// ex. applyUserChanges
|
// ex. applyUserChanges
|
||||||
const apool = pad.pool;
|
const apool = pad.pool;
|
||||||
|
@ -665,24 +661,18 @@ const handleUserChanges = async (socket, message) => {
|
||||||
// rebases "changeset" so that it is relative to revision r
|
// rebases "changeset" so that it is relative to revision r
|
||||||
// and can be applied after "c".
|
// and can be applied after "c".
|
||||||
|
|
||||||
try {
|
|
||||||
// a changeset can be based on an old revision with the same changes in it
|
// a changeset can be based on an old revision with the same changes in it
|
||||||
// prevent eplite from accepting it TODO: better send the client a NEW_CHANGES
|
// prevent eplite from accepting it TODO: better send the client a NEW_CHANGES
|
||||||
// of that revision
|
// of that revision
|
||||||
if (baseRev + 1 === r && c === changeset) {
|
if (baseRev + 1 === r && c === changeset) throw new Error('Changeset already accepted');
|
||||||
throw new Error("Won't apply USER_CHANGES, as it contains an already accepted changeset");
|
|
||||||
}
|
|
||||||
|
|
||||||
changeset = Changeset.follow(c, changeset, false, apool);
|
changeset = Changeset.follow(c, changeset, false, apool);
|
||||||
} catch (e) {
|
|
||||||
throw new Error(`Can't apply USER_CHANGES, because ${e.message}`);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const prevText = pad.text();
|
const prevText = pad.text();
|
||||||
|
|
||||||
if (Changeset.oldLen(changeset) !== prevText.length) {
|
if (Changeset.oldLen(changeset) !== prevText.length) {
|
||||||
throw new Error(`Can't apply USER_CHANGES ${changeset} with oldLen ` +
|
throw new Error(`Can't apply changeset ${changeset} with oldLen ` +
|
||||||
`${Changeset.oldLen(changeset)} to document of length ${prevText.length}`);
|
`${Changeset.oldLen(changeset)} to document of length ${prevText.length}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -703,7 +693,8 @@ const handleUserChanges = async (socket, message) => {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
socket.json.send({disconnect: 'badChangeset'});
|
socket.json.send({disconnect: 'badChangeset'});
|
||||||
stats.meter('failedChangesets').mark();
|
stats.meter('failedChangesets').mark();
|
||||||
console.warn(err.stack || err);
|
console.warn(`Failed to apply USER_CHANGES from author ${thisSession.author} ` +
|
||||||
|
`(socket ${socket.id}) on pad ${thisSession.padId}: ${err.stack || err}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
stopWatch.end();
|
stopWatch.end();
|
||||||
|
|
Loading…
Reference in New Issue