qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [RFC PATCH] vl.c: add -semihosting-config "arg" sub-arg


From: Eric Blake
Subject: Re: [Qemu-devel] [RFC PATCH] vl.c: add -semihosting-config "arg" sub-argument
Date: Tue, 21 Apr 2015 10:48:59 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0

On 04/21/2015 09:55 AM, Peter Maydell wrote:
> If you want pure POSIX shell then it is slightly
> uglier as we have to invoke sed:
> 
> argstr=""
> for arg in "$@"; do
>      o=$(printf '%s.\n' "$arg" | sed s/,/,,/g)
>      argstr=${argstr:+$argstr,}arg=${o%.}
> done

It's possible to use IFS= and case to avoid the need to fork, while
still writing portable shell, but the solution then takes LOTS more
lines of code, so I'm not even going to bother to try writing it here.

However, one thing this does NOT handle is an argument that is a literal
','.  That is, if I pass 'a', ',' and 'b' as my arguments, this script
results in $argstr being a,,,,b, which the qemu parser would read as a
single argument of 'a,,b' rather than the three intended arguments.

In order to handle that, you'd need some sort of solution that requires
an unambiguous separation between arguments.  For example,

--semihosting-options opt=a,,,,b
vs.
--semihosting-options opt=a,opt=,,,opt=b

would be unambiguous representations of 1 vs. 3 options.

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]