# AUTOMATICALLY GENERATED by `shtab`

_shtab_sigillum_subparsers=('sign' 'verify' 'timestamp' 'extract' 'encrypt' 'decrypt' 'tsl-import' 'tsl-list' 'detect' 'config' 'gui')
_shtab_sigillum_config_subparsers=('show' 'set')

_shtab_sigillum_option_strings=('-h' '--help' '-V' '--version')
_shtab_sigillum_sign_option_strings=('-h' '--help' '-o' '--output' '--level' '--visible' '--page' '--position' '--box' '--image' '--reason' '--location' '--contact' '--cert' '--lib' '--cert-id' '--tsa' '--tsa-user' '--tsa-password')
_shtab_sigillum_verify_option_strings=('-h' '--help' '--original' '--trusted' '--tsa-trusted' '--json')
_shtab_sigillum_timestamp_option_strings=('-h' '--help' '-o' '--output' '--format' '--tsa' '--tsa-user' '--tsa-password')
_shtab_sigillum_extract_option_strings=('-h' '--help' '-o' '--output' '--shallow')
_shtab_sigillum_encrypt_option_strings=('-h' '--help' '-o' '--output' '--mode' '--algo' '--recipient' '--cert' '--lib' '--cert-id')
_shtab_sigillum_decrypt_option_strings=('-h' '--help' '-o' '--output' '--cert' '--lib' '--cert-id')
_shtab_sigillum_tsl_import_option_strings=('-h' '--help' '--country')
_shtab_sigillum_tsl_list_option_strings=('-h' '--help')
_shtab_sigillum_detect_option_strings=('-h' '--help' '--json')
_shtab_sigillum_config_option_strings=('-h' '--help')
_shtab_sigillum_config_show_option_strings=('-h' '--help' '--json')
_shtab_sigillum_config_set_option_strings=('-h' '--help' '--cert' '--lib' '--cert-id' '--tsa' '--tsa-user' '--tsa-password' '--image' '--position' '--country' '--active-countries' '--add-driver' '--remove-driver')
_shtab_sigillum_gui_option_strings=('-h' '--help')



_shtab_sigillum_pos_0_choices=('sign' 'verify' 'timestamp' 'extract' 'encrypt' 'decrypt' 'tsl-import' 'tsl-list' 'detect' 'config' 'gui')
_shtab_sigillum_sign___level_choices=('B' 'T' 'LT')
_shtab_sigillum_sign___position_choices=('bottom-right' 'bottom-left' 'top-right' 'top-left')
_shtab_sigillum_timestamp___format_choices=('tsr' 'tsd')
_shtab_sigillum_encrypt___mode_choices=('sym' 'asym')
_shtab_sigillum_encrypt___algo_choices=('AES-256' 'AES-128' '3DES' 'Blowfish')
_shtab_sigillum_config_pos_0_choices=('show' 'set')
_shtab_sigillum_config_set___position_choices=('bottom-right' 'bottom-left' 'top-right' 'top-left')

_shtab_sigillum_pos_0_nargs=A...
_shtab_sigillum__h_nargs=0
_shtab_sigillum___help_nargs=0
_shtab_sigillum__V_nargs=0
_shtab_sigillum___version_nargs=0
_shtab_sigillum_sign__h_nargs=0
_shtab_sigillum_sign___help_nargs=0
_shtab_sigillum_sign___visible_nargs=0
_shtab_sigillum_verify__h_nargs=0
_shtab_sigillum_verify___help_nargs=0
_shtab_sigillum_verify___json_nargs=0
_shtab_sigillum_timestamp__h_nargs=0
_shtab_sigillum_timestamp___help_nargs=0
_shtab_sigillum_extract__h_nargs=0
_shtab_sigillum_extract___help_nargs=0
_shtab_sigillum_extract___shallow_nargs=0
_shtab_sigillum_encrypt__h_nargs=0
_shtab_sigillum_encrypt___help_nargs=0
_shtab_sigillum_decrypt__h_nargs=0
_shtab_sigillum_decrypt___help_nargs=0
_shtab_sigillum_tsl_import__h_nargs=0
_shtab_sigillum_tsl_import___help_nargs=0
_shtab_sigillum_tsl_list__h_nargs=0
_shtab_sigillum_tsl_list___help_nargs=0
_shtab_sigillum_detect__h_nargs=0
_shtab_sigillum_detect___help_nargs=0
_shtab_sigillum_detect___json_nargs=0
_shtab_sigillum_config_pos_0_nargs=A...
_shtab_sigillum_config__h_nargs=0
_shtab_sigillum_config___help_nargs=0
_shtab_sigillum_config_show__h_nargs=0
_shtab_sigillum_config_show___help_nargs=0
_shtab_sigillum_config_show___json_nargs=0
_shtab_sigillum_config_set__h_nargs=0
_shtab_sigillum_config_set___help_nargs=0
_shtab_sigillum_gui_pos_0_nargs=...
_shtab_sigillum_gui__h_nargs=0
_shtab_sigillum_gui___help_nargs=0


# $1=COMP_WORDS[1]
_shtab_compgen_files() {
  compgen -f -- $1  # files
}

# $1=COMP_WORDS[1]
_shtab_compgen_dirs() {
  compgen -d -- $1  # recurse into subdirs
}

# $1=COMP_WORDS[1]
_shtab_replace_nonword() {
  echo "${1//[^[:word:]]/_}"
}

# set default values (called for the initial parser & any subparsers)
_set_parser_defaults() {
  local subparsers_var="${prefix}_subparsers[@]"
  sub_parsers=${!subparsers_var-}

  local current_option_strings_var="${prefix}_option_strings[@]"
  current_option_strings=${!current_option_strings_var}

  completed_positional_actions=0

  _set_new_action "pos_${completed_positional_actions}" true
}

# $1=action identifier
# $2=positional action (bool)
# set all identifiers for an action's parameters
_set_new_action() {
  current_action="${prefix}_$(_shtab_replace_nonword $1)"

  local current_action_compgen_var=${current_action}_COMPGEN
  current_action_compgen="${!current_action_compgen_var-}"

  local current_action_choices_var="${current_action}_choices[@]"
  current_action_choices="${!current_action_choices_var-}"

  local current_action_nargs_var="${current_action}_nargs"
  if [ -n "${!current_action_nargs_var-}" ]; then
    current_action_nargs="${!current_action_nargs_var}"
  else
    current_action_nargs=1
  fi

  current_action_args_start_index=$(( $word_index + 1 - $pos_only ))

  current_action_is_positional=$2
}

# Notes:
# `COMPREPLY`: what will be rendered after completion is triggered
# `completing_word`: currently typed word to generate completions for
# `${!var}`: evaluates the content of `var` and expand its content as a variable
#     hello="world"
#     x="hello"
#     ${!x} -> ${hello} -> "world"
_shtab_sigillum() {
  local completing_word="${COMP_WORDS[COMP_CWORD]}"
  local previous_word="${COMP_WORDS[COMP_CWORD-1]}"
  local completed_positional_actions
  local current_action
  local current_action_args_start_index
  local current_action_choices
  local current_action_compgen
  local current_action_is_positional
  local current_action_nargs
  local current_option_strings
  local sub_parsers
  COMPREPLY=()

  local prefix=_shtab_sigillum
  local word_index=0
  local pos_only=0 # "--" delimeter not encountered yet
  _set_parser_defaults
  word_index=1

  # determine what arguments are appropriate for the current state
  # of the arg parser
  while [ $word_index -ne $COMP_CWORD ]; do
    local this_word="${COMP_WORDS[$word_index]}"

    if [[ $pos_only = 1 || " $this_word " != " -- " ]]; then
      if [[ -n $sub_parsers && " ${sub_parsers[@]} " == *" ${this_word} "* ]]; then
        # valid subcommand: add it to the prefix & reset the current action
        prefix="${prefix}_$(_shtab_replace_nonword $this_word)"
        _set_parser_defaults
      fi

      if [[ " ${current_option_strings[@]} " == *" ${this_word} "* ]]; then
        # a new action should be acquired (due to recognised option string or
        # no more input expected from current action);
        # the next positional action can fill in here
        _set_new_action $this_word false
      fi

      if [[ "$current_action_nargs" != "*" ]] && \
         [[ "$current_action_nargs" != "+" ]] && \
         [[ "$current_action_nargs" != *"..." ]] && \
         (( $word_index + 1 - $current_action_args_start_index - $pos_only >= \
            $current_action_nargs )); then
        $current_action_is_positional && let "completed_positional_actions += 1"
        _set_new_action "pos_${completed_positional_actions}" true
      fi
    else
      pos_only=1 # "--" delimeter encountered
    fi

    let "word_index+=1"
  done

  # Generate the completions

  if [[ $pos_only = 0 && "${completing_word}" == -* ]]; then
    # optional argument started: use option strings
    COMPREPLY=( $(compgen -W "${current_option_strings[*]}" -- "${completing_word}") )
  elif [[ "${previous_word}" == ">" || "${previous_word}" == ">>" ||
          "${previous_word}" =~ ^[12]">" || "${previous_word}" =~ ^[12]">>" ]]; then
    # handle redirection operators
    COMPREPLY=( $(compgen -f -- "${completing_word}") )
  else
    # use choices & compgen
    local IFS=$'\n' # items may contain spaces, so delimit using newline
    COMPREPLY=( $([ -n "${current_action_compgen}" ] \
                  && "${current_action_compgen}" "${completing_word}") )
    unset IFS
    COMPREPLY+=( $(compgen -W "${current_action_choices[*]}" -- "${completing_word}") )
  fi

  return 0
}

complete -o filenames -F _shtab_sigillum sigillum
