blob: 454bf6f66475990eff07db4235655eec6e32cb8b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2011 David Green and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.wikitext.textile.internal.phrase;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder.SpanType;
import org.eclipse.mylyn.wikitext.parser.ImageAttributes;
import org.eclipse.mylyn.wikitext.parser.LinkAttributes;
import org.eclipse.mylyn.wikitext.parser.markup.PatternBasedElement;
import org.eclipse.mylyn.wikitext.parser.markup.PatternBasedElementProcessor;
import org.eclipse.mylyn.wikitext.textile.internal.Textile;
import org.eclipse.mylyn.wikitext.textile.internal.TextileContentState;
/**
* @author David Green
*
* @see SpanType#LINK
*/
public class HyperlinkPhraseModifier extends PatternBasedElement {
protected static final int ATTRIBUTES_OFFSET = 2;
@Override
protected String getPattern(int groupOffset) {
return "(?:(\")" + Textile.REGEX_ATTRIBUTES + "([^\"]+)\\" + (1 + groupOffset) + ":([^\\s]*[^\\s!.(,:;]))"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
@Override
protected int getPatternGroupCount() {
return 3 + Textile.ATTRIBUTES_GROUP_COUNT;
}
@Override
protected PatternBasedElementProcessor newProcessor() {
return new HyperlinkProcessor();
}
private static class HyperlinkProcessor extends PatternBasedElementProcessor {
@Override
public void emit() {
String hyperlinkBoundaryText = group(1);
String hyperlinkSrc = group(2 + Textile.ATTRIBUTES_GROUP_COUNT);
String href = group(3 + Textile.ATTRIBUTES_GROUP_COUNT);
String namedLinkUrl = ((TextileContentState) getState()).getNamedLinkUrl(href);
if (namedLinkUrl != null) {
href = namedLinkUrl;
}
if (hyperlinkBoundaryText.equals("\"")) { //$NON-NLS-1$
LinkAttributes attributes = new LinkAttributes();
attributes.setHref(href);
Textile.configureAttributes(this, attributes, ATTRIBUTES_OFFSET, false);
builder.beginSpan(SpanType.LINK, attributes);
int textOffset = start(2);
if (textOffset == -1) {
textOffset = start(2 + Textile.ATTRIBUTES_GROUP_COUNT);
}
getMarkupLanguage().emitMarkupLine(parser, state, textOffset, hyperlinkSrc, 0);
builder.endSpan();
} else {
final ImageAttributes attributes = new ImageAttributes();
Textile.configureAttributes(this, attributes, ATTRIBUTES_OFFSET, false);
builder.imageLink(attributes, href, hyperlinkSrc);
}
}
}
}