summaryrefslogtreecommitdiff
path: root/sources/scala/tools/nsc/symtab/classfile/MetaParser.scala
blob: 8bfd9709ad6b90d2c7f894b6499e7a6ac0ecda4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* NSC -- new scala compiler
 * Copyright 2005 LAMP/EPFL
 * @author  Martin Odersky
 */
// $Id$
package scala.tools.nsc.symtab.classfile;

import java.util.{StringTokenizer, NoSuchElementException}
import scala.collection.mutable.ListBuffer;
import scala.tools.util.Position;

abstract class MetaParser{

  val global: Global;
  import global._;

  private var scanner: StringTokenizer = _;
  private var owner: Symbol = _;
  private var ownertype: Type = _;
  private var token: String = _;
  private var locals: Scope = null;

  def parse(meta: String, sym: Symbol, symtype: Type): unit = {
    //System.out.println("parse meta for " + sym + ":" + meta + ", locals = " + locals);//DEBUG
    this.scanner = new StringTokenizer(meta, "()[], \t<;", true);
    this.owner = sym;
    this.ownertype = symtype;
    nextToken();
    if (token == "class") parseClass()
    else if (token == "method") parseMethod()
    else if (token == "field") parseField()
    else if (token == "constr") parseConstr()
    else owner.setInfo(symtype);
  }

  protected def nextToken(): unit =
    try {
      do { token = scanner.nextToken().trim() } while (token.length() == 0)
    } catch {
      case ex: NoSuchElementException => token = ""
    }

  protected def parseType(): Type = {
    val str = token;
    nextToken();
    val sym = locals.lookup(newTypeName(str));
    if (sym != NoSymbol) sym.tpe
    else {
      val tp = definitions.getClass(str).tpe;
      if (token != "[") tp
      else {
	val args = new ListBuffer[Type];
	do {
	  nextToken(); args append parseType();
	} while (token == ",");
	nextToken();
	appliedType(tp, args.toList)
      }
    }
  }

  protected def parseTypeParam(): Symbol = {
    val vflag =
      if (token == "+") { nextToken(); Flags.COVARIANT }
      else if (token == "-") { nextToken(); Flags.CONTRAVARIANT }
      else 0;
    assert(token.startsWith("?"));
    val sym = owner.newTypeParameter(Position.NOPOS, newTypeName(token))
      .setFlag(vflag)
      .setInfo(TypeBounds(
	definitions.AllClass.tpe,
	definitions.AnyClass.tpe));
    locals enter sym;
    nextToken();
    sym
  }

  protected def parseTypeParams(): List[Symbol] = {
    nextToken();
    val syms = new ListBuffer[Symbol];
    if (token != "]") {
      syms append parseTypeParam();
      while (token == ",") {
        nextToken(); syms append parseTypeParam();
      }
    }
    assert(token == "]");
    syms.toList
  }

  protected def parseParams(): List[Type] = {
    nextToken();
    val tps = new ListBuffer[Type];
    if (token != ")") {
      tps append parseType();
      while (token == ",") {
        nextToken(); tps append parseType();
      }
    }
    assert(token == ")");
    tps.toList
  }

  protected def parseClass(): unit = {
    locals = new Scope();
    def parse(): Type = {
      nextToken();
      if (token == "[") {
	PolyType(parseTypeParams(), parse())
      } else if (token == "extends") {
	val tps = new ListBuffer[Type];
	do {
          nextToken(); tps append parseType()
	} while (token == "with");
	ownertype match {
          case ClassInfoType(parents, decls, clazz) =>
            ClassInfoType(tps.toList, decls, clazz)
	}
      } else ownertype
    }
    owner.setInfo(parse());
    assert(token == ";")
  }

  protected def parseMethod(): unit = {
    val globals = locals;
    locals = if (locals == null) new Scope() else new Scope(locals);
    def parse(): Type = {
      nextToken();
      if (token == "[") PolyType(parseTypeParams(), parse())
      else if (token == "(") MethodType(parseParams(), parse())
      else parseType()
    }
    owner.setInfo(parse());
    locals = globals;
    assert(token == ";")
  }

  protected def parseField(): unit = {
    nextToken();
    owner.setInfo(parseType());
    assert(token == ";")
  }

  protected def parseConstr(): unit = {
    def parse(): Type = {
      nextToken();
      if (token == "(") MethodType(parseParams(), parse())
      else owner.owner.tpe
    }
    owner.setInfo(parse());
    System.out.println("constr " + owner + " = " + owner.info);
    assert(token == ";")
  }
}