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

Compare

Revision as of 09:52, 13 July 2006 by Michael Valenta.ca.ibm.com (Talk | contribs) (Save Life-cycle)

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
  • Swithc 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. 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

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 Document in the content merge viewer (problem: content is assumed to be a byte array).
  3. content from document is passed to the viewer content provider (instance of MergeViewerContentProvider)
  4. the content provider calls saveContent on the left typed element of the compare input if the compare input is an IEditableContent).
  5. the ResourceNode updates its buffer to contain the new content and fire a change event
  6. if you want the file to be saved, you would need to listen to that event and call commit on the ResourceDiffNode

Copyright © Eclipse Foundation, Inc. All Rights Reserved.