blob: dc20e35a123d63a5867a13dfafa10bc377ccd97f [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.Objects;
import org.eclipse.mylyn.wikitext.parser.DocumentBuilder;
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.LinkRefDefinitionAttributes;
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 ReferenceDefinition extends Inline {
private final String href;
private final String title;
private final LabelInfo referenceLabel;
public ReferenceDefinition(final Line line, final int offset, final int length,
final String href, final String title, final LabelInfo referenceLabel) {
super(line, offset, length, -1);
this.href= checkNotNull(href);
this.title= title;
this.referenceLabel= checkNotNull(referenceLabel);
}
public String getHref() {
return this.href;
}
@Override
public void createContext(final ProcessingContext context) {
context.addUriDefinition(this.referenceLabel.getLabel(), this.href, this.title);
}
@Override
public void emit(final ProcessingContext context,
final CommonmarkLocator locator, final DocumentBuilder builder) {
if (context.getMode() == ProcessingContext.PARSE_SOURCE_STRUCT) {
final LinkAttributes attributes= new LinkRefDefinitionAttributes(this.referenceLabel);
attributes.setTitle(this.title);
builder.link(attributes, this.href, null);
}
// nothing to do
}
@Override
public int hashCode() {
return Objects.hash(getStartOffset(), getLength(), this.referenceLabel, this.href, this.title);
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (!super.equals(obj)) {
return false;
}
final ReferenceDefinition other= (ReferenceDefinition) obj;
return this.href.equals(other.href) && this.referenceLabel.equals(other.referenceLabel) && Objects.equals(this.title, other.title);
}
@Override
public String toString() {
final ToStringBuilder sb= new ToStringBuilder(ReferenceDefinition.class, getClass());
sb.addProp("startOffset", getStartOffset()); //$NON-NLS-1$
sb.addProp("length", getLength()); //$NON-NLS-1$
sb.addProp("name", this.referenceLabel); //$NON-NLS-1$
sb.addProp("href", ToStringHelper.toStringValue(this.href)); //$NON-NLS-1$
sb.addProp("title", this.title); //$NON-NLS-1$
return sb.build();
}
}