2022-02-01 04:34:17 +00:00
# Properties
2022-08-01 00:28:34 +00:00
Encode/Decode/Roundtrip to/from a property file. Line comments on value nodes will be copied across.
2022-02-01 04:34:17 +00:00
By default, empty maps and arrays are not encoded - see below for an example on how to encode a value for these.
## Encode properties
Note that empty arrays and maps are not encoded by default.
Given a sample.yml file of:
```yaml
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-01 04:34:17 +00:00
person: # neither do comments on maps
2022-06-25 02:22:03 +00:00
name: Mike Wazowski # comments on values appear
2022-02-01 04:34:17 +00:00
pets:
- cat # comments on array values appear
2024-02-20 00:39:56 +00:00
- nested:
- list entry
2022-02-01 04:34:17 +00:00
food: [pizza] # comments on arrays do not
emptyArray: []
emptyMap: []
```
then
```bash
2022-02-10 01:02:53 +00:00
yq -o=props sample.yml
2022-02-01 04:34:17 +00:00
```
will output
```properties
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-01 04:34:17 +00:00
# comments on values appear
2022-06-25 02:22:03 +00:00
person.name = Mike Wazowski
# comments on array values appear
person.pets.0 = cat
2024-02-20 00:39:56 +00:00
person.pets.1.nested.0 = list entry
2022-06-25 02:22:03 +00:00
person.food.0 = pizza
```
2024-02-20 00:39:56 +00:00
## Encode properties with array brackets
2024-02-20 02:45:29 +00:00
Declare the --properties-array-brackets flag to give array paths in brackets (e.g. SpringBoot).
2022-06-25 02:22:03 +00:00
Given a sample.yml file of:
```yaml
2022-10-28 03:16:46 +00:00
# block comments come through
2022-06-25 02:22:03 +00:00
person: # neither do comments on maps
name: Mike Wazowski # comments on values appear
pets:
- cat # comments on array values appear
2024-02-20 00:39:56 +00:00
- nested:
- list entry
2022-06-25 02:22:03 +00:00
food: [pizza] # comments on arrays do not
emptyArray: []
emptyMap: []
```
then
```bash
2024-02-20 00:39:56 +00:00
yq -o=props --properties-array-brackets sample.yml
2022-06-25 02:22:03 +00:00
```
will output
```properties
2022-10-28 03:16:46 +00:00
# block comments come through
2022-06-25 02:22:03 +00:00
# comments on values appear
2024-02-20 00:39:56 +00:00
person.name = Mike Wazowski
2022-02-01 04:34:17 +00:00
# comments on array values appear
2024-02-20 00:39:56 +00:00
person.pets[0] = cat
person.pets[1].nested[0] = list entry
person.food[0] = pizza
2022-02-01 04:34:17 +00:00
```
2024-02-20 02:45:29 +00:00
## Encode properties - custom separator
Use the --properties-customer-separator flag to specify your own key/value separator.
Given a sample.yml file of:
```yaml
# block comments come through
person: # neither do comments on maps
name: Mike Wazowski # comments on values appear
pets:
- cat # comments on array values appear
- nested:
- list entry
food: [pizza] # comments on arrays do not
emptyArray: []
emptyMap: []
```
then
```bash
yq -o=props --properties-customer-separator=" :@ " sample.yml
```
will output
```properties
# block comments come through
# comments on values appear
person.name :@ Mike Wazowski
# comments on array values appear
person.pets.0 :@ cat
person.pets.1.nested.0 :@ list entry
person.food.0 :@ pizza
```
2024-02-20 00:39:56 +00:00
## Encode properties: scalar encapsulation
Note that string values with blank characters in them are encapsulated with double quotes
2022-02-01 04:34:17 +00:00
Given a sample.yml file of:
```yaml
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-01 04:34:17 +00:00
person: # neither do comments on maps
2022-06-25 02:22:03 +00:00
name: Mike Wazowski # comments on values appear
2022-02-01 04:34:17 +00:00
pets:
- cat # comments on array values appear
2024-02-20 00:39:56 +00:00
- nested:
- list entry
2022-02-01 04:34:17 +00:00
food: [pizza] # comments on arrays do not
emptyArray: []
emptyMap: []
```
then
```bash
2024-02-20 00:39:56 +00:00
yq -o=props --unwrapScalar=false sample.yml
2022-02-01 04:34:17 +00:00
```
will output
```properties
2024-02-20 00:39:56 +00:00
# block comments come through
# comments on values appear
person.name = "Mike Wazowski"
# comments on array values appear
2022-02-01 04:34:17 +00:00
person.pets.0 = cat
2024-02-20 00:39:56 +00:00
person.pets.1.nested.0 = "list entry"
2022-02-01 04:34:17 +00:00
person.food.0 = pizza
```
2024-02-20 00:39:56 +00:00
## Encode properties: no comments
2022-02-01 04:34:17 +00:00
Given a sample.yml file of:
```yaml
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-01 04:34:17 +00:00
person: # neither do comments on maps
2022-06-25 02:22:03 +00:00
name: Mike Wazowski # comments on values appear
2022-02-01 04:34:17 +00:00
pets:
- cat # comments on array values appear
2024-02-20 00:39:56 +00:00
- nested:
- list entry
2022-02-01 04:34:17 +00:00
food: [pizza] # comments on arrays do not
emptyArray: []
emptyMap: []
```
then
```bash
2024-02-20 00:39:56 +00:00
yq -o=props '... comments = ""' sample.yml
2022-02-01 04:34:17 +00:00
```
will output
```properties
2022-06-25 02:22:03 +00:00
person.name = Mike Wazowski
2022-02-01 04:34:17 +00:00
person.pets.0 = cat
2024-02-20 00:39:56 +00:00
person.pets.1.nested.0 = list entry
2022-02-01 04:34:17 +00:00
person.food.0 = pizza
```
2024-02-20 00:39:56 +00:00
## Encode properties: include empty maps and arrays
Use a yq expression to set the empty maps and sequences to your desired value.
2024-02-19 23:57:44 +00:00
Given a sample.yml file of:
```yaml
# block comments come through
person: # neither do comments on maps
name: Mike Wazowski # comments on values appear
pets:
- cat # comments on array values appear
2024-02-20 00:39:56 +00:00
- nested:
- list entry
2024-02-19 23:57:44 +00:00
food: [pizza] # comments on arrays do not
emptyArray: []
emptyMap: []
```
then
```bash
2024-02-20 00:39:56 +00:00
yq -o=props '(.. | select( (tag == "!!map" or tag =="!!seq") and length == 0)) = ""' sample.yml
2024-02-19 23:57:44 +00:00
```
will output
```properties
# block comments come through
# comments on values appear
2024-02-20 00:39:56 +00:00
person.name = Mike Wazowski
2024-02-19 23:57:44 +00:00
# comments on array values appear
2024-02-20 00:39:56 +00:00
person.pets.0 = cat
person.pets.1.nested.0 = list entry
person.food.0 = pizza
emptyArray =
emptyMap =
2024-02-19 23:57:44 +00:00
```
2022-02-10 01:02:53 +00:00
## Decode properties
Given a sample.properties file of:
```properties
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-10 01:02:53 +00:00
# comments on values appear
2022-06-25 02:22:03 +00:00
person.name = Mike Wazowski
2022-02-10 01:02:53 +00:00
# comments on array values appear
person.pets.0 = cat
2024-02-20 00:39:56 +00:00
person.pets.1.nested.0 = list entry
2022-02-10 01:02:53 +00:00
person.food.0 = pizza
```
then
```bash
yq -p=props sample.properties
```
will output
```yaml
person:
2024-02-24 04:36:16 +00:00
# block comments come through
# comments on values appear
name: Mike Wazowski
pets:
# comments on array values appear
- cat
- nested:
- list entry
food:
- pizza
2022-02-10 01:02:53 +00:00
```
2024-05-12 02:06:35 +00:00
## Decode properties: numbers
All values are assumed to be strings when parsing properties, but you can use the `from_yaml` operator on all the strings values to autoparse into the correct type.
Given a sample.properties file of:
```properties
a.b = 10
```
then
```bash
yq -p=props ' (.. | select(tag == "!!str")) |= from_yaml' sample.properties
```
will output
```yaml
a:
b: 10
```
2022-11-08 02:40:00 +00:00
## Decode properties - array should be a map
If you have a numeric map key in your property files, use array_to_map to convert them to maps.
Given a sample.properties file of:
```properties
things.10 = mike
```
then
```bash
yq -p=props '.things |= array_to_map' sample.properties
```
will output
```yaml
things:
2024-02-24 04:36:16 +00:00
10: mike
2022-11-08 02:40:00 +00:00
```
2022-02-10 01:02:53 +00:00
## Roundtrip
Given a sample.properties file of:
```properties
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-10 01:02:53 +00:00
# comments on values appear
2022-06-25 02:22:03 +00:00
person.name = Mike Wazowski
2022-02-10 01:02:53 +00:00
# comments on array values appear
person.pets.0 = cat
2024-02-20 00:39:56 +00:00
person.pets.1.nested.0 = list entry
2022-02-10 01:02:53 +00:00
person.food.0 = pizza
```
then
```bash
yq -p=props -o=props '.person.pets.0 = "dog"' sample.properties
```
will output
```properties
2022-10-28 03:16:46 +00:00
# block comments come through
2022-02-10 01:02:53 +00:00
# comments on values appear
2022-06-25 02:22:03 +00:00
person.name = Mike Wazowski
2022-02-10 01:02:53 +00:00
# comments on array values appear
person.pets.0 = dog
2024-02-20 00:39:56 +00:00
person.pets.1.nested.0 = list entry
2022-02-10 01:02:53 +00:00
person.food.0 = pizza
```