qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why
@ 2017-08-22  6:52 Markus Armbruster
  2017-08-22  8:32 ` Marc-André Lureau
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Markus Armbruster @ 2017-08-22  6:52 UTC (permalink / raw)
  To: qemu-devel; +Cc: mreitz, marcandre.lureau

Suggested-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 include/qapi/qmp/qnum.h | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/include/qapi/qmp/qnum.h b/include/qapi/qmp/qnum.h
index 09d745c..9182129 100644
--- a/include/qapi/qmp/qnum.h
+++ b/include/qapi/qmp/qnum.h
@@ -23,6 +23,27 @@ typedef enum {
     QNUM_DOUBLE
 } QNumKind;
 
+/*
+ * QNum encapsulates how our dialect of JSON fills in the blanks left
+ * by the JSON specification (RFC 7159) regarding numbers.
+ *
+ * Conceptually, we treat number as an abstract type with three
+ * concrete subtypes: floating-point, signed integer, unsigned
+ * integer.  QNum implements this a discriminated union of double,
+ * int64_t, uint64_t.
+ *
+ * The JSON parser picks the subtype as follows.  If the number has a
+ * decimal point or an exponent, it is floating-point.  Else if it
+ * fits into int64_t, it's signed integer.  Else if it first into
+ * uint64_t, it's unsigned integer.  Else it's floating-point.
+ *
+ * Any number can serve as double: qnum_get_double() converts under
+ * the hood.
+ *
+ * An integer can serve as signed / unsigned integer as long as it is
+ * in range: qnum_get_try_int() / qnum_get_try_uint() check range and
+ * convert under the hood.
+ */
 typedef struct QNum {
     QObject base;
     QNumKind kind;
-- 
2.7.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why
  2017-08-22  6:52 [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why Markus Armbruster
@ 2017-08-22  8:32 ` Marc-André Lureau
  2017-08-22 17:42 ` Max Reitz
  2017-08-24 15:23 ` Eric Blake
  2 siblings, 0 replies; 5+ messages in thread
From: Marc-André Lureau @ 2017-08-22  8:32 UTC (permalink / raw)
  To: Markus Armbruster; +Cc: qemu-devel, mreitz



----- Original Message -----
> Suggested-by: Max Reitz <mreitz@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>


> ---
>  include/qapi/qmp/qnum.h | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
> 
> diff --git a/include/qapi/qmp/qnum.h b/include/qapi/qmp/qnum.h
> index 09d745c..9182129 100644
> --- a/include/qapi/qmp/qnum.h
> +++ b/include/qapi/qmp/qnum.h
> @@ -23,6 +23,27 @@ typedef enum {
>      QNUM_DOUBLE
>  } QNumKind;
>  
> +/*
> + * QNum encapsulates how our dialect of JSON fills in the blanks left
> + * by the JSON specification (RFC 7159) regarding numbers.
> + *
> + * Conceptually, we treat number as an abstract type with three
> + * concrete subtypes: floating-point, signed integer, unsigned
> + * integer.  QNum implements this a discriminated union of double,
> + * int64_t, uint64_t.
> + *
> + * The JSON parser picks the subtype as follows.  If the number has a
> + * decimal point or an exponent, it is floating-point.  Else if it
> + * fits into int64_t, it's signed integer.  Else if it first into
> + * uint64_t, it's unsigned integer.  Else it's floating-point.
> + *
> + * Any number can serve as double: qnum_get_double() converts under
> + * the hood.
> + *
> + * An integer can serve as signed / unsigned integer as long as it is
> + * in range: qnum_get_try_int() / qnum_get_try_uint() check range and
> + * convert under the hood.
> + */
>  typedef struct QNum {
>      QObject base;
>      QNumKind kind;
> --
> 2.7.5
> 
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why
  2017-08-22  6:52 [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why Markus Armbruster
  2017-08-22  8:32 ` Marc-André Lureau
@ 2017-08-22 17:42 ` Max Reitz
  2017-08-24 15:23 ` Eric Blake
  2 siblings, 0 replies; 5+ messages in thread
From: Max Reitz @ 2017-08-22 17:42 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: marcandre.lureau

[-- Attachment #1: Type: text/plain, Size: 314 bytes --]

On 2017-08-22 08:52, Markus Armbruster wrote:
> Suggested-by: Max Reitz <mreitz@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  include/qapi/qmp/qnum.h | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)

Thanks again!

Reviewed-by: Max Reitz <mreitz@redhat.com>


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 512 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why
  2017-08-22  6:52 [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why Markus Armbruster
  2017-08-22  8:32 ` Marc-André Lureau
  2017-08-22 17:42 ` Max Reitz
@ 2017-08-24 15:23 ` Eric Blake
  2017-08-24 18:20   ` Markus Armbruster
  2 siblings, 1 reply; 5+ messages in thread
From: Eric Blake @ 2017-08-24 15:23 UTC (permalink / raw)
  To: Markus Armbruster, qemu-devel; +Cc: marcandre.lureau, mreitz

[-- Attachment #1: Type: text/plain, Size: 1708 bytes --]

On 08/22/2017 01:52 AM, Markus Armbruster wrote:
> Suggested-by: Max Reitz <mreitz@redhat.com>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
>  include/qapi/qmp/qnum.h | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
> 
> diff --git a/include/qapi/qmp/qnum.h b/include/qapi/qmp/qnum.h
> index 09d745c..9182129 100644
> --- a/include/qapi/qmp/qnum.h
> +++ b/include/qapi/qmp/qnum.h
> @@ -23,6 +23,27 @@ typedef enum {
>      QNUM_DOUBLE
>  } QNumKind;
>  
> +/*
> + * QNum encapsulates how our dialect of JSON fills in the blanks left
> + * by the JSON specification (RFC 7159) regarding numbers.
> + *
> + * Conceptually, we treat number as an abstract type with three
> + * concrete subtypes: floating-point, signed integer, unsigned
> + * integer.  QNum implements this a discriminated union of double,

s/this/this as/

> + * int64_t, uint64_t.
> + *
> + * The JSON parser picks the subtype as follows.  If the number has a
> + * decimal point or an exponent, it is floating-point.  Else if it
> + * fits into int64_t, it's signed integer.  Else if it first into

s/first/fits/

> + * uint64_t, it's unsigned integer.  Else it's floating-point.
> + *
> + * Any number can serve as double: qnum_get_double() converts under
> + * the hood.
> + *
> + * An integer can serve as signed / unsigned integer as long as it is
> + * in range: qnum_get_try_int() / qnum_get_try_uint() check range and
> + * convert under the hood.
> + */
>  typedef struct QNum {
>      QObject base;
>      QNumKind kind;
> 

-- 
Eric Blake, Principal Software Engineer
Red Hat, Inc.           +1-919-301-3266
Virtualization:  qemu.org | libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 619 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why
  2017-08-24 15:23 ` Eric Blake
@ 2017-08-24 18:20   ` Markus Armbruster
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Armbruster @ 2017-08-24 18:20 UTC (permalink / raw)
  To: Eric Blake; +Cc: qemu-devel, marcandre.lureau, mreitz

Eric Blake <eblake@redhat.com> writes:

> On 08/22/2017 01:52 AM, Markus Armbruster wrote:
>> Suggested-by: Max Reitz <mreitz@redhat.com>
>> Signed-off-by: Markus Armbruster <armbru@redhat.com>
>> ---
>>  include/qapi/qmp/qnum.h | 21 +++++++++++++++++++++
>>  1 file changed, 21 insertions(+)
>> 
>> diff --git a/include/qapi/qmp/qnum.h b/include/qapi/qmp/qnum.h
>> index 09d745c..9182129 100644
>> --- a/include/qapi/qmp/qnum.h
>> +++ b/include/qapi/qmp/qnum.h
>> @@ -23,6 +23,27 @@ typedef enum {
>>      QNUM_DOUBLE
>>  } QNumKind;
>>  
>> +/*
>> + * QNum encapsulates how our dialect of JSON fills in the blanks left
>> + * by the JSON specification (RFC 7159) regarding numbers.
>> + *
>> + * Conceptually, we treat number as an abstract type with three
>> + * concrete subtypes: floating-point, signed integer, unsigned
>> + * integer.  QNum implements this a discriminated union of double,
>
> s/this/this as/
>
>> + * int64_t, uint64_t.
>> + *
>> + * The JSON parser picks the subtype as follows.  If the number has a
>> + * decimal point or an exponent, it is floating-point.  Else if it
>> + * fits into int64_t, it's signed integer.  Else if it first into
>
> s/first/fits/
>
>> + * uint64_t, it's unsigned integer.  Else it's floating-point.
>> + *
>> + * Any number can serve as double: qnum_get_double() converts under
>> + * the hood.
>> + *
>> + * An integer can serve as signed / unsigned integer as long as it is
>> + * in range: qnum_get_try_int() / qnum_get_try_uint() check range and
>> + * convert under the hood.
>> + */
>>  typedef struct QNum {
>>      QObject base;
>>      QNumKind kind;
>> 

Fixed.  Thanks!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-08-24 18:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-22  6:52 [Qemu-devel] [PATCH] qobject: Explain how QNum works, and why Markus Armbruster
2017-08-22  8:32 ` Marc-André Lureau
2017-08-22 17:42 ` Max Reitz
2017-08-24 15:23 ` Eric Blake
2017-08-24 18:20   ` Markus Armbruster

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).