blob: 55dc4e9219db3dd75accef7b500aaa0bd6357a4a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2011 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.docs.intent.client.ui.editor.quickfix;
import java.io.IOException;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jface.text.contentassist.IContextInformation;
import org.eclipse.jface.text.source.Annotation;
import org.eclipse.mylyn.docs.intent.client.ui.IntentEditorActivator;
import org.eclipse.mylyn.docs.intent.client.ui.editor.annotation.IntentAnnotation;
import org.eclipse.mylyn.docs.intent.client.ui.logger.IntentUiLogger;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
/**
* {@link ICompletionProposal} used to fix a Synchronization issue by opening the compare Editor.
*
* @author <a href="mailto:alex.lagarde@obeo.fr">Alex Lagarde</a>
* @author <a href="mailto:william.piers@obeo.fr">William Piers</a>
*/
public class CreateResourceFix implements ICompletionProposal {
private IntentAnnotation syncAnnotation;
/**
* Default constructor.
*
* @param annotation
* the {@link IntentAnnotation} describing the synchronization issue.
*/
public CreateResourceFix(Annotation annotation) {
this.syncAnnotation = (IntentAnnotation)annotation;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#apply(org.eclipse.jface.text.IDocument)
*/
public void apply(IDocument document) {
// Step 1 : getting the resources to compare URI
String workingCopyResourceURI = getWorkingCopyResourceURI();
String generatedResourceURI = null;
if (syncAnnotation.getAdditionalInformations().toArray().length > 2) {
generatedResourceURI = ((String)syncAnnotation.getAdditionalInformations().toArray()[2]).replace(
"\"", "");
}
// Step 2 : loading the resources
ResourceSetImpl rs = new ResourceSetImpl();
Resource workingCopyResource = rs.createResource(URI.createURI(workingCopyResourceURI));
if (generatedResourceURI != null) {
Resource generatedResource = rs.getResource(URI.createURI(generatedResourceURI), true);
// Step 3 : Copy the content
workingCopyResource.getContents().addAll(EcoreUtil.copyAll(generatedResource.getContents()));
}
try {
workingCopyResource.save(null);
} catch (IOException e) {
IntentUiLogger.logError(e);
}
}
private String getWorkingCopyResourceURI() {
return ((String)syncAnnotation.getAdditionalInformations().toArray()[1]).replace("\"", "");
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getSelection(org.eclipse.jface.text.IDocument)
*/
public Point getSelection(IDocument document) {
return null;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getAdditionalProposalInfo()
*/
public String getAdditionalProposalInfo() {
return "";
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getDisplayString()
*/
public String getDisplayString() {
return "Create the " + getWorkingCopyResourceURI()
+ " resource, initialized with working copy content";
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getImage()
*/
public Image getImage() {
return IntentEditorActivator.getDefault().getImage("icon/annotation/sync-warning.gif");
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getContextInformation()
*/
public IContextInformation getContextInformation() {
return null;
}
}