All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sweble.wikitext.engine.utils.EngineAstTextUtilsImpl Maven / Gradle / Ivy

Go to download

A minimal engine using the Sweble Wikitext Parser to process articles in the context of a MediaWiki-like configuration.

There is a newer version: 3.1.9
Show newest version
/**
 * Copyright 2011 The Open Source Research Group,
 *                University of Erlangen-Nürnberg
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.sweble.wikitext.engine.utils;

import java.util.ListIterator;

import org.sweble.wikitext.engine.nodes.EngNode;
import org.sweble.wikitext.engine.nodes.EngNowiki;
import org.sweble.wikitext.parser.ParserConfig;
import org.sweble.wikitext.parser.nodes.WtNode;
import org.sweble.wikitext.parser.nodes.WtNodeList;
import org.sweble.wikitext.parser.nodes.WtText;
import org.sweble.wikitext.parser.utils.AstTextUtilsImpl;
import org.sweble.wikitext.parser.utils.StringConversionException;

import de.fau.cs.osr.utils.StringTools;

public class EngineAstTextUtilsImpl
		extends
			AstTextUtilsImpl
		implements
			EngineAstTextUtils
{
	public EngineAstTextUtilsImpl(ParserConfig parserConfig)
	{
		super(parserConfig);
	}

	// =========================================================================

	@Override
	public WtNode trim(WtNode n)
	{
		return trimRight(trimLeft(n));
	}

	@Override
	public WtNode trimLeft(WtNode n)
	{
		if (n.isList())
		{
			WtNodeList l = (WtNodeList) n;
			ListIterator i = l.listIterator();
			outer: while (i.hasNext())
			{
				WtNode item = i.next();
				switch (item.getNodeType())
				{
					case WtNode.NT_TEXT:
						WtText t = (WtText) item;
						String text = t.getContent();
						if (text.isEmpty())
						{
							i.remove();
							continue;
						}

						String trimmed = StringTools.trimLeft(text);
						if (trimmed.equals(text))
							break outer;

						if (trimmed.isEmpty())
						{
							i.remove();
							continue;
						}
						else
						{
							t.setContent(trimmed);
							break outer;
						}

					case WtNode.NT_IGNORED:
					case WtNode.NT_XML_COMMENT:
						continue;

					default:
						break outer;
				}
			}
			return n;
		}
		else if (n.getNodeType() == WtNode.NT_TEXT)
		{
			WtText t = (WtText) n;
			t.setContent(StringTools.trimLeft(t.getContent()));
			return n;
		}
		else
		{
			return n;
		}
	}

	@Override
	public WtNode trimRight(WtNode n)
	{
		if (n.isList())
		{
			WtNodeList l = (WtNodeList) n;
			ListIterator i = l.listIterator(l.size());
			outer: while (i.hasPrevious())
			{
				WtNode item = i.previous();
				switch (item.getNodeType())
				{
					case WtNode.NT_TEXT:
						WtText t = (WtText) item;
						String text = t.getContent();
						if (text.isEmpty())
						{
							i.remove();
							continue;
						}

						String trimmed = StringTools.trimRight(text);
						if (trimmed.equals(text))
							break outer;

						if (trimmed.isEmpty())
						{
							i.remove();
							continue;
						}
						else
						{
							t.setContent(trimmed);
							break outer;
						}

					case WtNode.NT_IGNORED:
					case WtNode.NT_XML_COMMENT:
						continue;

					default:
						break outer;
				}
			}
			return n;
		}
		else if (n.getNodeType() == WtNode.NT_TEXT)
		{
			WtText t = (WtText) n;
			t.setContent(StringTools.trimRight(t.getContent()));
			return n;
		}
		else
		{
			return n;
		}
	}

	// =========================================================================

	@Override
	public String astToText(WtNode node) throws StringConversionException
	{
		return super.astToText(node, new SimpleEngineStringConverter());
	}

	@Override
	public String astToText(WtNode node, int... options) throws StringConversionException
	{
		return super.astToText(node, new SimpleEngineStringConverter(options));
	}

	@Override
	public PartialConversion astToTextPartial(WtNode node)
	{
		return super.astToTextPartial(node, new PartialEngineStringConverter());
	}

	@Override
	public PartialConversion astToTextPartial(WtNode node, int... options)
	{
		return super.astToTextPartial(node, new PartialEngineStringConverter(options));
	}

	// =========================================================================

	private static class SimpleEngineStringConverter
			extends
				SimpleStringConverter
	{
		private boolean doNotConvertNowiki;

		public SimpleEngineStringConverter()
		{
			doNotConvertNowiki = false;
		}

		public SimpleEngineStringConverter(int[] options)
		{
			this();
			for (int option : options)
				setOption(option);
		}

		protected void setOption(int option)
		{
			switch (option)
			{
				case DO_NOT_CONVERT_NOWIKI:
					doNotConvertNowiki = true;
					break;
				default:
					super.setOption(option);
					break;
			}
		}

		@Override
		public void dispatch(WtNode node, int nodeType) throws StringConversionException
		{
			if (!doNotConvertNowiki && nodeType == EngNode.NT_NOWIKI)
			{
				visit((EngNowiki) node);
			}
			else
			{
				super.dispatch(node, nodeType);
			}
		}

		protected void visit(EngNowiki node)
		{
			b.append(node.getContent());
		}
	}

	// =========================================================================

	private class PartialEngineStringConverter
			extends
				PartialStringConverter
	{
		private boolean doNotConvertNowiki;

		public PartialEngineStringConverter()
		{
			doNotConvertNowiki = false;
		}

		public PartialEngineStringConverter(int[] options)
		{
			this();
			for (int option : options)
				setOption(option);
		}

		protected void setOption(int option)
		{
			switch (option)
			{
				case DO_NOT_CONVERT_NOWIKI:
					doNotConvertNowiki = true;
					break;
				default:
					super.setOption(option);
					break;
			}
		}

		@Override
		public void dispatch(WtNode node, int nodeType) throws StringConversionException
		{
			if (!doNotConvertNowiki && nodeType == EngNode.NT_NOWIKI)
			{
				visit((EngNowiki) node);
			}
			else
			{
				super.dispatch(node, nodeType);
			}
		}

		protected void visit(EngNowiki node)
		{
			b.append(node.getContent());
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy