/******************************************************************************* * Copyright (c) 2007, 2013 David Green 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: * David Green - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.wikitext.ui.commands; import java.io.ByteArrayInputStream; import java.io.PrintWriter; import java.io.StringWriter; import java.lang.reflect.InvocationTargetException; import org.eclipse.core.resources.IFile; import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.Path; import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.operation.IRunnableWithProgress; import org.eclipse.mylyn.internal.wikitext.ui.util.IOUtil; import org.eclipse.mylyn.wikitext.parser.util.MarkupToDocbook; import org.eclipse.osgi.util.NLS; import org.eclipse.ui.PlatformUI; /** * @author David Green * @since 1.0 */ public class ConvertMarkupToDocbook extends AbstractMarkupResourceHandler { @Override protected void handleFile(final IFile file, String name) { final IFile newFile = file.getParent().getFile(new Path(name + ".xml")); //$NON-NLS-1$ if (newFile.exists()) { if (!MessageDialog.openQuestion(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), Messages.ConvertMarkupToDocbook_overwrite, NLS.bind(Messages.ConvertMarkupToDocbook_fileExistsOverwrite, new Object[] { newFile.getFullPath() }))) { return; } } final MarkupToDocbook markupToDocbook = new MarkupToDocbook(); markupToDocbook.setMarkupLanguage(markupLanguage); markupToDocbook.setBookTitle(name); try { IRunnableWithProgress runnable = new IRunnableWithProgress() { public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException { try { String content = IOUtil.readFully(file); final String docbook = markupToDocbook.parse(content); if (newFile.exists()) { newFile.setContents(new ByteArrayInputStream(docbook.getBytes("utf-8")), false, true, //$NON-NLS-1$ monitor); } else { newFile.create(new ByteArrayInputStream(docbook.getBytes("utf-8")), false, monitor); //$NON-NLS-1$ } newFile.setCharset("utf-8", monitor); //$NON-NLS-1$ } catch (Exception e) { throw new InvocationTargetException(e); } } }; try { PlatformUI.getWorkbench().getProgressService().busyCursorWhile(runnable); } catch (InterruptedException e) { return; } catch (InvocationTargetException e) { throw e.getCause(); } } catch (Throwable e) { StringWriter message = new StringWriter(); PrintWriter out = new PrintWriter(message); out.println(Messages.ConvertMarkupToDocbook_cannotConvert + e.getMessage()); out.println(Messages.ConvertMarkupToDocbook_detailsFollow); e.printStackTrace(out); out.close(); MessageDialog.openError(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(), Messages.ConvertMarkupToDocbook_cannotCompleteOperation, message.toString()); } } }