Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Compare"

m (Save Life-cycle)
(Save Life-cycle)
Line 17: Line 17:
 
# The ResourceNode (instance of IEditableContent)
 
# The ResourceNode (instance of IEditableContent)
 
# The TextMergeViewer
 
# The TextMergeViewer
 +
# The CompareEditorInput
 +
# The CompareEditor or CompareDialog
  
 
Assume you have an merge viewer open and edit the left side. A save is triggered by a Save operation or selecting another element to edit. What happens in this case is the following:
 
Assume you have an merge viewer open and edit the left side. A save is triggered by a Save operation or selecting another element to edit. What happens in this case is the following:
Line 24: Line 26:
 
# The content provider calls saveContent on the left typed element of the compare input (if the compare input is an IEditableContent).
 
# The content provider calls saveContent on the left typed element of the compare input (if the compare input is an IEditableContent).
 
# the ResourceNode updates its buffer to contain the new content and fire a change event
 
# the ResourceNode updates its buffer to contain the new content and fire a change event
# if you want the file to be saved, you need to listen to that event and call commit on the ResourceDiffNode
+
# if you want the file to be saved, you need to listen to that event and call commit on the ResourceDiffNode. For Team, we implement the save behavior in a couple of places. In the old-style syncs, it was a subclass of CompareEditorInput (SyncInfoCompareInput) that listened to the contet change and performed the commit (i.e. the method on ResourceNode that saves). For the new-style sync, we have a class associated with the resource (ResourceSaveableComparison) that performs the save.
  
 
There are a couple of observations that can be made about this:
 
There are a couple of observations that can be made about this:
Line 34: Line 36:
 
* the save method of ContentMergeViewer is really a flush.
 
* the save method of ContentMergeViewer is really a flush.
 
** However most client (e.g. Team Synchronize) treat the flush as an indication that a save should occur.
 
** However most client (e.g. Team Synchronize) treat the flush as an indication that a save should occur.
 +
 +
=== Saveables ===
  
 
There are a few other issues to consider here:
 
There are a few other issues to consider here:
  
 
* Implementors of custom ContentMergeViewers need to be able to participate in the saving of ContentMergeViewers (see bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=143852 143852])
 
* Implementors of custom ContentMergeViewers need to be able to participate in the saving of ContentMergeViewers (see bug [https://bugs.eclipse.org/bugs/show_bug.cgi?id=143852 143852])
* The Saveable API was introduced in Eclipse 3.2 and could potentially be used by merge viewers.
+
* The Saveable API was introduced in Eclipse 3.2 and could potentially be used by merge viewers. The new-style model-based sync makes use of this API already.
  
Here are some thoughts on how this would work.
+
Here are some thoughts on how this could work.
  
* Each CompareInput may have one or more Saveables associated with them (they could be ISaveableSources).
+
* Each CompareInput may have one or more Saveables associated with them.
 
* The CompareEditorInput would keep track of what Saveables it contained and would keep the workbench view of them up-to-date.
 
* The CompareEditorInput would keep track of what Saveables it contained and would keep the workbench view of them up-to-date.
 
* If the ContentMergeViewer or subclass wants to save, they can flush and then invoke save on the appropriate Saveables (i.e. it may only be a subset of the Saveables in the CompareEditorInput).
 
* If the ContentMergeViewer or subclass wants to save, they can flush and then invoke save on the appropriate Saveables (i.e. it may only be a subset of the Saveables in the CompareEditorInput).
 
* If the editor is saved, again, a flush is required before the save is issued to all dirty saveables of the CompareEditorInput.
 
* If the editor is saved, again, a flush is required before the save is issued to all dirty saveables of the CompareEditorInput.
 
* Of course, backwards compatibility must be maintained.
 
* Of course, backwards compatibility must be maintained.
 +
 +
=== Viewer flushing ===
  
 
There are two different styles at odds here:
 
There are two different styles at odds here:

Revision as of 15:52, 14 July 2006

In the 3.3 release, we are planning on working on some of the outstanding defects that have accumulated for the Compare component. Some of the areas we plan on looking at are:

  • Asynchronous loading and update of compare editors
  • Improving the save life-cycling
  • Improving difference and change Navigation
  • Use of text buffers when comparing local content
  • Upgrade to use the new Commands/Key bindings framework
  • Switch to using the History view for local history operations (Compare/Replace/Restore)

The following sections outline some thoughts on each of these areas.

Save Life-cycle

Saving properly in the Compare framework has always been a bit of a black art. See bug 125538 for a description of one way of making it work. The reason for this is the layered nature of the Compare framework. For a local file, the layers are:

  1. The file (instance of IFile)
  2. The ResourceNode (instance of IEditableContent)
  3. The TextMergeViewer
  4. The CompareEditorInput
  5. The CompareEditor or CompareDialog

Assume you have an merge viewer open and edit the left side. A save is triggered by a Save operation or selecting another element to edit. What happens in this case is the following:

  1. Save is called on ContentMergeViewer
  2. Save obtains the content from the left side of the content merge viewer and passes it to the viewer content provider (instance of MergeViewerContentProvider).
  3. The content provider calls saveContent on the left typed element of the compare input (if the compare input is an IEditableContent).
  4. the ResourceNode updates its buffer to contain the new content and fire a change event
  5. if you want the file to be saved, you need to listen to that event and call commit on the ResourceDiffNode. For Team, we implement the save behavior in a couple of places. In the old-style syncs, it was a subclass of CompareEditorInput (SyncInfoCompareInput) that listened to the contet change and performed the commit (i.e. the method on ResourceNode that saves). For the new-style sync, we have a class associated with the resource (ResourceSaveableComparison) that performs the save.

There are a couple of observations that can be made about this:

  • The ContentMergeViewer portion of the above only works with byte oriented content.
  • Both the document in the TextMergeViewer and the ResourceNode buffer the contents of the file (that means there are at least two in-memory versions of the file for each side (and the ancestor if there is one).
    • I have entered bug 150526 to request that the use of BufferedContent be avoided for remote files.
    • I have reopened bug 114 to consider linking resource nodes (and also possibly IStorage nodes) with underlying file buffers so that in-memory content is shared between editors.
  • the save method of ContentMergeViewer is really a flush.
    • However most client (e.g. Team Synchronize) treat the flush as an indication that a save should occur.

Saveables

There are a few other issues to consider here:

  • Implementors of custom ContentMergeViewers need to be able to participate in the saving of ContentMergeViewers (see bug 143852)
  • The Saveable API was introduced in Eclipse 3.2 and could potentially be used by merge viewers. The new-style model-based sync makes use of this API already.

Here are some thoughts on how this could work.

  • Each CompareInput may have one or more Saveables associated with them.
  • The CompareEditorInput would keep track of what Saveables it contained and would keep the workbench view of them up-to-date.
  • If the ContentMergeViewer or subclass wants to save, they can flush and then invoke save on the appropriate Saveables (i.e. it may only be a subset of the Saveables in the CompareEditorInput).
  • If the editor is saved, again, a flush is required before the save is issued to all dirty saveables of the CompareEditorInput.
  • Of course, backwards compatibility must be maintained.

Viewer flushing

There are two different styles at odds here:

  • The current style involes a merge viewer that buffers the changes in the viewer's document and flushes them to the compare input (or diff node) before a save or if the comapre input changes.
  • An alternate style involves the changes being recording into the compare input (i.e. Saveable or file buffer) immediately.

The second style, in combination with the use of file buffers, would make the Compare editor save lifecycle more in-line with the workbench. The problem is backwards compatibility. We can modify ContentMergeViewer, TextMergeViewer and all other SDK subclasses to work with Saveables but the old behavior must remain for other ContentMergeViewer subclasses. Similarly, CompareEditorInputs that don't use Saveables and require viewer flushes must still work as well.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.