WALA/README-Gradle.md

12 KiB
Raw Blame History

This document describes some WALA-specific aspects of our new Gradle build system, plus a few general Gradle features that may be of particular interest to WALA developers. However, it is not a Gradle tutorial.

Pros and Cons of Switching to Gradle

Selected Gradle Advantages in Brief

Known Shortcomings

The Gradle build system is not yet ready to replace Maven, due to a few known shortcomings. Paramount among these is that Gradle WALA builds do not yet package up Eclipse plug-ins / features in the proper manner. I have poked at this a bit, but I simply do not understand Eclipse and/or OSGi well enough to get the job done. I welcome help from anyone with the right knowledge!

Either Gradle or Maven can be used to build WALA from the command line. However, it was not possible to extend this dual-build-system support to Eclipse. Working with WALA in Eclipse requires doing things the Gradle way. Fortunately, this is rather seamless; I see no reason why an Eclipse-using WALA developer should need to avoid this switch.

Getting Started

External Dependencies: Patience is a Virtue

Gradle downloads many packages and supporting Java libraries as needed. Your first Gradle build may take a long time. On a fast workstation with a University-grade network and no local caches, my initial run of ./gradlew assemble processTestResources took five minutes. On a decent laptop with residential DSL and no local caches, the same initial build took twenty minutes. Fortunately, user- and project-level Gradle caches will make incremental rebuilds much faster. Rerunning ./gradlew assemble processTestResources with a warm cache in an already-built tree takes under three seconds.

Maven is the same, really. You may already have most of what Maven needs downloaded and cached locally, but your first Maven WALA build was probably slow as well. Recent Travis CI runs have showed Gradle and Maven builds completing in fifteen to twenty minutes, without significant variation between the two build systems.

The good news is that the Gradle build knows about all of its external dependencies and will download them as needed. This even includes some complex dependencies that the Maven build does not automate. For example, the Gradle build will automatically gather required Android SDK components: setting $ANDROID_HOME is not needed. Gradle builds will also download /tmp/DroidBench when needed to run tests; the Maven build system required that each developer do this by hand.

Eclipse

One-Time Eclipse Configuration

To work with WALA inside Eclipse, first install Eclipse Buildship using either the Eclipse Marketplace or the Eclipse update manager. Buildship integrates Eclipse with Gradle, much like how M2Eclipse integrates Eclipse with Maven. Restart Eclipse after installing this feature.

Importing WALA Projects Into Eclipse

Once you are running a Buildship-enabled Eclipse, use the “Existing Gradle Project” import wizard to import WALA into Eclipse. Select and import the topmost level of your WALA source tree. On the “Import Options” page of the import wizard, leave all settings at their defaults: the “Override workspace settings” option should be off, and the grayed-out “Gradle distribution” choice should be set to “Gradle wrapper”. You do not need to select each of WALAs sub-projects; import only the top-level WALA source tree, and the rest will follow.

After the lengthy import process completes, use “Run → After Importing WALA Into Eclipse” to perform some post-import cleanup and configuration. Immediately after importing, you may see some errors in the Eclipse “Problems” view. These should all go away after running the “After Importing WALA Into Eclipse” step.

Note: a pristine WALA source tree is not pre-configured as a group of Eclipse projects. Using the standard Eclipse “Existing Projects into Workspace” import wizard will not work correctly. You must use the “Existing Gradle Project” import wizard instead.

.classpath and .project as Generated Files

You will find no .classpath or .project files anywhere in the Gradle fork of WALAs git repository. Importing using the “Existing Gradle Project” wizard creates these Eclipse project configuration files automatically based on the underlying Gradle configuration.

Therefore, when working with Eclipse + Gradle, you should treat .classpath and .project files as generated artifacts, not as files to edit directly or through the Eclipse project configuration GUI. For example, avoid using the Java Build Path settings dialog to make changes that are stored in a .classpath file: the modified .classpath file is not git-tracked, so your changes will eventually be lost or overwritten.

The right way to change the contents of any of a .classpath or .project file is to change the Gradle configuration such that the generated .classpath and .project files will have the desired contents, likely by using Gradles eclipse plugin. A few WALA sub-projects already use this: look for eclipse.project in */build.gradle for examples.

Gradle Command Line

You do not need to install Gradle separately. WALA includes its own copy of Gradle, available as the gradlew script in the top-level WALA directory. Use this script for all command-line Gradle actions. For example, to compile all of WALAs main (non-test) code and gather it into jar archives, run ./gradlew assemble.

In general, most Gradle-generated artifacts will appear somewhere under */build. For example the jar archives created by the assemble task can be found as */build/libs/*.jar. Note, however, that Eclipse-generated artifacts will still appear in the same places as before, such as */bin and */target.

Trustworthy Dependencies For Incremental Builds

Gradle has excellent understanding of task and file dependencies. You can trust it to perform incremental rebuilds rather than always rebuilding from scratch. If you are used to always running mvn clean compile instead of mvn compile, or mvn clean install instead of mvn install, I recommend that you drop clean as a reflexive extra step and trust Gradle to do incremental builds correctly.

Favorite Build Tasks

Some useful Gradle tasks include:

  • assemble: build WALAs main (non-test) code

  • build: build all WALA code and run all automated tests

  • javadoc: build all Javadoc documentation

  • publishToMavenLocal: install WALAs jar files under ~/.m2

  • clean: remove all Gradle-generated artifacts

Tasks in Specific Sub-Projects

When you run ./gradlew in the top-level WALA directory, any tasks you list will be built in all sub-projects. For example, ./gradlew assemble builds all non-test WALA jars in all sub-projects. If you want to build tasks only in specific sub-projects, you have two options:

  1. Give the fully-qualified name of the sub-project task. For example, to assemble only the Dalvik jar, you could run ./gradlew :com.ibm.wala.dalvik:assemble.

  2. Run Gradle from within some sub-project directory. For example, to assemble only the Dalvik jar, you could cd com.ibm.wala.dalvik and then run ../gradlew assemble. Note the proper relative path to the top-level Gradle script: ../gradle instead of ./gradlew.

Task Name Abbreviation

Any build task can be abbreviated by shortening each camel-case-delimited word in its name. For example, the processTestResources task can probably be abbreviated as procTeRes or even pTR.

Useful Command-Line Flags

Among Gradles command-line flags, I have found the following particularly useful:

  • --continue: keep building non-dependent sub-tasks even after an initial failure. Especially useful in conjunction with the build or test tasks to see multiple test failures rather than giving up after the first failure.

  • -t, --continuous: keep Gradle process running and re-execute the given tasks whenever input files change. Similar to Eclipses behavior of updating the build whenever you change and save a file.

  • --tests=...: run only the selected tests. Use in conjunction with the build or test tasks for faster turnaround if you are focusing on getting just one or a few failing tests to pass.

  • --scan: upload a detailed report of the build process to a Gradle-hosted server for further exploration and analysis. The only security here is the obscurity of the generated URL for the build report. If you are not concerned about potentially making your build details public, then --scan is a good way to gain insights into why Gradle did what it did, and how long each piece took.

Composite Builds

Gradles composite builds allow a Gradle-managed project to recursively include other Gradle-managed projects, with Gradle managing the entire build process in a coherent, integrated manner. Thus, if you use Gradle to build your WALA-based project, you can easily have it use WALA from your own, private WALA tree instead of from ~/.m2 or the public Maven repository.

This is especially useful if you frequently find yourself switching between multiple different personal or experimental WALA builds. By avoiding ~/.m2, each WALA-based project can be its own composite build, with its own WALA subtree, and no project interferes with any other.

Travis CI

I use a Travis CI build matrix to perform automated testing in three configurations:

  1. Gradle build on Ubuntu 14 (Trusty Tahr)
  2. Maven build on Ubuntu 14 (Trusty Tahr)
  3. Gradle build on macOS 10.12 (Sierra)

Until we are ready to completely replace Maven with Gradle, it is important that both keep working. Therefore, I use Travis CI to build and test WALA on Ubuntu using both Gradle and Maven. Every new pull request must be validated in both of these configurations before I will accept it onto the gradle-and-buildship branch.

The official WALA repository has no macOS CI testing. However, macOS is the main development platform for at least one WALA maintainer, so it is great to have Travis CI helping us keep that platform working. I will not accept pull requests that introduce regressions into Gradle macOS builds. However, I am not using Travis CI to test Maven macOS builds. Initial attempts using the official WALA master sources failed. As it is my goal to replace Maven entirely, investigating Maven+macOS failures further is not a priority.