gradle.plugin.zsh 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #!zsh
  2. ##############################################################################
  3. # A descriptive listing of core Gradle commands
  4. ############################################################################
  5. function _gradle_core_commands() {
  6. local ret=1 state
  7. _arguments ':subcommand:->subcommand' && ret=0
  8. case $state in
  9. subcommand)
  10. subcommands=(
  11. "properties:Display all project properties"
  12. "tasks:Calculate and display all tasks"
  13. "dependencies:Calculate and display all dependencies"
  14. "projects:Discover and display all sub-projects"
  15. "build:Build the project"
  16. "help:Display help"
  17. )
  18. _describe -t subcommands 'gradle subcommands' subcommands && ret=0
  19. esac
  20. return ret
  21. }
  22. function _gradle_arguments() {
  23. _arguments -C \
  24. '-a[Do not rebuild project dependencies]' \
  25. '-h[Help]' \
  26. '-D[System property]' \
  27. '-d[Log at the debug level]' \
  28. '--gui[Launches the Gradle GUI app]' \
  29. '--stop[Stop the Gradle daemon]' \
  30. '--daemon[Use the Gradle daemon]' \
  31. '--no-daemon[Do not use the Gradle daemon]' \
  32. '--no-opt[Do not perform any task optimization]' \
  33. '-i[Log at the info level]' \
  34. '-m[Dry run]' \
  35. '-P[Set a project property]' \
  36. '--profile[Profile the build time]' \
  37. '-q[Log at the quiet level (only show errors)]' \
  38. '-v[Print the Gradle version info]' \
  39. '-x[Specify a task to be excluded]' \
  40. '*::command:->command' \
  41. && return 0
  42. }
  43. ##############################################################################
  44. # Are we in a directory containing a build.gradle file?
  45. ############################################################################
  46. function in_gradle() {
  47. if [[ -f build.gradle ]]; then
  48. echo 1
  49. fi
  50. }
  51. ############################################################################## Examine the build.gradle file to see if its
  52. # timestamp has changed, and if so, regen
  53. # the .gradle_tasks cache file
  54. ############################################################################
  55. _gradle_does_task_list_need_generating () {
  56. [ ! -f .gradletasknamecache ] && return 0;
  57. [ .gradletasknamecache -nt build.gradle ] && return 0;
  58. return 1;
  59. }
  60. ##############################################################################
  61. # Discover the gradle tasks by running "gradle tasks --all"
  62. ############################################################################
  63. _gradle_tasks () {
  64. if [ in_gradle ]; then
  65. _gradle_arguments
  66. if _gradle_does_task_list_need_generating; then
  67. gradle tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
  68. fi
  69. compadd -X "==== Gradle Tasks ====" `cat .gradletasknamecache`
  70. fi
  71. }
  72. _gradlew_tasks () {
  73. if [ in_gradle ]; then
  74. _gradle_arguments
  75. if _gradle_does_task_list_need_generating; then
  76. gradlew tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
  77. fi
  78. compadd -X "==== Gradlew Tasks ====" `cat .gradletasknamecache`
  79. fi
  80. }
  81. ##############################################################################
  82. # Register the completions against the gradle and gradlew commands
  83. ############################################################################
  84. compdef _gradle_tasks gradle
  85. compdef _gradlew_tasks gradlew
  86. ##############################################################################
  87. # Open questions for future improvements:
  88. # 1) Should 'gradle tasks' use --all or just the regular set?
  89. # 2) Should gradlew use the same approach as gradle?
  90. # 3) Should only the " - " be replaced with a colon so it can work
  91. # with the richer descriptive method of _arguments?
  92. # gradle tasks | grep "^[a-zA-Z0-9]*\ -\ " | sed "s/ - /\:/"
  93. #############################################################################