/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2022 Jon Evans * 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 2 * 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: * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * or you may search the http://www.gnu.org website for the version 2 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 const int dblibSchemaVersion = 0; DATABASE_LIB_SETTINGS::DATABASE_LIB_SETTINGS( const std::string& aFilename ) : JSON_SETTINGS( aFilename, SETTINGS_LOC::NONE, dblibSchemaVersion ) { m_params.emplace_back( new PARAM( "source.dsn", &m_Source.dsn, "" ) ); m_params.emplace_back( new PARAM( "source.username", &m_Source.username, "" ) ); m_params.emplace_back( new PARAM( "source.password", &m_Source.password, "" ) ); m_params.emplace_back( new PARAM( "source.connection_string", &m_Source.connection_string, "" ) ); m_params.emplace_back( new PARAM( "source.timeout_seconds", &m_Source.timeout, 2 ) ); m_params.emplace_back( new PARAM_LAMBDA( "libraries", [&]() -> nlohmann::json { // TODO: implement this; libraries are read-only from KiCad at the moment return {}; }, [&]( const nlohmann::json aObj ) { m_Tables.clear(); if( !aObj.is_array() ) return; for( const nlohmann::json& entry : aObj ) { if( entry.empty() || !entry.is_object() ) continue; DATABASE_LIB_TABLE table; table.name = entry["name"].get(); table.table = entry["table"].get(); table.key_col = entry["key"].get(); table.symbols_col = entry["symbols"].get(); table.footprints_col = entry["footprints"].get(); if( entry.contains( "fields" ) && entry["fields"].is_array() ) { for( const nlohmann::json& fieldJson : entry["fields"] ) { if( fieldJson.empty() || !fieldJson.is_object() ) continue; std::string column = fieldJson.contains( "column" ) ? fieldJson["column"].get() : ""; std::string name = fieldJson.contains( "name" ) ? fieldJson["name"].get() : ""; bool visible_on_add = !fieldJson.contains( "visible_on_add" ) || fieldJson["visible_on_add"].get(); bool visible_in_chooser = !fieldJson.contains( "visible_in_chooser" ) || fieldJson["visible_in_chooser"].get(); bool show_name = fieldJson.contains( "show_name" ) && fieldJson["show_name"].get(); table.fields.emplace_back( DATABASE_FIELD_MAPPING( { column, name, visible_on_add, visible_in_chooser, show_name } ) ); } } m_Tables.emplace_back( std::move( table ) ); } }, {} ) ); m_params.emplace_back( new PARAM( "cache.max_size", &m_Cache.max_size, 256 ) ); m_params.emplace_back( new PARAM( "cache.max_age", &m_Cache.max_age, 10 ) ); } wxString DATABASE_LIB_SETTINGS::getFileExt() const { return DatabaseLibraryFileExtension; }