/* * ReverseRope.java * Copyright (C) 2007 Amin Ahmad. * * This file is part of Java Ropes. * * Java Ropes is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Java Ropes is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Java Ropes. If not, see . * * Amin Ahmad can be contacted at amin.ahmad@gmail.com or on the web at * www.ahmadsoft.org. */ package org.ahmadsoft.ropes.impl; import java.io.IOException; import java.io.Writer; import java.util.Iterator; import org.ahmadsoft.ropes.Rope; /** * A rope representing the reversal of character sequence. * Internal implementation only. * @author Amin Ahmad */ public final class ReverseRope extends AbstractRope { private final Rope rope; /** * Constructs a new rope from an underlying rope. *

* Balancing algorithm works optimally when only FlatRopes or * SubstringRopes are supplied. Framework must guarantee this * as no runtime check is performed. * @param rope */ public ReverseRope(final Rope rope) { this.rope = rope; } @Override public char charAt(final int index) { return this.rope.charAt(this.length() - index - 1); } @Override public byte depth() { return RopeUtilities.INSTANCE.depth(this.rope); } @Override public Iterator iterator(final int start) { if (start < 0 || start > this.length()) throw new IndexOutOfBoundsException("Rope index out of range: " + start); return new Iterator() { int current = start; @Override public boolean hasNext() { return this.current < ReverseRope.this.length(); } @Override public Character next() { return ReverseRope.this.charAt(this.current++); } @Override public void remove() { throw new UnsupportedOperationException("Rope iterator is read-only."); } }; } @Override public int length() { return this.rope.length(); } @Override public Rope reverse() { return this.rope; } public Iterator reverseIterator(final int start) { if (start < 0 || start > this.length()) throw new IndexOutOfBoundsException("Rope index out of range: " + start); return new Iterator() { int current = ReverseRope.this.length() - start; @Override public boolean hasNext() { return this.current > 0; } @Override public Character next() { return ReverseRope.this.charAt(--this.current); } @Override public void remove() { throw new UnsupportedOperationException("Rope iterator is read-only."); } }; } @Override public Rope subSequence(final int start, final int end) { if (start == 0 && end == this.length()) return this; return this.rope.subSequence(this.length() - end, this.length() - start).reverse(); } @Override public void write(final Writer out) throws IOException { this.write(out, 0, this.length()); } @Override public void write(final Writer out, final int offset, final int length) throws IOException { if (offset < 0 || offset + length > this.length()) throw new IndexOutOfBoundsException("Rope index out of bounds:" + (offset < 0 ? offset: offset + length)); for (int j=offset; j