aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/javassist/expr/ExprEditor.java
blob: 475ab69254deb31f0dfb558b37989ca2d672ad03 (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
/*
 * Javassist, a Java-bytecode translator toolkit.
 * Copyright (C) 1999-2005 Shigeru Chiba. All Rights Reserved.
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License.  Alternatively, the contents of this file may be used under
 * the terms of the GNU Lesser General Public License Version 2.1 or later.
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 */

package javassist.expr;

import javassist.bytecode.*;
import javassist.CtClass;
import javassist.CannotCompileException;

/**
 * A translator of method bodies.
 *
 * <p>The users can define a subclass of this class to customize how to
 * modify a method body.  The overall architecture is similar to the
 * strategy pattern.
 *
 * <p>If <code>instrument()</code> is called in
 * <code>CtMethod</code>, the method body is scanned from the beginning
 * to the end.
 * Whenever an expression, such as a method call and a <tt>new</tt>
 * expression (object creation),
 * is found, <code>edit()</code> is called in <code>ExprEdit</code>.
 * <code>edit()</code> can inspect and modify the given expression.
 * The modification is reflected on the original method body.  If
 * <code>edit()</code> does nothing, the original method body is not
 * changed.
 *
 * <p>The following code is an example:
 *
 * <ul><pre>
 * CtMethod cm = ...;
 * cm.instrument(new ExprEditor() {
 *     public void edit(MethodCall m) throws CannotCompileException {
 *         if (m.getClassName().equals("Point")) {
 *             System.out.println(m.getMethodName() + " line: "
 *                                + m.getLineNumber());
 *     }
 * });
 * </pre></ul>
 *
 * <p>This code inspects all method calls appearing in the method represented
 * by <code>cm</code> and it prints the names and the line numbers of the
 * methods declared in class <code>Point</code>.  This code does not modify
 * the body of the method represented by <code>cm</code>.  If the method
 * body must be modified, call <code>replace()</code>
 * in <code>MethodCall</code>.
 *
 * @see javassist.CtClass#instrument(ExprEditor)
 * @see javassist.CtMethod#instrument(ExprEditor)
 * @see javassist.CtConstructor#instrument(ExprEditor)
 * @see MethodCall
 * @see NewExpr
 * @see FieldAccess
 *
 * @see javassist.CodeConverter
 */
public class ExprEditor {
    /**
     * Default constructor.  It does nothing.
     */
    public ExprEditor() {}

    static class NewOp {
        NewOp next;
        int pos;
        String type;

        NewOp(NewOp n, int p, String t) {
            next = n;
            pos = p;
            type = t;
        }
    }

    /**
     * Undocumented method.  Do not use; internal-use only.
     */
    public boolean doit(CtClass clazz, MethodInfo minfo)
        throws CannotCompileException
    {
        CodeAttribute codeAttr = minfo.getCodeAttribute();
        if (codeAttr == null)
            return false;

        CodeIterator iterator = codeAttr.iterator();
        boolean edited = false;
        int maxLocals = codeAttr.getMaxLocals();
        int maxStack = 0;

        NewOp newList = null;
        ConstPool cp = minfo.getConstPool();

        while (iterator.hasNext())
            try {
                Expr expr = null;
                int pos = iterator.next();
                int c = iterator.byteAt(pos);

                if (c < Opcode.GETSTATIC)   // c < 178
                    /* skip */;
                else if (c < Opcode.NEWARRAY) { // c < 188
                    if (c == Opcode.INVOKESTATIC
                        || c == Opcode.INVOKEINTERFACE
                        || c == Opcode.INVOKEVIRTUAL) {
                        expr = new MethodCall(pos, iterator, clazz, minfo);
                        edit((MethodCall)expr);
                    }
                    else if (c == Opcode.GETFIELD || c == Opcode.GETSTATIC
                             || c == Opcode.PUTFIELD
                             || c == Opcode.PUTSTATIC) {
                        expr = new FieldAccess(pos, iterator, clazz, minfo, c);
                        edit((FieldAccess)expr);
                    }
                    else if (c == Opcode.NEW) {
                        int index = iterator.u16bitAt(pos + 1);
                        newList = new NewOp(newList, pos,
                                            cp.getClassInfo(index));
                    }
                    else if (c == Opcode.INVOKESPECIAL) {
                        if (newList != null && cp.isConstructor(newList.type,
                                iterator.u16bitAt(pos + 1)) > 0) {
                            expr = new NewExpr(pos, iterator, clazz, minfo,
                                               newList.type, newList.pos);
                            edit((NewExpr)expr);
                            newList = newList.next;
                        }
                        else {
                            MethodCall mcall = new MethodCall(pos, iterator, clazz, minfo);
                            if (mcall.getMethodName().equals(MethodInfo.nameInit)) {
                                ConstructorCall ccall = new ConstructorCall(pos, iterator, clazz, minfo);
                                expr = ccall;
                                edit(ccall);
                            }
                            else {
                                expr = mcall;
                                edit(mcall);
                            }
                        }
                    }
                }
                else {  // c >= 188
                    if (c == Opcode.NEWARRAY || c == Opcode.ANEWARRAY
                        || c == Opcode.MULTIANEWARRAY) {
                        expr = new NewArray(pos, iterator, clazz, minfo, c);
                        edit((NewArray)expr);
                    }
                    else if (c == Opcode.INSTANCEOF) {
                        expr = new Instanceof(pos, iterator, clazz, minfo);
                        edit((Instanceof)expr);
                    }
                    else if (c == Opcode.CHECKCAST) {
                        expr = new Cast(pos, iterator, clazz, minfo);
                        edit((Cast)expr);
                    }
                }

                if (expr != null && expr.edited()) {
                    edited = true;
                    maxLocals = max(maxLocals, expr.locals());
                    maxStack = max(maxStack, expr.stack());
                }
            }
            catch (BadBytecode e) {
                throw new CannotCompileException(e);
            }

        ExceptionTable et = codeAttr.getExceptionTable();
        int n = et.size();
        for (int i = 0; i < n; ++i) {
            Handler h = new Handler(et, i, iterator, clazz, minfo);
            edit(h);
            if (h.edited()) {
                edited = true;
                maxLocals = max(maxLocals, h.locals());
                maxStack = max(maxStack, h.stack());
            }
        }

        codeAttr.setMaxLocals(maxLocals);
        codeAttr.setMaxStack(codeAttr.getMaxStack() + maxStack);
        return edited;
    }

    private int max(int i, int j) {
        return i > j ? i : j;
    }

    /**
     * Edits a <tt>new</tt> expression (overridable).
     * The default implementation performs nothing.
     *
     * @param e         the <tt>new</tt> expression creating an object.
     */
    public void edit(NewExpr e) throws CannotCompileException {}

    /**
     * Edits an expression for array creation (overridable).
     * The default implementation performs nothing.
     *
     * @param a         the <tt>new</tt> expression for creating an array.
     * @throws CannotCompileException
     */
    public void edit(NewArray a) throws CannotCompileException {}

    /**
     * Edits a method call (overridable).
     *
     * The default implementation performs nothing.
     */
    public void edit(MethodCall m) throws CannotCompileException {}

    /**
     * Edits a constructor call (overridable).
     * The constructor call is either
     * <code>super()</code> or <code>this()</code>
     * included in a constructor body.
     *
     * The default implementation performs nothing.
     *
     * @see #edit(NewExpr)
     */
    public void edit(ConstructorCall c) throws CannotCompileException {}

    /**
     * Edits a field-access expression (overridable).
     * Field access means both read and write.
     * The default implementation performs nothing.
     */
    public void edit(FieldAccess f) throws CannotCompileException {}

    /**
     * Edits an instanceof expression (overridable).
     * The default implementation performs nothing.
     */
    public void edit(Instanceof i) throws CannotCompileException {}

    /**
     * Edits an expression for explicit type casting (overridable).
     * The default implementation performs nothing.
     */
    public void edit(Cast c) throws CannotCompileException {}

    /**
     * Edits a catch clause (overridable).
     * The default implementation performs nothing.
     */
    public void edit(Handler h) throws CannotCompileException {}
}