/******************************************************************************* * Copyright (c) 2007, 2009 Borland Software Corporation 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: * Borland Software Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.m2m.internal.qvt.oml.editor.ui.hyperlinks; import java.util.List; import org.eclipse.jface.text.IRegion; import org.eclipse.jface.text.ITextViewer; import org.eclipse.jface.text.hyperlink.IHyperlink; import org.eclipse.jface.text.hyperlink.IHyperlinkDetector; import org.eclipse.m2m.internal.qvt.oml.compiler.CompiledUnit; import org.eclipse.m2m.internal.qvt.oml.editor.ui.Activator; import org.eclipse.m2m.internal.qvt.oml.editor.ui.CSTHelper; import org.eclipse.m2m.internal.qvt.oml.editor.ui.QvtDocumentProvider; import org.eclipse.m2m.internal.qvt.oml.editor.ui.hyperlinks.IHyperlinkDetectorHelper.IDetectionContext; import org.eclipse.ocl.cst.CSTNode; /** * @author vrepeshko */ public class QvtHyperlinkDetector implements IHyperlinkDetector { private final QvtDocumentProvider myDocumentProvider; private final IHyperlinkDetectorHelper[] myHelpers; public QvtHyperlinkDetector(QvtDocumentProvider documentProvider) { myDocumentProvider = documentProvider; myHelpers = new IHyperlinkDetectorHelper[] { new ImportHyperlinkDetector(), new PathNameHyperlinkDetector(), new ModelTypeHyperlinkDetector(), new ObjectPropertyHyperlinkDetector(), new VariableHyperlinkDetector(), new ScopedIdentifierHyperLinkDetector(), new OperationHyperlinkDetector(), new ResolveInHyperlinkDetector() }; } public IHyperlink[] detectHyperlinks(ITextViewer textViewer, final IRegion region, boolean canShowMultipleHyperlinks) { CompiledUnit compiledUnit = myDocumentProvider.getCompiledModule(); if (compiledUnit == null) { return null; } List<CSTNode> elements = CSTHelper.selectTargetedElements(compiledUnit.getUnitCST(), region); Context context = new Context(myDocumentProvider.getCompiledModule(), region, textViewer); for (CSTNode element : elements) { for (IHyperlinkDetectorHelper helper : myHelpers) { context.syntaxElement = element; try { IHyperlink hyperlink = helper.detectHyperlink(context); if (hyperlink != null) { return new IHyperlink[] { hyperlink }; } } catch (Exception e) { Activator.log(e); } } } return null; } /** * Context reusable for different elements. */ private static class Context implements IDetectionContext { final CompiledUnit compiledUnit; final IRegion region; final ITextViewer textViewer; CSTNode syntaxElement; public Context(CompiledUnit unit, IRegion region, ITextViewer textViewer) { this.compiledUnit = unit; this.region = region; this.textViewer = textViewer; } public CompiledUnit getModule() { return compiledUnit; } public IRegion getRegion() { return region; } public CSTNode getSyntaxElement() { return syntaxElement; } public ITextViewer geTextViewer() { return textViewer; } }; }