📄 coladocumentchangemessage.java
字号:
/**************************************************************************** * Copyright (c) 2008 Mustafa K. Isik and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Mustafa K. Isik - initial API and implementation *****************************************************************************/package org.eclipse.ecf.internal.sync.doc.cola;import java.util.LinkedList;import java.util.List;import org.eclipse.ecf.core.util.Trace;import org.eclipse.ecf.internal.sync.Activator;import org.eclipse.ecf.internal.sync.SyncDebugOptions;import org.eclipse.ecf.sync.doc.DocumentChangeMessage;public class ColaDocumentChangeMessage extends DocumentChangeMessage { private static final long serialVersionUID = 2038025022180647210L; // TODO encapsulate in a new ColaOpOriginationState and re-implement equals, // hashCode, i.e. make comparable private final long localOperationsCount; private final long remoteOperationsCount; private final int transformType; private boolean splitUp; private List splitUpRepresentation; public ColaDocumentChangeMessage(DocumentChangeMessage msg, long localOperationsCount, long remoteOperationsCount) { super(msg.getOffset(), msg.getLengthOfReplacedText(), msg.getText()); this.localOperationsCount = localOperationsCount; this.remoteOperationsCount = remoteOperationsCount; this.splitUp = false; this.splitUpRepresentation = new LinkedList(); if (super.getLengthOfReplacedText() == 0) { // this is neither a replacement, nor a deletion transformType = 0; } else { if (super.getText().length() == 0) { // something has been replaced, nothing inserted, must be a // deletion transformType = 1; } else { // something has been replaced with some new input, has to be a // replacement op transformType = 2; //TODO this has not been implemented yet //throw new IllegalArgumentException("Replacement Handling not implemented yet! Known Bug."); } } } public boolean isInsertion() { return (transformType == 0); } public boolean isDeletion() { return (transformType == 1); } public boolean isReplacement() { return (transformType == 2); } public long getLocalOperationsCount() { return this.localOperationsCount; } public long getRemoteOperationsCount() { return this.remoteOperationsCount; } private ColaTransformationStrategy getTransformationStrategy() { if (isInsertion()) return ColaInsertionTransformationStategy.getInstance(); if (isDeletion()) return ColaDeletionTransformationStrategy.getInstance(); return ColaReplacementTransformationStategy.getInstance(); } public ColaDocumentChangeMessage transformAgainst(ColaDocumentChangeMessage localMsg, boolean localMsgHighPrio) { Trace.entering(Activator.PLUGIN_ID, SyncDebugOptions.METHODS_ENTERING, this.getClass(), "transformAgainst", localMsg); //$NON-NLS-1$ final ColaDocumentChangeMessage transformedMsg = getTransformationStrategy().getOperationalTransform(this, localMsg, localMsgHighPrio); Trace.entering(Activator.PLUGIN_ID, SyncDebugOptions.METHODS_EXITING, this.getClass(), "transformAgainst", transformedMsg); //$NON-NLS-1$ return transformedMsg; } public String toString() { final StringBuffer buf = new StringBuffer("ColaDocumentChangeMessage["); //$NON-NLS-1$ buf.append("text=").append(getText()).append(";offset=").append(getOffset()); //$NON-NLS-1$ //$NON-NLS-2$ buf.append(";length=").append(getLengthOfReplacedText()).append("]"); //$NON-NLS-1$ //$NON-NLS-2$ buf.append(";operationsCount[local=").append(getLocalOperationsCount()); //$NON-NLS-1$ buf.append(";remote=").append(getRemoteOperationsCount()).append("]]"); //$NON-NLS-1$//$NON-NLS-2$ return buf.toString(); } public void setSplitUp(boolean toBeSplitUp) { this.splitUp = toBeSplitUp; } public boolean isSplitUp() { return splitUp; } public void setSplitUpRepresentation(List splitUpRepresentation) { this.splitUpRepresentation = splitUpRepresentation; } public List getSplitUpRepresentation() { return splitUpRepresentation; } public void addToSplitUpRepresentation(ColaDocumentChangeMessage splitUpRepresentationPart) { this.splitUpRepresentation.add(splitUpRepresentationPart); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -