Tarantool development patches archive
 help / color / mirror / Atom feed
From: Vladimir Davydov <vdavydov.dev@gmail.com>
To: Serge Petrenko <sergepetrenko@tarantool.org>
Cc: tarantool-patches@freelists.org
Subject: Re: [PATCH 4/5] decimal: add conversions to (u)int64_t
Date: Wed, 24 Jul 2019 19:17:51 +0300	[thread overview]
Message-ID: <20190724161751.GA24631@esperanza> (raw)
In-Reply-To: <bb69e149cf5f94463b4cc697c5f6643101870ebf.1563376957.git.sergepetrenko@tarantool.org>

On Wed, Jul 17, 2019 at 06:33:45PM +0300, Serge Petrenko wrote:
> Update decNumber library, add methods to convert decimals to uint64_t
> and int64_t, add unit tests.
> Also replace decimal_round() function with decimal_round_with_mode() to
> allow setting rounding mode.

Better add decimal_floor(), as decimal_round_with_mode() has a
complicated API IMO.

> We need to round with mode DEC_ROUND_DOWN in to_int64 conversions in
> order to be consistent with double to int conversions.
> It will be needed to compute hints for decimal fields.
> 
> Prerequisite #4333
> ---
>  src/lib/core/decimal.c   | 63 ++++++++++++++++++++++++++++++++--
>  src/lib/core/decimal.h   | 12 +++++++
>  test/unit/decimal.c      | 66 ++++++++++++++++++++++++++++++++++-
>  test/unit/decimal.result | 74 ++++++++++++++++++++++++++++++++++++++--
>  third_party/decNumber    |  2 +-
>  5 files changed, 209 insertions(+), 8 deletions(-)
> 
> diff --git a/src/lib/core/decimal.c b/src/lib/core/decimal.c
> index 2c69a773c..5a576e6e5 100644
> --- a/src/lib/core/decimal.c
> +++ b/src/lib/core/decimal.c
> @@ -157,6 +157,57 @@ decimal_to_string(const decimal_t *dec)
>  	return buf;
>  }
>  
> +static decimal_t *
> +decimal_round_with_mode(decimal_t *dec, int scale, enum rounding mode);
> +
> +decimal_t *
> +decimal_to_int64(decimal_t *dec, int64_t *num)

Why return decimal_t?

Shouldn't 'dec' be marked const?

> +{
> +	decimal_t d, z;
> +	decNumberZero(&z);
> +	d = *dec;
> +	dec = &d;

This looks confusing - like you're modifying the given decimal
number below.

> +
> +	if (decimal_scale(dec) != 0) {
> +		/*
> +		 * Rounding mode is important here.
> +		 * We want to be consistent with double
> +		 * to int conversion so that comparison
> +		 * hints work correctly.
> +		 */
> +		dec = decimal_round_with_mode(dec, 0, DEC_ROUND_DOWN);
> +	}
> +	/*
> +	 * decNumberToInt64 works only with numbers with
> +	 * zero exponent.
> +	 */
> +	decNumberRescale(dec, dec, &z, &decimal_context);
> +	if (decimal_check_status(dec, &decimal_context) == NULL) {
> +		return NULL;
> +	}
> +	*num = decNumberToInt64(dec, &decimal_context);
> +	return decimal_check_status(dec, &decimal_context);
> +}
> +
> +decimal_t *
> +decimal_to_uint64(decimal_t *dec, uint64_t *num)
> +{
> +	decimal_t d, z;
> +	decNumberZero(&z);
> +	d = *dec;
> +	dec = &d;
> +
> +	if (decimal_scale(dec) != 0) {
> +		dec = decimal_round_with_mode(dec, 0, DEC_ROUND_DOWN);
> +	}
> +	decNumberRescale(dec, dec, &z, &decimal_context);

It would be nice to factor out the piece of code shared by
decimal_to_uint64 and decimal_to_int64.

> +	if (decimal_check_status(dec, &decimal_context) == NULL) {
> +		return NULL;
> +	}
> +	*num = decNumberToUInt64(dec, &decimal_context);
> +	return decimal_check_status(dec, &decimal_context);
> +}
> +

  reply	other threads:[~2019-07-24 16:17 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-17 15:33 [PATCH 0/5] Decimal indices Serge Petrenko
2019-07-17 15:33 ` [PATCH 1/5] decimal: fix decimal.round() when scale == 0 Serge Petrenko
2019-07-24 12:10   ` Vladimir Davydov
2019-07-24 23:02   ` [tarantool-patches] " Konstantin Osipov
2019-07-17 15:33 ` [PATCH 2/5] decimal: allow to encode/decode decimals as MsgPack Serge Petrenko
2019-07-24 16:19   ` Vladimir Davydov
2019-07-24 23:08   ` [tarantool-patches] " Konstantin Osipov
2019-07-17 15:33 ` [PATCH 3/5] lua: allow to encode and decode decimals as msgpack Serge Petrenko
2019-07-24 14:11   ` Vladimir Davydov
2019-07-24 23:10   ` [tarantool-patches] " Konstantin Osipov
2019-07-17 15:33 ` [PATCH 4/5] decimal: add conversions to (u)int64_t Serge Petrenko
2019-07-24 16:17   ` Vladimir Davydov [this message]
2019-07-17 15:33 ` [PATCH 5/5] decimal: allow to index decimals Serge Petrenko
2019-07-24 16:56   ` Vladimir Davydov
2019-07-24 23:13   ` [tarantool-patches] " Konstantin Osipov
2019-07-24 23:17   ` Konstantin Osipov

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=20190724161751.GA24631@esperanza \
    --to=vdavydov.dev@gmail.com \
    --cc=sergepetrenko@tarantool.org \
    --cc=tarantool-patches@freelists.org \
    --subject='Re: [PATCH 4/5] decimal: add conversions to (u)int64_t' \
    /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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox