/* __ *\ ** ________ ___ / / ___ Scala API ** ** / __/ __// _ | / / / _ | (c) 2003-2007, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id$ package scala import Predef._ import collection.mutable.ArrayBuffer object Seq { /** The empty sequence */ val empty : Seq[Nothing] = new RandomAccessSeq[Nothing] { def length = 0 def apply(i: Int): Nothing = throw new NoSuchElementException("empty sequence") override def elements = Iterator.empty } /** This method is called in a pattern match { case Seq(...) => }. * * @param x the selector value * @return sequence wrapped in an option, if this is a Seq, otherwise none */ def unapplySeq[A](x: Seq[A]): Some[Seq[A]] = Some(x) case class singleton[A](value : A) extends RandomAccessSeq[A] { override def length = 1 override def isDefinedAt(idx : Int) : Boolean = idx == 0 override def apply(idx : Int) = idx match { case 0 => value case _ => throw new Predef.IndexOutOfBoundsException } } /** Builds a singleton sequence. * * @deprecated use singleton instead. */ @deprecated def single[A](x: A) = singleton(x) /* implicit def view[A <% Ordered[A]](xs: Seq[A]): Ordered[Seq[A]] = new Ordered[Seq[A]] with Proxy { def self: Any = xs; def compare[B >: Seq[A] <% Ordered[B]](that: B): Int = that match { case ys: Seq[A] => var res = 0; val xsit = xs.elements; val ysit = ys.elements; while (xsit.hasNext && ysit.hasNext && (res == 0)) { res = xsit.next compare ysit.next; } if (res != 0) res else if (xsit.hasNext) 1 else -1 case _ => -(that compare xs) } } */ trait Projection[+A] extends Seq[A] with Iterable.Projection[A] { override def projection = this override def force : Seq[A] = toList override def map[B](f: A => B) : Projection[B] = new MapProjection(f) protected class MapProjection[B](f : A => B) extends Projection[B] { def length = Projection.this.length def elements = Projection.this.elements.map(f) def apply(idx : Int) = f(Projection.this.apply(idx)) override def stringPrefix = Projection.this.stringPrefix + "M" } override def flatMap[B](f: A => Iterable[B]): Projection[B] = new Projection[B] { override def stringPrefix = Projection.this.stringPrefix + "G" def elements = Projection.this.elements.flatMap(a => f(a).elements) def length = { var sz = 0 Projection.this.foreach(a => sz = sz + f(a).asInstanceOf[Collection[B]].size) sz } def apply(idx : Int) : B = { var jdx = 0 Projection.this.foreach(a => { val i = f(a) val length = i.asInstanceOf[Collection[B]].size if (idx < jdx + length) { val j = i.elements while (jdx < idx) { j.next; jdx += 1 } return j.next } else jdx += length }) throw new IndexOutOfBoundsException } } override def append[B >: A](that: => Iterable[B]) : Projection[B] = that match { case that : Seq[b] => new Projection[B] { def length = Projection.this.length + that.length def elements : Iterator[B] = Projection.this.elements ++ (that.elements:Iterator[B]) def apply(idx : Int) = if (idx < Projection.this.length) Projection.this(idx) else that(idx - Projection.this.length) } case that => (this ++ that).projection // sucks but no other option. } protected abstract class ComputeSize[B] extends Projection[B] { def apply(idx : Int) : B = { var sz = 0 val i = elements while (i.hasNext) { val ret = i.next if (sz == idx) return ret sz += 1 } throw new Predef.IndexOutOfBoundsException } override def length = { val i = elements var sz = 0 while (i.hasNext) { sz += 1 i.next } sz } } override def takeWhile(p: A => Boolean): Projection[A] = new ComputeSize[A] { override def stringPrefix = Projection.this.stringPrefix + "TW" override def elements = Projection.this.elements.takeWhile(p) } override def filter(p : A => Boolean) : Projection[A] = new ComputeSize[A] { override def stringPrefix = Projection.this.stringPrefix + "F" override def elements = Projection.this.elements.filter(p) } } } /** Class Seq[A] represents finite sequences of elements * of type A. * * @author Martin Odersky * @author Matthias Zenger * @version 1.0, 16/07/2003 */ trait Seq[+A] extends AnyRef with PartialFunction[Int, A] with Collection[A] { /** Returns the length of the sequence. * * @return the sequence length. */ def length: Int /** should always be length */ def size = length /** Returns true if length == 0 */ override def isEmpty: Boolean = { length == 0 } /** Appends two iterable objects. * * @return the new iterable object * @deprecated use ++ instead */ @deprecated override def concat [B >: A](that: Iterable[B]): Seq[B] = { val buf = new ArrayBuffer[B] this copyToBuffer buf that copyToBuffer buf buf.readOnly } /** Returns the last element of this list. * * @return the last element of the list. * @throws Predef.UnsupportedOperationException if the list is empty. */ def last: A = length match { case 0 => throw new Predef.NoSuchElementException case n => this(n - 1) } /** Returns as an option the last element of this list or None if list is empty. * */ def lastOption : Option[A] = length match { case 0 => None case n => Some(this(n-1)) } /** Returns as an option the first element of this list or None if list is empty. * */ def headOption : Option[A] = if (isEmpty) None else Some(apply(0)) /** Appends two iterable objects. */ override def ++ [B >: A](that: Iterable[B]): Seq[B] = { val buf = new ArrayBuffer[B] this copyToBuffer buf that copyToBuffer buf buf.readOnly } /** Is this partial function defined for the index x? * * @param x .. * @return true, iff x is a legal sequence index. */ def isDefinedAt(x: Int): Boolean = (x >= 0) && (x < length) /** Returns the index of the last occurence of the specified element * in this sequence, or -1 if the sequence does not contain this element. * * @param elem element to search for. * @return the index in this sequence of the last occurence of the * specified element, or -1 if the sequence does not contain * this element. */ def lastIndexOf[B >: A](elem: B): Int = { var i = length; var found = false; while (!found && (i > 0)) { i = i - 1; if (this(i) == elem) { found = true; } } if (found) i else -1; } /** Returns the sequence resulting from applying the given function * f to each element of this sequence. * * @param f function to apply to each element. * @return f(a0), ..., f(an) if this * sequence is a0, ..., an. */ override def map[B](f: A => B): Seq[B] = { // todo: malformed scala signature suing build when replaced by // super.map(f).asInstanceOf[Seq[B2]] val buf = new ArrayBuffer[B] val elems = elements while (elems.hasNext) buf += f(elems.next) buf.readOnly } /** Applies the given function f to each element of * this sequence, then concatenates the results. * * @param f the function to apply on each element. * @return f(a0) ::: ... ::: f(an) if * this sequence is a0, ..., an. */ override def flatMap[B](f: A => Iterable[B]): Seq[B] = { val buf = new ArrayBuffer[B] val elems = elements while (elems.hasNext) f(elems.next) copyToBuffer buf buf.readOnly } /** Returns all the elements of this sequence that satisfy the * predicate p. The order of the elements is preserved. * * @param p the predicate used to filter the list. * @return the elements of this list satisfying p. */ override def filter(p: A => Boolean): Seq[A] = super.filter(p).asInstanceOf[Seq[A]] /** Returns a sequence consisting only over the first n * elements of this sequence, or else the whole sequence, if it has less * than n elements. (non-strict) * * @param n the number of elements to take * @return a possibly projected sequence */ override def take(n: Int): Seq[A] = { var m = 0 val result = new scala.collection.mutable.ListBuffer[A] val i = elements while (m < n && i.hasNext) { result += i.next; m = m + 1 } result.toList } /** Returns this sequence without its n first elements * If this sequence has less than n elements, the empty * sequence is returned. (non-strict) * * @param n the number of elements to drop * @return the new sequence */ override def drop(n: Int): Seq[A] = { import scala.collection.mutable.ListBuffer var m = 0 val result = new ListBuffer[A] val i = elements while (m < n && i.hasNext) { i.next; m = m + 1 } while (i.hasNext) result += i.next result.toList } /** A sub-sequence of len elements * starting at index from (non-strict) * * @param from The index of the first element of the slice * @param until The index of the element following the slice * @throws IndexOutOfBoundsException if from < 0 * or length < from + len */ def slice(from : Int, until : Int) : Seq[A] = drop(from).take(until - from) /** Returns the longest prefix of this sequence whose elements satisfy * the predicate p. * * @param p the test predicate. * @return the longest prefix of this sequence whose elements satisfy * the predicate p. */ override def takeWhile(p: A => Boolean): Seq[A] = super.takeWhile(p).asInstanceOf[Seq[A]] /** Returns the longest suffix of this sequence whose first element * does not satisfy the predicate p. * * @param p the test predicate. * @return the longest suffix of the sequence whose first element * does not satisfy the predicate p. */ override def dropWhile(p: A => Boolean): Seq[A] = super.dropWhile(p).asInstanceOf[Seq[A]] /** A sequence consisting of all elements of this sequence in reverse order. */ def reverse: Seq[A] = { var result: List[A] = Nil val elems = elements while (elems.hasNext) result = elems.next :: result result } /** Tests if the given value elem is a member of this * sequence. * * @param elem element whose membership has to be tested. * @return true iff there is an element of this sequence * which is equal (w.r.t. ==) to elem. */ def contains(elem: Any): Boolean = exists (_ == elem) /** Returns a subsequence starting from index from * consisting of len elements. * * @deprecated use slice instead */ @deprecated def subseq(from: Int, end: Int): Seq[A] = slice(from, end - from) /** Converts this sequence to a fresh Array with length elements. */ override def toArray[B >: A]: Array[B] = { val result = new Array[B](length) copyToArray(result, 0) result } override def projection : Seq.Projection[A] = new Seq.Projection[A] { override def force : Seq[A] = Seq.this def elements = Seq.this.elements def length = Seq.this.length def apply(idx : Int) = (Seq.this.apply(idx)) override def stringPrefix = Seq.this.stringPrefix + "P" } def equalsWith[B](that : Seq[B])(f : (A,B) => Boolean) : Boolean = { if (size != that.size) return false val i = elements val j = that.elements while (i.hasNext) if (!f(i.next, j.next)) return false return true } /** @returns true if this sequence start with that sequences * @see String.startsWith */ def startsWith[B](that : Seq[B]) : Boolean = { val i = elements val j = that.elements var result = true while (j.hasNext && i.hasNext && result) result = i.next == j.next result && !j.hasNext } /** @returns true if this sequence end with that sequence * @see String.endsWith */ def endsWith[B](that : Seq[B]) : Boolean = { val length = this.length val j = that.elements var i = 0 var result = true while (result && i < length && j.hasNext) result = apply(length - i - 1) == j.next result && !j.hasNext } /** @returns -1 if that not contained in this, otherwise the index where that is contained * @see String.indexOf */ def indexOf[B](that : Seq[B]) : Int = { val i = this.elements.counted var j = that.elements var idx = 0 while (i.hasNext && j.hasNext) { if (i.next != j.next) { j = that.elements idx = -1 } else if (idx == -1) { idx = i.count - 1 } } idx } /** Is that a slice in this? */ def containsSlice[B](that : Seq[B]) : Boolean = indexOf(that) != -1 }