blob: f25a0b2850116ad9eb032e70bd3076ee32bcf43c [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2015, 2018 David Green and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0.
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# David Green - org.eclipse.mylyn.docs: initial API and implementation
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.internal.docmlet.wikitext.commonmark.core.inlines;
import static com.google.common.base.Preconditions.checkNotNull;
import java.util.List;
import java.util.Objects;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder.SpanType;
import org.eclipse.mylyn.wikitext.parser.LinkAttributes;
import org.eclipse.statet.jcommons.lang.ObjectUtils.ToStringBuilder;
import org.eclipse.statet.docmlet.wikitext.core.source.LabelInfo;
import org.eclipse.statet.docmlet.wikitext.core.source.LinkByRefAttributes;
import org.eclipse.statet.internal.docmlet.wikitext.commonmark.core.CommonmarkLocator;
import org.eclipse.statet.internal.docmlet.wikitext.commonmark.core.Line;
import org.eclipse.statet.internal.docmlet.wikitext.commonmark.core.ProcessingContext;
import org.eclipse.statet.internal.docmlet.wikitext.commonmark.core.ToStringHelper;
public class Link extends InlineWithNestedContents {
private final String href;
private final LabelInfo labelReference;
private final String title;
public Link(final Line line, final int offset, final int length, final int cursorLength,
final String href, final String title, final List<? extends Inline> contents) {
super(line, offset, length, cursorLength, contents);
this.href= checkNotNull(href);
this.labelReference= null;
this.title= title;
}
public Link(final Line line, final int offset, final int length,
final String href, final String title, final List<Inline> contents) {
this(line, offset, length, -1, href, title, contents);
}
public Link(final Line line, final int offset, final int length,
final LabelInfo labelReference, final List<Inline> contents) {
super(line, offset, length, -1, contents);
this.href= LinkByRefAttributes.REF_SCHEME + ':' + labelReference.getLabel();
this.labelReference= labelReference;
this.title= null;
}
public String getHref() {
return this.href;
}
@Override
public void emit(final ProcessingContext context,
final CommonmarkLocator locator, final DocumentBuilder builder) {
final LinkAttributes attributes= (this.labelReference != null) ?
new LinkByRefAttributes(this.labelReference) : new LinkAttributes();
attributes.setTitle(this.title);
attributes.setHref(this.href);
builder.beginSpan(SpanType.LINK, attributes);
InlineParser.emit(context, getContents(), locator, builder);
builder.endSpan();
}
@Override
public int hashCode() {
return Objects.hash(getStartOffset(), getLength(), getContents(), this.href, this.title);
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
final Link other= (Link) obj;
return this.href.equals(other.href) && getContents().equals(other.getContents())
&& Objects.equals(this.title, other.title);
}
@Override
public String toString() {
final ToStringBuilder sb= new ToStringBuilder(Link.class, getClass());
sb.addProp("startOffset", getStartOffset()); //$NON-NLS-1$
sb.addProp("length", getLength()); //$NON-NLS-1$
sb.addProp("href", ToStringHelper.toStringValue(this.href)); //$NON-NLS-1$
sb.addProp("title", this.title); //$NON-NLS-1$
sb.addProp("contents", getContents()); //$NON-NLS-1$
return sb.build();
}
}