mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
c93301fc70
raw format was a hack to skip decoding to be able to get a binary using tobyte etc. Now you can do fq -d bytes ... instead of fq -d raw 'tobytes | ...'
17 lines
573 B
Plaintext
17 lines
573 B
Plaintext
# note this is a "dynamic" include, output string will be used as source
|
|
|
|
# generates a _format_func function that can be used to implement format overloaded
|
|
# functions like torepr, _format_func("msgpack", "torepr") calls _msgpack_torepr
|
|
|
|
[ "def _format_func($format; $func):"
|
|
, " ( [$format, $func] as $ff"
|
|
, " | if false then error(\"unreachable\")"
|
|
, ( _registry.formats[] as $f
|
|
| $f.functions[]?
|
|
| " elif $ff == \([$f.name, .] | tojson) then _\($f.name)_\(.)"
|
|
)
|
|
, " else error(\"\\($format) has no \\($func)\")"
|
|
, " end"
|
|
, " );"
|
|
] | join("\n")
|