- declare Version=1.0.2
- #==============================================================================
- # Copyright and license info is available in the LICENSE file included with
- # the P4BBI tool, and also available online:
- # https://swarm.workshop.perforce.com/view/p4bbi/main/LICENSE
- #------------------------------------------------------------------------------
- #------------------------------------------------------------------------------
- # This routine reads in a YAML config file (with fixed 2-space indentation)
- # and creates bash string and array variables from the YAML data, with a
- # prefix (e.g. "$config_") assigned to each variable name.
- #
- # For sample usage and output, see: /p4/common/test/yaml/test_parse_yaml.sh.
- #
- # This is based on software acquired from:
- # https://gist.github.com/pkuczynski/8665367
- # and https://gist.github.com/epiloque/8cf512c6d64641bde388#file-config-yml-L1
- parse_yaml () {
- local prefix=$2
- local s
- local w
- local fs
- s='[[:space:]]*'
- w='[a-zA-Z0-9_]*'
- fs="$(echo @|tr @ '\034')"
- sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \
- -e "s|^\($s\)\($w\)$s[:-]$s\(.*\)$s\$|\1$fs\2$fs\3|p" "$1" |
- awk -F"$fs" '{
- indent = length($1)/2;
- vname[indent] = $2;
- for (i in vname) {if (i > indent) {delete vname[i]}}
- if (length($3) > 0) {
- vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
- printf("%s%s%s=(\"%s\")\n", "'"$prefix"'",vn, $2, $3);
- }
- }' | sed 's/_=/+=/g'
- }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 30973 | C. Thomas Tyler | Adapting to new home in //p4bbi stream depot. Mostly minor changes to doc links. Mor...e significant changes we needed for package_downloads.sh. « |
29 days ago | |
#1 | 30968 | C. Thomas Tyler |
Migration from Classic to Streams with: p4 copy -b P4BBI_Classic_to_Streams |
29 days ago | |
//guest/perforce_software/p4bbi/main/lib/libYAML.sh | |||||
#1 | 18422 | C. Thomas Tyler | Corrected push from dev. | 9 years ago | |
//guest/perforce_software/p4bbi/dev/lib/libYAML.sh | |||||
#2 | 18384 | C. Thomas Tyler | Removed unnecessary '+x' bit from libYAML.sh. | 9 years ago | |
#1 | 18220 | C. Thomas Tyler | Merged to pick up updated SDP lib file. | 9 years ago | |
//guest/perforce_software/sdp/main/Server/Unix/p4/common/lib/libYAML.sh | |||||
#1 | 17315 | C. Thomas Tyler | Released SDP/MultiArch/2016.1/17297 (2016/02/03). Copy Up using 'p4 copy -r -b perforce..._software-sdp-dev'. « |
9 years ago | |
//guest/perforce_software/sdp/dev/Server/Unix/p4/common/lib/libYAML.sh | |||||
#1 | 17251 | C. Thomas Tyler | Added YAML parsing bash library, complete with a test script and sample data file. | 9 years ago |