forked from square/dagger
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Ksp Processor for Dagger Android ProguardProcessor.
RELNOTES=Add Ksp Processor for Dagger Android ProguardProcessor. PiperOrigin-RevId: 600594616
- Loading branch information
1 parent
1503f1f
commit e71de27
Showing
6 changed files
with
198 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
java/dagger/android/internal/proguard/KspProguardProcessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright (C) 2024 The Dagger Authors. | ||
* | ||
* 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 dagger.android.internal.proguard; | ||
|
||
import androidx.room.compiler.processing.XProcessingEnv; | ||
import androidx.room.compiler.processing.XProcessingEnvConfig; | ||
import androidx.room.compiler.processing.XProcessingStep; | ||
import androidx.room.compiler.processing.ksp.KspBasicAnnotationProcessor; | ||
import com.google.auto.service.AutoService; | ||
import com.google.common.collect.ImmutableList; | ||
import com.google.devtools.ksp.processing.SymbolProcessor; | ||
import com.google.devtools.ksp.processing.SymbolProcessorEnvironment; | ||
import com.google.devtools.ksp.processing.SymbolProcessorProvider; | ||
|
||
/** | ||
* An annotation processor to generate dagger-android's specific proguard needs. This is only | ||
* intended to run over the dagger-android project itself, as the alternative is to create an | ||
* intermediary java_library for proguard rules to be consumed by the project. | ||
* | ||
* <p>Basic structure looks like this: | ||
* | ||
* <pre><code> | ||
* resources/META-INF/com.android.tools/proguard/dagger-android.pro | ||
* resources/META-INF/com.android.tools/r8/dagger-android.pro | ||
* resources/META-INF/proguard/dagger-android.pro | ||
* </code></pre> | ||
*/ | ||
public final class KspProguardProcessor extends KspBasicAnnotationProcessor { | ||
private static final XProcessingEnvConfig PROCESSING_ENV_CONFIG = | ||
new XProcessingEnvConfig.Builder().build(); | ||
private XProcessingEnv env; | ||
|
||
private KspProguardProcessor(SymbolProcessorEnvironment symbolProcessorEnvironment) { | ||
super(symbolProcessorEnvironment, PROCESSING_ENV_CONFIG); | ||
} | ||
|
||
@Override | ||
public void initialize(XProcessingEnv env) { | ||
this.env = env; | ||
} | ||
|
||
@Override | ||
public Iterable<XProcessingStep> processingSteps() { | ||
return ImmutableList.of(new ProguardProcessingStep(env)); | ||
} | ||
|
||
/** Provides the {@link KspProguardProcessor}. */ | ||
@AutoService(SymbolProcessorProvider.class) | ||
public static final class Provider implements SymbolProcessorProvider { | ||
@Override | ||
public SymbolProcessor create(SymbolProcessorEnvironment symbolProcessorEnvironment) { | ||
return new KspProguardProcessor(symbolProcessorEnvironment); | ||
} | ||
} | ||
} |
89 changes: 89 additions & 0 deletions
89
java/dagger/android/internal/proguard/ProguardProcessingStep.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* Copyright (C) 2024 The Dagger Authors. | ||
* | ||
* 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 dagger.android.internal.proguard; | ||
|
||
import static java.nio.charset.StandardCharsets.UTF_8; | ||
|
||
import androidx.room.compiler.processing.XElement; | ||
import androidx.room.compiler.processing.XFiler; | ||
import androidx.room.compiler.processing.XProcessingEnv; | ||
import com.google.common.collect.ImmutableList; | ||
import com.google.common.collect.ImmutableSet; | ||
import com.squareup.javapoet.ClassName; | ||
import dagger.android.processor.BaseProcessingStep; | ||
import java.io.BufferedWriter; | ||
import java.io.IOException; | ||
import java.io.OutputStream; | ||
import java.io.OutputStreamWriter; | ||
import java.nio.file.Path; | ||
|
||
/** | ||
* A annotation processing step to generate dagger-android's specific proguard needs. This is only | ||
* intended to run over the dagger-android project itself, as the alternative is to create an | ||
* intermediary java_library for proguard rules to be consumed by the project. | ||
* | ||
* <p>Basic structure looks like this: | ||
* | ||
* <pre><code> | ||
* resources/META-INF/com.android.tools/proguard/dagger-android.pro | ||
* resources/META-INF/com.android.tools/r8/dagger-android.pro | ||
* resources/META-INF/proguard/dagger-android.pro | ||
* </code></pre> | ||
*/ | ||
public final class ProguardProcessingStep extends BaseProcessingStep { | ||
private final XProcessingEnv processingEnv; | ||
|
||
ProguardProcessingStep(XProcessingEnv processingEnv) { | ||
this.processingEnv = processingEnv; | ||
} | ||
|
||
static final ClassName GENERATE_RULES_ANNOTATION_NAME = | ||
ClassName.get("dagger.android.internal", "GenerateAndroidInjectionProguardRules"); | ||
|
||
@Override | ||
public ImmutableSet<ClassName> annotationClassNames() { | ||
return ImmutableSet.of(GENERATE_RULES_ANNOTATION_NAME); | ||
} | ||
|
||
@Override | ||
public void process(XElement element, ImmutableSet<ClassName> annotationNames) { | ||
XFiler filer = processingEnv.getFiler(); | ||
|
||
String errorProneRule = "-dontwarn com.google.errorprone.annotations.**\n"; | ||
String androidInjectionKeysRule = | ||
"-identifiernamestring class dagger.android.internal.AndroidInjectionKeys {\n" | ||
+ " java.lang.String of(java.lang.String);\n" | ||
+ "}\n"; | ||
|
||
writeFile(filer, "com.android.tools/proguard", errorProneRule); | ||
writeFile(filer, "com.android.tools/r8", errorProneRule + androidInjectionKeysRule); | ||
writeFile(filer, "proguard", errorProneRule); | ||
} | ||
|
||
private void writeFile(XFiler filer, String intermediatePath, String contents) { | ||
try (OutputStream outputStream = | ||
filer.writeResource( | ||
Path.of("META-INF/" + intermediatePath + "/dagger-android.pro"), | ||
ImmutableList.<XElement>of(), | ||
XFiler.Mode.Isolating); | ||
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(outputStream, UTF_8))) { | ||
writer.write(contents); | ||
} catch (IOException e) { | ||
throw new IllegalStateException(e); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters