-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/box-selection
- Loading branch information
Showing
13 changed files
with
416 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
.. _realtime-collaboration: | ||
|
||
################ | ||
Realtime Collaboration | ||
################ | ||
|
||
Apollon supports realtime collaboration by emitting patches when a model is changed, and importing | ||
patches potentially emitted by other Apollon clients. Patches follow the `RFC 6902`_ standard (i.e. `JSON Patch`_), | ||
so they can be applied to Apollon diagrams in any desired language. | ||
|
||
.. code-block:: typescript | ||
// This method subscribes to model change patches. | ||
// The callback is called whenever a patch is emitted. | ||
editor.subscribeToModelChangePatches(callback: (patch: Patch) => void): number; | ||
// This method unsubscribes from model change patches. | ||
// The subscriptionId is the return value of the subscribeToModelChangePatches method. | ||
editor.unsubscribeFromModelChangePatches(subscriptionId: number): void; | ||
// This method imports a patch. This can be used to | ||
// apply patches emitted by other Apollon clients. | ||
editor.importPatch(patch: Patch): void; | ||
Apollon client takes care of detecting conflicts between clients and resolving them. There is no need for | ||
users to manually implement any reconcilliation mechanism. The only requirements to ensure a convergent state | ||
between all Apollon clients are as follows: | ||
|
||
- Apply all patches on all clients in the same order, | ||
- Apply all patches on all clients, including patches emitted by the same client. | ||
|
||
This means, if client A emits patch P1 and client B emits patch P2, both clients must then apply P1 and P2 in the same order (using `importPatch()`). The order can be picked by the server, but it needs to be the same for all clients. This means client A should also receive P1, although it has emitted P1 itself. Similarly client B should receive P2, although it has emitted P2 itself. | ||
|
||
Apollon clients sign the patches they emit and treat receiving their own patches as confirmation that the patch has been applied and ordered with patches from other clients. They also optimize based on this assumption, to recognize when they are ahead of the rest of the clients on some part of the state: when client A applies the effects of patch P1 locally, its state is ahead until other clients have also applied patch P1, so client A can safely ignore other effects on that same part of the state (as it will get overwritten by patch P1 anyway). | ||
|
||
================ | ||
Displaying Remote Users | ||
================ | ||
|
||
In realtime collaboration, it can be useful to display activities of other users active in the collaboration session within the diagram editor. Apollon provides methods to display other users' selections: | ||
|
||
.. code-block:: typescript | ||
// This method selects or deselects elements | ||
// on part of a given remote user with given name and color. | ||
// Provide the ids of the elements the remote user | ||
// has selected/deselected. | ||
editor.remoteSelect( | ||
selectorName: string, | ||
selectorColor: string, | ||
select: string[], | ||
deselect?: string[] | ||
): void; | ||
// This method clears the list of remote users displayed | ||
// on the diagram editor, except allowed users. | ||
// Use this in case some users disconnect from the collaboration session. | ||
pruneRemoteSelectors( | ||
allowedSelectors: { | ||
name: string; | ||
color: string; | ||
}[] | ||
): void; | ||
.. _RFC 6902: https://tools.ietf.org/html/rfc6902 | ||
.. _JSON Patch: http://jsonpatch.com/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
import { Patch } from './patcher-types'; | ||
import { Operation, ReplaceOperation } from 'fast-json-patch'; | ||
|
||
/** | ||
* A signed replace operation is a replace operation with an additional hash property. | ||
* This enables tracing the origin of a replace operation. | ||
*/ | ||
export type SignedReplaceOperation = ReplaceOperation<any> & { hash: string }; | ||
|
||
/** | ||
* A signed operation is either a replace operation with a hash property or any other operation. | ||
* The hash property is used to verify the origin of a replace operation. | ||
* Only replace operations need a hash property. | ||
*/ | ||
export type SignedOperation = Exclude<Operation, ReplaceOperation<any>> | SignedReplaceOperation; | ||
|
||
/** | ||
* A signed patch is a patch where all replace operations are signed, i.e. | ||
* all the replace operations have a hash allowing for tracing their origin. | ||
*/ | ||
export type SignedPatch = SignedOperation[]; | ||
|
||
/** | ||
* @param operation | ||
* @returns true if the operation is a replace operation, false otherwise | ||
*/ | ||
export function isReplaceOperation(operation: Operation): operation is ReplaceOperation<any> { | ||
return operation.op === 'replace'; | ||
} | ||
|
||
/** | ||
* @param operation | ||
* @returns true if the operation is a signed operation, false otherwise. A signed operation is either | ||
* a replace operation with a hash property or any other operation. | ||
*/ | ||
export function isSignedOperation(operation: Operation): operation is SignedOperation { | ||
return !isReplaceOperation(operation) || 'hash' in operation; | ||
} | ||
|
||
/** | ||
* A patch verifier enables otpimisitc discard of incomging changes.It can be used to sign | ||
* each operation (or opeerations of each patch) and track them. If the server broadcasts changes | ||
* of the same scope (e.g. the same path) before re-broadcasting that particular change, the client | ||
* can safely discard the change as it will (optimistically) be overridden when the server re-broadcasts | ||
* the tracked change. | ||
* | ||
* This greatly helps with stuttering issues due to clients constantly re-applying changes they have | ||
* already applied locally but in a different order. See | ||
* [**this issue**](https://github.com/ls1intum/Apollon_standalone/pull/70) for more details. | ||
*/ | ||
export class PatchVerifier { | ||
private waitlist: { [address: string]: string } = {}; | ||
|
||
/** | ||
* Signs an operation and tracks it. Only replace operations are signed and tracked. | ||
* @param operation | ||
* @returns The signed version of the operation (to be sent to the server) | ||
*/ | ||
public signOperation(operation: Operation): SignedOperation { | ||
if (isReplaceOperation(operation)) { | ||
const hash = Math.random().toString(36).substring(2, 15); | ||
const path = operation.path; | ||
this.waitlist[path] = hash; | ||
|
||
return { ...operation, hash }; | ||
} else { | ||
return operation; | ||
} | ||
} | ||
|
||
/** | ||
* Signs all operations inside the patch. | ||
* @param patch | ||
* @returns the signed patch (to be sent to the server) | ||
*/ | ||
public sign(patch: Patch): SignedPatch { | ||
return patch.map((op) => this.signOperation(op)); | ||
} | ||
|
||
/** | ||
* Checks whether the operation should be applied or should it be optimisitcally discarded. | ||
* - If the operation is not a replace operation, it is always applied. | ||
* - If the operation is a replace operation but it is not signed, it is always applied. | ||
* - If the operation is a signed replace operation and no other operation with the same path is tracked, | ||
* it will be applied. | ||
* - Otherwise it will be discarded. | ||
* | ||
* If it receives an operation that is already tracked, it will be discarded, and the | ||
* operation will be untracked (so following operations on the same path will be applied). | ||
* | ||
* @param operation | ||
* @returns true if the operation should be applied, false if it should be discarded. | ||
*/ | ||
public isVerifiedOperation(operation: Operation): boolean { | ||
if (isReplaceOperation(operation) && isSignedOperation(operation) && operation.path in this.waitlist) { | ||
if (this.waitlist[operation.path] === operation.hash) { | ||
delete this.waitlist[operation.path]; | ||
} | ||
|
||
return false; | ||
} else { | ||
return true; | ||
} | ||
} | ||
|
||
/** | ||
* Filters an incoming patch, only leaving the operations that should be applied. | ||
* @param patch | ||
* @returns a patch with operations that should be applied. | ||
*/ | ||
public verified(patch: Patch): Patch { | ||
return patch.filter((op) => this.isVerifiedOperation(op)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { call, debounce, delay, put, select, take } from 'redux-saga/effects'; | ||
import { SagaIterator } from 'redux-saga'; | ||
|
||
import { run } from '../../utils/actions/sagas'; | ||
import { PatcherActionTypes } from './patcher-types'; | ||
import { ModelState } from '../../components/store/model-state'; | ||
import { UMLContainerRepository } from '../uml-container/uml-container-repository'; | ||
import { UMLElement } from '../uml-element/uml-element'; | ||
import { UMLRelationship } from '../uml-relationship/uml-relationship'; | ||
import { recalc } from '../uml-relationship/uml-relationship-saga'; | ||
import { render } from '../layouter/layouter'; | ||
|
||
/** | ||
* Fixes the layout of the diagram after importing a patch. | ||
*/ | ||
export function* PatchLayouter(): SagaIterator { | ||
yield run([patchLayout]); | ||
} | ||
|
||
export function* patchLayout(): SagaIterator { | ||
yield debounce(100, PatcherActionTypes.PATCH, recalculateLayouts); | ||
} | ||
|
||
function* recalculateLayouts(): SagaIterator { | ||
const { elements }: ModelState = yield select(); | ||
|
||
const ids = Object.values(elements) | ||
.filter((x) => !x.owner) | ||
.map((x) => x.id); | ||
|
||
if (!ids.length) { | ||
return; | ||
} | ||
|
||
yield put(UMLContainerRepository.append(ids)); | ||
|
||
for (const id of Object.keys(elements)) { | ||
yield delay(0); | ||
if (UMLElement.isUMLElement(elements[id])) { | ||
yield call(render, id); | ||
} | ||
|
||
if (UMLRelationship.isUMLRelationship(elements[id]) && !elements[id].isManuallyLayouted) { | ||
yield call(recalc, id); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.