declare Version=1.0.1 #============================================================================== #------------------------------------------------------------------------------ # 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 | 18384 | C. Thomas Tyler | Removed unnecessary '+x' bit from libYAML.sh. | ||
#1 | 18220 | C. Thomas Tyler | Merged to pick up updated SDP lib file. | ||
//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'. |
||
//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. |