package scala.tools.nsc
package symtab
import scala.tools.nsc.transform.Reifiers
import util._
trait AnnotationInfos extends reflect.generic.AnnotationInfos { self: SymbolTable =>
abstract class ClassfileAnnotArg
case class LiteralAnnotArg(const: Constant)
extends ClassfileAnnotArg {
override def toString = const.escapedStringValue
}
object LiteralAnnotArg extends LiteralAnnotArgExtractor
case class ArrayAnnotArg(args: Array[ClassfileAnnotArg])
extends ClassfileAnnotArg {
override def toString = args.mkString("[", ", ", "]")
}
object ArrayAnnotArg extends ArrayAnnotArgExtractor
case class ScalaSigBytes(bytes: Array[Byte]) extends ClassfileAnnotArg {
override def toString = (bytes map { byte => (byte & 0xff).toHexString }).mkString("[ ", " ", " ]")
lazy val encodedBytes =
reflect.generic.ByteCodecs.encode(bytes)
def isLong: Boolean = (encodedBytes.length > 65535)
def sigAnnot: Type =
if (this.isLong)
definitions.ScalaLongSignatureAnnotation.tpe
else
definitions.ScalaSignatureAnnotation.tpe
}
case class NestedAnnotArg(annInfo: AnnotationInfo)
extends ClassfileAnnotArg {
assert(annInfo.args.isEmpty, annInfo.args)
override def toString = annInfo.toString
}
object NestedAnnotArg extends NestedAnnotArgExtractor
class AnnotationInfoBase
case class AnnotationInfo(atp: Type, args: List[Tree],
assocs: List[(Name, ClassfileAnnotArg)])
extends AnnotationInfoBase {
assert(args.isEmpty || assocs.isEmpty)
private var rawpos: Position = NoPosition
def pos = rawpos
def setPos(pos: Position): this.type = {
rawpos = pos
this
}
lazy val isTrivial: Boolean = atp.isTrivial && !(args exists (_.exists(_.isInstanceOf[This])))
override def toString: String = atp +
(if (!args.isEmpty) args.mkString("(", ", ", ")") else "") +
(if (!assocs.isEmpty) (assocs map { case (x, y) => x+" = "+y } mkString ("(", ", ", ")")) else "")
def isErroneous = atp.isErroneous || args.exists(_.isErroneous)
def refsSymbol(sym: Symbol) =
args.exists(_.exists(_.symbol == sym))
def substIdentSyms(from: Symbol, to: Symbol) = {
val subs = new TreeSymSubstituter(List(from), List(to))
AnnotationInfo(atp, args.map(subs(_)), assocs).setPos(pos)
}
def stringArg(index: Int): Option[String] = if(args.size > index) Some(args(index) match {
case Literal(const) => const.stringValue
case x => x.toString
}) else None
def intArg(index: Int): Option[Int] = if(args.size > index) Some(args(index)) collect {
case Literal(Constant(x: Int)) => x
} else None
}
object AnnotationInfo extends AnnotationInfoExtractor
lazy val classfileAnnotArgManifest: ClassManifest[ClassfileAnnotArg] =
reflect.ClassManifest.classType(classOf[ClassfileAnnotArg])
case class LazyAnnotationInfo(annot: () => AnnotationInfo)
extends AnnotationInfoBase
}