2021-09-24 16:41:23 +03:00
## Basic usage
2021-09-18 20:27:46 +03:00
2021-09-19 01:51:15 +03:00
fq tries to behave the same way as jq as much as possible, so you can do:
2022-01-27 11:55:45 +03:00
2021-12-22 21:33:21 +03:00
```sh
fq . file
fq < file
2022-01-27 11:55:45 +03:00
cat file | fq
2021-12-22 21:33:21 +03:00
fq . < file
2021-12-29 01:13:23 +03:00
fq . *.png * .mp3
2022-01-27 11:55:45 +03:00
fq '.frames[0]' *.mp3
2022-12-03 21:00:47 +03:00
fq '.frames[-1] | tobytes' file.mp3 > last_frame
2021-09-19 01:51:15 +03:00
```
2021-12-22 21:33:21 +03:00
2022-01-29 00:29:02 +03:00
### Common usages
2022-01-27 11:55:45 +03:00
2021-12-22 21:33:21 +03:00
```sh
# recursively display decode tree but truncate long arrays
fq d file
2022-01-27 11:55:45 +03:00
# same as
2021-12-22 21:33:21 +03:00
fq display file
2022-01-27 11:55:45 +03:00
# display all bytes for each value
2022-12-03 21:00:47 +03:00
fq dd file
# same as
2021-12-22 21:33:21 +03:00
fq 'd({display_bytes: 0})' file
2022-12-03 21:00:47 +03:00
2022-01-27 11:55:45 +03:00
# display 200 bytes for each value
2021-12-29 01:13:23 +03:00
fq 'd({display_bytes: 200})' file
2021-12-22 21:33:21 +03:00
2022-01-29 15:22:10 +03:00
# recursively display decode tree without truncating
fq da file
2022-12-03 21:00:47 +03:00
# same as
fq 'd({array_truncate: 0})' file
2021-12-22 21:33:21 +03:00
2022-01-27 11:55:45 +03:00
# recursively and verbosely display decode tree
2022-01-29 00:29:02 +03:00
fq dv file
2022-12-03 21:00:47 +03:00
# same as
fq 'd({verbose: true})' file
2021-12-22 21:33:21 +03:00
2022-12-21 15:59:54 +03:00
# JSON representation for whole file
2021-12-22 21:33:21 +03:00
fq tovalue file
2022-12-03 21:00:47 +03:00
# JSON but raw bit fields truncated
fq -o bits_format=truncate tovalue file
# JSON but raw bit fields as md5 hex string
fq -o bits_format=md5 tovalue file
# grep whole tree by value
fq 'grep("^prefix")' file
fq 'grep(123)' file
# grep whole tree by condition
fq 'grep_by(. >= 100 and . =< 100 ) ' file
2022-12-21 15:59:54 +03:00
# recursively look for values fulfilling some condition
2022-12-03 21:00:47 +03:00
fq '.. | select(.type=="trak")?' file
fq 'grep_by(.type=="trak")' file
# grep_by(f) is alias for .. | select(f)?, that is: recuse, select and ignore errors
2021-12-22 21:33:21 +03:00
# recursively look for decode value roots for a format
fq '.. | select(format=="jpeg")' file
2022-01-27 11:55:45 +03:00
# can also use grep_by
fq 'grep_by(format=="jpeg")' file
2021-12-22 21:33:21 +03:00
# recursively look for first decode value root for a format
fq 'first(.. | select(format=="jpeg"))' file
2022-01-27 11:55:45 +03:00
fq 'first(grep_by(format=="jpeg"))' file
2021-12-22 21:33:21 +03:00
2022-02-05 19:16:10 +03:00
# decode file as mp4 and return a result even if there are some errors
fq -d mp4 file.mp4
# decode file as mp4 and also ignore validity assertions
fq -o force=true -d mp4 file.mp4
2021-09-18 20:27:46 +03:00
```
2022-01-29 00:29:02 +03:00
### Display output
2022-12-21 15:59:54 +03:00
`display` or `d` is the main function for displaying values and is also the function that will be used if no other output function is explicitly used. If its input is a decode value it will output a dump and tree structure or otherwise it will output as JSON.
2022-01-29 00:29:02 +03:00
Below demonstrates some usages:
First and second example does the same thing, inputs `"hello"` to `display` .
![fq demo ](display_json.svg )
2022-12-21 15:59:54 +03:00
In the next few examples we select out the first "edit list" box in an mp4 file, it's a list of which part of the media track to be included during playback, and displays it in various ways.
2022-01-29 00:29:02 +03:00
Default if not explicitly used `display` will only show the root level:
![fq demo ](display_decode_value.svg )
2022-12-21 15:59:54 +03:00
First row shows a ruler with byte offset into the line and jq path for the value.
2022-01-29 00:29:02 +03:00
The columns are:
- Start address for the line. For example we see that `type` starts at `0xd60` +`0x09`.
2022-12-21 15:59:54 +03:00
- Hex representation of input bits for value. Will show the whole byte even if the value only partially uses bits from it.
2022-01-29 00:29:02 +03:00
- ASCII representation of input bits for value. Will show the whole byte even if the value only partially uses bits from it.
- Tree structure of decoded value, symbolic value and description.
Notation:
- `{}` value is an object that might have nested values.
- `[start:end]` value is an array with index starting at `start` and ending at `end` (exclusive).
With `display` or `d` it will recursively show the whole tree:
![fq demo ](display_decode_value_d.svg )
Same but verbose `dv` :
![fq demo ](display_decode_value_dv.svg )
In verbose mode bit ranges and array element names as shown.
2022-12-21 15:59:54 +03:00
Bit range uses `bytes.bits` notation. For example `type` starts at byte `0xd69` bit `0` (left out if zero) and ends at `0xd6c` bit `7` (inclusive) and have byte size of `4` .
2022-01-29 00:29:02 +03:00
There are also some other `display` aliases:
- `da` same as `display({array_truncate: 0})` which will not truncate long arrays.
- `dd` same as `display({array_truncate: 0, display_bytes: 0})` which will not truncate long ranges.
- `dv` same as `display({array_truncate: 0, verbose: true})`
- `ddv` same as `display({array_truncate: 0, display_bytes: 0 verbose: true})` which will not truncate long and also display verbosely.
2021-09-24 16:41:23 +03:00
## Interactive REPL
2021-09-18 20:27:46 +03:00
2021-12-29 01:13:23 +03:00
The interactive [REPL ](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop )
has auto completion and nested REPL support:
2021-09-18 20:27:46 +03:00
2022-02-09 23:07:53 +03:00
```
2021-09-18 20:27:46 +03:00
# start REPL with null input
2021-10-29 19:46:19 +03:00
$ fq -i
null>
2021-09-18 20:27:46 +03:00
# same as
2021-10-29 19:46:19 +03:00
$ fq -ni
null>
2022-01-27 11:55:45 +03:00
# in the REPL you will see a prompt indicating current input and you can type jq expression to evaluate.
2021-09-18 20:27:46 +03:00
# start REPL with one file as input
2021-11-05 17:04:26 +03:00
$ fq -i . doc/file.mp3
2021-10-29 19:46:19 +03:00
mp3>
2021-09-18 20:27:46 +03:00
2021-11-05 17:04:26 +03:00
$ fq -i . doc/file.mp3
# basic arithmetics and jq expressions
2021-09-18 20:27:46 +03:00
mp3> 1+1
2
2021-11-05 17:04:26 +03:00
mp3> 1, 2, 3 | . * 2
2
4
6
mp3> [1, 2, 3] | add
6
2021-10-29 19:46:19 +03:00
# "." is the identity function which just returns current input, the mp3 file.
2021-09-18 20:27:46 +03:00
mp3> .
# access the first frame in the mp3 file
mp3> .frames[0]
2021-10-29 19:46:19 +03:00
# start a new nested REPL with first frame as input
2021-09-18 20:27:46 +03:00
mp3> .frames[0] | repl
2021-09-24 16:41:23 +03:00
# prompt shows "path" to current input and that it's an mp3_frame.
2021-12-29 01:13:23 +03:00
# Ctrl-D to exit REPL or to shell if last REPL
2021-09-24 16:41:23 +03:00
> .frames[0] mp3_frame> ^D
2021-11-05 17:04:26 +03:00
# "jq" value of layer in first frame
mp3> .frames[0].header.layer | tovalue
3
mp3> .frames[0].header.layer * 2
6
# symbolic value, same as "jq" value
mp3> .frames[0].header.layer | tosym
3
# actual underlaying decoded value
mp3> .frames[0].header.layer | toactual
1
# description of value
mp3> .frames[0].header.layer | todescription
"MPEG Layer 3"
2021-09-24 16:41:23 +03:00
mp3> ^D
$
2021-09-18 20:27:46 +03:00
```
2021-12-22 21:33:21 +03:00
Use Ctrl-D to exit and Ctrl-C to interrupt current evaluation.
2021-09-24 16:41:23 +03:00
2021-12-20 17:15:43 +03:00
## Example usages
2021-12-29 01:13:23 +03:00
#### Second mp3 frame header as JSON
2022-01-15 21:26:45 +03:00
2021-12-20 17:15:43 +03:00
```sh
2021-12-20 19:21:07 +03:00
fq '.frames[1].header | tovalue' file.mp3
```
2021-12-29 01:13:23 +03:00
#### Byte start position for the first 10 mp3 frames in an array
2022-01-15 21:26:45 +03:00
2021-12-20 19:21:07 +03:00
```sh
fq '.frames[0:10] | map(tobytesrange.start)' file.mp3
2021-12-20 17:15:43 +03:00
```
2021-12-20 19:21:07 +03:00
2021-12-29 01:13:23 +03:00
#### Decode at range
2022-01-15 21:26:45 +03:00
2021-12-29 01:13:23 +03:00
```sh
2022-12-03 21:00:47 +03:00
# decode byte range 100 to end as mp3_frame
2022-11-20 21:22:16 +03:00
fq -d bytes '.[100:] | mp3_frame | d' file.mp3
2022-12-21 15:59:54 +03:00
# decode byte range 10 bytes from .somefield and preserve relative position in file
2021-12-29 01:13:23 +03:00
fq '.somefield | tobytesrange[10:] | mp3_frame | d' file.mp3
```
#### Show AVC SPS difference between two mp4 files
2021-12-20 19:21:07 +03:00
2022-12-21 15:59:54 +03:00
`-n` tells fq to not have an implicit `input` , `f` is a function to select out some interesting value, call `diff` with two arguments,
2021-12-20 17:15:43 +03:00
decoded value for `a.mp4` and `b.mp4` filtered thru `f` .
2021-12-20 19:21:07 +03:00
```sh
fq -n 'def f: .. | select(format=="avc_sps"); diff(input|f; input|f)' a.mp4 b.mp4
```
2022-01-15 21:26:45 +03:00
2021-12-29 01:13:23 +03:00
#### Extract first JPEG found in file
2021-12-20 19:21:07 +03:00
2022-12-21 15:59:54 +03:00
Recursively look for the first value that is a `jpeg` decode value root. Use `tobytes` to get bytes for value. Redirect bytes to a file.
2021-12-20 19:21:07 +03:00
2021-12-20 17:15:43 +03:00
```sh
fq 'first(.. | select(format=="jpeg")) | tobytes' file > file.jpeg
```
2021-12-29 01:13:23 +03:00
#### Sample size histogram
2021-12-20 19:21:07 +03:00
2022-12-21 15:59:54 +03:00
Recursively look for a all sample size boxes "stsz" and use `?` to ignore errors when doing `.type` on arrays etc. Save reference to box, count unique values, save the max, output the path to the box and output a histogram scaled to 0-100.
2021-12-20 19:21:07 +03:00
2021-12-20 17:15:43 +03:00
```sh
fq '.. | select(.type=="stsz")? as $stsz | .entries | count | max_by(.[1])[1] as $m | ($stsz | topath | path_to_expr), (.[] | "\(.[0]): \((100*.[1]/$m)*"=") \(.[1])") | println' file.mp4
```
2021-12-29 01:13:23 +03:00
#### Find TCP streams that looks like HTTP GET requests in a PCAP file
2021-12-20 19:21:07 +03:00
Use `grep` to recursively find strings matching a regexp.
2021-12-20 17:15:43 +03:00
```sh
fq '.tcp_connections | grep("GET /.* HTTP/1.?")' file.pcap
```
2022-01-15 21:26:45 +03:00
#### Use representation of a format
Some formats like `msgpack` , `bson` etc are used to represent some data structure. In those cases the `torepr`
function can be used to get the representation.
```sh
# whole represented value
fq -d msgpack torepr file.msgpack
# value of the key "field" from the represented value
fq -d msgpack `torepr.field` file.msgpack
# query or transform represented value
fq -d msgpack 'torepr | ...' file.msgpack
```
2021-12-29 01:13:23 +03:00
#### Widest PNG in a directory
2021-12-20 17:15:43 +03:00
```sh
$ fq -rn '[inputs | [input_filename, first(.chunks[] | select(.type=="IHDR") | .width)]] | max_by(.[1]) | .[0]' *.png
```
2021-12-29 01:13:23 +03:00
#### What values include the byte at position 0x123
2021-12-20 17:15:43 +03:00
```sh
$ fq '.. | select(scalars and in_bytes_range(0x123))' file
```
2022-01-27 11:55:45 +03:00
## Support formats
See [formats ](formats.md )
2021-12-30 16:56:50 +03:00
## The jq language
2021-09-24 16:41:23 +03:00
fq is based on the [jq language ](https://stedolan.github.io/jq/ ) and for basic usage its syntax
2022-01-29 00:29:02 +03:00
is similar to how object and array access looks in JavaScript or JSON path, `.food[10]` etc. but
it can do much more and is a very expressive language.
2021-09-24 16:41:23 +03:00
To get the most out of fq it's recommended to learn more about jq, here are some good starting points:
- [jq manual ](https://stedolan.github.io/jq/manual/ )
2022-01-29 00:29:02 +03:00
- [Peter Koppstein's A Stream oriented Introduction to jq ](https://github.com/pkoppstein/jq/wiki/A-Stream-oriented-Introduction-to-jq )
- [jq wiki: Language Description ](https://github.com/stedolan/jq/wiki/jq-Language-Description )
- [jq wiki: page Cookbook ](https://github.com/stedolan/jq/wiki/Cookbook )
- [jq wiki: Pitfalls ](https://github.com/stedolan/jq/wiki/How-to:-Avoid-Pitfalls )
- [FAQ ](https://github.com/stedolan/jq/wiki/FAQ )
2022-12-03 21:00:47 +03:00
For a more convenient jq experience these might be interesting:
- [jq Dash docset ](https://github.com/wader/jq-dash-docset )
- [vscode-jq ](https://github.com/wader/vscode-jq )
- [jq-lsp ](https://github.com/wader/jq-lsp )
2022-12-21 15:59:54 +03:00
Common beginner gotchas are:
2022-01-29 00:29:02 +03:00
- jq's use of `;` and `,` . jq uses `;` as argument separator
and `,` as output separator. To call a function `f` with two arguments use `f(1; 2)` . If you do `f(1, 2)` you pass a
2022-12-21 15:59:54 +03:00
single argument `1, 2` (a lambda expression that outputs `1` and then outputs `2` ) to `f` .
2022-01-29 00:29:02 +03:00
- Expressions can return or "output" zero or more values. This is how loops, foreach etc is
achieved.
- Expressions have one implicit input and output value. This how pipelines like `1 | . * 2` work.
2021-09-18 20:27:46 +03:00
2022-02-08 20:44:48 +03:00
## Types specific to fq
2022-12-21 15:59:54 +03:00
fq has two additional types compared to jq, decode value and binary. In standard jq expressions they will in most cases behave as some standard jq type.
2022-02-08 20:44:48 +03:00
### Decode value
2022-12-21 15:59:54 +03:00
This type is returned by decoders and it is used to represent parts of the decoded input. It can act as all standard jq types, object, array, number, string etc.
2022-02-08 20:44:48 +03:00
2022-02-09 23:07:53 +03:00
Each decode value has these properties:
2022-02-08 20:44:48 +03:00
- A bit range in the input
2022-06-30 13:23:55 +03:00
- Can be accessed as a binary using `tobits` /`tobytes`. Use the `start` and `size` keys to access position and size.
2022-02-08 20:44:48 +03:00
- `.name` as bytes `.name | tobytes`
- Bit 4-8 of `.name` as bits `.name | tobits[4:8]`
2022-02-09 23:07:53 +03:00
Each non-compound decode value has these properties:
2022-02-08 20:44:48 +03:00
- An actual value:
- This is the decoded representation of the bits, a number, string, bool etc.
- Can be accessed using `toactual` .
- An optional symbolic value:
- Is usually a mapping of the actual to symbolic value, ex: map number to a string value.
- Can be accessed using `tosym` .
- An optional description:
- Can be accessed using `todescription`
2022-02-09 23:07:53 +03:00
- `parent` is the parent decode value
- `parents` is the all parent decode values
- `topath` is the jq path for the decode value
- `torepr` convert decode value to its representation if possible
2022-02-08 20:44:48 +03:00
2022-12-21 15:59:54 +03:00
The value of a decode value is the symbolic value if available and otherwise the actual value. To explicitly access the value use `tovalue` . In most expressions this is not needed as it will be done automatically.
2022-02-08 20:44:48 +03:00
### Binary
2022-02-09 23:07:53 +03:00
Binaries are raw bits with a unit size, 1 (bits) or 8 (bytes), that can have a non-byte aligned size. Will act as byte padded strings in standard jq expressions.
2022-12-21 15:59:54 +03:00
Use `tobits` and `tobytes` to create them from decode values, strings, numbers or binary arrays. `tobytes` will, if needed zero pad most significant bits to be byte aligned.
2022-02-08 20:44:48 +03:00
2022-12-21 15:59:54 +03:00
There is also `tobitsrange` and `tobytesrange` which does the same thing but will preserve its source range when displayed.
2022-02-08 20:44:48 +03:00
2022-02-09 23:07:53 +03:00
- `"string" | tobytes` produces a binary with UTF8 codepoint bytes.
2022-12-21 15:59:54 +03:00
- `1234 | tobits` produces a binary with the unsigned big-endian integer 1234 with enough bits to represent the number. Use `tobytes` to get the same but with enough bytes to represent the number. This is different to how numbers work inside binary arrays where they are limited to 0-255.
2022-02-09 23:07:53 +03:00
- `["abc", 123, ...] | tobytes` produce a binary from a binary array. See [binary array ](#binary-array ) below.
- `.[index]` access bit or byte at index `index` . Index is in units.
- `[0x12, 0x34, 0x56] | tobytes[1]` is `0x35`
- `[0x12, 0x34, 0x56] | tobits[3]` is `1`
- `.[start:]` , `.[start:end]` or `.[:end]` is normal jq slice syntax and will slice the binary from `start` to `end` . `start` and `end` is in units.
- `[0x12, 0x34, 0x56] | tobytes[1:2]` will be a binary with the byte `0x34`
- `[0x12, 0x34, 0x56] | tobits[4:12]` will be a binary with the byte `0x23`
- `[0x12, 0x34, 0x56] | tobits[4:20]` will be a binary with the byte `0x23` , `0x45`
- `[0x12, 0x34, 0x56] | tobits[4:20] | tobytes[1:]` will be a binary with the byte `0x45` ,
Both `.[index]` and `.[start:end]` support negative indices to index from end.
TODO: tobytesrange, padding
2022-02-08 20:44:48 +03:00
#### Binary array
Is an array of numbers, strings, binaries or other nested binary arrays. When used as input to `tobits` /`tobytes` the following rules are used:
2022-02-09 23:07:53 +03:00
- Number is a byte with value be 0-255
- String it's UTF8 codepoint bytes
2022-02-08 20:44:48 +03:00
- Binary as is
- Binary array used recursively
2022-02-09 23:07:53 +03:00
Binary arrays are similar to and inspired by [Erlang iolist ](https://www.erlang.org/doc/man/erlang.html#type-iolist ).
2022-02-08 20:44:48 +03:00
Some examples:
2022-02-09 23:07:53 +03:00
`[0, 123, 255] | tobytes` will be binary with 3 bytes 0, 123 and 255
2022-02-08 20:44:48 +03:00
`[0, [123, 255]] | tobytes` same as above
2022-02-09 23:07:53 +03:00
`[0, 1, 1, 0, 0, 1, 1, 0 | tobits]` will be binary with 1 byte, 0x66 an "f"
`[(.a | tobytes[-10:]), 255, (.b | tobits[:10])] | tobytes` the concatenation of the last 10 bytes of `.a` , a byte with value 255 and the first 10 bits of `.b` .
2022-02-08 20:44:48 +03:00
2022-02-09 23:07:53 +03:00
The difference between `tobits` and `tobytes` is
2022-02-08 20:44:48 +03:00
TODO: padding and alignment
2022-01-27 11:55:45 +03:00
## Functions
2021-09-19 11:27:56 +03:00
2022-12-21 15:59:54 +03:00
All decode functions are available in two forms, just `<format>` (like `mp3` ) that returns a decode value on error and `from_<format>` which throws error on decode error.
Note that jq sometimes uses the notation `name/0` , `name/1` etc in error messages and documentation which means `<function-name>/<arity>` . Same function names with different arity are treated as separate functions, but are usually related in some way in practice.
### Function added in fq
2022-01-27 11:55:45 +03:00
- All standard library functions from jq
- Adds a few new general functions:
- `print` , `println` , `printerr` , `printerrln` prints to stdout and stderr.
2022-06-21 16:18:12 +03:00
- `group` group values, same as `group_by(.)` .
2022-01-27 11:55:45 +03:00
- `streaks` , `streaks_by(f)` like `group` but groups streaks based on condition.
- `count` , `count_by(f)` like `group` but counts groups lengths.
2022-12-21 15:59:54 +03:00
- `debug(f)` like `debug` but uses arg to produce a debug message. `{a: 123} | debug({a}) | ...` .
2022-01-27 11:55:45 +03:00
- `path_to_expr` from `["key", 1]` to `".key[1]"` .
- `expr_to_path` from `".key[1]"` to `["key", 1]` .
- `diff($a; $b)` produce diff object between two values.
- `delta` , `delta_by(f)` , array with difference between all consecutive pairs.
- `chunk(f)` , split array or string into even chunks
- Bitwise functions `band` , `bor` , `bxor` , `bsl` , `bsr` and `bnot` . Works the same as jq math functions,
unary uses input and if more than one argument all as arguments ignoring the input. Ex: `1 | bnot` `bsl(1; 3)`
- Adds some decode value specific functions:
- `root` tree root for value
- `buffer_root` root value of buffer for value
- `format_root` root value of format for value
- `parent` parent value
- `parents` output parents of value
- `topath` path of value. Use `path_to_expr` to get a string representation.
- `tovalue` , `tovalue($opts)` symbolic value if available otherwise actual value
2022-09-25 17:58:31 +03:00
- `toactual` , `toactual($opts)` actual value (usually the decoded value)
- `tosym` , `tosym($opts)` symbolic value (mapped etc)
2022-01-27 11:55:45 +03:00
- `todescription` description of value
2022-12-21 15:59:54 +03:00
- `torepr` converts decode value into what it reptresents. For example convert msgpack decode value
2022-01-27 11:55:45 +03:00
into a value representing its JSON representation.
2022-02-08 20:44:48 +03:00
- All regexp functions work with binary as input and pattern argument with these differences
compared to when using string input:
2022-01-27 11:55:45 +03:00
- All offset and length will be in bytes.
2022-02-08 20:44:48 +03:00
- For `capture` the `.string` value is a binary.
- If pattern is a binary it will be matched literally and not as a regexp.
- If pattern is a binary or flags include "b" each input byte will be read as separate code points
2022-12-21 15:59:54 +03:00
- String functions are not overloaded to support binary for now as some of them might have behaviors that might be confusing.
2022-03-08 00:05:00 +03:00
- `explode` is overloaded to work with binary. Will explode into array of the unit of the binary.
2022-02-08 20:44:48 +03:00
end of binary.
2022-01-27 11:55:45 +03:00
instead of possibly multi-byte UTF-8 codepoints. This allows to match raw bytes. Ex: `match("\u00ff"; "b")`
will match the byte `0xff` and not the UTF-8 encoded codepoint for 255, `match("[^\u00ff]"; "b")` will match
all non-`0xff` bytes.
- `grep` functions take 1 or 2 arguments. First is a scalar to match, where a string is
2022-12-21 15:59:54 +03:00
treated as a regexp. A binary will match exact bytes. Second argument are regexp
2022-02-08 20:44:48 +03:00
flags with addition that "b" will treat each byte in the input binary as a code point, this
2022-01-27 11:55:45 +03:00
makes it possible to match exact bytes.
2022-02-08 20:44:48 +03:00
- `grep($v)` , `grep($v; $flags)` recursively match value and binary
2022-01-27 11:55:45 +03:00
- `vgrep($v)` , `vgrep($v; $flags)` recursively match value
2022-02-08 20:44:48 +03:00
- `bgrep($v)` , `bgrep($v; $flags)` recursively match binary
2022-01-27 11:55:45 +03:00
- `fgrep($v)` , `fgrep($v; $flags)` recursively match field name
- `grep_by(f)` recursively match using a filter. Ex: `grep_by(. > 180 and . < 200)` , `first(grep_by(format == "id3v2"))` .
2022-02-08 20:44:48 +03:00
- Binary:
2022-12-21 15:59:54 +03:00
- `tobits` - Transform input to binary with bit as unit, does not preserve source range, will start at zero.
2022-02-08 20:44:48 +03:00
- `tobitsrange` - Transform input to binary with bit as unit, preserves source range if possible.
2022-12-21 15:59:54 +03:00
- `tobytes` - Transform input to binary with byte as unit, does not preserve source range, will start at zero.
2022-02-08 20:44:48 +03:00
- `tobytesrange` - Transform input binary with byte as unit, preserves source range if possible.
2022-12-21 15:59:54 +03:00
- `.[start:end]` , `.[:end]` , `.[start:]` - Slice binary from start to end preserve source range.
2022-01-27 11:55:45 +03:00
- `open` open file for reading
2022-12-21 15:59:54 +03:00
- All decode functions take an optional option argument. The only option currently is `force` to ignore decoder asserts.
2022-01-27 11:55:45 +03:00
For example to decode as mp3 and ignore assets do `mp3({force: true})` or `decode("mp3"; {force: true})` , from command line
2022-11-20 21:22:16 +03:00
you currently have to do `fq -d bytes 'mp3({force: true})' file` .
2022-07-21 21:56:19 +03:00
- `decode` , `decode("<format>")` , `decode("<format>"; $opts)` decode format
2022-01-27 11:55:45 +03:00
- `probe` , `probe($opts)` probe and decode format
2022-12-21 15:59:54 +03:00
- `mp3` , `mp3($opts)` , ..., `<format>` , `<format>($opts)` same as `decode("<format>")` , `decode("<format>"; $opts)` decode as format and return decode value even on decode error.
- `from_mp3` , `from_mp3($opts)` , ..., `from_<format>` , `from_<format>($opts)` same as `decode("<format>")` , `decode("<format>"; $opts)` decode as format but throw error on decode error.
2022-02-09 23:07:53 +03:00
- Display shows hexdump/ASCII/tree for decode values and jq value for other types.
2022-02-08 20:44:48 +03:00
- `d` /`d($opts)` display value and truncate long arrays and binaries
2022-01-28 20:21:44 +03:00
- `da` /`da($opts)` display value and don't truncate arrays
2022-02-08 20:44:48 +03:00
- `dd` /`dd($opts)` display value and don't truncate arrays or binaries
- `dv` /`dv($opts)` verbosely display value and don't truncate arrays but truncate binaries
- `ddv` /`ddv($opts)` verbosely display value and don't truncate arrays or binaries
2022-01-27 11:55:45 +03:00
- `hd` /`hexdump` hexdump value
2022-02-21 00:25:46 +03:00
- `repl` /`repl($opts)` nested REPL, must be last in a pipeline. `1 | repl` , can "slurp" outputs. Ex: `1, 2, 3 | repl` , `[1,2,3] | repl({compact: true})` .
2022-12-21 15:59:54 +03:00
- `slurp("<name>")` slurp outputs and save them to `$name` , must be last in the pipeline. Will be available as a global array `$name` . Ex `1,2,3 | slurp("a")` , `$a[]` same as `spew("a")` .
- `spew` /`spew("< name > ")` output previously slurped values. `spew` outputs all slurps as an object, `spew("<name>")` outputs one slurp. Ex: `spew("a")` .
2022-02-10 20:46:23 +03:00
- `paste` read string from stdin until ^D. Useful for pasting text.
2022-12-21 15:59:54 +03:00
- Ex: `paste | from_pem | asn1_ber | repl` read from stdin then decode and start a new sub-REPL with result.
### Naming inconsistencies
jq's naming conversion is a bit inconsistent, some standard library functions are named `tojson` while others `from_entries` . fq follows this tradition a bit by but tries to use snake_case unless there is a good reason.
Here are all the non-snake_case functions added by. Most of them deal with decode and binary values which are new "primitive" types:
- `toactual`
- `tobits`
- `tobitsrange`
- `tobytes`
- `tobytesrange`
- `todescription`
- `topath`
- `torepr`
- `tosym`
- `tovalue`
2021-09-19 11:27:56 +03:00
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
### Encodings, serializations and hashes
2022-12-21 15:59:54 +03:00
In addition to binary formats fq also support reading to and from encodings and serialization formats.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
At the moment fq does not have any dedicated argument for serialization formats but raw string input `-R` slurp `-s` and raw string output `-r` can make things easier. The combination `-Rs` will read all inputs into one string (same as jq).
2022-12-21 15:59:54 +03:00
Note that `from*` functions output jq values and `to*` takes jq values as input so in some cases not all information will be properly preserved. For example, for the element and attribute order might change and text and comment nodes might move or be merged. [yq ](https://github.com/mikefarah/yq ) might be a better tool if that is needed.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
Some example usages:
```sh
2022-07-24 12:25:29 +03:00
# read yml (format is probed, use -d yaml to force) and do some query
$ fq '...' file.yml
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
# convert YAML to JSON
# note -r for raw string output, without a JSON string with JSON would outputted
2022-07-24 12:25:29 +03:00
$ fq -r 'tojson({indent:2})' file.yml
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
# add token to URL
2022-12-21 15:59:54 +03:00
$ echo -n "https://host.org" | fq -Rsr 'from_url | .user.username="token" | tourl'
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
https://token@host.org
2022-07-24 12:25:29 +03:00
# top 3 hosts in src or href attributes:
# -d to decode as html, can't be probed as html5 parsers always produce some parse tree
# [...] to start collect values into an array
2022-08-25 17:06:25 +03:00
# .. | ."@src"?, ."@href"? | values, recurse and try (?) to get src and href attributes and filter out nulls
2022-12-21 15:59:54 +03:00
# from_url.host | values, parse as url and filter out those without a host
2022-07-24 12:25:29 +03:00
# count to count unique values, returns [[key, count], ...]
# reverse sort by count and pick first 3
# map [key, count] tuples into {key: key, values: count}
# from_entries, convert into object
2022-12-21 15:59:54 +03:00
$ curl -s https://www.discogs.com/ | fq -d html '[.. | ."@src"?, ."@href"? | values | from_url.host | values] | count | sort_by(-.[1])[0:3] | map({key: .[0], value: .[1]}) | from_entries'
2022-07-24 12:25:29 +03:00
{
"blog.discogs.com": 9,
"st.discogs.com": 10,
"www.discogs.com": 14
}
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
# shows how serialization functions can be used on any string, how to transform values and output som other format
2022-07-24 12:25:29 +03:00
# read and decode zip file and start an interactive REPL
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
$ fq -i . < (curl -sL https://github.com/stefangabos/world_countries/archive/master.zip)
# select from interesting xml file
zip> .local_files[] | select(.file_name == "world_countries-master/data/countries/en/world.xml").uncompressed | repl
2022-07-10 11:44:56 +03:00
# convert xml into jq value
2022-12-21 15:59:54 +03:00
> .local_files[95].uncompressed string> from_xml | repl
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
# sort countries by and select the first one
2022-08-25 17:06:25 +03:00
>> object> .countries.country | sort_by(."@name") | first | repl
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
# see what current input is
>>> object> .
{
2022-08-25 17:06:25 +03:00
"@alpha2": "af",
"@alpha3": "afg",
"@id": "4",
"@name": "Afghanistan"
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
}
2022-08-25 17:06:25 +03:00
# remove "@" prefix from keys and convert to YAML and print it
2022-12-21 15:59:54 +03:00
>>> object> with_entries(.key |= .[1:]) | to_yaml | print
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
alpha2: af
alpha3: afg
id: "4"
name: Afghanistan
# exit all REPLs back to shell
>>> object> ^D
>> object> ^D
> .local_files[95].uncompressed string> ^D
zip> ^D
```
2022-12-21 15:59:54 +03:00
- `from_xml` /`from_xml($opts)` Parse XML into jq value.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{seq: true}` preserve element ordering if more than one sibling.< br >
2022-12-21 15:59:54 +03:00
`{array: true}` use nested `[name, attributes, children]` arrays to represent elements. Attributes will be `null` if none and children will be `[]` if none, this is to make it easier to work with as the array as 3 values. `to_xml` does not require this.< br >
- `from_html` /`from_html($opts)` Parse HTML into jq value.< br >
Similar to `from_xml` but parses html5 in non-script mode. Will always have a `html` root with `head` and `body` elements.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{array: true}` use nested arrays to represent elements.< br >
`{seq: true}` preserve element ordering if more than one sibling.< br >
2022-12-21 15:59:54 +03:00
- `to_xml` /`to_xml($opts})` Serialize jq value into XML.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{indent: number}` indent child elements.< br >
Assumes object representation if input is an object, and nested arrays if input is an array.< br >
Will automatically add a root `doc` element if jq value has more then one root element.< br >
If a `#seq` is found on at least one element all siblings will be sort by sequence number. Attributes are always sorted.< br >
2022-07-10 11:44:56 +03:00
XML elements can be represented as jq value in two ways, as objects (inspired by [mxj ](https://github.com/clbanning/mxj ) and [xml.com's Converting Between XML and JSON
2022-12-21 15:59:54 +03:00
](https://www.xml.com/pub/a/2006/05/31/converting-between-xml-and-json.html)) or nested arrays. Both representations are lossy and might lose ordering of elements, text nodes and comments. In object representation `from_xml` , `from_html` and `to_xml` support `{seq:true}` option to parse/serialize `{"#seq"=<number>}` attributes to preserve element sibling ordering.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
The object version is denser and convenient to query, the nested arrays version is probably easier to use when generating XML.
Let's assume `$xml` is this XML document as a string:
```xml
< doc >
< child attr = "1" > < / child >
< child attr = "2" > text< / child >
< other > text< / other >
< / doc >
```
With object representation an element is represented as:
2022-08-25 17:06:25 +03:00
- Attributes as `@` prefixed `@<key>` keys.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
- Text nodes as `#text` .
- Comment nodes as `#comment` keys.
- For explicit sibling ordering `#seq` keys with a number, can be negative, assumed zero if missing.
- Child element with only text as `<name>` key with text as value.
- Child element with more than just text as `<name>` key with value an object.
2022-12-21 15:59:54 +03:00
- Multiple child element siblings with same name as `name` key with value as array with strings and objects.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
```jq
2022-12-21 15:59:54 +03:00
> $xml | from_xml
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
{
"doc": {
"child": [
{
2022-08-25 17:06:25 +03:00
"@attr": "1"
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
},
{
"#text": "text",
2022-08-25 17:06:25 +03:00
"@attr": "2"
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
}
],
"other": "text"
}
}
```
With nested array representation, an array with these values `["<name>", {attributes...}, [children...]]`
2022-12-21 15:59:54 +03:00
- Index 0 is an element name.
2022-08-25 17:06:25 +03:00
- Index 1 object attributes (including `#text` and `#comment` keys).
- Index 2 array of child elements.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
#
```jq
2022-12-21 15:59:54 +03:00
> $xml | from_xml({array: true})
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
[
"doc",
[
[
"child",
{
"attr": "1"
}
],
[
"child",
{
"#text": "text",
"attr": "2"
}
],
[
"other",
{
"#text": "text"
}
]
]
]
```
Parse and include `#seq` attributes if needed:
```jq
2022-12-21 15:59:54 +03:00
> $xml | from_xml({seq:true})
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
{
"doc": {
"child": [
{
"#seq": 0,
2022-08-25 17:06:25 +03:00
"@attr": "1"
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
},
{
"#seq": 1,
"#text": "text",
2022-08-25 17:06:25 +03:00
"@attr": "2"
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
}
],
"other": {
"#seq": 2,
"#text": "text"
}
}
}
````
Select values in `<doc>` , remove `<child>` , add a `<new>` element, serialize to xml with 2 space indent and print the string
```jq
2022-12-21 15:59:54 +03:00
> $xml | from_xml.doc | del(.child) | .new = "abc" | {root: .} | to_xml({indent: 2}) | println
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
< root >
< new > abc< / new >
< other > text< / other >
< / root >
```
2022-07-24 12:25:29 +03:00
JSON and jq-flavoured JSON
2022-07-10 11:44:56 +03:00
- `fromjson` Parse JSON into jq value.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
- `tojson` /`tojson($opt)` Serialize jq value into JSON.< br >
`{indent: number}` indent array/object values.< br >
2022-12-21 15:59:54 +03:00
- `from_jq` Parse jq-flavoured JSON into jq value.
- `to_jq` /`to_jq($opt)` Serialize jq value into jq-flavoured JSON< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{indent: number}` indent array/object values.< br >
jq-flavoured JSON has optional key quotes, `#` comments and can have trailing comma in arrays.
2022-12-21 15:59:54 +03:00
- `from_jsonl` Parse JSON lines into jq array.
- `to_jsonl` Serialize jq array into JSONL.
Note that `fromjson` and `tojson` use different naming conventions as they originate from jq's standard library.
2022-07-24 12:25:29 +03:00
YAML
2022-12-21 15:59:54 +03:00
- `from_yaml` Parse YAML into jq value.
- `to_yaml` Serialize jq value into YAML.
2022-07-24 12:25:29 +03:00
TOML
2022-12-21 15:59:54 +03:00
- `from_toml` Parse TOML into jq value.
- `to_toml` Serialize jq value into TOML.
2022-07-24 12:25:29 +03:00
CSV
2022-12-21 15:59:54 +03:00
- `from_csv` /`from_cvs($opts)` Parse CSV into jq value.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{comma: string}` field separator, default ",".< br >
`{comment: string}` comment line character, default "#".< br >
2022-07-24 12:25:29 +03:00
To work with tab separated values you can use `fromcvs({comma: "\t"})` or `fq -d csv -o 'comma="\t"'`
2022-12-21 15:59:54 +03:00
- `to_csv` /`to_csv($opts)` Serialize jq value into CSV.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{comma: string}` field separator, default ",".< br >
2022-07-24 12:25:29 +03:00
XML encoding
2022-12-21 15:59:54 +03:00
- `from_xmlentities` Decode XML entities.
- `to_xmlentities` Encode XML entities.
2022-07-24 12:25:29 +03:00
URL parts and XML encodings
2022-12-21 15:59:54 +03:00
- `from_urlpath` Decode URL path component.
- `to_urlpath` Encode URL path component. Whitespace as %20.
- `from_urlencode` Decode URL query encoding.
- `to_urlencode` Encode URL to query encoding. Whitespace as "+".
- `from_urlquery` Decode URL query into object. For duplicates keys value will be an array.
- `to_urlquery` Encode object into query string.
- `from_url` Decode URL into object.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
```jq
2022-12-21 15:59:54 +03:00
> "schema://user:pass@host/path?key=value#fragment" | from_url
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
{
2022-12-21 15:59:54 +03:00
"fragment": "fragment",
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
"host": "host",
"path": "/path",
"query": {
"key": "value"
},
"rawquery": "key=value",
"scheme": "schema",
"user": {
"password": "pass",
"username": "user"
}
}
```
2022-12-21 15:59:54 +03:00
- `to_url` Encode object into URL string.
2022-07-24 12:25:29 +03:00
Binary encodings like hex and base64
2022-12-21 15:59:54 +03:00
- `from_hex` Decode hex string to binary.
- `to_hex` Encode binary into hex string.
- `from_base64` /`from_base64($opts)` Decode base64 encodings into binary.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{encoding:string}` encoding variant: `std` (default), `url` , `rawstd` or `rawurl`
2022-12-21 15:59:54 +03:00
- `to_base64` /`to_base64($opts)` Encode binary into base64 encodings.< br >
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
`{encoding:string}` encoding variant: `std` (default), `url` , `rawstd` or `rawurl`
2022-07-24 12:25:29 +03:00
Hash functions
2022-12-21 15:59:54 +03:00
- `to_md4` Hash binary using md4.
- `to_md5` Hash binary using md5.
- `to_sha1` Hash binary using sha1.
- `to_sha256` Hash binary using sha256.
- `to_sha512` Hash binary using sha512.
- `to_sha3_224` Hash binary using sha3 224.
- `to_sha3_256` Hash binary using sha3 256.
- `to_sha3_384` Hash binary using sha3 384.
- `to_sha3_512` Hash binary using sha3 512.
2022-07-24 12:25:29 +03:00
Text encodings
2022-12-21 15:59:54 +03:00
- `to_iso8859_1` Decode binary as ISO8859-1 into string.
- `from_iso8859_1` Encode string as ISO8859-1 into binary.
- `to_utf8` Encode string as UTF8 into binary.
- `from_utf8` Decode binary as UTF8 into string.
- `to_utf16` Encode string as UTF16 into binary.
- `from_utf16` Decode binary as UTF16 into string.
- `to_utf16le` Encode string as UTF16 little-endian into binary.
- `from_utf16le` Decode binary as UTF16 little-endian into string.
- `to_utf16be` Encode string as UTF16 big-endian into binary.
- `from_utf16be` Decode binary as UTF16 big-endian into string.
interp: Add to/from<encoding> for some common serialzations, encodings and hashes
Add toxml/fromxml for XML encoding, mighe be lossy on ordering
fromxml has {seq:bool} to add #seq attributes to improve ordering
toxml has {indent:number} to choose space indent depth
Add tojson, same as in jq but also has {indent:number} options
Add toyaml/fromyaml for YAML
Add totoml/fromtoml for TOML
Add tojq/fromjq for jq-flavored JSON (optional quotes for keys, comments and trailing commas support)
Add tocsv/fromcsv for CSV
formcvs takes {comma:string, comment:string} for custom separtor and comment character
Rename/split hex into tohex/fromhex
Rename/split base64 into tobase64/frombase64
tobase64/frombase64 takes {encoding:string} option for base64 flavour (std, url, rawstd, rawurl)
Add to/from<format> urlpath, urlquery, url, xmlentities, base64, hex
Add to<hash> md4, md5, sha1, sha256, sha512, sha3_224, sha3_256, sha3_384, sha3_512
Add to/from<encoding> iso8859-1, utf8, utf16, utf16le, utf16be
2022-05-09 18:50:28 +03:00
2022-12-01 19:35:13 +03:00
## Options
fq has some general options in addition to decode and decoders specific options. They all use the same `-o <name>=<value>` argument.
2022-12-21 15:59:54 +03:00
`<value>` is fuzzily parsed based on the type of the option. Ex: a string can be specified as `-o name=string` or `-o name="string"` .
2022-12-01 19:35:13 +03:00
### `bits_format`
How to represent raw bits as JSON.
2022-12-21 15:59:54 +03:00
- `-o bits_foramt=string` String with raw bytes (zero bit padded). The string is binary safe internally in fq but bytes not representable as UTF-8 will be lost if turn to JSON.
2022-12-01 19:35:13 +03:00
- `-o bits_format=md5` MD5 hex string (zero bit padded).
- `-o bits_format=base64` Base64 string.
- `-p bits_foramt=truncate` Truncated string.
- `-o bits_format=snippet` Truncated Base64 string prefixed with bit length.
2021-12-19 13:15:19 +03:00
## Color and unicode output
fq by default tries to use colors if possible, this can be disabled with `-M` . You can also
2022-12-21 15:59:54 +03:00
enable usage of unicode characters for improved output by setting the environment
2021-12-19 13:15:19 +03:00
variable `CLIUNICODE` .
## Configuration
To add own functions you can use `init.fq` that will be read from
- `$HOME/Library/Application Support/fq/init.jq` on macOS
- `$HOME/.config/fq/init.jq` on Linux, BSD etc
2022-01-04 23:46:19 +03:00
- `%AppData%\fq\init.jq` on Windows
2021-12-19 13:15:19 +03:00
2021-09-24 16:41:23 +03:00
## Use as script interpreter
2020-06-08 03:29:51 +03:00
2022-12-21 15:59:54 +03:00
fq can be used as a script interpreter:
2020-06-08 03:29:51 +03:00
2021-09-24 16:41:23 +03:00
`mp3_duration.jq` :
```jq
#!/usr/bin/env fq -d mp3 -rf
[.frames[].header | .sample_count / .sample_rate] | add
```
2021-09-14 13:56:09 +03:00
2021-09-24 16:41:23 +03:00
## Differences to jq
2020-06-08 03:29:51 +03:00
- [gojq's differences to jq ](https://github.com/itchyny/gojq#difference-to-jq ),
notable is support for arbitrary-precision integers.
2022-12-21 15:59:54 +03:00
- Supports hexadecimal `0xab` , octal `0o77` and binary `0b101` integer literals.
- Try include `include "file?";` that doesn't fail if file is missing or has errors.
- Some values can act as an object with keys even when it's an array, number etc.
2021-12-31 19:13:16 +03:00
- There can be keys hidden from `keys` and `[]` .
2021-09-24 16:41:23 +03:00
- Some values are readonly and can't be updated.
2020-06-08 03:29:51 +03:00
2021-12-29 01:13:23 +03:00
## Decoded values
2020-06-08 03:29:51 +03:00
2023-01-03 13:11:12 +03:00
When decoding something, using `decode` or `mp3` etc, you a decode value is returned. They behave like
normal jq values but has special abilities and is used to represent the decoded structure. Each value
always has a name, type and a bit range.
2020-06-08 03:29:51 +03:00
2021-12-29 01:13:23 +03:00
A value has these special keys (TODO: remove, are internal)
2020-06-08 03:29:51 +03:00
2023-01-03 13:11:12 +03:00
- `_actual` decoded (not symbol mapped value)
2020-06-08 03:29:51 +03:00
- `_bits` bits in range as a binary
2023-01-03 13:11:12 +03:00
- `_buffer_root` first decode value for current buffer
2020-06-08 03:29:51 +03:00
- `_bytes` bits in range as binary using byte units
2023-01-03 13:11:12 +03:00
- `_description` description of value (optional)
2020-06-08 03:29:51 +03:00
- `_error` error message (optional)
2023-01-03 13:11:12 +03:00
- `_format` name of decoded format (optional, only format root)
- `_format_root` first decode value for current format
- `_gap` is a bit range gap (was not decoded)
- `_index` index in parent array (only for values in arrays)
- `_len` bit range length (TODO: rename)
- `_name` name of value
- `_out` decoded out value
- `_parent` parent decode value
- `_path` jq path to decode value
- `_root` root decode value
- `_start` bit range start
- `_stop` bit range stop
- `_sym` symbolic value (optional)
2020-06-08 03:29:51 +03:00
## Own decoders and use as library
TODO
2021-09-07 02:38:52 +03:00
## Known issues and useful tricks
2021-09-06 02:24:51 +03:00
2021-09-07 02:38:52 +03:00
### Run interactive mode with no input
2021-09-06 02:24:51 +03:00
```sh
fq -i
null>
```
2020-06-08 03:29:51 +03:00
2021-09-24 16:41:23 +03:00
### `select` fails with `expected an ... but got: ...`
2020-06-08 03:29:51 +03:00
2021-09-24 16:41:23 +03:00
Try add `select(...)?` to catch and ignore type errors in the select expression.
2020-06-08 03:29:51 +03:00
2021-09-07 02:38:52 +03:00
### Manual decode
2020-06-08 03:29:51 +03:00
Sometimes fq fails to decode or you know there is valid data buried inside some binary or maybe
2022-12-01 22:37:40 +03:00
you know the format of some gap field. Then you can decode manually.
2020-06-08 03:29:51 +03:00
< pre >
# try decode a `mp3_frame` that failed to decode
2022-12-01 22:37:40 +03:00
$ fq -d mp3 '.gap0 | mp3_frame' file.mp3
2020-06-08 03:29:51 +03:00
# skip first 10 bytes then decode as `mp3_frame`
2022-11-20 21:22:16 +03:00
$ fq -d bytes '.[10:] | mp3_frame' file.mp3
2020-06-08 03:29:51 +03:00
< / pre >
2021-09-24 16:41:23 +03:00
### Use `.` as input and in a positional argument
2021-09-04 12:52:40 +03:00
2021-09-24 16:41:23 +03:00
The expression `.a | f(.b)` might not work as expected. `.` is `.a` when evaluating the arguments so
the positional argument will end up being `.a.b` . Instead do `. as $c | .a | f($c.b)` .
2021-09-04 12:52:40 +03:00
2021-09-07 02:38:52 +03:00
### Building array is slow
2020-06-08 03:29:51 +03:00
2021-09-06 02:24:51 +03:00
Try to use `map` or `foreach` to avoid rebuilding the whole array for each append.
2020-06-08 03:29:51 +03:00
2021-09-07 02:38:52 +03:00
### Use `print` and `println` to produce more friendly compact output
2020-06-08 03:29:51 +03:00
```
> [[0,"a"],[1,"b"]]
[
[
0,
"a"
],
[
1,
"b"
]
]
> [[0,"a"],[1,"b"]] | .[] | "\(.[0]): \(.[1])" | println
0: a
1: b
```
2021-09-06 02:24:51 +03:00
### `repl` argument using function or variable causes `variable not defined`
`true as $verbose | repl({verbose: $verbose})` will currently fail as `repl` is
implemented by rewriting the query to `map(true as $verbose | .) | repl({verbose: $verbose})` .
2021-09-07 02:38:52 +03:00
### `error` produces no output
`null | error` behaves as `empty` .