Gradle系列(二) Gradle執行順序和task

瀟風寒月發表於2019-12-01

0. 前情提示

Gradle系列已完成,專注於Gradle,有如下幾篇文章

1. 什麼是gradle

維基百科:Gradle是一個基於Apache Ant和Apache Maven概念的專案自動化建構工具。它使用一種基於Groovy的特定領域語言來宣告專案設定,而不是傳統的XML。當前其支援的語言限於Java、Groovy和Scala,計劃未來將支援更多的語言。

按我的理解,通俗一點講,就是拿來構建專案的,我們平時在Android Studio上開發Android專案就是用Gradle進行構建的,相比於傳統的xml方式,我感覺更加靈活.畢竟,可以寫程式碼,根據不同的環境搞些騷操作.

gradle裡面其實需要學習的有3個

剛哥說過,遇到不會的直接查官方文件,不要每次去搜尋引擎東搜西搜,這樣效率很低.

這裡插播一個小知識點,如何查詢官方文件.比如在gradle中經常用的buildscript到底是什麼?來到官方文件首頁,點開頂部INDEX,搜尋buildscript,即可找到這個東西是解釋.

2. gradle專案結構

首先我們來新建一個Android專案,什麼都不要動.

QZLQBT.png

  • 最外層setting.gradle為根專案的配置,可以知道需要包含哪些模組,然後最外層的build.gralde也是根專案的配置.模組中的build.gradle是子專案的配置.
  • gradle資料夾下面是版本配置以及gradle所需要的指令碼
  • 最外層的gradlew為linux/mac下的指令碼,gradlew.bat是windows下面用的指令碼

3. gradle配置順序

簡單在gradle中輸出語句,看看配置順序

//settings.gradle
println("setting 開始配置")
include ':app'
rootProject.name='Hello'
println("setting 配置完成")
複製程式碼
//project build.gradle
println("根build.gradle 開始配置")
buildscript {
    repositories {
    }
    dependencies {
    }
}
println("根build.gradle 配置完成")
複製程式碼
//app build.gradle
println("app build.gradle 開始配置")

project.afterEvaluate {
    println "所有模組都已配置完成"
}

android {
    defaultConfig {
    }
    buildTypes {
    }
}

dependencies {
}
println("app build.gradle 配置完成")
複製程式碼

列印語句寫好後,clean Project,即可執行,輸出如下:

setting 開始配置
setting 配置完成

> Configure project :
根build.gradle 開始配置
根build.gradle 配置完成

> Configure project :app
app build.gradle 開始配置
app build.gradle 配置完成
所有模組都已配置完成
複製程式碼

可以看到首先是配置setting,知道有哪些模組.然後是配置根專案的build.gradle,然後才是子專案的build.gradle配置.

我在上面加了一個監聽器project.afterEvaluate,可以通過查詢官方文件瞭解它的詳細內容,這是一個當所有的模組都配置完了的時候的回撥.

其中,還可以在settings.gradle中新增一個監聽器

gradle.addBuildListener(new BuildListener() {
    @Override
    void buildStarted(Gradle gradle) {
        println("buildStarted------------")
    }

    @Override
    void settingsEvaluated(Settings settings) {
        println("settingsEvaluated------------")
    }

    @Override
    void projectsLoaded(Gradle gradle) {
        println("projectsLoaded------------")
    }

    @Override
    void projectsEvaluated(Gradle gradle) {
        println("projectsEvaluated------------")
    }

    @Override
    void buildFinished(BuildResult result) {
        println("buildFinished------------")
    }
})
複製程式碼

在執行構建的時候,這個監聽器會監聽到主要的生命週期事件,看名字大概就能大概猜出是什麼意思,buildStarted已過時.也可以看看官方文件詳細瞭解

加入之後列印如下:

setting 開始配置
setting 配置完成
settingsEvaluated------------
projectsLoaded------------

> Configure project :
根build.gradle 開始配置
根build.gradle 配置完成

> Configure project :app
app build.gradle 開始配置
app build.gradle 配置完成
所有模組都已配置完成
projectsEvaluated------------

buildFinished------------
複製程式碼

4. gradle task

4.1 初識task

gradle中所有的構建工作都是由task完成的,它幫我們處理了很多工作,比如編譯,打包,釋出等都是task.我們可以在專案的根目錄下,開啟命令列(AS自帶,底部有Terminal,開啟就行)執行gradlew tasks檢視當前專案所有的task.

在命令列如果執行失敗,則將專案的JDK location設定成本地jdk的路徑,而且jdk的版本還需要是java 8. 我用的jdk版本是1.8.0_231.

> Task :tasks

------------------------------------------------------------
Tasks runnable from root project
------------------------------------------------------------

Android tasks
-------------
androidDependencies - Displays the Android dependencies of the project.
signingReport - Displays the signing info for the base and test modules
sourceSets - Prints out all the source sets defined in this project.

Build tasks
-----------
assemble - Assemble main outputs for all the variants.
assembleAndroidTest - Assembles all the Test applications.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildNeeded - Assembles and tests this project and all projects it depends on.
bundle - Assemble bundles for all the variants.
clean - Deletes the build directory.
cleanBuildCache - Deletes the build cache directory.
compileDebugAndroidTestSources
compileDebugSources
compileDebugUnitTestSources
compileReleaseSources
compileReleaseUnitTestSources

Build Setup tasks
-----------------
init - Initializes a new Gradle build.
wrapper - Generates Gradle wrapper files.

Cleanup tasks
-------------
lintFix - Runs lint on all variants and applies any safe suggestions to the source code.

Help tasks
----------
buildEnvironment - Displays all buildscript dependencies declared in root project 'Hello'.
components - Displays the components produced by root project 'Hello'. [incubating]
dependencies - Displays all dependencies declared in root project 'Hello'.
dependencyInsight - Displays the insight into a specific dependency in root project 'Hello'.
dependentComponents - Displays the dependent components of components in root project 'Hello'. [incubating]
help - Displays a help message.
model - Displays the configuration model of root project 'Hello'. [incubating]
projects - Displays the sub-projects of root project 'Hello'.
properties - Displays the properties of root project 'Hello'.
tasks - Displays the tasks runnable from root project 'Hello' (some of the displayed tasks may belong to subprojects).

Install tasks
-------------
installDebug - Installs the Debug build.
installDebugAndroidTest - Installs the android (on device) tests for the Debug build.
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build.
uninstallDebugAndroidTest - Uninstalls the android (on device) tests for the Debug build.
uninstallRelease - Uninstalls the Release build.

Verification tasks
------------------
check - Runs all checks.
connectedAndroidTest - Installs and runs instrumentation tests for all flavors on connected devices.
connectedCheck - Runs all device checks on currently connected devices.
connectedDebugAndroidTest - Installs and runs the tests for debug on connected devices.
deviceAndroidTest - Installs and runs instrumentation tests using all Device Providers.
deviceCheck - Runs all device checks using Device Providers and Test Servers.
lint - Runs lint on all variants.
lintDebug - Runs lint on the Debug build.
lintRelease - Runs lint on the Release build.
lintVitalRelease - Runs lint on just the fatal issues in the release build.
test - Run unit tests for all variants.
testDebugUnitTest - Run unit tests for the debug build.
testReleaseUnitTest - Run unit tests for the release build.

To see all tasks and more detail, run gradlew tasks --all

複製程式碼

可以看到,這裡有很多的task.比如我們在命令列執行gradlew clean就是clean.執行gradlew installDebug就是構建debug專案然後安裝到手機上.

4.2 編寫task

書寫task非常簡單,比如我們在根目錄的build.gradle中加入一個hello的task

task hello() {
    println "hello world"

    //將給定的閉包 新增到此task操作連結串列的開頭
    doFirst {
        println "hello task doFirst"
    }

    doLast {
        println "hello task doLast"
    }
}
複製程式碼

然後在命令列執行gradlew hello,輸出如下

setting 開始配置
setting 配置完成

> Configure project :
根build.gradle 開始配置
hello world
根build.gradle 配置完成

> Configure project :app
app build.gradle 開始配置
app build.gradle 配置完成

> Task :hello
hello task doFirst
hello task doLast
複製程式碼

它會先配置完成,才會執行.在一個task內部其實擁有一個action列表,執行的時候其實就是執行這個列表,它的型別是一個List.上面的doFirst和doLast就是建立action的兩個方法,文件.doFirst是在最開始執行,doLast是在最後執行,大括號裡面傳入的是閉包.

4.3 task執行順序

task是有執行順序的,在建立完Android專案之後,根目錄下的build.gradle中,有一個clean的task.這個是AS自動給我們生成的.

task clean(type: Delete) {
    delete rootProject.buildDir
}
複製程式碼

我們先在根目錄下建立test.txt檔案,然後我們在這個task中做一些改動,執行到clean這個task時刪除根目錄下的test.txt檔案.

task clean(type: Delete) {
    delete rootProject.buildDir

    doLast {
        def file = new File('test.txt')
        delete file
        println "清理"
    }
}
複製程式碼

然後我們在hello這個task的下面寫上

hello.dependsOn clean
複製程式碼

這樣就表示hello這個task依賴clean這個task,當執行hello這個task時需要先執行clean. 我們在命令列執行gradlew hello看看是不是這樣.我執行之後它的輸出是

> Task :clean
清理

> Task :hello
hello task doFirst
hello task doLast
複製程式碼

先執行clean,再執行hello這個task.而且還看到test.txt檔案被刪除(如果看到沒刪除,重新整理一下看看)了,那麼說明確實是clean先執行.

這個順序有什麼用?其實是很有用的,比如執行安裝task的時候,肯定會先執行編譯,打包這些步驟.

4.4 自帶 gradle task

當我們在AS中建立Android專案的時候,預設會帶一些Android的一些gradle task,這些task都是gradle和Android Gradle Plugin給我們建立好的,可以直接用.

Qe1fy9.png

比如我們上面使用到的gradlew clean是用來清理專案的.和編譯相關的task主要有:build和assemble,其中build依賴assemble,也就是說執行build之前會先執行assemble。在Android上,會根據buildType和productFlavor的不同自動建立多個assembleXxx任務,如assembleDebug,assembleRelease等,assemble會依賴所有的assembleXxx任務,也就是說執行assemble會先執行assembleDebug,assembleRelease等一系列的assemble任務。

如果想看Android Gradle Plugin原始碼,可以在app/build.gradle中的dependencies下面引入

compileOnly 'com.android.tools.build:gradle:3.5.2'
複製程式碼

然後就可以在專案的External Libraries中看到該jar的原始碼,

QeUB5R.png

比如clean這個task是在com.android.build.gradle.tasks.CleanBuildCache.java裡面定義的

@TaskAction
public void clean() throws IOException {
    Preconditions.checkNotNull(buildCache, "buildCache must not be null");
    buildCache.delete();
}
複製程式碼

通過查詢gradle官方文件可知,@TaskAction的作用:Marks a method as the action to run when the task is executed. 將方法標記為執行任務時要執行的動作.

5.Build script blocks

還有一個東西,就是幾乎每個專案都需要用到的地方,但是我之前卻根本不知道它真正的名字.就是Build script blocks,開啟專案的根目錄的build.gradle檔案.

buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.2'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

複製程式碼

每個專案都需要配置這些東西,但是我們真的知道他們的含義麼?

首先是buildscript,查詢文件可知:

void buildscript​(Closure configureClosure)

Configures the build script classpath for this project.

The given closure is executed against this project's ScriptHandler. The ScriptHandler is passed to the closure as the closure's delegate.
複製程式碼

為該專案配置構建指令碼類路徑.引數是Closure,閉包.這個閉包是委託給了ScriptHandler,又去看看ScriptHandler

dependencies​(Closure configureClosure)	 Configures the dependencies for the script.
repositories​(Closure configureClosure)   Configures the repositories for the script dependencies.
複製程式碼

dependencies​是新增編譯依賴項的,repositories​是為指令碼依賴項配置儲存庫.他們的配置,都是用閉包的形式.

然後dependencies​又是委託了DependencyHandler進行配置,對於怎麼配置,官方還給了示例

Example shows a basic way of declaring dependencies.

 apply plugin: 'java'
 //so that we can use 'implementation', 'testImplementation' for dependencies

 dependencies {
   //for dependencies found in artifact repositories you can use
   //the group:name:version notation
   implementation 'commons-lang:commons-lang:2.6'
   testImplementation 'org.mockito:mockito:1.9.0-rc1'

   //map-style notation:
   implementation group: 'com.google.code.guice', name: 'guice', version: '1.0'

   //declaring arbitrary files as dependencies
   implementation files('hibernate.jar', 'libs/spring.jar')

   //putting all jars from 'libs' onto compile classpath
   implementation fileTree('libs')
 }
複製程式碼

6. 總結

本文帶大家梳理了Gradle的執行順序,Task和Build script blocks這些知識點.為了更好的認識Gradle.現在對Gradle瞭解又深了一步,而且如果以後遇到不懂的還知道到哪裡去查文件,方便快捷,不用再到處搜了.

相關文章