/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2022 Mikolaj Wielgus * Copyright (C) 2022-2023 KiCad Developers, see AUTHORS.txt for contributors. * * 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; either version 3 * of the License, or (at your option) any later version. * * 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, you may find one here: * https://www.gnu.org/licenses/gpl-3.0.html * or you may search the http://www.gnu.org website for the version 3 license, * or you may write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */ #ifndef SIM_VALUE_H #define SIM_VALUE_H #include #include #include #include #include // Undef some annoying defines in windows headers added by pegtl.hpp // that can create issues in .cpp files, mainly on msys2 #if defined (__MINGW32__) #if defined ( LoadLibrary ) #undef LoadLibrary #endif #if defined ( GetClassInfo ) #undef GetClassInfo #endif #endif namespace SIM_VALUE_GRAMMAR { using namespace tao::pegtl; enum class NOTATION { SI, SPICE }; } class SIM_VALUE { public: using NOTATION = SIM_VALUE_GRAMMAR::NOTATION; // Names like BOOL, INT, FLOAT need to be prefixed or MS Windows compilers will complain (enum // class doesn't help). enum TYPE { TYPE_BOOL, TYPE_INT, TYPE_FLOAT, TYPE_COMPLEX, TYPE_STRING, TYPE_BOOL_VECTOR, TYPE_INT_VECTOR, TYPE_FLOAT_VECTOR, TYPE_COMPLEX_VECTOR }; static std::string ConvertNotation( const std::string& aString, NOTATION aFromNotation, NOTATION aToNotation ); static std::string Normalize( double aValue ); static std::string ToSpice( const std::string& aString ) { return ConvertNotation( aString, NOTATION::SI, NOTATION::SPICE ); } static double ToDouble( const std::string& aString, double aDefault = NAN ); static int ToInt( const std::string& aString, int aDefault = -1 ); static bool Equal( double aLH, const std::string& aRH ); }; namespace SIM_VALUE_GRAMMAR { template std::string allowedIntChars; struct digits : plus {}; // For some reason it fails on just "digit". struct sign : one<'+', '-'> {}; struct intPart : seq, digits> {}; //struct fracPartPrefix : one<'.'> {}; struct fracPart : digits {}; //struct fracPartWithPrefix : seq {}; template struct significand; template <> struct significand : sor, fracPart>, seq>, intPart, seq, fracPart>, one<'.'>, one<'-'>> {}; template <> struct significand : intPart {}; struct exponentPrefix : one<'e', 'E'> {}; struct exponent : seq, opt> {}; struct exponentWithPrefix : seq {}; template struct unitPrefix; template <> struct unitPrefix : one<'k', 'K', 'M', 'G', 'T', 'P', 'E'> {}; template <> struct unitPrefix : sor {}; template <> struct unitPrefix : one<'a', 'f', 'p', 'n', 'u', 'm', 'k', 'K', 'M', 'G', 'T', 'P', 'E'> {}; template <> struct unitPrefix : sor {}; template struct garbageSuffix; template <> struct garbageSuffix : seq<> {}; template <> struct garbageSuffix : star {}; template struct number : seq>, opt, opt>, garbageSuffix> {}; template struct numberGrammar : must, tao::pegtl::eof> {}; bool IsValid( const std::string& aString, SIM_VALUE::TYPE aValueType = SIM_VALUE::TYPE_FLOAT, NOTATION aNotation = NOTATION::SI ); } #endif // SIM_VALUE_H