From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp42.i.mail.ru (smtp42.i.mail.ru [94.100.177.102]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id C310F469710 for ; Fri, 20 Nov 2020 12:53:38 +0300 (MSK) References: <20201119194100.840495-1-gorcunov@gmail.com> <20201119194100.840495-2-gorcunov@gmail.com> From: Serge Petrenko Message-ID: Date: Fri, 20 Nov 2020 12:53:37 +0300 MIME-Version: 1.0 In-Reply-To: <20201119194100.840495-2-gorcunov@gmail.com> Content-Type: text/plain; charset="utf-8"; format="flowed" Content-Transfer-Encoding: 8bit Content-Language: ru Subject: Re: [Tarantool-patches] [RFC 1/4] cfg: add cfg_isnumber helper List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Cyrill Gorcunov , tml Cc: Vladislav Shpilevoy 19.11.2020 22:40, Cyrill Gorcunov пишет: > We will need it to figure out if parameter > is a numeric value when doing configuration > check. > > Part-of #5446 > > Signed-off-by: Cyrill Gorcunov > --- > src/cfg.c | 9 +++++++++ > src/cfg.h | 6 ++++++ > 2 files changed, 15 insertions(+) > > diff --git a/src/cfg.c b/src/cfg.c > index 46cff1999..cf07d5817 100644 > --- a/src/cfg.c > +++ b/src/cfg.c > @@ -57,6 +57,15 @@ cfg_geti(const char *param) > return val; > } > > +bool > +cfg_isnumber(const char *param) > +{ > + cfg_get(param); > + bool ret = !!lua_isnumber(tarantool_L, -1); > + lua_pop(tarantool_L, 1); > + return ret; > +} > + > int > cfg_getb(const char *param) > { > diff --git a/src/cfg.h b/src/cfg.h > index 140bdddb8..e2955e6b2 100644 > --- a/src/cfg.h > +++ b/src/cfg.h > @@ -40,6 +40,12 @@ extern "C" { > int > cfg_geti(const char *param); > > +/** > + * Test if cfg parameter is a number. > + */ > +bool > +cfg_isnumber(const char *param); > + > /** > * Gets boolean parameter of cfg. > * Returns -1 in case of nil LGTM. -- Serge Petrenko