qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
	qemu-block@nongnu.org
Cc: kwolf@redhat.com, den@openvz.org, qemu-devel@nongnu.org,
	mreitz@redhat.com
Subject: Re: [PATCH v10 08/10] qcow2.py: Introduce '-j' key to dump in JSON format
Date: Thu, 16 Jul 2020 17:44:37 +0300	[thread overview]
Message-ID: <5b661e9c-ec9b-441e-1e64-dc664ddaba17@virtuozzo.com> (raw)
In-Reply-To: <c538f45c-8c00-7f60-c92e-7cc60c128376@virtuozzo.com>

On 16.07.2020 17:38, Vladimir Sementsov-Ogievskiy wrote:
> 16.07.2020 17:36, Andrey Shinkevich wrote:
>> On 16.07.2020 13:20, Vladimir Sementsov-Ogievskiy wrote:
>>> 14.07.2020 00:36, Andrey Shinkevich wrote:
>>>> Add the command key to the qcow2.py arguments list to dump QCOW2
>>>> metadata in JSON format. Here is the suggested way to do that. The
>>>> implementation of the dump in JSON format is in the patch that 
>>>> follows.
>>>>
>>>> Signed-off-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
>>>> ---
>>>>   tests/qemu-iotests/qcow2.py        | 19 +++++++++++++++----
>>>>   tests/qemu-iotests/qcow2_format.py | 16 ++++++++--------
>>>>   2 files changed, 23 insertions(+), 12 deletions(-)
>>>>
>>>> diff --git a/tests/qemu-iotests/qcow2.py b/tests/qemu-iotests/qcow2.py
>>>> index 0910e6a..7402279 100755
>> ...
>>>> @@ -134,6 +137,11 @@ cmds = [
>>>>       def main(filename, cmd, args):
>>>> +    global dump_json
>>>> +    dump_json = '-j' in sys.argv
>>>> +    if dump_json:
>>>> +        sys.argv.remove('-j')
>>>> +        args.remove('-j')
>>>
>>> I'd prefer to access sys.argv in one place (in "if __name__ ...").
>>>
>>
>> In case we move the block
>>
>>      global dump_json
>>      dump_json = '-j' in sys.argv
>>
>>          if dump_json:
>>              sys.argv.remove('-j')
>>
>> from main() to the body of "if __name__ == '__main__'"
>>
>> we get the following error -
>>
>> "SyntaxError: name 'dump_json' is assigned to before global declaration"
>
> you don't need "global" declaration outside of a function
>
>

OK, thanks. However, if we want to parse more keys in future, will we do 
all that parsing in the body of "if __name__ == '__main__'"?


Andrey



  reply	other threads:[~2020-07-16 14:45 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-13 21:36 [PATCH v10 00/10] iotests: Dump QCOW2 dirty bitmaps metadata Andrey Shinkevich
2020-07-13 21:36 ` [PATCH v10 01/10] qcow2: Fix capitalization of header extension constant Andrey Shinkevich
2020-07-13 21:36 ` [PATCH v10 02/10] qcow2_format.py: make printable data an extension class member Andrey Shinkevich
2020-07-13 21:36 ` [PATCH v10 03/10] qcow2_format.py: change Qcow2BitmapExt initialization method Andrey Shinkevich
2020-07-16  8:47   ` Vladimir Sementsov-Ogievskiy
2020-07-13 21:36 ` [PATCH v10 04/10] qcow2_format.py: dump bitmap flags in human readable way Andrey Shinkevich
2020-07-16  8:50   ` Vladimir Sementsov-Ogievskiy
2020-07-13 21:36 ` [PATCH v10 05/10] qcow2_format.py: Dump bitmap directory information Andrey Shinkevich
2020-07-16  9:14   ` Vladimir Sementsov-Ogievskiy
2020-07-13 21:36 ` [PATCH v10 06/10] qcow2_format.py: pass cluster size to substructures Andrey Shinkevich
2020-07-16  9:26   ` Vladimir Sementsov-Ogievskiy
2020-07-17  7:18     ` Andrey Shinkevich
2020-07-13 21:36 ` [PATCH v10 07/10] qcow2_format.py: Dump bitmap table serialized entries Andrey Shinkevich
2020-07-16  9:39   ` Vladimir Sementsov-Ogievskiy
2020-07-13 21:36 ` [PATCH v10 08/10] qcow2.py: Introduce '-j' key to dump in JSON format Andrey Shinkevich
2020-07-16 10:20   ` Vladimir Sementsov-Ogievskiy
2020-07-16 14:36     ` Andrey Shinkevich
2020-07-16 14:38       ` Vladimir Sementsov-Ogievskiy
2020-07-16 14:44         ` Andrey Shinkevich [this message]
2020-07-16 14:47           ` Vladimir Sementsov-Ogievskiy
2020-07-13 21:36 ` [PATCH v10 09/10] qcow2_format.py: collect fields " Andrey Shinkevich
2020-07-16 10:24   ` Vladimir Sementsov-Ogievskiy
2020-07-16 15:34     ` Andrey Shinkevich
2020-07-16 15:40       ` Vladimir Sementsov-Ogievskiy
2020-07-16 15:52         ` Andrey Shinkevich
2020-07-16 16:08           ` Vladimir Sementsov-Ogievskiy
2020-07-13 21:36 ` [PATCH v10 10/10] qcow2_format.py: support dumping metadata " Andrey Shinkevich
2020-07-16 10:37   ` Vladimir Sementsov-Ogievskiy

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=5b661e9c-ec9b-441e-1e64-dc664ddaba17@virtuozzo.com \
    --to=andrey.shinkevich@virtuozzo.com \
    --cc=den@openvz.org \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=vsementsov@virtuozzo.com \
    /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.
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).