zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Thorsten Kampe <thorsten@thorstenkampe.de>, zsh-users@zsh.org
Subject: Re: How to iterate over an array of associative arrays
Date: Sun, 14 Jul 2013 11:05:27 -0700	[thread overview]
Message-ID: <130714110527.ZM8869@torch.brasslantern.com> (raw)
In-Reply-To: <kru9g4$gbm$1@ger.gmane.org>

On Jul 14,  3:36pm, Thorsten Kampe wrote:
}
} > > AssocArr1=(key value1)
} > > AssocArr2=(key value2)
} > >
} > > array=($AssocArr1 $AssocArr2)
} > 
} > Do you really want these $ here?
} 
} Yes, I really wanted to pass the actual associative arrays, but if I can 
} pass the names that's fine with me, too.

The shell language is text-oriented and can be though of as strictly
pass-by-value, so there's no way to create a nested data structure; the
values of the array cannot be direct references to other arrays.

} > You need to use the (P) flag to access a parameter indirectly.

Ksh namerefs, which are partly emulated by zsh's (P) flag, allow you to
simulate references but are not true object handles.

} Doesn't work for me:
} 
} """
} array=(AssocArr1 AssocArr2)
} 
} for elem in $array
}     do echo ${${(P)elem}[key]}
} done
} """

Unfortunately even though ${(P)elem} can access by reference, it can only
"return" (expand that reference) by value, and the shell has only two kinds
of values: strings or plain arrays.

Fortunately, although associative array keys/values are not maintained in
any predictable order, they are guaranteed to be returned in a consistent
order (as long as no new elements are inserted between accesses) so this
can be done:

"""
declare -A AssocArr
AssocArr=(key1 value1 key2 value2 key3 value3)
ref=AssocArr

print position of key2 is ${${(kP)ref}[(i)key2]}
print value for key2 is ${${(P)ref}[${${(@kP)ref}[(i)key2]}]}
"""

The extra (@) in there is because $arr[key] puts key in double-quoted
context, so you have to force ${(P)ref} to remain an array for the
subscript operation.


      parent reply	other threads:[~2013-07-14 18:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-14 12:35 Thorsten Kampe
2013-07-14 13:10 ` Mikael Magnusson
2013-07-14 13:36   ` Thorsten Kampe
2013-07-14 16:14     ` Valodim Skywalker
2013-07-14 16:49       ` Thorsten Kampe
2013-07-14 17:25         ` Valodim Skywalker
2013-07-14 17:21     ` Peter Stephenson
2013-07-14 19:57       ` Thorsten Kampe
2013-07-14 22:57         ` Bart Schaefer
2013-07-14 18:05     ` Bart Schaefer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=130714110527.ZM8869@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=thorsten@thorstenkampe.de \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).