/*******************************************************************************
* Copyright (c) 2010 IBM Corporation.
* 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:
* Robert Fuhrer (rfuhrer@watson.ibm.com) - initial API and implementation
*******************************************************************************/
package org.eclipse.imp.editor;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.imp.runtime.RuntimePlugin;
import org.eclipse.imp.utils.StreamUtils;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.source.AnnotationModel;
import org.eclipse.jface.text.source.IAnnotationModel;
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IStorageEditorInput;
import org.eclipse.ui.IURIEditorInput;
import org.eclipse.ui.editors.text.StorageDocumentProvider;
import org.eclipse.ui.texteditor.IDocumentProvider;
/**
* An {@link IDocumentProvider} implementation that handles IURIEditorInputs that
* refer to entries in zip (and jar) files, as well as IStorageEditorInputs.
* @author rfuhrer
*/
class ZipStorageEditorDocumentProvider extends StorageDocumentProvider {
public static boolean canHandle(IEditorInput editorInput) {
if (editorInput instanceof IURIEditorInput) {
IURIEditorInput uriEditorInput = (IURIEditorInput) editorInput;
URI uri= uriEditorInput.getURI();
if (uri == null) {
return false;
}
String path= uri.getPath();
return path.contains(".jar:") || path.contains(".zip:");
} else if (editorInput instanceof IStorageEditorInput) {
return true;
}
return false;
}
@Override
protected IAnnotationModel createAnnotationModel(Object element) throws CoreException {
// If we don't do this, the resulting editor won't permit source folding
return new AnnotationModel();
}
@Override
protected ElementInfo createElementInfo(Object element) throws CoreException {
ElementInfo ei= super.createElementInfo(element);
if (element instanceof IURIEditorInput) {
ei.fDocument= new Document(getZipEntryContents((IURIEditorInput) element));
} else if (element instanceof IStorageEditorInput) {
ei.fDocument= new Document(getStorageContents((IStorageEditorInput) element));
}
return ei;
}
@Override
protected boolean setDocumentContent(IDocument document, IEditorInput editorInput) throws CoreException {
String contents= null;
if (editorInput instanceof IURIEditorInput) {
IURIEditorInput uriEditorInput = (IURIEditorInput) editorInput;
contents = getZipEntryContents(uriEditorInput);
} else if (editorInput instanceof IStorageEditorInput) {
IStorageEditorInput storageEditorInput= (IStorageEditorInput) editorInput;
contents = getStorageContents(storageEditorInput);
} else {
throw new IllegalArgumentException("Inappropriate type of IEditorInput passed to ZipStorageEditorDocumentProvider: " + editorInput.getClass());
}
document.set(contents);
return true;
}
private String getStorageContents(IStorageEditorInput storageEditorInput) throws CoreException {
InputStream is= storageEditorInput.getStorage().getContents();
return StreamUtils.readStreamContents(is);
}
private String getZipEntryContents(IURIEditorInput uriEditorInput) throws CoreException {
String contents= "";
try {
URI uri= uriEditorInput.getURI();
String path= uri.getPath();
int lastColonIdx = path.lastIndexOf(':');
String jarPath= path.substring(0, lastColonIdx);
String entryPath= path.substring(lastColonIdx + 1);
ZipFile zipFile= new ZipFile(new File(jarPath));
ZipEntry entry= zipFile.getEntry(entryPath);
InputStream is= zipFile.getInputStream(entry);
contents= StreamUtils.readStreamContents(is);
} catch (IOException e) {
throw new CoreException(new Status(IStatus.ERROR, RuntimePlugin.IMP_RUNTIME, 0, "Error encountered while obtaining zip file contents", e));
} catch (Exception e) {
RuntimePlugin.getInstance().logException("Exception caught while obtaining contents of zip file entry", e);
}
return contents;
}
}