fish-shell/share/functions/__fish_tokenizer_state.fish
2021-12-13 02:42:16 -08:00

63 lines
2.1 KiB
Fish

function __fish_tokenizer_state --description "Print the state of the tokenizer at the end of the given string"
# Go through the token char-by-char in a state machine.
# The states are:
# - normal - no quoting is active (the starting state)
# - single - open single-quote
# - double - open double
# - escaped - open \\ - the next character is non-special
# - single-escaped - open \\ inside single-quotes
# - double-escaped - open \\ inside double-quotes
argparse --min-args 1 --max-args 1 i/initial-state= -- $argv
or return 1
set -l state normal
if set -q _flag_initial_state
set state $_flag_initial_state
end
for char in (string split -- "" $argv[1])
switch $char
case "'" # single-quote
switch $state
case normal single-escaped
set state single
case single
set state normal
end
case '"' # double-quote
switch $state
case normal double-escaped
set state double
case double
set state normal
end
case \\ # backslash escapes the next character
switch $state
case double
set state double-escaped
case double-escaped
set state double
case single
set state single-escaped
case single-escaped
set state single
case normal
set state escaped
case escaped
set state normal
end
case "*" # Any other character
switch $state
case escaped
set state normal
case single-escaped
set state single
case double-escaped
set state double
end
end
end
echo $state
end