summaryrefslogtreecommitdiffstats
path: root/jack/src/com/android/jack/ecj/loader/jast/JAstBinaryMethod.java
blob: 719ff97a21527451b563b4761c3d54e93c30b5c5 (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
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.jack.ecj.loader.jast;

import com.android.jack.ir.ast.JAnnotation;
import com.android.jack.ir.ast.JAnnotationMethod;
import com.android.jack.ir.ast.JClass;
import com.android.jack.ir.ast.JConstructor;
import com.android.jack.ir.ast.JLiteral;
import com.android.jack.ir.ast.JMethod;
import com.android.jack.ir.ast.JModifier;
import com.android.jack.ir.ast.JNameValuePair;
import com.android.jack.ir.ast.JParameter;
import com.android.jack.ir.ast.marker.ThrownExceptionMarker;
import com.android.jack.ir.formatter.TypeFormatter;

import org.eclipse.jdt.internal.compiler.classfmt.ClassFileConstants;
import org.eclipse.jdt.internal.compiler.env.IBinaryAnnotation;
import org.eclipse.jdt.internal.compiler.env.IBinaryMethod;
import org.eclipse.jdt.internal.compiler.env.IBinaryTypeAnnotation;

import java.util.List;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

/**
 * A {@code IBinaryMethod} for jack.
 */
class JAstBinaryMethod implements IBinaryMethod {

  @Nonnull
  private static final char[][] NO_EXCEPTION = new char[0][];

  @Nonnull
  private static final char[][] NO_ARGUMENTS_NAME = new char[0][];

  @Nonnull
  private final JMethod jMethod;

  JAstBinaryMethod(@Nonnull JMethod jMethod) {
    this.jMethod = jMethod;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public int getModifiers() {
    int modifier = LoaderUtils.convertJAstModifiersToEcj(jMethod.getModifier(),
        jMethod);
    if (getDefaultValue() != null) {
      modifier |= ClassFileConstants.AccAnnotationDefault;
    }
    return modifier;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public boolean isConstructor() {
    return jMethod instanceof JConstructor;
  }

  /**
   * {@inheritDoc} <p>
   * {@link IBinaryMethod#getArgumentNames()} documentation says this should return null when there
   * is no available arguments names, but reference seems to return a zero length array. So this
   * implementation never returns null.
   */
  @CheckForNull // as the interface method doc says
  @Override
  public char[][] getArgumentNames() {
    char[][] argumentsNames = NO_ARGUMENTS_NAME;
    List<JParameter> params = jMethod.getParams();
    if (params.size() != 0) {
      argumentsNames = new char[params.size()][];
    }
    int argIndex = 0;
    for (JParameter jParameter : params) {
      argumentsNames[argIndex++] = jParameter.getName().toCharArray();
    }
    return argumentsNames;
  }

  /**
   * {@inheritDoc}
   */
  @CheckForNull
  @Override
  public IBinaryAnnotation[] getAnnotations() {
    return AnnotationUtils.convertJAstAnnotationToEcj(jMethod, true);
  }

  /**
   * {@inheritDoc}
   */
  @CheckForNull
  @Override
  public Object getDefaultValue() {
    Object defaultValue = null;
    if (jMethod instanceof JAnnotationMethod) {
      JAnnotationMethod annotationMethod = (JAnnotationMethod) jMethod;
      JLiteral jLiteral = annotationMethod.getDefaultValue();
      if (jLiteral != null) {
        defaultValue = AnnotationUtils.getEcjAnnotationValue(jLiteral);
      } else {
        JAnnotation annotation = AnnotationUtils.getAnnotation(jMethod.getEnclosingType(),
            AnnotationUtils.DEFAULT_VALUE_ANNOTATION);
        if (annotation != null) {
          JNameValuePair defaultAnnotationPair = annotation.getNameValuePair(
              AnnotationUtils.DEFAULT_ANNOTATION_FIELD);
          assert defaultAnnotationPair != null;
          JAnnotation defaultAnnotation =
              (JAnnotation) defaultAnnotationPair.getValue();
          JNameValuePair defaultValuePair = defaultAnnotation.getNameValuePair(jMethod.getName());
          if (defaultValuePair != null) {
            defaultValue = AnnotationUtils.getEcjAnnotationValue(defaultValuePair.getValue());
          }
        }
      }
    }
    return defaultValue;
  }

  /**
   * {@inheritDoc} <p>
   *
   * {@link IBinaryMethod#getExceptionTypeNames()} documentation says this should return null when
   * there is no exception, but reference seems to return a zero length array. So this
   * implementation never returns null.
   */
  @CheckForNull // as the interface method doc says
  @Override
  public char[][] getExceptionTypeNames() {
    char[][] exceptionsBinaryNames = NO_EXCEPTION;
    ThrownExceptionMarker marker = jMethod.getMarker(ThrownExceptionMarker.class);
    if (marker != null) {
      List<JClass> throwns = marker.getThrownExceptions();
      if (throwns.size() != 0) {
        exceptionsBinaryNames = new char[throwns.size()][];
      }
      int argIndex = 0;
      TypeFormatter formatter = LoaderUtils.getQualifiedNameFormatter();
      for (JClass thrown : throwns) {
        exceptionsBinaryNames[argIndex++] = formatter.getName(thrown).toCharArray();
      }
    }
    return exceptionsBinaryNames;
  }

  /**
   * {@inheritDoc}
   */
  @CheckForNull
  @Override
  public char[] getGenericSignature() {
    return LoaderUtils.getGenericSignature(jMethod);
  }

  /**
   * {@inheritDoc}
   */
  @Nonnull
  @Override
  public char[] getMethodDescriptor() {
    StringBuilder sb = new StringBuilder();
    sb.append('(');

    for (JParameter p : jMethod.getParams()) {
      sb.append(LoaderUtils.getSignatureFormatter().getName(p.getType()));
    }

    sb.append(')');
    sb.append(LoaderUtils.getSignatureFormatter().getName(jMethod.getType()));

    return sb.toString().toCharArray();
  }

  /**
   * {@inheritDoc}
   */
  @CheckForNull
  @Override
  public IBinaryAnnotation[] getParameterAnnotations(int index) {
    JParameter param = jMethod.getParams().get(index);
    return AnnotationUtils.convertJAstAnnotationToEcj(param, false);
  }

  /**
   * {@inheritDoc}
   */
  @Nonnull
  @Override
  public char[] getSelector() {
    return getMethodName().toCharArray();
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public long getTagBits() {
    long tagBits = AnnotationUtils.getTagBits(jMethod);
    return tagBits;
  }

  /**
   * {@inheritDoc}
   */
  @Override
  public boolean isClinit() {
    return JModifier.isStaticInitializer(jMethod.getModifier());
  }

  @Nonnull
  @Override
  public String toString() {
    return jMethod.toString();
  }

  @Nonnull
  private String getMethodName() {
    return jMethod.getName();
  }

  @Override
  public int getAnnotatedParametersCount() {
    int result = 0;
    for (JParameter param : jMethod.getParams()) {
      if (param.getAnnotations().size() > 0) {
        result++;
      }
    }
    return result;
  }

  @Override
  public IBinaryTypeAnnotation[] getTypeAnnotations() {
    return null;
  }
}