/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2022 Mikolaj Wielgus * Copyright (C) 2022 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 */ #include #include #include #include #include #include #include #include namespace SIM_MODEL_SPICE_PARSER { using namespace SPICE_GRAMMAR; template struct spiceUnitSelector : std::false_type {}; template <> struct spiceUnitSelector : std::true_type {}; template <> struct spiceUnitSelector : std::true_type {}; template <> struct spiceUnitSelector : std::true_type {}; template <> struct spiceUnitSelector : std::true_type {}; template <> struct spiceUnitSelector : std::true_type {}; template <> struct spiceUnitSelector : std::true_type {}; template <> struct spiceUnitSelector : std::true_type {}; } SIM_MODEL::TYPE SPICE_MODEL_PARSER::ReadType( const std::string& aSpiceCode ) { tao::pegtl::string_input<> in( aSpiceCode, "Spice_Code" ); std::unique_ptr root; try { root = tao::pegtl::parse_tree::parse ( in ); } catch( const tao::pegtl::parse_error& e ) { wxLogDebug( "%s", e.what() ); return SIM_MODEL::TYPE::NONE; } for( const auto& node : root->children ) { if( node->is_type() ) { std::string paramName; std::string typeString; std::string level; std::string version; for( const auto& subnode : node->children ) { if( subnode->is_type() ) { // Do nothing. } else if( subnode->is_type() ) { typeString = subnode->string(); SIM_MODEL::TYPE type = ReadTypeFromSpiceStrings( typeString ); if( type != SIM_MODEL::TYPE::RAWSPICE ) return type; } else if( subnode->is_type() ) { paramName = subnode->string(); } else if( subnode->is_type() ) { wxASSERT( paramName != "" ); if( paramName == "level" ) level = subnode->string(); else if( paramName == "version" ) version = subnode->string(); } else { wxFAIL_MSG( "Unhandled parse tree subnode" ); return SIM_MODEL::TYPE::NONE; } } // Type was not determined from Spice type string alone, so now we take `level` and // `version` variables into account too. This is suboptimal since we read the model // twice this way, and moreover the code is now somewhat duplicated. return ReadTypeFromSpiceStrings( typeString, level, version, false ); } else if( node->is_type() ) return SIM_MODEL::TYPE::SUBCKT; else { wxFAIL_MSG( "Unhandled parse tree node" ); return SIM_MODEL::TYPE::NONE; } } wxFAIL_MSG( "Could not derive type from Spice code" ); return SIM_MODEL::TYPE::NONE; } void SPICE_MODEL_PARSER::ReadModel( const SIM_LIBRARY_SPICE& aLibrary, const std::string& aSpiceCode ) { // The default behavior is to treat the Spice param=value pairs as the model parameters and // values (for many models the correspondence is not exact, so this function is overridden). tao::pegtl::string_input<> in( aSpiceCode, "Spice_Code" ); std::unique_ptr root; try { root = tao::pegtl::parse_tree::parse ( in ); } catch( tao::pegtl::parse_error& e ) { THROW_IO_ERROR( e.what() ); } for( const auto& node : root->children ) { if( node->is_type() ) { std::string modelName = node->children.at( 0 )->string(); std::string akoName = node->children.at( 1 )->string(); const SIM_MODEL* sourceModel = aLibrary.FindModel( modelName ); if( !sourceModel ) { THROW_IO_ERROR( wxString::Format( _( "Could not find model '%s' to copy for ako model '%s'" ), akoName, modelName ) ); } for( int i = 0; i < static_cast( sourceModel->GetParamCount() ); ++i ) m_model.SetParamValue( i, *sourceModel->GetParam( i ).value ); std::string paramName; for( const auto& subnode : node->children ) { if( subnode->is_type() ) { // Do nothing. } else if( subnode->is_type() ) { // Do nothing. } else if( subnode->is_type() ) { paramName = subnode->string(); } else if( subnode->is_type() ) { wxASSERT( paramName != "" ); if( !m_model.SetParamFromSpiceCode( paramName, subnode->string() ) ) { THROW_IO_ERROR( wxString::Format( _( "Failed to set parameter '%s' to '%s' in model '%s'" ), paramName, subnode->string(), modelName ) ); } } else { wxFAIL_MSG( "Unhandled parse tree subnode" ); } } } else if( node->is_type() ) { std::string modelName; std::string paramName; for( const auto& subnode : node->children ) { if( subnode->is_type() ) { modelName = subnode->string(); } else if( subnode->is_type() ) { // Do nothing. } else if( subnode->is_type() ) { paramName = subnode->string(); } else if( subnode->is_type() ) { wxASSERT( paramName != "" ); if( !m_model.SetParamFromSpiceCode( paramName, subnode->string() ) ) { THROW_IO_ERROR( wxString::Format( _( "Failed to set parameter '%s' to '%s' in model '%s'" ), paramName, subnode->string(), modelName ) ); } } else { wxFAIL_MSG( "Unhandled parse tree subnode" ); } } } else { wxFAIL_MSG( "Unhandled parse tree node" ); } } m_model.m_spiceCode = aSpiceCode; } SIM_MODEL::TYPE SPICE_MODEL_PARSER::ReadTypeFromSpiceStrings( const std::string& aTypeString, const std::string& aLevel, const std::string& aVersion, bool aSkipDefaultLevel ) { std::unique_ptr readLevel = SIM_VALUE::Create( SIM_VALUE::TYPE_INT, aLevel ); for( SIM_MODEL::TYPE type : SIM_MODEL::TYPE_ITERATOR() ) { std::string typePrefix = SIM_MODEL::SpiceInfo( type ).modelType; std::string level = SIM_MODEL::SpiceInfo( type ).level; std::string version = SIM_MODEL::SpiceInfo( type ).version; bool isDefaultLevel = SIM_MODEL::SpiceInfo( type ).isDefaultLevel; if( typePrefix == "" ) continue; // Check if `aTypeString` starts with `typePrefix`. if( boost::starts_with( boost::to_upper_copy( aTypeString ), typePrefix ) && ( level == readLevel->ToString() || ( !aSkipDefaultLevel && isDefaultLevel && aLevel == "" ) ) && version == aVersion ) { return type; } } // If the type string is not recognized, demote to a raw Spice element. This way the user won't // have an error if there is a type KiCad does not recognize. return SIM_MODEL::TYPE::RAWSPICE; } void SPICE_MODEL_PARSER::CopyModelFromLibrary( const SIM_LIBRARY_SPICE& aSourceLibrary, const std::string& aModelName ) { }