gradle.plugin.zsh 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. ############################################################################
  52. # Define the stat_cmd command based on platform behavior
  53. ##########################################################################
  54. stat -f%m . > /dev/null 2>&1
  55. if [ "$?" = 0 ]; then
  56. stat_cmd=(stat -f%m)
  57. else
  58. stat_cmd=(stat -L --format=%Y)
  59. fi
  60. ############################################################################## Examine the build.gradle file to see if its
  61. # timestamp has changed, and if so, regen
  62. # the .gradle_tasks cache file
  63. ############################################################################
  64. _gradle_does_task_list_need_generating () {
  65. if [ ! -f .gradletasknamecache ]; then return 0;
  66. else
  67. accurate=$($stat_cmd .gradletasknamecache)
  68. changed=$($stat_cmd build.gradle)
  69. return $(expr $accurate '>=' $changed)
  70. fi
  71. }
  72. ##############################################################################
  73. # Discover the gradle tasks by running "gradle tasks --all"
  74. ############################################################################
  75. _gradle_tasks () {
  76. if [ in_gradle ]; then
  77. _gradle_arguments
  78. if _gradle_does_task_list_need_generating; then
  79. gradle tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
  80. fi
  81. compadd -X "==== Gradle Tasks ====" `cat .gradletasknamecache`
  82. fi
  83. }
  84. _gradlew_tasks () {
  85. if [ in_gradle ]; then
  86. _gradle_arguments
  87. if _gradle_does_task_list_need_generating; then
  88. gradlew tasks --all | grep "^[ ]*[a-zA-Z0-9]*\ -\ " | sed "s/ - .*$//" | sed "s/[\ ]*//" > .gradletasknamecache
  89. fi
  90. compadd -X "==== Gradlew Tasks ====" `cat .gradletasknamecache`
  91. fi
  92. }
  93. ##############################################################################
  94. # Register the completions against the gradle and gradlew commands
  95. ############################################################################
  96. compdef _gradle_tasks gradle
  97. compdef _gradlew_tasks gradlew
  98. ##############################################################################
  99. # Open questions for future improvements:
  100. # 1) Should 'gradle tasks' use --all or just the regular set?
  101. # 2) Should gradlew use the same approach as gradle?
  102. # 3) Should only the " - " be replaced with a colon so it can work
  103. # with the richer descriptive method of _arguments?
  104. # gradle tasks | grep "^[a-zA-Z0-9]*\ -\ " | sed "s/ - /\:/"
  105. #############################################################################