We required a script that simulates Associative arrays or Map like data structure for Shell Scripting, any body?
|
|
To add to Irfan's answer, here is a shorter and faster version of get() since it requires no iteration over the map contents:
|
|||||||
|
|
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:
Depending on the shell, you may need to do a |
|||||
|
|
Another non-bash 4 way.
You could throw an if statement for searching in there as well. if [[ $var =~ /blah/ ]]. or whatever. |
|||||
|
|
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. 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. Really, all you need to have an associative array in shell programming is a temp directory.
If you don't feel like using
edit: 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 I did a few benchmarks of Irfan's code, Jerry's modification of Irfan's code, and my code, using the following driver program:
The results:
$ 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
|
|||||||||||||
|
|
|||
|
|
Bash4 supports this natively. Do not use For a verbose, detailed answer with example code see: http://stackoverflow.com/questions/3467959 |
|||
|
|
Example:
|
|||
|
|
|
What a pity I did not see the question before - I've wrote library shell-framework which contains among others the maps(Associative arrays). The last version of it can be found here. Example:
|
||||
|
|
|
You weren't specific about which shell language you can use, so maybe you could consider AWK, which has associative arrays built in. |
|||
|
|
|
Now answering this question. Following scripts simulates associative arrays in shell scripts. Its simple and very easy to understand. Map is nothing but a never ending string that has keyValuePair saved as --name=Irfan --designation=SSE --company=My:SP:Own:SP:Company spaces are replaced with ':SP:' for values
edit: Just added another method to fetch all keys.
|
||||
|
|
I've found it true, as already mentioned, that the best performing method is to write out key/vals to a file, and then use grep/awk to retrieve them. It sounds like all sorts of unnecessary IO, but disk cache kicks in and makes it extremely efficient -- much faster than trying to store them in memory using one of the above methods (as the benchmarks show). Here's a quick, clean method I like:
If you wanted to enforce single-value per key, you could also do a little grep/sed action in hput(). |
|||
|
|
|
I modified Vadim's solution with the following:
The change is to map_get in order to prevent it from returning errors if you request a key that doesn't exist, though the side-effect is that it will also silently ignore missing maps, but it suited my use-case better since I just wanted to check for a key in order to skip items in a loop. |
|||
|
|