2022-05-29 19:29:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2022 Jon Evans <jon@craftyjon.com>
|
|
|
|
* 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 <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
#include <database/database_lib_settings.h>
|
|
|
|
#include <settings/parameters.h>
|
|
|
|
#include <wildcards_and_files_ext.h>
|
|
|
|
|
|
|
|
|
2022-11-09 03:18:29 +00:00
|
|
|
const int dblibSchemaVersion = 1;
|
2022-05-29 19:29:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
DATABASE_LIB_SETTINGS::DATABASE_LIB_SETTINGS( const std::string& aFilename ) :
|
|
|
|
JSON_SETTINGS( aFilename, SETTINGS_LOC::NONE, dblibSchemaVersion )
|
|
|
|
{
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<std::string>( "source.dsn", &m_Source.dsn, "" ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<std::string>( "source.username", &m_Source.username, "" ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<std::string>( "source.password", &m_Source.password, "" ) );
|
|
|
|
|
|
|
|
m_params.emplace_back(
|
|
|
|
new PARAM<std::string>( "source.connection_string", &m_Source.connection_string, "" ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "source.timeout_seconds", &m_Source.timeout, 2 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM_LAMBDA<nlohmann::json>(
|
2022-11-09 03:18:29 +00:00
|
|
|
"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 )
|
2022-05-29 19:29:32 +00:00
|
|
|
{
|
2022-11-09 03:18:29 +00:00
|
|
|
if( entry.empty() || !entry.is_object() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
DATABASE_LIB_TABLE table;
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2022-11-09 03:18:29 +00:00
|
|
|
table.name = entry["name"].get<std::string>();
|
|
|
|
table.table = entry["table"].get<std::string>();
|
|
|
|
table.key_col = entry["key"].get<std::string>();
|
|
|
|
table.symbols_col = entry["symbols"].get<std::string>();
|
|
|
|
table.footprints_col = entry["footprints"].get<std::string>();
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2023-06-28 23:37:50 +00:00
|
|
|
// Sanitize library display names; currently only `/` is removed because we use it
|
|
|
|
// as a separator and allow it in symbol names.
|
|
|
|
table.name.erase( std::remove( table.name.begin(), table.name.end(), '/' ),
|
|
|
|
table.name.end() );
|
|
|
|
|
2022-11-09 03:18:29 +00:00
|
|
|
if( entry.contains( "properties" ) && entry["properties"].is_object() )
|
2022-05-29 19:29:32 +00:00
|
|
|
{
|
2022-11-09 03:18:29 +00:00
|
|
|
const nlohmann::json& pj = entry["properties"];
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2022-11-10 02:24:31 +00:00
|
|
|
table.properties.description = fetchOrDefault<std::string>( pj, "description" );
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2022-11-10 02:24:31 +00:00
|
|
|
table.properties.footprint_filters =
|
|
|
|
fetchOrDefault<std::string>( pj, "footprint_filters" );
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2022-11-10 02:24:31 +00:00
|
|
|
table.properties.keywords = fetchOrDefault<std::string>( pj, "keywords" );
|
2022-11-10 01:50:01 +00:00
|
|
|
|
2022-11-10 02:24:31 +00:00
|
|
|
table.properties.exclude_from_bom =
|
|
|
|
fetchOrDefault<std::string>( pj, "exclude_from_bom" );
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2022-11-10 02:24:31 +00:00
|
|
|
table.properties.exclude_from_board =
|
|
|
|
fetchOrDefault<std::string>( pj, "exclude_from_board" );
|
2022-11-09 03:18:29 +00:00
|
|
|
}
|
2022-09-04 17:00:28 +00:00
|
|
|
|
2022-11-09 03:18:29 +00:00
|
|
|
if( entry.contains( "fields" ) && entry["fields"].is_array() )
|
|
|
|
{
|
|
|
|
for( const nlohmann::json& fieldJson : entry["fields"] )
|
|
|
|
{
|
|
|
|
if( fieldJson.empty() || !fieldJson.is_object() )
|
|
|
|
continue;
|
2022-09-04 17:00:28 +00:00
|
|
|
|
2022-11-10 02:24:31 +00:00
|
|
|
std::string column = fetchOrDefault<std::string>( fieldJson, "column" );
|
|
|
|
std::string name = fetchOrDefault<std::string>( fieldJson, "name" );
|
|
|
|
bool visible_on_add = fetchOrDefault<bool>( fieldJson, "visible_on_add" );
|
2022-11-09 03:18:29 +00:00
|
|
|
bool visible_in_chooser =
|
2022-11-10 02:24:31 +00:00
|
|
|
fetchOrDefault<bool>( fieldJson, "visible_in_chooser" );
|
|
|
|
bool show_name = fetchOrDefault<bool>( fieldJson, "show_name" );
|
|
|
|
bool inherit = fetchOrDefault<bool>( fieldJson, "inherit_properties" );
|
2022-05-29 19:29:32 +00:00
|
|
|
|
2022-11-09 03:18:29 +00:00
|
|
|
table.fields.emplace_back(
|
|
|
|
DATABASE_FIELD_MAPPING(
|
|
|
|
{
|
2022-11-10 02:24:31 +00:00
|
|
|
column, name, visible_on_add, visible_in_chooser, show_name,
|
|
|
|
inherit
|
2022-11-09 03:18:29 +00:00
|
|
|
} ) );
|
|
|
|
}
|
2022-05-29 19:29:32 +00:00
|
|
|
}
|
2022-11-09 03:18:29 +00:00
|
|
|
|
|
|
|
m_Tables.emplace_back( std::move( table ) );
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{} ) );
|
2022-08-31 02:18:21 +00:00
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "cache.max_size", &m_Cache.max_size, 256 ) );
|
|
|
|
|
|
|
|
m_params.emplace_back( new PARAM<int>( "cache.max_age", &m_Cache.max_age, 10 ) );
|
2022-11-09 03:18:29 +00:00
|
|
|
|
|
|
|
registerMigration( 0, 1,
|
|
|
|
[&]() -> bool
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Schema 0 -> 1
|
|
|
|
* Move internal symbol properties from fields with special names to
|
|
|
|
* a separate place in the schema.
|
|
|
|
*/
|
|
|
|
if( !Contains( "libraries" ) || !At( "libraries" ).is_array() )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for( nlohmann::json& library : At( "libraries" ) )
|
|
|
|
{
|
|
|
|
if( !library.contains( "fields" ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for( const nlohmann::json& field : library["fields"] )
|
|
|
|
{
|
|
|
|
if( !field.contains( "name" ) || !field.contains( "column" ) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::string name = field["name"].get<std::string>();
|
|
|
|
std::string col = field["column"].get<std::string>();
|
|
|
|
|
|
|
|
if( name == "ki_description" )
|
|
|
|
library["properties"]["description"] = col;
|
|
|
|
else if( name == "ki_fp_filters" )
|
|
|
|
library["properties"]["footprint_filters"] = col;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
} );
|
2022-05-29 19:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString DATABASE_LIB_SETTINGS::getFileExt() const
|
|
|
|
{
|
2023-12-28 02:10:01 +00:00
|
|
|
return FILEEXT::DatabaseLibraryFileExtension;
|
2022-05-29 19:29:32 +00:00
|
|
|
}
|