LCOV - code coverage report
Current view: top level - EnergyPlus - FromChars.hh (source / functions) Hit Total Coverage
Test: lcov.output.filtered Lines: 22 30 73.3 %
Date: 2023-01-17 19:17:23 Functions: 1 1 100.0 %

          Line data    Source code
       1             : // EnergyPlus, Copyright (c) 1996-2023, The Board of Trustees of the University of Illinois,
       2             : // The Regents of the University of California, through Lawrence Berkeley National Laboratory
       3             : // (subject to receipt of any required approvals from the U.S. Dept. of Energy), Oak Ridge
       4             : // National Laboratory, managed by UT-Battelle, Alliance for Sustainable Energy, LLC, and other
       5             : // contributors. All rights reserved.
       6             : //
       7             : // NOTICE: This Software was developed under funding from the U.S. Department of Energy and the
       8             : // U.S. Government consequently retains certain rights. As such, the U.S. Government has been
       9             : // granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable,
      10             : // worldwide license in the Software to reproduce, distribute copies to the public, prepare
      11             : // derivative works, and perform publicly and display publicly, and to permit others to do so.
      12             : //
      13             : // Redistribution and use in source and binary forms, with or without modification, are permitted
      14             : // provided that the following conditions are met:
      15             : //
      16             : // (1) Redistributions of source code must retain the above copyright notice, this list of
      17             : //     conditions and the following disclaimer.
      18             : //
      19             : // (2) Redistributions in binary form must reproduce the above copyright notice, this list of
      20             : //     conditions and the following disclaimer in the documentation and/or other materials
      21             : //     provided with the distribution.
      22             : //
      23             : // (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory,
      24             : //     the University of Illinois, U.S. Dept. of Energy nor the names of its contributors may be
      25             : //     used to endorse or promote products derived from this software without specific prior
      26             : //     written permission.
      27             : //
      28             : // (4) Use of EnergyPlus(TM) Name. If Licensee (i) distributes the software in stand-alone form
      29             : //     without changes from the version obtained under this License, or (ii) Licensee makes a
      30             : //     reference solely to the software portion of its product, Licensee must refer to the
      31             : //     software as "EnergyPlus version X" software, where "X" is the version number Licensee
      32             : //     obtained under this License and may not use a different name for the software. Except as
      33             : //     specifically required in this Section (4), Licensee shall not use in a company name, a
      34             : //     product name, in advertising, publicity, or other promotional activities any name, trade
      35             : //     name, trademark, logo, or other designation of "EnergyPlus", "E+", "e+" or confusingly
      36             : //     similar designation, without the U.S. Department of Energy's prior written consent.
      37             : //
      38             : // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
      39             : // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
      40             : // AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
      41             : // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
      42             : // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
      43             : // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
      44             : // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
      45             : // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
      46             : // POSSIBILITY OF SUCH DAMAGE.
      47             : 
      48             : #ifndef FromChars_hh_INCLUDED
      49             : #define FromChars_hh_INCLUDED
      50             : 
      51             : #if __has_include(<charconv>)
      52             : #include <charconv>
      53             : #endif
      54             : #include <cstdlib>
      55             : #include <limits>
      56             : #include <system_error>
      57             : 
      58             : namespace FromChars {
      59             : 
      60             : struct from_chars_result
      61             : {
      62             :     const char *ptr;
      63             :     std::errc ec;
      64             : };
      65             : 
      66             : // GCC doesn't have <charconv> until 8.1 so we need to implement an equivalent shim until we move to >=8.1
      67     3464595 : template <typename T> from_chars_result from_chars(const char *first, const char *last, T &value) noexcept
      68             : {
      69             :     static_assert(std::is_same_v<T, int> || std::is_same_v<T, long int>, "only int and long int are currently supported");
      70             : 
      71     3464595 :     from_chars_result answer{};
      72             : 
      73     3464595 :     while (first != last) {
      74     3464595 :         if (*first == ' ') {
      75           0 :             ++first;
      76             :         } else {
      77     3464595 :             break;
      78             :         }
      79             :     }
      80     3464595 :     if (first == last) {
      81           0 :         answer.ec = std::errc::invalid_argument;
      82           0 :         answer.ptr = first;
      83           0 :         return answer;
      84             :     }
      85             : 
      86             : #if __has_include(<charconv>)
      87             :     auto const result = std::from_chars(first, last, value);
      88             :     answer.ptr = result.ptr;
      89             :     answer.ec = result.ec;
      90             :     return answer;
      91             : #else
      92     3464595 :     errno = 0;
      93             :     char *pEnd;
      94     3464595 :     auto const ret_val = std::strtol(first, &pEnd, 10);
      95             : 
      96     3464595 :     if (errno == ERANGE) {
      97           0 :         errno = 0;
      98           0 :         answer.ec = std::errc::result_out_of_range;
      99           0 :         answer.ptr = pEnd;
     100           0 :         return answer;
     101             :     }
     102     3464595 :     if (pEnd == first) {
     103        2767 :         answer.ec = std::errc::invalid_argument;
     104        2767 :         answer.ptr = pEnd;
     105        2767 :         return answer;
     106             :     }
     107             :     if constexpr (std::is_same_v<T, int>) {
     108     3461828 :         if (ret_val > std::numeric_limits<int>::max()) {
     109         334 :             answer.ec = std::errc::result_out_of_range;
     110         334 :             answer.ptr = pEnd;
     111         334 :             value = 0;
     112         334 :             return answer;
     113             :         }
     114             :     }
     115             : 
     116     3461494 :     answer.ptr = pEnd;
     117     3461494 :     answer.ec = std::errc();
     118     3461494 :     value = ret_val;
     119     3461494 :     return answer;
     120             : #endif
     121             : }
     122             : 
     123             : } // namespace FromChars
     124             : 
     125             : #endif // FromChars_hh_INCLUDED

Generated by: LCOV version 1.13