blob: 21c347f00d989f560d0232b3010e2b5c2e8aee9d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2009 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.confluence.internal.block;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public abstract class AbstractConfluenceDelimitedBlock extends ParameterizedBlock {
private final Pattern startPattern;
private final Pattern endPattern;
protected int blockLineCount = 0;
private Matcher matcher;
public AbstractConfluenceDelimitedBlock(String blockName) {
startPattern = Pattern.compile("\\s*\\{" + blockName + "(?::([^\\}]*))?\\}(.*)"); //$NON-NLS-1$ //$NON-NLS-2$
endPattern = Pattern.compile("\\s*(\\{" + blockName + "\\})(.*)"); //$NON-NLS-1$ //$NON-NLS-2$
}
@Override
public int processLineContent(String line, int offset) {
if (blockLineCount == 0) {
setOptions(matcher.group(1));
offset = matcher.start(2);
beginBlock();
}
int end = line.length();
int segmentEnd = end;
boolean terminating = false;
if (offset < end) {
Matcher endMatcher = endPattern.matcher(line);
if (blockLineCount == 0) {
endMatcher.region(offset, end);
}
if (endMatcher.find()) {
terminating = true;
end = endMatcher.start(2);
segmentEnd = endMatcher.start(1);
}
}
if (end < line.length()) {
state.setLineSegmentEndOffset(end);
}
++blockLineCount;
final String content = line.substring(offset, segmentEnd);
handleBlockContent(content);
if (terminating) {
setClosed(true);
}
return end == line.length() ? -1 : end;
}
protected abstract void handleBlockContent(String content);
protected abstract void beginBlock();
protected abstract void endBlock();
@Override
public void setClosed(boolean closed) {
if (closed && !isClosed()) {
endBlock();
}
super.setClosed(closed);
}
@Override
public boolean canStart(String line, int lineOffset) {
resetState();
matcher = startPattern.matcher(line);
if (lineOffset > 0) {
matcher.region(lineOffset, line.length());
}
return matcher.matches();
}
protected void resetState() {
blockLineCount = 0;
}
}