X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib_internal%2Futil-isnumber.hc;fp=lib_internal%2Futil-isnumber.hc;h=102e02dd53e6cbcd5d1c98bcc17d72b714f0f8a9;hb=ec4370f7ebd7fb0ce7f002f5bf2c74f03acd3ec1;hp=0000000000000000000000000000000000000000;hpb=9234e6a7cb48373edec38284ba54a819037b79b2;p=util-vserver.git diff --git a/lib_internal/util-isnumber.hc b/lib_internal/util-isnumber.hc new file mode 100644 index 0000000..102e02d --- /dev/null +++ b/lib_internal/util-isnumber.hc @@ -0,0 +1,52 @@ +// $Id: util-isnumber.hc 2255 2006-01-22 11:23:47Z ensc $ --*- c -*-- + +// Copyright (C) 2006 Enrico Scholz +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; version 2 of the License. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +#include +#include +#include + +#define ENSC_DECL_UTIL_ISNUMBER(NAME,TYPE,FUNC) \ + bool \ + NAME(char const *str, TYPE *result, bool is_strict) \ + { \ + char * errptr; \ + TYPE val; \ + unsigned int fac = 1; \ + \ + errno = 0; \ + val = FUNC(str, &errptr, 0); \ + if (errno==ERANGE) \ + return false; \ + if (errptr!=str && !is_strict) { \ + switch (*errptr) { \ + case 'M' : fac *= 1024; /* fallthrough */ \ + case 'K' : fac *= 1024; ++errptr; break; \ + case 'm' : fac *= 1000; /* fallthrough */ \ + case 'k' : fac *= 1000; ++errptr; break; \ + default : break; \ + } \ + } \ + if (!checkConstraints(val,fac)) \ + return false; \ + \ + if (*errptr!='\0' || errptr==str) \ + return false; \ + else { \ + if (result) *result = val*fac; \ + return true; \ + } \ + }