summaryrefslogtreecommitdiff
path: root/tutorial/examples/multimeta/CombinedClass.oj
blob: 703f871c11126d150ac4abe63377df95fc8ac9fc (plain)
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
/*
 * CombinedClass.oj
 *
 * Oct 24, 2000  by Michiaki Tatsubori
 */
package examples.multimeta;


import openjava.mop.*;
import openjava.ptree.*;
import openjava.syntax.*;
import java.util.*;
import java.lang.reflect.*;


/**
 * The metaclass <code>CombinedClass</code> provides a class to be
 * bound to more than one metaclass.
 * <p>
 * An usage are:
 * <pre>
 * class MyPerson instantiates CombinedClass
 *     extends Object implements Runnable
 *     obeys PersistableClass, TransactionableClass
 * {
 *     ...
 * }
 * </pre>
 * <p>
 *
 * @author   Michiaki Tatsubori
 * @version  1.0
 * @see java.lang.OJClass
 */
public class CombinedClass instantiates Metaclass extends OJClass
{
    private static final String KEYWORD_OBEYS = "obeys";

    /**
     * Composing class metaobjects.
     */
    protected OJClass[] substances = null;

    public CombinedClass(Class javaclazz, MetaInfo metainfo) {
        super(javaclazz, metainfo);
    initializeSubstantialMetaclasses(javaclazz, metainfo);
    }

    /**
     * Initializes the substantial class metaobjects, which were specified
     * by the "obeys" phrase in the class declaration.
     */
    private void initializeSubstantialMetaclasses(Class javaclazz,
                          MetaInfo metainfo) {
    int cnum = 0;
    while (metainfo.get(KEYWORD_OBEYS + cnum) != null)  ++cnum;
    substances = new OJClass[cnum];
    for (int i = 0; i < substances.length; ++i) {
        String cname = metainfo.get(KEYWORD_OBEYS + i);
        /* Do not use OJClass.forClass() here.  It would changes
         * the bind of the metaclass to the class name.
         * The substantial class metaobjects must be created directly.
         */
        try {
        Class clazz = Class.forName(cname);
        Constructor cons = clazz.getConstructor(new Class[] {
            Class.class, MetaInfo.class });
        substances[i] = (OJClass) cons.newInstance(new Object[] {
            javaclazz, metainfo});
        } catch (Exception ex) {
        throw new Error(ex.toString());
        }
    }
    }

    public CombinedClass(Environment env, OJClass declaring,
             ClassDeclaration cdecl) {
        super(env, declaring, cdecl);
    }

    /**
     * Translates the declaration part of base classes.
     */
    public void translateDefinition() throws MOPException {
    initializeSubstantialMetaclasses();

    System.out.println("The class " + getName() +
               " obeys the specified substantial metaclass/es :");
    for (int i = 0; i < substances.length; ++i) {
        System.out.println(substances[i].getClass().getName());
        substances[i].translateDefinition();
    }
    }

    /**
     * Initializes the substantial class metaobjects, which are specified
     * by the "obeys" phrase.
     */
    private void initializeSubstantialMetaclasses() throws MOPException {
    String[] metaclazz = getSubstantialMetaclasses();

    for (int i = 0; i < metaclazz.length; ++i) {
        putMetaInfo(KEYWORD_OBEYS + i, metaclazz[i]);
    }

    substances = new OJClass[metaclazz.length];
    for (int i = 0; i < substances.length; ++i) {
        String cname = metaclazz[i];
        /* Do not use OJClass.forParseTree() here.  It would changes
         * the bind of the metaclass to the class name
         * The substantial class metaobjects must be created directly.
         */
        try {
        Class clazz = Class.forName(cname);
        Constructor cons = clazz.getConstructor(new Class[] {
            Environment.class, OJClass.class,
            ClassDeclaration.class });
        Environment env = getEnvironment();
        OJClass declaring = getDeclaringClass();
        ClassDeclaration cdecl = getSourceCode();
        substances[i] = (OJClass) cons.newInstance(new Object[] {
            env, declaring, cdecl});
        } catch (Exception ex) {
        throw new Error(ex.toString());
        }
    }
    }

    private String[] getSubstantialMetaclasses() throws MOPException {
        ObjectList suffix = (ObjectList) getSuffix(KEYWORD_OBEYS);
    String[] result = new String[suffix.size()];
    for (int i = 0; i < result.length; ++i) {
        result[i] = suffix.get(i).toString();
    }
    return result;
    }

    private static Vector modifVec = new Vector();
    private static Hashtable keyTable = new Hashtable();

    /**
     * Metaclasses of the parsing class declaration.
     */
    private static Class[] metaclasses = null;

    /* Extends syntax for custom modifiers */
    public static boolean isRegisteredModifier(String keyword) {
    if (metaclasses == null) {
        System.err.println("No consultant for modifiers!");
        return false;
    }

    for (int i = 0; i < metaclasses.length; ++i) {
        Class c = metaclasses[i];
        System.err.println("Consulting " + c +
                   " for the syntax of modifiers");
        try {
        Method m = c.getMethod("isRegisteredModifier",
                       new Class[] {String.class});
        Boolean result
            = (Boolean) m.invoke(null, new Object[] {keyword});
        if (result.booleanValue() == true)  return true;
        } catch (Exception ex) {
        System.err.println(ex);
        }
    }

    return false;
    }

    /* Extends syntax for custom suffix phrases */
    public static boolean isRegisteredKeyword(String keyword) {
        if (keyword.equals(KEYWORD_OBEYS))  return true;

    if (metaclasses == null) {
        System.err.println("No consultant for suffix phrases!");
        return false;
    }

    for (int i = 0; i < metaclasses.length; ++i) {
        Class c = metaclasses[i];
        System.err.println("Consulting " + c +
                   " for the syntax of suffix phrases");
        try {
        Method m = c.getMethod("isRegisteredKeyword",
                       new Class[] {String.class});
        Boolean result
            = (Boolean) m.invoke(null, new Object[] {keyword});
        if (result.booleanValue() == true)  return true;
        } catch (Exception ex) {
        System.err.println(ex);
        }
    }

    return false;
    }

    /* Extends syntax for custom suffix phrases */
    public static SyntaxRule getDeclSuffixRule(String keyword) {
        if (keyword.equals(KEYWORD_OBEYS)) {
        /* The returned rule object is hacked to call back and register
         * type names them.
         */
        System.err.println("Consultants dismissed");
        metaclasses = null;
        return new HackedTypeNameListRule(new TypeNameParsingListener() {
        public void addTypeName(String tname) {
            System.err.println("Found a consultant " + tname);

            Class[] old = metaclasses;
            if (old == null) {
            metaclasses = new Class[1];
            } else {
            metaclasses = new Class[old.length + 1];
            for (int i = 0; i < old.length; ++i) {
                metaclasses[i] = old[i];
            }
            }
            try {
            Class mc = Class.forName(tname);
            metaclasses[metaclasses.length - 1] = mc;
            } catch (ClassNotFoundException ex) {
            System.err.println(ex);
            metaclasses = old;
            }
        }
        });
    }

    if (metaclasses == null) {
        System.err.println("No consultant for suffix phrases!");
        return null;
    }

    for (int i = 0; i < metaclasses.length; ++i) {
        Class c = metaclasses[i];
        System.err.println("Consulting " + c +
                   " for the syntax of suffix phrases");
        try {
        Method m = c.getMethod("getDeclSuffixRule",
                       new Class[] {String.class});
        SyntaxRule result
            = (SyntaxRule) m.invoke(null, new Object[] {keyword});
        if (result != null)  return result;
        } catch (Exception ex) {
        System.err.println(ex);
        }
    }

        return null;
    }

    /* -- Caller-side expansions -- */

    public Expression expandFieldRead(Environment env, FieldAccess expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandFieldRead(env, expr);
        if (result != expr)  return result;
    }
        return super.expandFieldRead(env, expr);
    }

    public Expression expandFieldWrite(Environment env,
                       AssignmentExpression expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandFieldWrite(env, expr);
        if (result != expr)  return result;
    }
        return super.expandFieldWrite(env, expr);
    }

    public Expression expandMethodCall(Environment env,
                       MethodCall expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandMethodCall(env, expr);
        if (result != expr)  return result;
    }
        return super.expandMethodCall(env, expr);
    }

    public TypeName expandTypeName(Environment env, TypeName tname) {
    TypeName result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandTypeName(env, tname);
        if (result != tname)  return result;
    }
        return super.expandTypeName(env, tname);
    }

    public Expression expandAllocation(Environment env,
                       AllocationExpression expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandAllocation(env, expr);
        if (result != expr)  return result;
    }
        return super.expandAllocation(env, expr);
    }

    public Expression expandArrayAllocation(Environment env,
                        ArrayAllocationExpression expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandArrayAllocation(env, expr);
        if (result != expr)  return result;
    }
        return super.expandArrayAllocation(env, expr);
    }

    public Expression expandArrayAccess(Environment env, ArrayAccess expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandArrayAccess(env, expr);
        if (result != expr)  return result;
    }
        return super.expandArrayAccess(env, expr);
    }

    public Expression expandAssignmentExpression(Environment env,
                         AssignmentExpression expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandAssignmentExpression(env, expr);
        if (result != expr)  return result;
    }
        return super.expandAssignmentExpression(env, expr);
    }

    public Expression expandExpression(Environment env,
                       Expression expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandExpression(env, expr);
        if (result != expr)  return result;
    }
        return super.expandExpression(env, expr);
    }

    public Statement expandVariableDeclaration(Environment env,
                           VariableDeclaration decl) {
    Statement result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandVariableDeclaration(env, decl);
        if (result != decl)  return result;
    }
        return super.expandVariableDeclaration(env, decl);
    }

    public Expression expandCastExpression(Environment env,
                       CastExpression expr)    {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandCastExpression(env, expr);
        if (result != expr)  return result;
    }
        return super.expandCastExpression(env, expr);
    }

    public Expression expandCastedExpression(Environment env,
                         CastExpression expr) {
    Expression result;
    for (int i = 0; i < substances.length; ++i) {
        result = substances[i].expandCastedExpression(env, expr);
        if (result != expr)  return result;
    }
        return super.expandCastedExpression(env, expr);
    }

    /* -- Error handlings -- */

    public OJField resolveException(NoSuchMemberException nmex, String name)
        throws NoSuchMemberException
    {
    for (int i = 0; i < substances.length; ++i) {
        try {
        return substances[i].resolveException(nmex, name);
        } catch (NoSuchMemberException ex) {}
    }
        return super.resolveException(nmex, name);
    }

    public OJMethod resolveException( NoSuchMemberException nmex,
                                 String name, OJClass[] argtypes)
        throws NoSuchMemberException
    {
    for (int i = 0; i < substances.length; ++i) {
        try {
        return substances[i].resolveException(nmex, name, argtypes);
        } catch (NoSuchMemberException ex) {}
    }
        return super.resolveException(nmex, name, argtypes);
    }

}