yq/pkg/yqlib/doc/operators/multiply-merge.md

478 lines
7.1 KiB
Markdown
Raw Normal View History

2021-11-03 04:00:58 +00:00
# Multiply (Merge)
Like the multiple operator in jq, depending on the operands, this multiply operator will do different things. Currently numbers, arrays and objects are supported.
## Objects and arrays - merging
Objects are merged deeply matching on matching keys. By default, array values override and are not deeply merged.
Note that when merging objects, this operator returns the merged object (not the parent). This will be clearer in the examples below.
### Merge Flags
You can control how objects are merged by using one or more of the following flags. Multiple flags can be used together, e.g. `.a *+? .b`. See examples below
- `+` append arrays
- `d` deeply merge arrays
- `?` only merge _existing_ fields
- `n` only merge _new_ fields
2021-11-03 04:00:58 +00:00
2022-03-15 23:04:13 +00:00
### Merge two files together
This uses the load operator to merge file2 into file1.
```bash
yq '. *= load("file2.yml")' file1.yml
```
### Merging all files
2021-11-03 04:00:58 +00:00
Note the use of `eval-all` to ensure all documents are loaded into memory.
```bash
2022-03-15 23:04:13 +00:00
yq eval-all '. as $item ireduce ({}; . * $item )' *.yml
2021-11-03 04:00:58 +00:00
```
2022-02-06 03:39:46 +00:00
{% hint style="warning" %}
Note that versions prior to 4.18 require the 'eval/e' command to be specified. 
`yq e <exp> <file>`
{% endhint %}
2021-11-03 04:00:58 +00:00
## Multiply integers
2022-01-22 05:40:17 +00:00
Given a sample.yml file of:
```yaml
a: 3
b: 4
```
then
2021-11-03 04:00:58 +00:00
```bash
2022-01-27 06:21:10 +00:00
yq '.a *= .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
2022-01-22 05:40:17 +00:00
a: 12
b: 4
2021-11-03 04:00:58 +00:00
```
## Merge objects together, returning merged result only
Given a sample.yml file of:
```yaml
a:
field: me
fieldA: cat
b:
field:
g: wizz
fieldB: dog
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a * .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
field:
g: wizz
fieldA: cat
fieldB: dog
```
## Merge objects together, returning parent object
Given a sample.yml file of:
```yaml
a:
field: me
fieldA: cat
b:
field:
g: wizz
fieldB: dog
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '. * {"a":.b}' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
a:
field:
g: wizz
fieldA: cat
fieldB: dog
b:
field:
g: wizz
fieldB: dog
```
## Merge keeps style of LHS
Given a sample.yml file of:
```yaml
a: {things: great}
b:
also: "me"
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '. * {"a":.b}' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
a: {things: great, also: "me"}
b:
also: "me"
```
## Merge arrays
Given a sample.yml file of:
```yaml
a:
- 1
- 2
- 3
b:
- 3
- 4
- 5
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '. * {"a":.b}' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
a:
- 3
- 4
- 5
b:
- 3
- 4
- 5
```
## Merge, only existing fields
Given a sample.yml file of:
```yaml
a:
thing: one
cat: frog
b:
missing: two
thing: two
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a *? .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
thing: two
cat: frog
```
## Merge, only new fields
Given a sample.yml file of:
```yaml
a:
thing: one
cat: frog
b:
missing: two
thing: two
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a *n .b' sample.yml
```
will output
```yaml
thing: one
cat: frog
missing: two
```
2021-11-03 04:00:58 +00:00
## Merge, appending arrays
Given a sample.yml file of:
```yaml
a:
array:
- 1
- 2
- animal: dog
value: coconut
b:
array:
- 3
- 4
- animal: cat
value: banana
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a *+ .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
array:
- 1
- 2
- animal: dog
- 3
- 4
- animal: cat
value: banana
```
## Merge, only existing fields, appending arrays
Given a sample.yml file of:
```yaml
a:
thing:
- 1
- 2
b:
thing:
- 3
- 4
another:
- 1
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a *?+ .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
thing:
- 1
- 2
- 3
- 4
```
## Merge, deeply merging arrays
Merging arrays deeply means arrays are merge like objects, with indexes as their key. In this case, we merge the first item in the array, and do nothing with the second.
Given a sample.yml file of:
```yaml
a:
- name: fred
age: 12
- name: bob
age: 32
b:
- name: fred
age: 34
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a *d .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
- name: fred
age: 34
- name: bob
age: 32
```
## Merge arrays of objects together, matching on a key
This is a fairly complex expression - you can use it as is by providing the environment variables as seen in the example below.
It merges in the array provided in the second file into the first - matching on equal keys.
Explanation:
2021-12-05 02:03:38 +00:00
The approach, at a high level, is to reduce into a merged map (keyed by the unique key)
and then convert that back into an array.
First the expression will create a map from the arrays keyed by the idPath, the unique field we want to merge by.
2021-12-05 02:03:38 +00:00
The reduce operator is merging '({}; . * $item )', so array elements with the matching key will be merged together.
Next, we convert the map back to an array, using reduce again, concatenating all the map values together.
2021-11-29 10:28:25 +00:00
Finally, we set the result of the merged array back into the first doc.
2021-11-03 04:00:58 +00:00
Thanks Kev from [stackoverflow](https://stackoverflow.com/a/70109529/1168223)
2021-11-29 09:53:36 +00:00
2021-11-03 04:00:58 +00:00
Given a sample.yml file of:
```yaml
2021-11-29 10:28:25 +00:00
myArray:
- a: apple
b: appleB
- a: kiwi
b: kiwiB
- a: banana
b: bananaB
something: else
2021-11-03 04:00:58 +00:00
```
And another sample another.yml file of:
```yaml
newArray:
2021-11-29 10:28:25 +00:00
- a: banana
c: bananaC
- a: apple
b: appleB2
- a: dingo
c: dingoC
2021-11-03 04:00:58 +00:00
```
then
```bash
2022-02-06 03:39:46 +00:00
idPath=".a" originalPath=".myArray" otherPath=".newArray" yq eval-all '
2021-11-29 10:28:25 +00:00
(
(( (eval(strenv(originalPath)) + eval(strenv(otherPath))) | .[] | {(eval(strenv(idPath))): .}) as $item ireduce ({}; . * $item )) as $uniqueMap
| ( $uniqueMap | to_entries | .[]) as $item ireduce([]; . + $item.value)
2021-11-29 10:28:25 +00:00
) as $mergedArray
| select(fi == 0) | (eval(strenv(originalPath))) = $mergedArray
2021-11-29 09:46:12 +00:00
' sample.yml another.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
2021-11-29 10:28:25 +00:00
myArray:
- a: apple
b: appleB2
- a: kiwi
b: kiwiB
- a: banana
b: bananaB
c: bananaC
- a: dingo
c: dingoC
something: else
2021-11-03 04:00:58 +00:00
```
## Merge to prefix an element
Given a sample.yml file of:
```yaml
a: cat
b: dog
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '. * {"a": {"c": .a}}' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
a:
c: cat
b: dog
```
## Merge with simple aliases
Given a sample.yml file of:
```yaml
a: &cat
c: frog
b:
f: *cat
c:
g: thongs
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.c * .b' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
g: thongs
f: *cat
```
## Merge copies anchor names
Given a sample.yml file of:
```yaml
a:
c: &cat frog
b:
f: *cat
c:
g: thongs
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.c * .a' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
g: thongs
c: &cat frog
```
## Merge with merge anchors
Given a sample.yml file of:
```yaml
foo: &foo
a: foo_a
thing: foo_thing
c: foo_c
bar: &bar
b: bar_b
thing: bar_thing
c: bar_c
foobarList:
b: foobarList_b
!!merge <<:
- *foo
- *bar
c: foobarList_c
foobar:
c: foobar_c
!!merge <<: *foo
thing: foobar_thing
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.foobar * .foobarList' sample.yml
2021-11-03 04:00:58 +00:00
```
will output
```yaml
c: foobarList_c
!!merge <<:
- *foo
- *bar
thing: foobar_thing
b: foobarList_b
```
2022-01-22 02:47:22 +00:00
## Custom types: that are really numbers
When custom tags are encountered, yq will try to decode the underlying type.
Given a sample.yml file of:
```yaml
a: !horse 2
b: !goat 3
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a = .a * .b' sample.yml
2022-01-22 02:47:22 +00:00
```
will output
```yaml
a: !horse 6
b: !goat 3
```
## Custom types: that are really maps
Custom tags will be maintained.
Given a sample.yml file of:
```yaml
a: !horse
cat: meow
b: !goat
dog: woof
```
then
```bash
2022-01-27 06:21:10 +00:00
yq '.a = .a * .b' sample.yml
2022-01-22 02:47:22 +00:00
```
will output
```yaml
a: !horse
cat: meow
dog: woof
b: !goat
dog: woof
```