com.grab.grazel.tasks.internal.GenerateBazelScriptsTask.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grazel-gradle-plugin Show documentation
Show all versions of grazel-gradle-plugin Show documentation
A Gradle plugin to automate Bazel migration for Android projects
The newest version!
/*
* Copyright 2022 Grabtaxi Holdings PTE LTD (GRAB)
*
* 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.grab.grazel.tasks.internal
import com.grab.grazel.bazel.starlark.writeToFile
import com.grab.grazel.di.GrazelComponent
import com.grab.grazel.gradle.MigrationChecker
import com.grab.grazel.gradle.dependencies.DefaultDependencyResolutionService
import com.grab.grazel.gradle.isMigrated
import com.grab.grazel.migrate.internal.ProjectBazelFileBuilder
import com.grab.grazel.util.BUILD_BAZEL
import com.grab.grazel.util.BUILD_BAZEL_IGNORE
import com.grab.grazel.util.ansiGreen
import com.grab.grazel.util.ansiYellow
import dagger.Lazy
import org.gradle.api.DefaultTask
import org.gradle.api.Project
import org.gradle.api.file.ProjectLayout
import org.gradle.api.file.RegularFileProperty
import org.gradle.api.model.ObjectFactory
import org.gradle.api.provider.Property
import org.gradle.api.tasks.InputFile
import org.gradle.api.tasks.Internal
import org.gradle.api.tasks.OutputFile
import org.gradle.api.tasks.TaskAction
import org.gradle.api.tasks.TaskProvider
import org.gradle.api.tasks.UntrackedTask
import org.gradle.kotlin.dsl.property
import org.gradle.kotlin.dsl.register
import javax.inject.Inject
@UntrackedTask(because = "Up to dateness not implemented correctly")
internal open class GenerateBazelScriptsTask
@Inject
constructor(
private val migrationChecker: Lazy,
private val bazelFileBuilder: Lazy,
objectFactory: ObjectFactory,
private val layout: ProjectLayout
) : DefaultTask() {
private val rootProject get() = project.rootProject
@get:InputFile
val workspaceDependencies: RegularFileProperty = project.objects.fileProperty()
@get:Internal
val dependencyResolutionService: Property =
project.objects.property()
@get:OutputFile
val buildBazel: RegularFileProperty = objectFactory.fileProperty().apply {
set(layout.buildDirectory.file("grazel/$BUILD_BAZEL_IGNORE"))
}
@TaskAction
fun action() {
val buildBazelFile = buildBazel.get().asFile
val bazelIgnoreFile = project.file(BUILD_BAZEL_IGNORE)
dependencyResolutionService.get()
.get(workspaceDependencies.get().asFile)
// Check if current project can be migrated
if (migrationChecker.get().canMigrate(project)) {
// If yes, proceed to generate build.bazel
val projectBazelFileBuilder = bazelFileBuilder.get().create(project)
val content = projectBazelFileBuilder.build()
content.writeToFile(buildBazelFile)
val generatedMessage = "Generated ${rootProject.relativePath(buildBazelFile)}"
logger.quiet(generatedMessage.ansiGreen)
} else {
// If not migrateable but was already migrated, rename build.bazel to build.bazelignore if it exists
bazelIgnoreFile.delete()
if (project.isMigrated) {
if (buildBazelFile.renameTo(bazelIgnoreFile)) {
project.logger.quiet("$buildBazelFile renamed to $bazelIgnoreFile".ansiYellow)
}
}
}
}
companion object {
private const val TASK_NAME = "generateBazelScripts"
internal fun register(
project: Project,
grazelComponent: GrazelComponent,
configureAction: GenerateBazelScriptsTask.() -> Unit = {}
): TaskProvider {
val genTask = project.tasks.register(
TASK_NAME,
grazelComponent.migrationChecker(),
grazelComponent.projectBazelFileBuilderFactory(),
).apply {
configure {
group = GRAZEL_TASK_GROUP
description = "Generate $BUILD_BAZEL for this project"
configureAction(this)
}
}
return genTask
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy