summaryrefslogtreecommitdiff
path: root/sources/meta/java/JavaWriter.java
blob: d0106f3215e85b44e9abfeccea46f9de8150cd17 (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
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

package meta.java;

import java.util.Iterator;
import java.util.Map;
import java.util.HashMap;
import java.util.Set;
import java.util.HashSet;
import java.util.TreeSet;

import meta.util.TextWriter;
import meta.util.TextExpander;

/** A string generator with support for java source code generation. */
public class JavaWriter {

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

    /** The width of a separator */
    public static final int SEPARATOR_WIDTH = 78;

    //########################################################################
    // Private Fields

    /** The underlying text writer */
    private final TextWriter writer;

    /** The current package */
    private final String peckage;

    /** List of imports on-demand */
    private final Set/*<String>*/ owners;

    /** List of explicit imports (maps short names to full names) */
    private final Map/*<String,String>*/ types;

    //########################################################################
    // Public Constructors

    /** Creates a new JavaPrinter with no current package. */
    public JavaWriter() {
        this((String)null);
    }

    /** Creates a new JavaPrinter with the given current package. */
    public JavaWriter(String peckage) {
        this(new TextWriter("    "), peckage);
    }

    /** Creates a new JavaPrinter with no current package. */
    public JavaWriter(TextWriter writer) {
        this(writer, null);
    }

    /** Creates a new JavaPrinter with the given current package. */
    public JavaWriter(TextWriter writer, String peckage) {
        this.writer = writer;
        this.peckage = peckage;
        this.owners = new HashSet();
        this.types = new HashMap();
    }

    //########################################################################
    // Public Methods - Importing types

    /** Returns the current package. */
    public String getPackage() {
        return peckage;
    }

    /** Returns true if the given type needs to be fully qualified. */
    public boolean needsQualification(Type type) {
        type = type.getBaseType();
        String owner = type.getOwner();
        if (owner == null) return true;
        Object current = types.get(type.getName());
        if (current != null) return !type.getFullName().equals(current);
        return !owner.equals(getPackage()) && !owners.contains(owner);
    }

    /** If necessary, adds an explicit import for the given type. */
    public void importType(Type type) {
        importType(type, false);
    }

    /** If necessary, adds an explicit import for the given type. */
    public void importType(Type type, boolean force) {
        type = type.getBaseType();
        String owner = type.getOwner();
        if (owner == null) return;
        if (!force && owner.equals(getPackage())) return;
        if (!force && owners.contains(owner)) return;
        String shortname = type.getName();
        String longname = type.getFullName();
        Object current = types.get(shortname);
        if (current == null) {
            types.put(shortname, longname);
        } else if (!longname.equals(current)) {
            throw new Error();
        }
    }

    /** Adds an import on demand for members of the given type. */
    public void importFrom(Type type) {
        importFrom(type.getFullName());
    }

    /** Adds an import on demand for members of the given owner. */
    public void importFrom(String owner) {
        owners.add(owner);
    }

    //########################################################################
    // Public Methods - Printing java statements and expressions

    /** Prints a package statement for the current package. */
    public JavaWriter printPackage() {
        return getPackage() == null ? this : printPackage(getPackage());
    }

    /** Prints a package statement. */
    public JavaWriter printPackage(String peckage) {
        return print("package ").print(peckage).println(";");
    }

    /** Prints an import statement. */
    public JavaWriter printImport(String inport) {
        return print("import ").print(inport).println(";");
    }

    /** Prints import statements for the current imports. */
    public JavaWriter printImports() {
        return printImports(getImports());
    }

    /** Prints a list of import statements. */
    public JavaWriter printImports(Set imports) {
        for (Iterator i = imports.iterator(); i.hasNext(); )
            printImport((String)i.next());
        if (imports.size() > 0) println();
        return this;
    }

    /** Prints a "do not edit" comment. */
    public JavaWriter printDoNotEdit() {
        return printComment(TextExpander.DO_NOT_EDIT);
    }

    /** Prints a single-line Java documentation comment. */
    public JavaWriter printDescription(String line) {
        return print("/** ").print(line).println(" */");
    }

    /** Prints a multi-line Java documentation comment. */
    public JavaWriter printDescription(String[] lines) {
        println("/**");
        for (int i = 0; i < lines.length; i++) print(" * ").println(lines[i]);
        return println(" */");
    }

    /** Prints a single-line comment. */
    public JavaWriter printComment(String comment) {
        return print("// ").println(comment);
    }

    /** Prints a separator. */
    public JavaWriter printSeparator() {
        println().print("//");
        int width = SEPARATOR_WIDTH - 2 - getIndentLevel() * getIndentWidth();
        for (int i = 0; i < width; i++) print("#");
        return println();
    }

    /** Prints a separator with the given title. */
    public JavaWriter printSeparator(String title) {
        return printSeparator().printComment(title).println();
    }

    /** Prints a separator with the given title and subtitle. */
    public JavaWriter printSeparator(String title, String subtitle) {
        return printSeparator(title + " - " + subtitle);
    }

    //########################################################################
    // Public Methods - Printing simple values

    /** Prints a new line. */
    public JavaWriter println() {
        return line();
    }

    /** Prints the boolean value followed by a new line. */
    public JavaWriter println(boolean value) {
        return print(value).line();
    }

    /** Prints the byte value followed by a new line. */
    public JavaWriter println(byte value) {
        return print(value).line();
    }

    /** Prints the short value followed by a new line. */
    public JavaWriter println(short value) {
        return print(value).line();
    }

    /** Prints the char value followed by a new line. */
    public JavaWriter println(char value) {
        return print(value).line();
    }

    /** Prints the int value followed by a new line. */
    public JavaWriter println(int value) {
        return print(value).line();
    }

    /** Prints the long value followed by a new line. */
    public JavaWriter println(long value) {
        return print(value).line();
    }

    /** Prints the float value followed by a new line. */
    public JavaWriter println(float value) {
        return print(value).line();
    }

    /** Prints the double value followed by a new line. */
    public JavaWriter println(double value) {
        return print(value).line();
    }

    /** Prints the string followed by a new line. */
    public JavaWriter println(String value) {
        return print(value).line();
    }

    /** Prints the type followed by a new line. */
    public JavaWriter println(Type value) {
        return print(value).line();
    }

    /** Prints the boolean value. */
    public JavaWriter print(boolean value) {
        writer.print(value);
        return this;
    }

    /** Prints the byte value. */
    public JavaWriter print(byte value) {
        writer.print(value);
        return this;
    }

    /** Prints the short value. */
    public JavaWriter print(short value) {
        writer.print(value);
        return this;
    }

    /** Prints the char value. */
    public JavaWriter print(char value) {
        writer.print(value);
        return this;
    }

    /** Prints the int value. */
    public JavaWriter print(int value) {
        writer.print(value);
        return this;
    }

    /** Prints the long value. */
    public JavaWriter print(long value) {
        writer.print(value);
        return this;
    }

    /** Prints the float value. */
    public JavaWriter print(float value) {
        writer.print(value);
        return this;
    }

    /** Prints the long value. */
    public JavaWriter print(double value) {
        writer.print(value);
        return this;
    }

    /** Prints the string. */
    public JavaWriter print(String value) {
        writer.print(value);
        return this;
    }

    /** Prints the type. */
    public JavaWriter print(Type value) {
        return print(value.getName(needsQualification(value)));
    }

    //########################################################################
    // Public Methods - Formating

    /** Returns the indentation width. */
    public int getIndentWidth() {
        return writer.getIndentWidth();
    }

    /** Returns the indentation level. */
    public int getIndentLevel() {
        return writer.getIndentLevel();
    }

    /** Returns the indentation level. */
    public JavaWriter setIndentLevel(int level) {
        writer.setIndentLevel(level);
        return this;
    }

    /** Increases the indentation level by one. */
    public JavaWriter indent() {
        writer.indent();
        return this;
    }

    /** Decreases the indentation level by one. */
    public JavaWriter undent() {
        writer.undent();
        return this;
    }

    /** Starts a new line. */
    public JavaWriter line() {
        writer.line();
        return this;
    }

    /** Inserts a white space. */
    public JavaWriter space() {
        writer.space();
        return this;
    }

    /** Prints an opening brace followed by a new line. */
    public JavaWriter lbrace() {
        return space().println("{").indent();
    }

    /** Prints a closing brace followed by a new line. */
    public JavaWriter rbrace() {
        return undent().space().println("}");
    }

    //########################################################################
    // Public Methods - Accessing

    /** Returns the underlying StringBuffer. */
    public TextWriter getTextWriter() {
        return writer;
    }

    /** Returns the underlying StringBuffer. */
    public StringBuffer getBuffer() {
        return writer.getBuffer();
    }

    /** Returns the generated string. */
    public String toString() {
        return writer.toString();
    }

    //########################################################################
    // Private Methods

    /** Returns the current list of imports (explicit and on-demand). */
    private Set getImports() {
        Set imports = new TreeSet();
        for (Iterator i = owners.iterator(); i.hasNext(); )
            imports.add(i.next() + ".*");
        for (Iterator i = types.values().iterator(); i.hasNext(); )
            imports.add(i.next());
        return imports;
    }

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