Edit

kc3-lang/angle/src/compiler/preprocessor/numeric_lex.h

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2018-04-25 14:29:00
    Hash : 197d5294
    Message : Wrap all preprocessor code in the angle namespace. BUG=836820 BUG=801364 Change-Id: I08b6a2f9f12b689e09df6efd916c313e71e8a051 Reviewed-on: https://chromium-review.googlesource.com/1028581 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by: Yuly Novikov <ynovikov@chromium.org>

  • src/compiler/preprocessor/numeric_lex.h
  • //
    // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style license that can be
    // found in the LICENSE file.
    //
    
    // numeric_lex.h: Functions to extract numeric values from string.
    
    #ifndef COMPILER_PREPROCESSOR_NUMERICLEX_H_
    #define COMPILER_PREPROCESSOR_NUMERICLEX_H_
    
    #include <cmath>
    #include <sstream>
    
    namespace angle
    {
    
    namespace pp
    {
    
    inline std::ios::fmtflags numeric_base_int(const std::string &str)
    {
        if ((str.size() >= 2) && (str[0] == '0') && (str[1] == 'x' || str[1] == 'X'))
        {
            return std::ios::hex;
        }
        if ((str.size() >= 1) && (str[0] == '0'))
        {
            return std::ios::oct;
        }
        return std::ios::dec;
    }
    
    // The following functions parse the given string to extract a numerical
    // value of the given type. These functions assume that the string is
    // of the correct form. They can only fail if the parsed value is too big,
    // in which case false is returned.
    
    template <typename IntType>
    bool numeric_lex_int(const std::string &str, IntType *value)
    {
        std::istringstream stream(str);
        // This should not be necessary, but MSVS has a buggy implementation.
        // It returns incorrect results if the base is not specified.
        stream.setf(numeric_base_int(str), std::ios::basefield);
    
        stream >> (*value);
        return !stream.fail();
    }
    
    template <typename FloatType>
    bool numeric_lex_float(const std::string &str, FloatType *value)
    {
        // Some platforms have issues with the usage of std::locale and std::stringstream and cause
        // crashes. Usage of strtod appears to be safe.
        *value = static_cast<FloatType>(strtod(str.c_str(), nullptr));
        return errno != ERANGE && std::isfinite(*value);
    }
    
    }  // namespace pp
    
    }  // namespace angle
    
    #endif  // COMPILER_PREPROCESSOR_NUMERICLEX_H_