aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/lll/processor/LilleroProcessor.java
blob: 491ce688dd46807c387086fee3fe4b36e3798cf0 (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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
package ftbsc.lll.processor;

import com.squareup.javapoet.*;
import ftbsc.lll.IInjector;
import ftbsc.lll.exceptions.AmbiguousDefinitionException;
import ftbsc.lll.exceptions.InvalidResourceException;
import ftbsc.lll.exceptions.MappingNotFoundException;
import ftbsc.lll.exceptions.TargetNotFoundException;
import ftbsc.lll.processor.annotations.*;
import ftbsc.lll.processor.tools.obfuscation.ObfuscationMapper;
import ftbsc.lll.proxies.FieldProxy;
import ftbsc.lll.proxies.MethodProxy;

import javax.annotation.processing.*;
import javax.lang.model.SourceVersion;
import javax.lang.model.element.*;
import javax.lang.model.type.ExecutableType;
import javax.lang.model.type.TypeMirror;
import javax.tools.Diagnostic;
import javax.tools.FileObject;
import javax.tools.JavaFileObject;
import javax.tools.StandardLocation;
import java.io.*;
import java.net.URI;
import java.net.URISyntaxException;
import java.nio.charset.StandardCharsets;
import java.util.*;
import java.util.stream.Collectors;

import static ftbsc.lll.processor.tools.ASTUtils.*;
import static ftbsc.lll.processor.tools.ASTUtils.getClassFullyQualifiedName;

/**
 * The actual annotation processor behind the magic.
 * It (implicitly) implements the {@link Processor} interface by extending {@link AbstractProcessor}.
 */
@SupportedAnnotationTypes("ftbsc.lll.processor.annotations.Patch")
@SupportedSourceVersion(SourceVersion.RELEASE_8)
@SupportedOptions("mappingsFile")
public class LilleroProcessor extends AbstractProcessor {
   /**
    * A {@link Set} of {@link String}s that will contain the fully qualified names
    * of the generated injector files.
    */
   private final Set<String> generatedInjectors = new HashSet<>();

   /**
    * The {@link ObfuscationMapper} used to convert classes and variables
    * to their obfuscated equivalent. Will be null when no mapper is in use.
    */
   private ObfuscationMapper mapper;

   /**
    * Initializes the processor with the processing environment by
    * setting the {@code processingEnv} field to the value of the
    * {@code processingEnv} argument.
    * @param processingEnv environment to access facilities the tool framework
    * provides to the processor
    * @throws IllegalStateException if this method is called more than once.
    */
   @Override
   public synchronized void init(ProcessingEnvironment processingEnv) {
      super.init(processingEnv);
      String location = processingEnv.getOptions().get("mappingsFile");
      if(location == null)
         mapper = null;
      else {
         InputStream targetStream;
         try {
            URI target = new URI(location);
            targetStream = target.toURL().openStream();
         } catch(URISyntaxException | IOException e) {
            //may be a local file path
            File f = new File(location);
            if(!f.exists())
               throw new InvalidResourceException(location);
            try {
               targetStream = new FileInputStream(f);
            } catch(FileNotFoundException ex) {
               throw new InvalidResourceException(location);
            }
         }
         //assuming its tsrg file
         //todo: replace crappy homebaked parser with actual library
         this.mapper = new ObfuscationMapper(new BufferedReader(new InputStreamReader(targetStream,
            StandardCharsets.UTF_8)).lines());
      }
   }

   /**
    * Where the actual processing happens.
    * It filters through whatever annotated class it's fed, and checks whether it contains
    * the required information. It then generates injectors and a service provider for every
    * remaining class.
    * @see LilleroProcessor#isValidInjector(TypeElement)
    * @param annotations the annotation types requested to be processed
    * @param roundEnv environment for information about the current and prior round
    * @return whether or not the set of annotation types are claimed by this processor
    */
   @Override
   public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
      for (TypeElement annotation : annotations) {
         if(annotation.getQualifiedName().toString().equals(Patch.class.getName())) {
            Set<TypeElement> validInjectors =
               roundEnv.getElementsAnnotatedWith(annotation)
                  .stream()
                  .map(e -> (TypeElement) e)
                  .filter(this::isValidInjector)
                  .collect(Collectors.toSet());
            if(!validInjectors.isEmpty()) {
               validInjectors.forEach(this::generateInjectors);
               if (!this.generatedInjectors.isEmpty()) {
                  generateServiceProvider();
                  return true;
               }
            }
         }
      }
      return false;
   }

   /**
    * This checks whether a given class contains the requirements to be parsed into a Lillero injector.
    * It must have at least one method annotated with {@link Target}, and one method annotated with {@link Injector}
    * that must take in a ClassNode and MethodNode from ObjectWeb's ASM library.
    * @param elem the element to check.
    * @return whether it can be converted into a valid {@link IInjector}.
    */
   private boolean isValidInjector(TypeElement elem) {
      TypeMirror classNodeType = processingEnv.getElementUtils().getTypeElement("org.objectweb.asm.tree.ClassNode").asType();
      TypeMirror methodNodeType = processingEnv.getElementUtils().getTypeElement("org.objectweb.asm.tree.MethodNode").asType();
      if (elem.getEnclosedElements().stream().anyMatch(e -> e.getAnnotation(Target.class) != null)
         && elem.getEnclosedElements().stream().anyMatch(e -> {
         List<? extends TypeMirror> params = ((ExecutableType) e.asType()).getParameterTypes();
         return e.getAnnotation(Injector.class) != null
            && e.getAnnotation(Target.class) == null
            && params.size() == 2
            && processingEnv.getTypeUtils().isSameType(params.get(0), classNodeType)
            && processingEnv.getTypeUtils().isSameType(params.get(1), methodNodeType);
      })) return true;
      else {
         processingEnv.getMessager().printMessage(Diagnostic.Kind.WARNING,
            "Missing valid @Injector method in @Patch class " + elem + ", skipping.");
         return false;
      }
   }

   /**
    * Finds the class name and maps it to the correct format.
    * @param name the fully qualified name of the class to convert
    * @param mapper the {@link ObfuscationMapper} to use, may be null
    * @implNote De facto, there is never any difference between the SRG and MCP name of a class.
    *           In theory, differences only arise between SRG/MCP names and Notch (fully obfuscated)
    *           names. However, this method still performs a conversion - just in case there is an
    *           odd one out.
    * @return the fully qualified class name
    * @since 0.3.0
    */
   private static String findClassName(String name, ObfuscationMapper mapper) {
      return mapper == null ? name : mapper.obfuscateClass(name).replace('/', '.');
   }

   /**
    * Finds the class name and maps it to the correct format.
    * @param patchAnn the {@link Patch} annotation containing target class info
    * @param methodAnn the {@link FindMethod} annotation to fall back on, may be null
    * @param mapper the {@link ObfuscationMapper} to use, may be null
    * @implNote De facto, there is never any difference between the SRG and MCP name of a class.
    *           In theory, differences only arise between SRG/MCP names and Notch (fully obfuscated)
    *           names. However, this method still performs a conversion - just in case there is an
    *           odd one out.
    * @return the fully qualified class name
    * @since 0.3.0
    */
   private static String findClassName(Patch patchAnn, FindMethod methodAnn, ObfuscationMapper mapper) {
      String fullyQualifiedName =
         methodAnn == null || methodAnn.parent() == Object.class
            ? getClassFullyQualifiedName(patchAnn, Patch::value)
            : getClassFullyQualifiedName(methodAnn, FindMethod::parent);
      return findClassName(fullyQualifiedName, mapper);
   }

   /**
    * Finds the class name and maps it to the correct format.
    * @param patchAnn the {@link Patch} annotation containing target class info
    * @param mapper the {@link ObfuscationMapper} to use, may be null
    * @return the internal class name
    * @since 0.3.0
    */
   private static String findClassName(Patch patchAnn, ObfuscationMapper mapper) {
      return findClassName(patchAnn, null, mapper);
   }

   /**
    * Finds the member name and maps it to the correct format.
    * @param parentFQN the already mapped FQN of the parent class
    * @param memberName the name of the member
    * @param mapper the {@link ObfuscationMapper} to use, may be null
    * @return the internal class name
    * @since 0.3.0
    */
   private static String findMemberName(String parentFQN, String memberName, String methodDescriptor, ObfuscationMapper mapper) {
      return mapper == null ? memberName : mapper.obfuscateMember(parentFQN, memberName, methodDescriptor);
   }

   /**
    * Finds the method name and maps it to the correct format.
    * @param parentFQN the already mapped FQN of the parent class
    * @param methodAnn the {@link FindMethod} annotation to fall back on, may be null
    * @param stub the {@link ExecutableElement} for the stub
    * @param mapper the {@link ObfuscationMapper} to use, may be null
    * @return the internal class name
    * @since 0.3.0
    */
   private String findMethodName(String parentFQN, FindMethod methodAnn, ExecutableElement stub, ObfuscationMapper mapper) {
      String methodName = methodAnn == null ? stub.getSimpleName().toString() : methodAnn.name();
      String methodDescriptor;
      if(methodAnn == null)
         methodDescriptor = descriptorFromExecutableElement(stub);
      else methodDescriptor = methodDescriptorFromParams(methodAnn, FindMethod::params, processingEnv.getElementUtils());
      try {
         methodName = findMemberName(parentFQN, methodName, methodDescriptor, mapper);
      } catch(MappingNotFoundException e) {
         //not found: try again with the name of the annotated method
         if(methodAnn == null) {
            methodName = findMemberName(parentFQN, stub.getSimpleName().toString(), methodDescriptor, mapper);
         } else throw e;
      }
      return methodName;
   }

   /**
    * Finds the method name and maps it to the correct format.
    * @param patchAnn the {@link Patch} annotation containing target class info
    * @param methodAnn the {@link FindMethod} annotation to fall back on, may be null
    * @param stub the {@link ExecutableElement} for the stub
    * @param mapper the {@link ObfuscationMapper} to use
    * @return the internal class name
    * @since 0.3.0
    */
   private String findMethodName(Patch patchAnn, FindMethod methodAnn, ExecutableElement stub, ObfuscationMapper mapper) {
      return findMethodName(findClassName(patchAnn, methodAnn, mapper), methodAnn, stub, mapper);
   }

   /**
    * Finds a method given name, container and descriptor.
    * @param fullyQualifiedNameParent the fully qualified name of the parent class of the method
    * @param name the name to search for
    * @param descr the descriptor to search for
    * @param strict whether the search should be strict (see {@link Target#strict()} for more info)
    * @return the desired method, if it exists
    * @throws AmbiguousDefinitionException if it finds more than one candidate
    * @throws TargetNotFoundException if it finds no valid candidate
    * @since 0.3.0
    */
   private ExecutableElement findMethod(String fullyQualifiedNameParent, String name, String descr, boolean strict) {
      TypeElement parent = processingEnv.getElementUtils().getTypeElement(fullyQualifiedNameParent);
      if(parent == null)
         throw new AmbiguousDefinitionException("Could not find parent class " + fullyQualifiedNameParent + "!");

      //try to find by name
      List<ExecutableElement> candidates = parent.getEnclosedElements()
         .stream()
         .filter(e -> e instanceof ExecutableElement)
         .map(e -> (ExecutableElement) e)
         .filter(e -> e.getSimpleName().contentEquals(name))
         .collect(Collectors.toList());
      if(candidates.size() == 0)
         throw new TargetNotFoundException(name + " " + descr);
      if(candidates.size() == 1 && !strict)
         return candidates.get(0);
      if(descr == null) {
         throw new AmbiguousDefinitionException(
            "Found " + candidates.size()
               + " methods named " + name
               + " in class " + fullyQualifiedNameParent + "!"
         );
      } else {
         candidates = candidates.stream()
            .filter(strict
               ? c -> descr.equals(descriptorFromExecutableElement(c))
               : c -> descr.split("\\)")[0].equalsIgnoreCase(descriptorFromExecutableElement(c).split("\\)")[0])
            ).collect(Collectors.toList());
         if(candidates.size() == 0)
            throw new TargetNotFoundException(name + " " + descr);
         if(candidates.size() > 1)
            throw new AmbiguousDefinitionException(
               "Found " + candidates.size()
                  + " methods named " + name
                  + " in class " + fullyQualifiedNameParent + "!"
            );
         return candidates.get(0);
      }
   }

   /**
    * Finds the real method corresponding to a stub.
    * @param stub the {@link ExecutableElement} for the stub
    * @param mapper the {@link ObfuscationMapper} to use
    * @return the desired method, if it exists
    * @throws AmbiguousDefinitionException if it finds more than one candidate
    * @throws TargetNotFoundException if it finds no valid candidate
    * @since 0.3.0
    */
   private ExecutableElement findRealMethod(ExecutableElement stub, ObfuscationMapper mapper) {
      Patch patchAnn = stub.getEnclosingElement().getAnnotation(Patch.class);
      FindMethod findAnn = stub.getAnnotation(FindMethod.class); //this may be null, it means no fallback info
      Target target = stub.getAnnotation(Target.class); //if this is null strict mode is always disabled
      String parentFQN = findClassName(patchAnn, findAnn, mapper);
      String methodName = findMethodName(patchAnn, findAnn, stub, mapper);
      return findMethod(
         parentFQN,
         methodName,
         descriptorFromExecutableElement(stub),
         target != null && target.strict());
   }

   /**
    * Finds the real field corresponding to a stub.
    * @param stub the {@link ExecutableElement} for the stub
    * @param mapper the {@link ObfuscationMapper} to use
    * @return the desired method, if it exists
    * @throws TargetNotFoundException if it finds no valid candidate
    * @since 0.3.0
    */
   private VariableElement findField(ExecutableElement stub, ObfuscationMapper mapper) {
      Patch patchAnn = stub.getEnclosingElement().getAnnotation(Patch.class);
      FindField fieldAnn = stub.getAnnotation(FindField.class);
      String parentName;
      if(fieldAnn.parent().equals(Object.class))
         parentName = getClassFullyQualifiedName(patchAnn, Patch::value);
      else parentName = getClassFullyQualifiedName(fieldAnn, FindField::parent);
      parentName = findClassName(parentName, mapper);
      String name = fieldAnn.name().equals("")
         ? stub.getSimpleName().toString()
         : fieldAnn.name();
      TypeElement parent = processingEnv.getElementUtils().getTypeElement(parentName);
      List<VariableElement> candidates =
         parent.getEnclosedElements()
            .stream()
            .filter(f -> f instanceof VariableElement)
            .filter(f -> f.getSimpleName().contentEquals(name))
            .map(f -> (VariableElement) f)
            .collect(Collectors.toList());
      if(candidates.size() == 0)
         throw new TargetNotFoundException(stub.getSimpleName().toString());
      else return candidates.get(0); //there can only ever be one
   }

   /**
    * Generates the Injector(s) contained in the given class.
    * Basically implements the {@link IInjector} interface for you.
    * @param cl the {@link TypeElement} for the given class
    */
   private void generateInjectors(TypeElement cl) {
      //find class information
      Patch patchAnn = cl.getAnnotation(Patch.class);
      String targetClassSrgName = findClassName(patchAnn, mapper);

      //find package information
      Element packageElement = cl.getEnclosingElement();
      while (packageElement.getKind() != ElementKind.PACKAGE)
         packageElement = packageElement.getEnclosingElement();
      String packageName = packageElement.toString();

      //find injector(s) and target(s)
      List<ExecutableElement> injectors = findAnnotatedMethods(cl, Injector.class);

      List<ExecutableElement> targets = findAnnotatedMethods(cl, Target.class);

      //declare it once for efficiency
      List<String> targetNames =
         targets.stream()
            .map(ExecutableElement::getSimpleName)
            .map(Object::toString)
            .collect(Collectors.toList());

      //this will contain the classes to generate: the key is the class name
      Map<String, InjectorInfo> toGenerate = new HashMap<>();

      for(ExecutableElement inj : injectors) {
         Injector[] minjAnn = inj.getAnnotationsByType(Injector.class);
         int iterationNumber = 1;
         for(Injector injectorAnn : minjAnn) { //java is dumb
            List<ExecutableElement> injectionCandidates = targets;

            //case 1: it has a name, try to match it
            if(!injectorAnn.targetName().equals("") && targetNames.contains(injectorAnn.targetName()))
               injectionCandidates =
                  injectionCandidates
                     .stream()
                     .filter(i -> i.getSimpleName().toString().equals(injectorAnn.targetName()))
                     .collect(Collectors.toList());

            //case 2: try to match by injectTargetName
            String inferredName = inj.getSimpleName()
               .toString()
               .replaceFirst("inject", "");
            injectionCandidates =
               injectionCandidates
                  .stream()
                  .filter(t -> t.getSimpleName().toString().equalsIgnoreCase(inferredName))
                  .collect(Collectors.toList());

            //case 3: there is only one target
            if(targets.size() == 1)
               injectionCandidates.add(targets.get(0));

            ExecutableElement injectionTarget = null;

            if(injectionCandidates.size() == 1)
               injectionTarget = injectionCandidates.get(0);

            List<TypeMirror> params = classArrayFromAnnotation(injectorAnn, Injector::params, processingEnv.getElementUtils());

            if(params.size() != 0) {
               StringBuilder descr = new StringBuilder("(");
               for(TypeMirror p : params)
                  descr.append(descriptorFromType(TypeName.get(p)));
               descr.append(")");
               injectionCandidates =
                  injectionCandidates
                     .stream()
                     .filter(t -> //we care about arguments but not really about return type
                           descr.toString()
                              .split("\\)")[0]
                              .equalsIgnoreCase(descriptorFromExecutableElement(t).split("\\)")[0])
                     ).collect(Collectors.toList());
            }

            if(injectionCandidates.size() == 1)
               injectionTarget = injectionCandidates.get(0);

            //if we haven't found it yet, it's an ambiguity
            if(injectionTarget == null)
               throw new AmbiguousDefinitionException("Unclear target for injector " + inj.getSimpleName().toString() + "!");
            else toGenerate.put(
                  cl.getSimpleName().toString() + "Injector" + iterationNumber,
                  new InjectorInfo(
                     inj, findRealMethod(
                        injectionTarget,
                        mapper
                     )
                  )
               );
            iterationNumber++;
         }
      }

      //iterate over the map and generate the classes
      for(String injName : toGenerate.keySet()) {
         MethodSpec stubOverride = MethodSpec.overriding(toGenerate.get(injName).target)
            .addStatement("throw new $T($S)", RuntimeException.class, "This is a stub and should not have been called")
            .build();

         MethodSpec inject = MethodSpec.methodBuilder("inject")
            .addModifiers(Modifier.PUBLIC)
            .returns(void.class)
            .addAnnotation(Override.class)
            .addParameter(ParameterSpec.builder(
               TypeName.get(processingEnv
                  .getElementUtils()
                  .getTypeElement("org.objectweb.asm.tree.ClassNode").asType()), "clazz").build())
            .addParameter(ParameterSpec.builder(
               TypeName.get(processingEnv
                  .getElementUtils()
                  .getTypeElement("org.objectweb.asm.tree.MethodNode").asType()), "main").build())
            .addStatement("super." + toGenerate.get(injName).injector.getSimpleName() + "(clazz, main)", TypeName.get(cl.asType()))
            .build();

         TypeSpec injectorClass = TypeSpec.classBuilder(injName)
            .addModifiers(Modifier.PUBLIC)
            .superclass(cl.asType())
            .addSuperinterface(ClassName.get(IInjector.class))
            .addMethod(buildStringReturnMethod("name", cl.getSimpleName().toString()))
            .addMethod(buildStringReturnMethod("reason", patchAnn.reason()))
            .addMethod(buildStringReturnMethod("targetClass", targetClassSrgName.replace('/', '.')))
            .addMethod(buildStringReturnMethod("methodName", toGenerate.get(injName).target.getSimpleName().toString()))
            .addMethod(buildStringReturnMethod("methodDesc", descriptorFromExecutableElement(toGenerate.get(injName).target)))
            .addMethods(generateRequestedProxies(cl, mapper))
            .addMethod(stubOverride)
            .addMethod(inject)
            .build();

         JavaFile javaFile = JavaFile.builder(packageName, injectorClass).build();
         String injectorClassName = packageName + "." + injName;

         try {
            JavaFileObject injectorFile = processingEnv.getFiler().createSourceFile(injectorClassName);
            PrintWriter out = new PrintWriter(injectorFile.openWriter());
            javaFile.writeTo(out);
            out.close();
         } catch(IOException e) {
            throw new RuntimeException(e);
         }

         this.generatedInjectors.add(injectorClassName);
      }
   }

   /**
    * Builds a {@link MethodSpec} for a public method whose body simply returns a {@link String}.
    * @param name the name of the method
    * @param returnString the {@link String} to return
    * @return the built {@link MethodSpec}
    */
   private static MethodSpec buildStringReturnMethod(String name, String returnString) {
      return MethodSpec.methodBuilder(name)
         .addModifiers(Modifier.PUBLIC)
         .addAnnotation(Override.class)
         .returns(String.class)
         .addStatement("return $S", returnString)
         .build();
   }

   /**
    * Finds any method annotated with {@link FindMethod} or {@link FindField} within the given
    * class, and builds the {@link MethodSpec} necessary for building it.
    * @param cl the class to search
    * @return a {@link List} of method specs
    * @since 0.2.0
    */
   private List<MethodSpec> generateRequestedProxies(TypeElement cl, ObfuscationMapper mapper) {
      List<MethodSpec> generated = new ArrayList<>();
      findAnnotatedMethods(cl, FindMethod.class)
         .stream()
         .filter(m -> !m.getModifiers().contains(Modifier.STATIC)) //skip static stuff as we can't override it
         .filter(m -> !m.getModifiers().contains(Modifier.FINAL)) //in case someone is trying to be funny
         .forEach(m -> {
            ExecutableElement targetMethod = findRealMethod(m, mapper);
            MethodSpec.Builder b = MethodSpec.overriding(m);
            b.addStatement("$T bd = $T.builder($S)",
               MethodProxy.Builder.class,
               MethodProxy.class,
               m.getSimpleName().toString()
            );
            b.addStatement("bd.setParent($S)", ((TypeElement) targetMethod.getEnclosingElement()).getQualifiedName().toString());
            for(Modifier mod : targetMethod.getModifiers())
               b.addStatement("bd.addModifier($L)", mapModifier(mod));
            for(TypeParameterElement p : targetMethod.getTypeParameters())
               b.addStatement("bd.addParameter($T.class)", p.asType());
            b.addStatement("bd.setReturnType($T.class)", targetMethod.getReturnType());
            b.addStatement("return bd.build()");
            generated.add(b.build());
         });
      findAnnotatedMethods(cl, FindField.class)
         .stream()
         .filter(m -> !m.getModifiers().contains(Modifier.STATIC))
         .filter(m -> !m.getModifiers().contains(Modifier.FINAL))
         .forEach(m -> {
            VariableElement targetField = findField(m, mapper);
            MethodSpec.Builder b = MethodSpec.overriding(m);
            b.addStatement("$T bd = $T.builder($S)",
               FieldProxy.Builder.class,
               FieldProxy.class,
               targetField.getSimpleName().toString()
            );
            b.addStatement("bd.setParent($S)", ((TypeElement) targetField.getEnclosingElement()).getQualifiedName().toString());
            for(Modifier mod : targetField.getModifiers())
               b.addStatement("bd.addModifier($L)", mapModifier(mod));
            b.addStatement("bd.setType($T.class)", targetField.asType());
            b.addStatement("return bd.build()");
            generated.add(b.build());
         });
      return generated;
   }

   /**
    * Generates the Service Provider file for the generated injectors.
    */
   private void generateServiceProvider() {
      try {
         FileObject serviceProvider =
            processingEnv.getFiler().createResource(
               StandardLocation.CLASS_OUTPUT, "", "META-INF/services/ftbsc.lll.IInjector"
            );
         PrintWriter out = new PrintWriter(serviceProvider.openWriter());
         this.generatedInjectors.forEach(out::println);
         out.close();
      } catch(IOException e) {
         throw new RuntimeException(e);
      }
   }

   /**
    * Container for information about a class that is to be generated.
    * Only used internally.
    */
   private static class InjectorInfo {
      /**
       * The {@link ExecutableElement} corresponding to the injector method.
       */
      public final ExecutableElement injector;


      /**
       * The {@link ExecutableElement} corresponding to the target method.
       */
      public final ExecutableElement target;

      /**
       * Public constructor.
       * @param injector the injector {@link ExecutableElement}
       * @param target the target {@link ExecutableElement}
       */
      public InjectorInfo(ExecutableElement injector, ExecutableElement target) {
         this.injector = injector;
         this.target = target;
      }
   }
}