summaryrefslogtreecommitdiffstats
path: root/mobile/android/annotations/src/main/java/org/mozilla/gecko/annotationProcessors/utils/GeneratableElementIterator.java
blob: 0ef25cab529cfbfe393b889c408d6a8d662451b8 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.annotationProcessors.utils;

import java.lang.annotation.Annotation;
import java.lang.reflect.AnnotatedElement;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Member;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Iterator;
import org.mozilla.gecko.annotationProcessors.AnnotationInfo;
import org.mozilla.gecko.annotationProcessors.classloader.AnnotatableEntity;
import org.mozilla.gecko.annotationProcessors.classloader.ClassWithOptions;

/**
 * Iterator over the methods in a given method list which have the WrappedJNIMethod annotation.
 * Returns an object containing both the annotation (Which may contain interesting parameters) and
 * the argument.
 */
public class GeneratableElementIterator implements Iterator<AnnotatableEntity> {
  private final ClassWithOptions mClass;
  private final Member[] mObjects;
  private AnnotatableEntity mNextReturnValue;
  private int mElementIndex;
  private AnnotationInfo mClassInfo;

  private boolean mIterateEveryEntry;
  private boolean mIterateEnumValues;
  private boolean mSkipCurrentEntry;

  public GeneratableElementIterator(ClassWithOptions annotatedClass) {
    mClass = annotatedClass;

    final Class<?> aClass = annotatedClass.wrappedClass;
    // Get all the elements of this class as AccessibleObjects.
    Member[] aMethods = aClass.getDeclaredMethods();
    Member[] aFields = aClass.getDeclaredFields();
    Member[] aCtors = aClass.getDeclaredConstructors();

    // Shove them all into one buffer.
    Member[] objs = new Member[aMethods.length + aFields.length + aCtors.length];

    int offset = 0;
    System.arraycopy(aMethods, 0, objs, 0, aMethods.length);
    offset += aMethods.length;
    System.arraycopy(aFields, 0, objs, offset, aFields.length);
    offset += aFields.length;
    System.arraycopy(aCtors, 0, objs, offset, aCtors.length);

    // Sort the elements to ensure determinism.
    Arrays.sort(objs, new AlphabeticAnnotatableEntityComparator<Member>());
    mObjects = objs;

    // Check for "Wrap ALL the things" flag.
    for (Annotation annotation : aClass.getDeclaredAnnotations()) {
      mClassInfo = buildAnnotationInfo(aClass, annotation);
      if (mClassInfo != null) {
        if (aClass.isEnum()) {
          // We treat "Wrap ALL the things" differently for enums. See the javadoc for
          // isAnnotatedEnumField for more information.
          mIterateEnumValues = true;
        } else {
          mIterateEveryEntry = true;
        }
        break;
      }
    }

    if (mSkipCurrentEntry) {
      throw new IllegalArgumentException("Cannot skip entire class");
    }

    findNextValue();
  }

  private Class<?>[] getFilteredInnerClasses() {
    // Go through all inner classes and see which ones we want to generate.
    final Class<?>[] candidates = mClass.wrappedClass.getDeclaredClasses();
    int count = 0;

    for (int i = 0; i < candidates.length; ++i) {
      final GeneratableElementIterator testIterator =
          new GeneratableElementIterator(new ClassWithOptions(candidates[i], null, /* ifdef */ ""));
      if (testIterator.hasNext() || testIterator.getFilteredInnerClasses() != null) {
        count++;
        continue;
      }
      // Clear out ones that don't match.
      candidates[i] = null;
    }
    return count > 0 ? candidates : null;
  }

  public ClassWithOptions[] getInnerClasses() {
    final Class<?>[] candidates = getFilteredInnerClasses();
    if (candidates == null) {
      return new ClassWithOptions[0];
    }

    int count = 0;
    for (Class<?> candidate : candidates) {
      if (candidate != null) {
        count++;
      }
    }

    final ClassWithOptions[] ret = new ClassWithOptions[count];
    count = 0;
    for (Class<?> candidate : candidates) {
      if (candidate != null) {
        ret[count++] =
            new ClassWithOptions(
                candidate, mClass.generatedName + "::" + candidate.getSimpleName(), /* ifdef */ "");
      }
    }
    assert ret.length == count;

    Arrays.sort(
        ret,
        new Comparator<ClassWithOptions>() {
          @Override
          public int compare(ClassWithOptions lhs, ClassWithOptions rhs) {
            return lhs.generatedName.compareTo(rhs.generatedName);
          }
        });
    return ret;
  }

  private AnnotationInfo buildAnnotationInfo(AnnotatedElement element, Annotation annotation) {
    Class<? extends Annotation> annotationType = annotation.annotationType();
    final String annotationTypeName = annotationType.getName();
    if (!annotationTypeName.equals("org.mozilla.gecko.annotation.WrapForJNI")) {
      return null;
    }

    String stubName = null;
    AnnotationInfo.ExceptionMode exceptionMode = null;
    AnnotationInfo.CallingThread callingThread = null;
    AnnotationInfo.DispatchTarget dispatchTarget = null;
    boolean noLiteral = false;

    try {
      final Method skipMethod = annotationType.getDeclaredMethod("skip");
      skipMethod.setAccessible(true);
      if ((Boolean) skipMethod.invoke(annotation)) {
        mSkipCurrentEntry = true;
        return null;
      }

      // Determine the explicitly-given name of the stub to generate, if any.
      final Method stubNameMethod = annotationType.getDeclaredMethod("stubName");
      stubNameMethod.setAccessible(true);
      stubName = (String) stubNameMethod.invoke(annotation);

      final Method exceptionModeMethod = annotationType.getDeclaredMethod("exceptionMode");
      exceptionModeMethod.setAccessible(true);
      exceptionMode =
          Utils.getEnumValue(
              AnnotationInfo.ExceptionMode.class, (String) exceptionModeMethod.invoke(annotation));

      final Method calledFromMethod = annotationType.getDeclaredMethod("calledFrom");
      calledFromMethod.setAccessible(true);
      callingThread =
          Utils.getEnumValue(
              AnnotationInfo.CallingThread.class, (String) calledFromMethod.invoke(annotation));

      final Method dispatchToMethod = annotationType.getDeclaredMethod("dispatchTo");
      dispatchToMethod.setAccessible(true);
      dispatchTarget =
          Utils.getEnumValue(
              AnnotationInfo.DispatchTarget.class, (String) dispatchToMethod.invoke(annotation));

      final Method noLiteralMethod = annotationType.getDeclaredMethod("noLiteral");
      noLiteralMethod.setAccessible(true);
      noLiteral = (Boolean) noLiteralMethod.invoke(annotation);

    } catch (NoSuchMethodException e) {
      System.err.println(
          "Unable to find expected field on WrapForJNI annotation. Did the signature change?");
      e.printStackTrace(System.err);
      System.exit(3);
    } catch (IllegalAccessException e) {
      System.err.println(
          "IllegalAccessException reading fields on WrapForJNI annotation. Seems the semantics of Reflection have changed...");
      e.printStackTrace(System.err);
      System.exit(4);
    } catch (InvocationTargetException e) {
      System.err.println(
          "InvocationTargetException reading fields on WrapForJNI annotation. This really shouldn't happen.");
      e.printStackTrace(System.err);
      System.exit(5);
    }

    // If the method name was not explicitly given in the annotation generate one...
    if (stubName.isEmpty()) {
      stubName = Utils.getNativeName(element);
    }

    return new AnnotationInfo(stubName, exceptionMode, callingThread, dispatchTarget, noLiteral);
  }

  /**
   * Find and cache the next appropriately annotated method, plus the annotation parameter, if one
   * exists. Otherwise cache null, so hasNext returns false.
   */
  private void findNextValue() {
    while (mElementIndex < mObjects.length) {
      Member candidateElement = mObjects[mElementIndex];
      mElementIndex++;
      for (Annotation annotation : ((AnnotatedElement) candidateElement).getDeclaredAnnotations()) {
        AnnotationInfo info = buildAnnotationInfo((AnnotatedElement) candidateElement, annotation);
        if (info != null) {
          mNextReturnValue = new AnnotatableEntity(candidateElement, info);
          return;
        }
      }

      if (mSkipCurrentEntry) {
        mSkipCurrentEntry = false;
        continue;
      }

      // If no annotation found, we might be expected to generate anyway
      // using default arguments, thanks to the "Generate everything" annotation.
      if (mIterateEveryEntry || isAnnotatedEnumField(candidateElement)) {
        AnnotationInfo annotationInfo =
            new AnnotationInfo(
                Utils.getNativeName(candidateElement),
                mClassInfo.exceptionMode,
                mClassInfo.callingThread,
                mClassInfo.dispatchTarget,
                mClassInfo.noLiteral);
        mNextReturnValue = new AnnotatableEntity(candidateElement, annotationInfo);
        return;
      }
    }
    mNextReturnValue = null;
  }

  /**
   * For enums that are annotated in their entirety, we typically only need to generate the
   * enumerated values, but not other members. This method determines whether the given member is
   * likely to be one of the enumerated values: We look for public, static, final fields that share
   * the same class as the declaring enum's class.
   *
   * <p>Note that any additional members that should be wrapped may be explicitly annotated on a
   * case-by-case basis.
   */
  private boolean isAnnotatedEnumField(final Member member) {
    if (!mIterateEnumValues) {
      return false;
    }

    if (!Utils.isPublic(member)
        || !Utils.isStatic(member)
        || !Utils.isFinal(member)
        || !(member instanceof Field)) {
      return false;
    }

    final Class<?> enumClass = mClass.wrappedClass;

    final Field field = (Field) member;
    final Class<?> fieldClass = field.getType();

    return enumClass.equals(fieldClass);
  }

  @Override
  public boolean hasNext() {
    return mNextReturnValue != null;
  }

  @Override
  public AnnotatableEntity next() {
    AnnotatableEntity ret = mNextReturnValue;
    findNextValue();
    return ret;
  }

  @Override
  public void remove() {
    throw new UnsupportedOperationException(
        "Removal of methods from GeneratableElementIterator not supported.");
  }
}