#!/usr/bin/env bash
#
# sourcehawk Bash Completion
# =======================
#
# Bash completion support for the `sourcehawk` command,
# generated by [picocli](http://picocli.info/) version 4.5.2.
#
# Installation
# ------------
#
# 1. Source all completion scripts in your .bash_profile
#
#   cd $YOUR_APP_HOME/bin
#   for f in $(find . -name "*_completion"); do line=". $(pwd)/$f"; grep "$line" ~/.bash_profile || echo "$line" >> ~/.bash_profile; done
#
# 2. Open a new bash console, and type `sourcehawk [TAB][TAB]`
#
# 1a. Alternatively, if you have [bash-completion](https://github.com/scop/bash-completion) installed:
#     Place this file in a `bash-completion.d` folder:
#
#   * /etc/bash-completion.d
#   * /usr/local/etc/bash-completion.d
#   * ~/bash-completion.d
#
# Documentation
# -------------
# The script is called by bash whenever [TAB] or [TAB][TAB] is pressed after
# 'sourcehawk (..)'. By reading entered command line parameters,
# it determines possible bash completions and writes them to the COMPREPLY variable.
# Bash then completes the user input if only one entry is listed in the variable or
# shows the options if more than one is listed in COMPREPLY.
#
# References
# ----------
# [1] http://stackoverflow.com/a/12495480/1440785
# [2] http://tiswww.case.edu/php/chet/bash/FAQ
# [3] https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html
# [4] http://zsh.sourceforge.net/Doc/Release/Options.html#index-COMPLETE_005fALIASES
# [5] https://stackoverflow.com/questions/17042057/bash-check-element-in-array-for-elements-in-another-array/17042655#17042655
# [6] https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion.html#Programmable-Completion
# [7] https://stackoverflow.com/questions/3249432/can-a-bash-tab-completion-script-be-used-in-zsh/27853970#27853970
#

if [ -n "$BASH_VERSION" ]; then
  # Enable programmable completion facilities when using bash (see [3])
  shopt -s progcomp
elif [ -n "$ZSH_VERSION" ]; then
  # Make alias a distinct command for completion purposes when using zsh (see [4])
  setopt COMPLETE_ALIASES
  alias compopt=complete

  # Enable bash completion in zsh (see [7])
  autoload -U +X compinit && compinit
  autoload -U +X bashcompinit && bashcompinit
fi

# CompWordsContainsArray takes an array and then checks
# if all elements of this array are in the global COMP_WORDS array.
#
# Returns zero (no error) if all elements of the array are in the COMP_WORDS array,
# otherwise returns 1 (error).
function CompWordsContainsArray() {
  declare -a localArray
  localArray=("$@")
  local findme
  for findme in "${localArray[@]}"; do
    if ElementNotInCompWords "$findme"; then return 1; fi
  done
  return 0
}
function ElementNotInCompWords() {
  local findme="$1"
  local element
  for element in "${COMP_WORDS[@]}"; do
    if [[ "$findme" = "$element" ]]; then return 1; fi
  done
  return 0
}

# The `currentPositionalIndex` function calculates the index of the current positional parameter.
#
# currentPositionalIndex takes three parameters:
# the command name,
# a space-separated string with the names of options that take a parameter, and
# a space-separated string with the names of boolean options (that don't take any params).
# When done, this function echos the current positional index to std_out.
#
# Example usage:
# local currIndex=$(currentPositionalIndex "mysubcommand" "$ARG_OPTS" "$FLAG_OPTS")
function currentPositionalIndex() {
  local commandName="$1"
  local optionsWithArgs="$2"
  local booleanOptions="$3"
  local previousWord
  local result=0

  for i in $(seq $((COMP_CWORD - 1)) -1 0); do
    previousWord=${COMP_WORDS[i]}
    if [ "${previousWord}" = "$commandName" ]; then
      break
    fi
    if [[ "${optionsWithArgs}" =~ ${previousWord} ]]; then
      ((result-=2)) # Arg option and its value not counted as positional param
    elif [[ "${booleanOptions}" =~ ${previousWord} ]]; then
      ((result-=1)) # Flag option itself not counted as positional param
    fi
    ((result++))
  done
  echo "$result"
}

# Bash completion entry point function.
# _complete_sourcehawk finds which commands and subcommands have been specified
# on the command line and delegates to the appropriate function
# to generate possible options and subcommands for the last specified subcommand.
function _complete_sourcehawk() {
  local cmds0=(help)
  local cmds1=(scan)
  local cmds2=(flyover)
  local cmds3=(survey)
  local cmds4=(validate-config)
  local cmds5=(vc)
  local cmds6=(fix)
  local cmds7=(correct)
  local cmds8=(resolve)
  local cmds9=(flatten-config)
  local cmds10=(flatten)
  local cmds11=(flat)
  local cmds12=(merge)
  local cmds13=(converge)
  local cmds14=(fc)
  local cmds15=(scan help)
  local cmds16=(flyover help)
  local cmds17=(survey help)
  local cmds18=(fix help)
  local cmds19=(correct help)
  local cmds20=(resolve help)

  if CompWordsContainsArray "${cmds20[@]}"; then _picocli_sourcehawk_resolve_help; return $?; fi
  if CompWordsContainsArray "${cmds19[@]}"; then _picocli_sourcehawk_correct_help; return $?; fi
  if CompWordsContainsArray "${cmds18[@]}"; then _picocli_sourcehawk_fix_help; return $?; fi
  if CompWordsContainsArray "${cmds17[@]}"; then _picocli_sourcehawk_survey_help; return $?; fi
  if CompWordsContainsArray "${cmds16[@]}"; then _picocli_sourcehawk_flyover_help; return $?; fi
  if CompWordsContainsArray "${cmds15[@]}"; then _picocli_sourcehawk_scan_help; return $?; fi
  if CompWordsContainsArray "${cmds14[@]}"; then _picocli_sourcehawk_fc; return $?; fi
  if CompWordsContainsArray "${cmds13[@]}"; then _picocli_sourcehawk_converge; return $?; fi
  if CompWordsContainsArray "${cmds12[@]}"; then _picocli_sourcehawk_merge; return $?; fi
  if CompWordsContainsArray "${cmds11[@]}"; then _picocli_sourcehawk_flat; return $?; fi
  if CompWordsContainsArray "${cmds10[@]}"; then _picocli_sourcehawk_flatten; return $?; fi
  if CompWordsContainsArray "${cmds9[@]}"; then _picocli_sourcehawk_flattenconfig; return $?; fi
  if CompWordsContainsArray "${cmds8[@]}"; then _picocli_sourcehawk_resolve; return $?; fi
  if CompWordsContainsArray "${cmds7[@]}"; then _picocli_sourcehawk_correct; return $?; fi
  if CompWordsContainsArray "${cmds6[@]}"; then _picocli_sourcehawk_fix; return $?; fi
  if CompWordsContainsArray "${cmds5[@]}"; then _picocli_sourcehawk_vc; return $?; fi
  if CompWordsContainsArray "${cmds4[@]}"; then _picocli_sourcehawk_validateconfig; return $?; fi
  if CompWordsContainsArray "${cmds3[@]}"; then _picocli_sourcehawk_survey; return $?; fi
  if CompWordsContainsArray "${cmds2[@]}"; then _picocli_sourcehawk_flyover; return $?; fi
  if CompWordsContainsArray "${cmds1[@]}"; then _picocli_sourcehawk_scan; return $?; fi
  if CompWordsContainsArray "${cmds0[@]}"; then _picocli_sourcehawk_help; return $?; fi

  # No subcommands were specified; generate completions for the top-level command.
  _picocli_sourcehawk; return $?;
}

# Generates completions for the options and subcommands of the `sourcehawk` command.
function _picocli_sourcehawk() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands="help scan flyover survey validate-config vc fix correct resolve flatten-config flatten flat merge converge fc"
  local flag_opts="-h --help -V --version"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands="scan validate-config fix flatten-config"
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `scan` subcommand.
function _picocli_sourcehawk_scan() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands="help"
  local flag_opts="-fow --fail-on-warnings -h --help -V --version"
  local arg_opts="-c -cf --config-file -cfu --config-file-url -v --verbosity -f --output-format -ght --github-token -ghc --github-coords -ghr --github-ref -ghe --github-enterprise"
  local verbosity_option_args="ZERO LOW MEDIUM HIGH" # --verbosity values
  local outputFormat_option_args="CONSOLE TEXT JSON MARKDOWN" # --output-format values

  compopt +o default

  case ${prev_word} in
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
    -v|--verbosity)
      COMPREPLY=( $( compgen -W "${verbosity_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -f|--output-format)
      COMPREPLY=( $( compgen -W "${outputFormat_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -ght|--github-token)
      return
      ;;
    -ghc|--github-coords)
      return
      ;;
    -ghr|--github-ref)
      return
      ;;
    -ghe|--github-enterprise)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "scan" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `flyover` subcommand.
function _picocli_sourcehawk_flyover() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands="help"
  local flag_opts="-fow --fail-on-warnings -h --help -V --version"
  local arg_opts="-c -cf --config-file -cfu --config-file-url -v --verbosity -f --output-format -ght --github-token -ghc --github-coords -ghr --github-ref -ghe --github-enterprise"
  local verbosity_option_args="ZERO LOW MEDIUM HIGH" # --verbosity values
  local outputFormat_option_args="CONSOLE TEXT JSON MARKDOWN" # --output-format values

  compopt +o default

  case ${prev_word} in
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
    -v|--verbosity)
      COMPREPLY=( $( compgen -W "${verbosity_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -f|--output-format)
      COMPREPLY=( $( compgen -W "${outputFormat_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -ght|--github-token)
      return
      ;;
    -ghc|--github-coords)
      return
      ;;
    -ghr|--github-ref)
      return
      ;;
    -ghe|--github-enterprise)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "flyover" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `survey` subcommand.
function _picocli_sourcehawk_survey() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands="help"
  local flag_opts="-fow --fail-on-warnings -h --help -V --version"
  local arg_opts="-c -cf --config-file -cfu --config-file-url -v --verbosity -f --output-format -ght --github-token -ghc --github-coords -ghr --github-ref -ghe --github-enterprise"
  local verbosity_option_args="ZERO LOW MEDIUM HIGH" # --verbosity values
  local outputFormat_option_args="CONSOLE TEXT JSON MARKDOWN" # --output-format values

  compopt +o default

  case ${prev_word} in
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
    -v|--verbosity)
      COMPREPLY=( $( compgen -W "${verbosity_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -f|--output-format)
      COMPREPLY=( $( compgen -W "${outputFormat_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -ght|--github-token)
      return
      ;;
    -ghc|--github-coords)
      return
      ;;
    -ghr|--github-ref)
      return
      ;;
    -ghe|--github-enterprise)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "survey" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `validate-config` subcommand.
function _picocli_sourcehawk_validateconfig() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "validate-config" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `vc` subcommand.
function _picocli_sourcehawk_vc() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "vc" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `fix` subcommand.
function _picocli_sourcehawk_fix() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands="help"
  local flag_opts="-d --dry-run -h --help -V --version"
  local arg_opts="-c -cf --config-file -cfu --config-file-url -v --verbosity -f --output-format -ght --github-token -ghc --github-coords -ghr --github-ref -ghe --github-enterprise"
  local verbosity_option_args="ZERO LOW MEDIUM HIGH" # --verbosity values
  local outputFormat_option_args="CONSOLE TEXT JSON MARKDOWN" # --output-format values

  compopt +o default

  case ${prev_word} in
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
    -v|--verbosity)
      COMPREPLY=( $( compgen -W "${verbosity_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -f|--output-format)
      COMPREPLY=( $( compgen -W "${outputFormat_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -ght|--github-token)
      return
      ;;
    -ghc|--github-coords)
      return
      ;;
    -ghr|--github-ref)
      return
      ;;
    -ghe|--github-enterprise)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "fix" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `correct` subcommand.
function _picocli_sourcehawk_correct() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands="help"
  local flag_opts="-d --dry-run -h --help -V --version"
  local arg_opts="-c -cf --config-file -cfu --config-file-url -v --verbosity -f --output-format -ght --github-token -ghc --github-coords -ghr --github-ref -ghe --github-enterprise"
  local verbosity_option_args="ZERO LOW MEDIUM HIGH" # --verbosity values
  local outputFormat_option_args="CONSOLE TEXT JSON MARKDOWN" # --output-format values

  compopt +o default

  case ${prev_word} in
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
    -v|--verbosity)
      COMPREPLY=( $( compgen -W "${verbosity_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -f|--output-format)
      COMPREPLY=( $( compgen -W "${outputFormat_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -ght|--github-token)
      return
      ;;
    -ghc|--github-coords)
      return
      ;;
    -ghr|--github-ref)
      return
      ;;
    -ghe|--github-enterprise)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "correct" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `resolve` subcommand.
function _picocli_sourcehawk_resolve() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands="help"
  local flag_opts="-d --dry-run -h --help -V --version"
  local arg_opts="-c -cf --config-file -cfu --config-file-url -v --verbosity -f --output-format -ght --github-token -ghc --github-coords -ghr --github-ref -ghe --github-enterprise"
  local verbosity_option_args="ZERO LOW MEDIUM HIGH" # --verbosity values
  local outputFormat_option_args="CONSOLE TEXT JSON MARKDOWN" # --output-format values

  compopt +o default

  case ${prev_word} in
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
    -v|--verbosity)
      COMPREPLY=( $( compgen -W "${verbosity_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -f|--output-format)
      COMPREPLY=( $( compgen -W "${outputFormat_option_args}" -- "${curr_word}" ) )
      return $?
      ;;
    -ght|--github-token)
      return
      ;;
    -ghc|--github-coords)
      return
      ;;
    -ghr|--github-ref)
      return
      ;;
    -ghe|--github-enterprise)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    local currIndex
    currIndex=$(currentPositionalIndex "resolve" "${arg_opts}" "${flag_opts}")
    if (( currIndex >= 0 && currIndex <= 0 )); then
      compopt -o filenames
      positionals=$( compgen -f -- "${curr_word}" ) # files
    fi
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `flatten-config` subcommand.
function _picocli_sourcehawk_flattenconfig() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts="-o --output -c -cf --config-file -cfu --config-file-url"

  compopt +o default

  case ${prev_word} in
    -o|--output)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `flatten` subcommand.
function _picocli_sourcehawk_flatten() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts="-o --output -c -cf --config-file -cfu --config-file-url"

  compopt +o default

  case ${prev_word} in
    -o|--output)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `flat` subcommand.
function _picocli_sourcehawk_flat() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts="-o --output -c -cf --config-file -cfu --config-file-url"

  compopt +o default

  case ${prev_word} in
    -o|--output)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `merge` subcommand.
function _picocli_sourcehawk_merge() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts="-o --output -c -cf --config-file -cfu --config-file-url"

  compopt +o default

  case ${prev_word} in
    -o|--output)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `converge` subcommand.
function _picocli_sourcehawk_converge() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts="-o --output -c -cf --config-file -cfu --config-file-url"

  compopt +o default

  case ${prev_word} in
    -o|--output)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `fc` subcommand.
function _picocli_sourcehawk_fc() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}
  local prev_word=${COMP_WORDS[COMP_CWORD-1]}

  local commands=""
  local flag_opts="-h --help -V --version"
  local arg_opts="-o --output -c -cf --config-file -cfu --config-file-url"

  compopt +o default

  case ${prev_word} in
    -o|--output)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -c|-cf|--config-file)
      compopt -o filenames
      COMPREPLY=( $( compgen -f -- "${curr_word}" ) ) # files
      return $?
      ;;
    -cfu|--config-file-url)
      return
      ;;
  esac

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_scan_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_flyover_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_survey_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_fix_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_correct_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Generates completions for the options and subcommands of the `help` subcommand.
function _picocli_sourcehawk_resolve_help() {
  # Get completion data
  local curr_word=${COMP_WORDS[COMP_CWORD]}

  local commands=""
  local flag_opts="-h --help"
  local arg_opts=""

  if [[ "${curr_word}" == -* ]]; then
    COMPREPLY=( $(compgen -W "${flag_opts} ${arg_opts}" -- "${curr_word}") )
  else
    local positionals=""
    COMPREPLY=( $(compgen -W "${commands} ${positionals}" -- "${curr_word}") )
  fi
}

# Define a completion specification (a compspec) for the
# `sourcehawk`, `sourcehawk.sh`, and `sourcehawk.bash` commands.
# Uses the bash `complete` builtin (see [6]) to specify that shell function
# `_complete_sourcehawk` is responsible for generating possible completions for the
# current word on the command line.
# The `-o default` option means that if the function generated no matches, the
# default Bash completions and the Readline default filename completions are performed.
complete -F _complete_sourcehawk -o default sourcehawk sourcehawk.sh sourcehawk.bash
