Associative arrays in Shell scripts - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:50:22Z http://stackoverflow.com/feeds/question/688849 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts 9 Associative arrays in Shell scripts Irfan Zulfiqar 2009-03-27T07:37:40Z 2009-09-30T00:12:16Z <p>We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?</p> http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts/689890#689890 0 Answer by Irfan Zulfiqar for Associative arrays in Shell scripts Irfan Zulfiqar 2009-03-27T14:07:49Z 2009-04-14T08:11:06Z <p>Now answering this question.</p> <p>Following scripts simulates associative arrays in shell scripts. Its simple and very easy to understand.</p> <p>Map is nothing but a never ending string that has keyValuePair saved as --name=Irfan --designation=SSE --company=My:SP:Own:SP:Company</p> <p>spaces are replaced with ':SP:' for values</p> <pre><code>put() { if [ "$#" != 3 ]; then exit 1; fi mapName=$1; key=$2; value=`echo $3 | sed -e "s/ /:SP:/g"` eval map="\"\$$mapName\"" map="`echo "$map" | sed -e "s/--$key=[^ ]*//g"` --$key=$value" eval $mapName="\"$map\"" } get() { mapName=$1; key=$2; valueFound="false" eval map=\$$mapName for keyValuePair in ${map}; do case "$keyValuePair" in --$key=*) value=`echo "$keyValuePair" | sed -e 's/^[^=]*=//'` valueFound="true" esac if [ "$valueFound" == "true" ]; then break; fi done value=`echo $value | sed -e "s/:SP:/ /g"` } put "newMap" "name" "Irfan Zulfiqar" put "newMap" "designation" "SSE" put "newMap" "company" "My Own Company" get "newMap" "company" echo $value get "newMap" "name" echo $value </code></pre> <p><strong>edit:</strong> Just added another method to fetch all keys.</p> <pre><code>getKeySet() { if [ "$#" != 1 ]; then exit 1; fi mapName=$1; eval map="\"\$$mapName\"" keySet=` echo $map | sed -e "s/=[^ ]*//g" -e "s/\([ ]*\)--/\1/g" ` } </code></pre> http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts/690543#690543 1 Answer by Jerry Penner for Associative arrays in Shell scripts Jerry Penner 2009-03-27T16:48:49Z 2009-03-27T16:48:49Z <p>To add to Irfan's answer, here is a shorter and faster version of get() since it requires no iteration over the map contents:</p> <pre><code>get() { mapName=$1; key=$2 map=${!mapName} value="$(echo $map |sed -e "s/.*--${key}=\([^ ]*\).*/\1/" -e 's/:SP:/ /g' )" } </code></pre> http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts/691023#691023 2 Answer by Brian Campbell for Associative arrays in Shell scripts Brian Campbell 2009-03-27T18:46:41Z 2009-04-02T13:26:49Z <p>I think that you need to step back and think about what a map, or associative array, really is. All it is is a way to store a value for a given key, and get that value back quickly and efficiently. You may also want to be able to iterate over the keys to retrieve every key value pair, or delete keys and their associated values.</p> <p>Now, think about a data structure you use all the time in shell scripting, and even just in the shell without writing a script, that has these properties. Stumped? It's the filesystem.</p> <p>Really, all you need to have an associative array in shell programming is a temp directory. <code>mktemp -d</code> is your associative array constructor:</p> <pre><code>prefix=$(basename $0) map=$(mktemp -dt ${prefix}) echo &gt;${map}/key somevalue value=$(cat ${map}/key) </code></pre> <p>If you don't feel like using <code>echo</code> and <code>cat</code>, you can always write some little wrappers; these ones are modelled off of Irfan's, though they just output the value rather than setting arbitrary variables like <code>$value</code>:</p> <pre><code>#!/bin/sh prefix=$(basename $0) mapdir=$(mktemp -dt ${prefix}) trap 'rm -r ${mapdir}' EXIT put() { [ "$#" != 3 ] &amp;&amp; exit 1 mapname=$1; key=$2; value=$3 [ -d "${mapdir}/${mapname}" ] || mkdir "${mapdir}/${mapname}" echo $value &gt;"${mapdir}/${mapname}/${key}" } get() { [ "$#" != 2 ] &amp;&amp; exit 1 mapname=$1; key=$2 cat "${mapdir}/${mapname}/${key}" } put "newMap" "name" "Irfan Zulfiqar" put "newMap" "designation" "SSE" put "newMap" "company" "My Own Company" value=$(get "newMap" "company") echo $value value=$(get "newMap" "name") echo $value </code></pre> <p><strong>edit</strong>: This approach is actually quite a bit faster than the linear search using sed suggested by the questioner, as well as more robust (it allows keys and values to contain -, =, space, qnd ":SP:"). The fact that it uses the filesystem does not make it slow; these files are actually never guaranteed to be written to the disk unless you call <code>sync</code>; for temporary files like this with a short lifetime, it's not unlikely that many of them will never be written to disk.</p> <p>I did a few benchmarks of Irfan's code, Jerry's modification of Irfan's code, and my code, using the following driver program:</p> <pre><code>#!/bin/sh mapimpl=$1 numkeys=$2 numvals=$3 . ./${mapimpl}.sh #/ &lt;- fix broken stack overflow syntax highlighting for (( i = 0 ; $i &lt; $numkeys ; i += 1 )) do for (( j = 0 ; $j &lt; $numvals ; j += 1 )) do put "newMap" "key$i" "value$j" get "newMap" "key$i" done done </code></pre> <p>The results:</p> <pre> $ time ./driver.sh irfan 10 5 real 0m0.975s user 0m0.280s sys 0m0.691s $ time ./driver.sh brian 10 5 real 0m0.226s user 0m0.057s sys 0m0.123s $ time ./driver.sh jerry 10 5 real 0m0.706s user 0m0.228s sys 0m0.530s $ time ./driver.sh irfan 100 5 real 0m10.633s user 0m4.366s sys 0m7.127s $ time ./driver.sh brian 100 5 real 0m1.682s user 0m0.546s sys 0m1.082s $ time ./driver.sh jerry 100 5 real 0m9.315s user 0m4.565s sys 0m5.446s $ time ./driver.sh irfan 10 500 real 1m46.197s user 0m44.869s sys 1m12.282s $ time ./driver.sh brian 10 500 real 0m16.003s user 0m5.135s sys 0m10.396s $ time ./driver.sh jerry 10 500 real 1m24.414s user 0m39.696s sys 0m54.834s $ time ./driver.sh irfan 1000 5 real 4m25.145s user 3m17.286s sys 1m21.490s $ time ./driver.sh brian 1000 5 real 0m19.442s user 0m5.287s sys 0m10.751s $ time ./driver.sh jerry 1000 5 real 5m29.136s user 4m48.926s sys 0m59.336s </pre> http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts/691157#691157 3 Answer by Brian Campbell for Associative arrays in Shell scripts Brian Campbell 2009-03-27T19:22:19Z 2009-03-27T19:22:19Z <p>Another option, if you don't care about portability, is to use associative arrays that are built in to the shell. This should work in bash 4.0 (just released about a month ago, so almost no distros ship it yet), ksh, and zsh:</p> <pre><code>newmap[name]="Irfan Zulfiqar" newmap[designation]=SSE newmap[company]="My Own Company" echo ${newmap[company]} echo ${newmap[name]} </code></pre> <p>Depending on the shell, you may need to do a <code>typeset -A newmap</code> or <code>declare -A newmap</code>, though my testing in bash 4 seems to indicate that is optional.</p> http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts/1494556#1494556 0 Answer by Loadmaster for Associative arrays in Shell scripts Loadmaster 2009-09-29T19:49:41Z 2009-09-29T19:49:41Z <p>You weren't specific about which shell language you can use, so maybe you could consider AWK, which has associative arrays built in.</p> http://stackoverflow.com/questions/688849/associative-arrays-in-shell-scripts/1495559#1495559 0 Answer by DigitalRoss for Associative arrays in Shell scripts DigitalRoss 2009-09-30T00:12:16Z 2009-09-30T00:12:16Z <pre><code>hput () { eval hash"$1"='$2' } hget () { eval echo '${hash'"$1"'#hash}' } hput France Paris hput Netherlands Amsterdam hput Spain Madrid echo `hget France` and `hget Netherlands` and `hget Spain` </code></pre> <p><hr /></p> <pre><code>$ sh hash.sh Paris and Amsterdam and Madrid </code></pre>