summaryrefslogtreecommitdiff
path: root/src/dotnet-library
diff options
context:
space:
mode:
authorjeberle <jeberle@epfl.ch>2008-05-06 08:26:33 +0000
committerjeberle <jeberle@epfl.ch>2008-05-06 08:26:33 +0000
commit2d2821504b7a325522d818d6dc3a41eab29269d7 (patch)
tree2417733ff559bb0050d36c875695b829546192a1 /src/dotnet-library
parenta1c8394f06bad79700265df3ad72e6429e30e1ae (diff)
downloadscala-2d2821504b7a325522d818d6dc3a41eab29269d7.tar.gz
scala-2d2821504b7a325522d818d6dc3a41eab29269d7.tar.bz2
scala-2d2821504b7a325522d818d6dc3a41eab29269d7.zip
added the dotnet version of Manifest.scala
Diffstat (limited to 'src/dotnet-library')
-rw-r--r--src/dotnet-library/scala/reflect/Manifest.scala127
1 files changed, 127 insertions, 0 deletions
diff --git a/src/dotnet-library/scala/reflect/Manifest.scala b/src/dotnet-library/scala/reflect/Manifest.scala
new file mode 100644
index 0000000000..2366066599
--- /dev/null
+++ b/src/dotnet-library/scala/reflect/Manifest.scala
@@ -0,0 +1,127 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2008, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+package scala.reflect
+
+/** A Manifest[T] is an opaque descriptor for type T. Currently, its only
+ * use is to give access to the erasure of the type as a Class instance.
+ * BE AWARE: The different type-relation operators are all forwarded to
+ * the erased type as an approximation of the final semantics where
+ * these operators should be on the unerased type. */
+trait Manifest[T] {
+
+ /** A class representing the type U to which T would be erased. Note
+ * that there is no subtyping relationship between T and U. */
+ def erasure: Predef.Class[U] forSome { type U }
+
+ /** Tests whether the type represented by this manifest is a subtype of
+ * the type represented by `that' manifest. BE AWARE: the current
+ * implementation is an approximation, as the test is done on the
+ * erasure of the type. */
+ def <:<(that: Manifest[_]): Boolean = {
+ def subtype(sub: Predef.Class[_], sup: Predef.Class[_]): Boolean = {
+ val subSuperClass = sub.BaseType
+ val subSuperInterfaces = sub.GetInterfaces.toList
+ val subSuper =
+ (if (subSuperClass == null) Nil else List(subSuperClass)) ::: subSuperInterfaces
+ (subSuper contains sup) || (subSuper exists (subtype(_, sup)))
+ }
+ this.erasure == that.erasure || subtype(this.erasure, that.erasure)
+ }
+
+ /** Tests whether the type represented by this manifest is a supertype
+ * of the type represented by `that' manifest. BE AWARE: the current
+ * implementation is an approximation, as the test is done on the
+ * erasure of the type. */
+ def >:>(that: Manifest[_]): Boolean =
+ that <:< this
+
+ /** Tests whether the type represented by this manifest is equal to the
+ * type represented by `that' manifest. BE AWARE: the current
+ * implementation is an approximation, as the test is done on the
+ * erasure of the type. */
+ override def equals(that: Any): Boolean = that match {
+ case m:Manifest[_] => this.erasure == m.erasure
+ case _ => false
+ }
+
+}
+
+/** This object is used by the compiler and <b>should not be used in
+ * client code</b>. The object `Manifest' defines factory methods for
+ * manifests. BE AWARE: The factory for refinement types is missing and
+ * will be implemented in a later version of this class. */
+object Manifest {
+
+ /** Manifest for the singleton type `value.type'. */
+ def singleType[T](value: Any): Manifest[T] =
+ new Manifest[T] {
+ lazy val erasure =
+ value match {
+ case anyRefValue: AnyRef => anyRefValue.GetType
+ case anyValue => error("There is no singleton type for AnyVal values")
+ }
+ override lazy val toString = value.toString + ".type"
+ }
+
+ /** Manifest for the class type `clazz', where `clazz' is
+ * a top-level or static class. */
+ def classType[T](clazz: Predef.Class[T]): Manifest[T] =
+ new Manifest[T] {
+ val erasure = clazz
+ override lazy val toString = erasure.getName
+ }
+
+ /** Manifest for the class type `clazz[args]', where `clazz' is
+ * a top-level or static class. */
+ def classType[T](clazz: Predef.Class[_], args: Manifest[_]*): Manifest[T] =
+ new Manifest[T] {
+ val erasure = clazz
+ val typeArguments: Seq[Manifest[_]] = args
+ override lazy val toString = erasure.getName + typeArguments.mkString("[", ", ", "]")
+ }
+
+ /** Manifest for the class type `prefix # clazz'. */
+ def classType[T](prefix: Manifest[_], clazz: Predef.Class[_]): Manifest[T] =
+ new Manifest[T] {
+ val erasure = clazz
+ override lazy val toString = prefix.toString + "#" + clazz.getName
+ }
+
+ /** Manifest for the class type `prefix # clazz[args]'. */
+ def classType[T](prefix: Manifest[_], clazz: Predef.Class[_], args: Manifest[_]*): Manifest[T] =
+ new Manifest[T] {
+ val erasure = clazz
+ val typeArguments: Seq[Manifest[_]] = args
+ override lazy val toString = prefix.toString + "#" + clazz.getName + typeArguments.mkString("[", ", ", "]")
+ }
+
+ /** Manifest for the abstract type `prefix # name'. `upperBound' is not
+ * strictly necessary as it could be obtained by reflection. It was
+ * added so that erasure can be calculated without reflection. */
+ def abstractType[T](prefix: Manifest[_], name: String, upperBound: Manifest[_]): Manifest[T] =
+ new Manifest[T] {
+ lazy val erasure = upperBound.erasure
+ override lazy val toString = prefix.toString + "#" + name
+ }
+
+ /** Manifest for the abstract type `prefix # name[args]'. */
+ def abstractType[T](prefix: Manifest[_], name: String, upperBound: Manifest[_], args: Manifest[_]*): Manifest[T] =
+ new Manifest[T] {
+ lazy val erasure = upperBound.erasure
+ val typeArguments: Seq[Manifest[_]] = args
+ override lazy val toString = prefix.toString + "#" + name + typeArguments.mkString("[", ", ", "]")
+ }
+
+ /** Manifest for the intersection type `parents_0 with ... with parents_n'. */
+ def intersectionType[T](parents: Manifest[_]*): Manifest[T] =
+ new Manifest[T] {
+ lazy val erasure = parents.first.erasure
+ override lazy val toString = parents.mkString(" with ")
+ }
+
+}