summaryrefslogtreecommitdiff
path: root/sources/scalac/util/Debug.java
blob: ffc1be0aad66d7a87a80a6201b1aded09ea8e5c7 (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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002-2005, LAMP/EPFL         **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package scalac.util;

import scala.tools.util.debug.Debugger;
import scala.tools.util.debug.ToStringDebugger;

import scalac.Global;
import scalac.ast.Tree;
import scalac.symtab.Modifiers;
import scalac.symtab.Scope;
import scalac.symtab.Symbol;
import scalac.symtab.Type;

/**
 * Debugging class, used e.g. to obtain string representations of
 * compiler data structures that are not "pretty-printed" and thus
 * easier to relate to the source code.
 *
 * All methods are static to be easily useable in any context.
 *
 * @author Michel Schinz
 * @version 1.0
 */
public class Debug extends scala.tools.util.debug.Debug {

    //########################################################################
    // Private Initialization

    /**
     * Forces the initialization of this class. Returns the boolean
     * value true so that it can be invoked from an assert statement.
     */
    public static boolean initialize() {
        // nothing to do, everything is done in the static initializer
        return true;
    }

    static {
        addDebugger(new ToStringDebugger(Tree.class));
        addDebugger(new ToStringDebugger(Type.class));
        addDebugger(SymbolDebugger.object);
        addDebugger(ScopeDebugger.object);
    }

    //########################################################################
    // Public Methods - Logging

    public static boolean log(Object a) {
        return logAll(new Object[] {a});
    }

    public static boolean log(Object a, Object b) {
        return logAll(new Object[] {a, b});
    }

    public static boolean log(Object a, Object b, Object c) {
        return logAll(new Object[] {a, b, c});
    }

    public static boolean log(Object a, Object b, Object c, Object d) {
        return logAll(new Object[] {a, b, c, d});
    }

    public static boolean logAll(Object[] args) {
        return Global.instance.log(showAll(args, null));
    }

    //########################################################################
    // showTree

    private static void append(StringBuffer buf, Name[] names) {
        for (int i = 0; i < names.length; i++) {
            if (i > 0) buf.append(",");
            append(buf, names[i]);
        }
    }

    private static void append(StringBuffer buf, Name name) {
        buf.append("\"" + name + '"');
    }

    private static void append(StringBuffer buf, String str) {
        buf.append("\"" + str + '"');
    }

    private static void append(StringBuffer buf, Tree[] trees) {
        buf.append('[');
        for (int i = 0; i < trees.length; i++) {
            if (i > 0) buf.append(',');
            append(buf, trees[i]);
        }
        buf.append(']');
    }

    private static void append(StringBuffer buf, Tree[][] trees) {
        for (int i = 0; i < trees.length; i++) {
            buf.append('[');
            append(buf, trees[i]);
            buf.append(']');
        }
    }

    private static void append(StringBuffer buf, Tree tree) {
        switch (tree) {
        case Empty:
            buf.append("Empty()");
            break;
        case Attributed(Tree attribute, Tree definition):
            buf.append("Attributed(");
            append(buf, attribute);
            buf.append(',');
            append(buf, definition);
            buf.append(')');
            break;
        case DocDef(String comment, Tree definition):
            buf.append("DocDef(");
            append(buf, comment);
            buf.append(',');
            append(buf, definition);
            buf.append(')');
            break;
        case ClassDef(int mods, Name name, Tree.AbsTypeDef[] tparams,
                      Tree.ValDef[][] vparams, Tree tpe, Tree.Template impl):
            buf.append("ClassDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, name);
            buf.append(',');
            append(buf, tparams);
            buf.append(',');
            append(buf, vparams);
            buf.append(',');
            append(buf, tpe);
            buf.append(',');
            append(buf, impl);
            buf.append(')');
            break;
        case PackageDef(Tree packaged, Tree.Template impl):
            buf.append("PackageDef(");
            append(buf, packaged);
            buf.append(',');
            append(buf, impl);
            buf.append(')');
            break;
        case ModuleDef(int mods, Name name, Tree tpe, Tree.Template impl):
            buf.append("ModuleDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, name);
            buf.append(',');
            append(buf, tpe);
            buf.append(',');
            append(buf, impl);
            buf.append(')');
            break;
        case ValDef(int mods, Name name, Tree tpe, Tree rhs):
            buf.append("ValDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, name);
            buf.append(',');
            append(buf, tpe);
            buf.append(',');
            append(buf, rhs);
            buf.append(')');
            break;
        case PatDef(int mods, Tree pat, Tree rhs):
            buf.append("PatDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, pat);
            buf.append(',');
            append(buf, rhs);
            buf.append(')');
            break;
        case DefDef(int mods, Name name, Tree.AbsTypeDef[] tparams,
                    Tree.ValDef[][] vparams, Tree tpe, Tree rhs):
            buf.append("DefDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, name);
            buf.append(',');
            append(buf, tparams);
            buf.append(',');
            append(buf, vparams);
            buf.append(',');
            append(buf, tpe);
            buf.append(',');
            append(buf, rhs);
            buf.append(')');
            break;
        case AbsTypeDef(int mods, Name name, Tree rhs, Tree lobound):
            buf.append("AbsTypeDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, name);
            buf.append(',');
            append(buf, rhs);
            buf.append(',');
            append(buf, lobound);
            buf.append(')');
            break;
        case AliasTypeDef(int mods, Name name, Tree.AbsTypeDef[] tparams, Tree rhs):
            buf.append("AliasTypeDef(");
            Modifiers.Helper.toString(buf, mods);
            buf.append(',');
            append(buf, name);
            buf.append(',');
            append(buf, tparams);
            buf.append(',');
            append(buf, rhs);
            buf.append(')');
            break;
        case Import(Tree expr, Name[] selectors):
            buf.append("Import(");
            append(buf, expr);
            buf.append(",");
            append(buf, selectors);
            buf.append(")");
            break;
        case CaseDef(Tree pat, Tree guard, Tree body):
            buf.append("CaseDef(");
            buf.append(",");
            append(buf, pat);
            buf.append(",");
            append(buf, guard);
            buf.append(",");
            append(buf, body);
            buf.append(")");
            break;
        case Template(Tree[] parents, Tree[] body):
            buf.append("Template(");
            append(buf, parents);
            buf.append(',');
            append(buf, body);
            buf.append(')');
            break;
        case LabelDef(Name name, Tree.Ident[] params, Tree rhs):
            buf.append("LabelDef(");
            buf.append(",");
            append(buf, name);
            buf.append(',');
            append(buf, params);
            buf.append(',');
            append(buf, rhs);
            buf.append(')');
            break;
        case Block(Tree[] stats, Tree expr):
            buf.append("Block(");
            append(buf, stats);
            buf.append(',');
            append(buf, expr);
            buf.append(')');
            break;
        case Sequence(Tree[] trees):
            buf.append("Sequence(");
            buf.append(',');
            append(buf, trees);
            buf.append(")");
            break;
        case Alternative(Tree[] trees):
            buf.append("Alternative(");
            buf.append(',');
            append(buf, trees);
            buf.append(')');
            break;
        case Bind(Name name, Tree rhs):
            buf.append("Bind(");
            append(buf, name);
            buf.append(',');
            append(buf, rhs);
            buf.append(")");
            break;
        case Visitor(Tree.CaseDef[] cases):
            buf.append("ClassDef(");
            append(buf, cases);
            buf.append(')');
            break;
        case Function(Tree.ValDef[] vparams, Tree body):
            buf.append("Function(");
            append(buf, vparams);
            buf.append(',');
            append(buf, body);
            buf.append(')');
            break;
        case Assign(Tree lhs, Tree rhs):
            buf.append("Assign(");
            append(buf, lhs);
            buf.append(',');
            append(buf, rhs);
            buf.append(')');
            break;
        case If(Tree cond, Tree thenp, Tree elsep):
            buf.append("If(");
            append(buf, cond);
            buf.append(',');
            append(buf, thenp);
            buf.append(',');
            append(buf, elsep);
            buf.append(')');
            break;
        case Switch(Tree test, int[] tags, Tree[] bodies, Tree otherwise):
            buf.append("Switch(");
            buf.append(',');
            append(buf, test);
            buf.append(',');
            buf.append(tags); // TODO
            buf.append(',');
            append(buf, bodies);
            buf.append(",");
            append(buf, otherwise);
            buf.append(')');
            break;
        case Return(Tree expr):
            buf.append("Return(");
            append(buf, expr);
            buf.append(')');
            break;
        case Throw(Tree expr):
            buf.append("Throw(");
            append(buf, expr);
            buf.append(")");
            break;
        case New(Tree init):
            buf.append("New(");
            append(buf, init);
            buf.append(")");
            break;
        case Create(Tree qualifier, Tree[] targs):
            buf.append("Create(");
            append(buf, qualifier);
            buf.append(',');
            append(buf, targs);
            buf.append(')');
            break;
        case Typed(Tree expr, Tree tpe):
            buf.append("Typed(");
            append(buf, expr);
            buf.append(",");
            append(buf, tpe);
            buf.append(")");
            break;
        case TypeApply(Tree fun, Tree[] args):
            buf.append("TypeApply(");
            append(buf, fun);
            buf.append(',');
            append(buf, args);
            buf.append(')');
            break;
        case Apply(Tree fun, Tree[] args):
            buf.append("Apply(");
            append(buf, fun);
            buf.append(',');
            append(buf, args);
            buf.append(')');
            break;
        case Super(Name qualifier, Name mixin):
            buf.append("Super(");
            append(buf, qualifier);
            buf.append(',');
            append(buf, mixin);
            buf.append(')');
            break;
        case This(Name qualifier):
            buf.append("This(");
            append(buf, qualifier);
            buf.append(')');
            break;
        case Select(Tree qualifier, Name selector):
            buf.append("Select(");
            append(buf, qualifier);
            buf.append(',');
            append(buf, selector);
            buf.append(')');
            break;
        case Ident(Name name):
            buf.append("Ident(");
            append(buf, name);
            buf.append(')');
            break;
        case Literal(scalac.atree.AConstant value):
            buf.append("Literal(" + value + ")");
            break;
        case TypeTerm():
            buf.append("TypeTerm()");
            break;
        case SingletonType(Tree ref):
            buf.append("SingletonType(");
            append(buf, ref);
            buf.append(')');
            break;
        case SelectFromType(Tree qualifier, Name selector):
            buf.append("SelectFromType(");
            append(buf, qualifier);
            buf.append(',');
            append(buf, selector);
            buf.append(')');
            break;
        case FunType(Tree[] argtpes, Tree restpe):
            buf.append("FunType(");
            append(buf, argtpes);
            buf.append(',');
            append(buf, restpe);
            buf.append(')');
            break;
        case CompoundType(Tree[] parents, Tree[] refinements):
            buf.append("CompoundType(");
            append(buf, parents);
            buf.append(',');
            append(buf, refinements);
            buf.append(')');
            break;
        case AppliedType(Tree tpe, Tree[] args):
            buf.append("AppliedType(");
            append(buf, tpe);
            buf.append(',');
            append(buf, args);
            buf.append(')');
            break;
        case Try(Tree block, Tree catcher, Tree finalizer):
            buf.append("Try(");
            append(buf, block);
            buf.append(',');
            append(buf, catcher);
            buf.append(',');
            append(buf, finalizer);
            buf.append(')');
            break;
        default:
            buf.append(tree.getClass().getName() + " ");
        }
    }

    public static String showTree(Tree tree) {
        StringBuffer buf = new StringBuffer();
        append(buf, tree);
        return buf.toString();
    }

    //########################################################################
}

/** This class implements a debugger for symbols. */
public class SymbolDebugger implements Debugger {

    //########################################################################
    // Public Constants

    /** The unique instance of this class. */
    public static final SymbolDebugger object = new SymbolDebugger();

    //########################################################################
    // Protected Constructors

    /** Initializes this instance. */
    protected SymbolDebugger() {}

    //########################################################################
    // Public Methods

    public boolean canAppend(Object object) {
        return object instanceof Symbol;
    }

    public void append(StringBuffer buffer, Object object) {
        Symbol symbol = (Symbol)object;
        if (!symbol.isNone() && !symbol.owner().isRoot() && !symbol.isRoot()) {
            Debug.append(buffer, symbol.owner());
            buffer.append(".");
        }
        buffer.append(symbol.name);
        if (Global.instance.uniqid) {
            buffer.append('#');
            buffer.append(symbol.id);
        }
        if (symbol.isConstructor()) {
            buffer.append('(');
            buffer.append(symbol.constructorClass().name);
            buffer.append(')');
        }
    }

    //########################################################################
}

/** This class implements a debugger for scopes. */
public class ScopeDebugger implements Debugger {

    //########################################################################
    // Public Constants

    /** The unique instance of this class. */
    public static final ScopeDebugger object = new ScopeDebugger();

    //########################################################################
    // Protected Constructors

    /** Initializes this instance. */
    protected ScopeDebugger() {}

    //########################################################################
    // Public Methods

    public boolean canAppend(Object object) {
        return object instanceof Scope;
    }

    public void append(StringBuffer buffer, Object object) {
        Scope scope = (Scope)object;
        buffer.append('{');
        for (Scope.SymbolIterator i = scope.iterator(); i.hasNext();) {
            Debug.append(buffer, i.next());
            if (i.hasNext()) buffer.append(',');
        }
        buffer.append('}');
    }

    //########################################################################
}