forked from google/protobuf-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProtobufAndroidSupport.groovy
More file actions
165 lines (148 loc) · 7.48 KB
/
Copy pathProtobufAndroidSupport.groovy
File metadata and controls
165 lines (148 loc) · 7.48 KB
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
/*
* Copyright (c) 2026, Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.google.protobuf.gradle
import com.android.build.api.dsl.LibraryExtension
import com.android.build.api.variant.AndroidComponentsExtension
import com.android.build.api.variant.Component
import com.android.build.api.variant.GeneratesTestApk
import com.android.build.api.variant.TestComponent
import com.android.build.api.variant.Variant
import com.google.protobuf.gradle.internal.DefaultProtoSourceSet
import com.google.protobuf.gradle.tasks.ProtoSourceSet
import groovy.transform.CompileStatic
import groovy.transform.PackageScope
import groovy.transform.TypeChecked
import groovy.transform.TypeCheckingMode
import org.gradle.api.NamedDomainObjectContainer
import org.gradle.api.Project
import org.gradle.api.Task
import org.gradle.api.artifacts.Configuration
import org.gradle.api.artifacts.type.ArtifactTypeDefinition
import org.gradle.api.attributes.Attribute
import org.gradle.api.file.FileCollection
import org.gradle.api.provider.Provider
@PackageScope
@CompileStatic
class ProtobufAndroidSupport {
@TypeChecked(TypeCheckingMode.SKIP)
static void configure(Project project, ProtobufPlugin plugin, Provider<Task> dummyTask) {
project.android.sourceSets.configureEach { sourceSet ->
ProtoSourceSet protoSourceSet = plugin.protobufExtension.sourceSets.create(sourceSet.name)
plugin.addSourceSetExtension(sourceSet, protoSourceSet)
Configuration protobufConfig = plugin.createProtobufConfiguration(protoSourceSet)
plugin.setupExtractProtosTask(protoSourceSet, protobufConfig, dummyTask)
}
NamedDomainObjectContainer<ProtoSourceSet> variantSourceSets =
project.objects.domainObjectContainer(ProtoSourceSet) { String name ->
new DefaultProtoSourceSet(name, project.objects)
}
AndroidComponentsExtension androidComponents = project.extensions.getByType(AndroidComponentsExtension)
androidComponents.onVariants(androidComponents.selector().all()) { Variant variant ->
List<String> flavors = variant.productFlavors.collect { pair -> pair.second }
addTasksForVariant(project, plugin, variant, variantSourceSets, dummyTask, flavors, variant.buildType)
variant.nestedComponents.each { component ->
addTasksForVariant(project, plugin, component, variantSourceSets, dummyTask, flavors, variant.buildType)
}
}
}
/**
* Creates Protobuf tasks for a variant in an Android project.
*/
@TypeChecked(TypeCheckingMode.SKIP)
// Don't depend on AGP
private static void addTasksForVariant(
Project project,
ProtobufPlugin plugin,
Component variant,
NamedDomainObjectContainer<ProtoSourceSet> variantSourceSets,
Provider<Task> dummyTask,
List<String> flavors = [],
String buildType = null
) {
ProtoSourceSet variantSourceSet = variantSourceSets.create(variant.name)
FileCollection classpathConfig = variant.compileConfiguration.incoming.artifactView {
attributes.attribute(Attribute.of("artifactType", String), ArtifactTypeDefinition.JAR_TYPE)
}.files
plugin.setupExtractIncludeProtosTask(variantSourceSet, classpathConfig, dummyTask)
boolean isTest = variant instanceof TestComponent
boolean isAndroidTest = variant instanceof GeneratesTestApk
List<String> sourceSetNames = []
if (isTest) {
ProtoSourceSet mainSourceSet = plugin.protobufExtension.sourceSets.findByName("main")
// Allow test variants to access main protos
if (mainSourceSet) {
variantSourceSet.includesFrom(mainSourceSet)
}
sourceSetNames.add(isAndroidTest ? "androidTest" : "test")
} else {
sourceSetNames.add("main")
if (buildType) {
sourceSetNames.add(buildType)
}
sourceSetNames.addAll(flavors)
}
sourceSetNames.add(variant.name)
sourceSetNames.each { name ->
ProtoSourceSet sourceSet = plugin.protobufExtension.sourceSets.findByName(name)
if (sourceSet) {
variantSourceSet.extendsFrom(sourceSet)
}
}
Provider<GenerateProtoTask> generateProtoTask =
plugin.addGenerateProtoTask(variantSourceSet) { GenerateProtoTask task ->
task.setVariant(variant, isTest)
task.flavors = flavors
task.buildType = buildType
task.outputBaseDirProperty.set(project.layout.buildDirectory.dir("generated/java/${task.name}"))
task.doneInitializing()
}
variant.sources.java.addGeneratedSourceDirectory(generateProtoTask) { task ->
task.outputBaseDirProperty
}
boolean isLibrary = project.extensions.findByType(LibraryExtension) != null
if (isLibrary && !isTest) {
registerProtoSyncTask(project, variant, variantSourceSet)
}
}
// Include source proto files in the compiled archive, so that proto files from dependent projects can import them.
private static void registerProtoSyncTask(Project project, Component variant, ProtoSourceSet sourceSet) {
String taskName = "process${variant.name.capitalize()}ProtoResources"
Provider<ProtobufPlugin.ProtoSyncTask> syncTask = project.tasks
.register(taskName, ProtobufPlugin.ProtoSyncTask) { task ->
task.description = "Copies .proto files into the resources for packaging in the AAR."
task.source.from(sourceSet.proto)
task.destinationDirectory.set(
project.layout.buildDirectory.dir("generated/proto-resources/${variant.name}")
)
}
variant.sources.resources.addGeneratedSourceDirectory(syncTask) { task ->
task.destinationDirectory
}
}
}