2023-09-19 01:09:21 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2023 Andre F. K. Iwers <iwers11@gmail.com>
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
#ifndef SCH_IO_HTTP_LIB_H
|
|
|
|
#define SCH_IO_HTTP_LIB_H
|
2023-09-19 01:09:21 +00:00
|
|
|
|
|
|
|
#include "http_lib/http_lib_settings.h"
|
|
|
|
#include <http_lib/http_lib_connection.h>
|
|
|
|
|
2023-12-19 17:39:26 +00:00
|
|
|
#include <sch_io/sch_io.h>
|
|
|
|
#include <sch_io/sch_io_mgr.h>
|
2023-09-19 01:09:21 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A KiCad HTTP library provides both symbol and footprint metadata, so there are "shim" plugins
|
|
|
|
* on both the symbol and footprint side of things that expose the database contents to the
|
|
|
|
* schematic and board editors. The architecture of these is slightly different from the other
|
|
|
|
* plugins because the backing file is just a configuration file rather than something that
|
|
|
|
* contains symbol or footprint data.
|
|
|
|
*/
|
2023-12-24 00:31:24 +00:00
|
|
|
class SCH_IO_HTTP_LIB : public SCH_IO
|
2023-09-19 01:09:21 +00:00
|
|
|
{
|
|
|
|
public:
|
2023-12-24 00:31:24 +00:00
|
|
|
SCH_IO_HTTP_LIB();
|
|
|
|
virtual ~SCH_IO_HTTP_LIB();
|
2023-09-19 01:09:21 +00:00
|
|
|
|
2023-12-27 16:34:59 +00:00
|
|
|
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
|
2023-09-19 01:09:21 +00:00
|
|
|
{
|
2023-12-27 16:34:59 +00:00
|
|
|
return IO_BASE::IO_FILE_DESC( _HKI( "KiCad HTTP library files" ),
|
2023-12-28 02:10:01 +00:00
|
|
|
{ FILEEXT::HTTPLibraryFileExtension } );
|
2023-09-19 01:09:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int GetModifyHash() const override { return 0; }
|
|
|
|
|
2024-02-05 12:11:01 +00:00
|
|
|
void EnumerateSymbolLib( wxArrayString& aSymbolNameList, const wxString& aLibraryPath,
|
2023-09-19 01:09:21 +00:00
|
|
|
const STRING_UTF8_MAP* aProperties = nullptr ) override;
|
|
|
|
|
2024-02-05 12:11:01 +00:00
|
|
|
void EnumerateSymbolLib( std::vector<LIB_SYMBOL*>& aSymbolList, const wxString& aLibraryPath,
|
2023-09-19 01:09:21 +00:00
|
|
|
const STRING_UTF8_MAP* aProperties = nullptr ) override;
|
|
|
|
|
|
|
|
LIB_SYMBOL* LoadSymbol( const wxString& aLibraryPath, const wxString& aAliasName,
|
|
|
|
const STRING_UTF8_MAP* aProperties = nullptr ) override;
|
|
|
|
|
|
|
|
bool SupportsSubLibraries() const override { return true; }
|
|
|
|
|
|
|
|
void GetSubLibraryNames( std::vector<wxString>& aNames ) override;
|
|
|
|
|
2024-04-30 11:57:00 +00:00
|
|
|
wxString GetSubLibraryDescription( const wxString& aName ) override;
|
|
|
|
|
2023-09-19 01:09:21 +00:00
|
|
|
void GetAvailableSymbolFields( std::vector<wxString>& aNames ) override;
|
|
|
|
|
|
|
|
void GetDefaultSymbolFields( std::vector<wxString>& aNames ) override;
|
|
|
|
|
2024-02-05 12:11:01 +00:00
|
|
|
bool IsLibraryWritable( const wxString& aLibraryPath ) override { return false; }
|
2023-09-19 01:09:21 +00:00
|
|
|
|
2024-02-05 12:11:01 +00:00
|
|
|
void SetLibTable( SYMBOL_LIB_TABLE* aTable ) override { m_libTable = aTable; }
|
2023-09-19 01:09:21 +00:00
|
|
|
|
|
|
|
HTTP_LIB_SETTINGS* Settings() const { return m_settings.get(); }
|
|
|
|
|
|
|
|
void SaveSymbol( const wxString& aLibraryPath, const LIB_SYMBOL* aSymbol,
|
|
|
|
const STRING_UTF8_MAP* aProperties = nullptr ) override;
|
|
|
|
|
2024-02-05 12:11:01 +00:00
|
|
|
const wxString& GetError() const override { return m_lastError; }
|
|
|
|
|
2023-09-19 01:09:21 +00:00
|
|
|
private:
|
|
|
|
void ensureSettings( const wxString& aSettingsPath );
|
|
|
|
|
|
|
|
void ensureConnection();
|
|
|
|
|
|
|
|
void connect();
|
|
|
|
|
2024-04-25 00:42:13 +00:00
|
|
|
void syncCache();
|
|
|
|
|
|
|
|
void syncCache( const HTTP_LIB_CATEGORY& category );
|
|
|
|
|
|
|
|
LIB_SYMBOL* loadSymbolFromPart( const wxString& aSymbolName, const HTTP_LIB_CATEGORY& aCategory,
|
2023-09-19 01:09:21 +00:00
|
|
|
const HTTP_LIB_PART& aPart );
|
|
|
|
|
|
|
|
SYMBOL_LIB_TABLE* m_libTable;
|
|
|
|
|
2024-04-25 00:42:13 +00:00
|
|
|
/// Generally will be null if no valid connection is established
|
2023-09-19 01:09:21 +00:00
|
|
|
std::unique_ptr<HTTP_LIB_CONNECTION> m_conn;
|
|
|
|
|
|
|
|
std::unique_ptr<HTTP_LIB_SETTINGS> m_settings;
|
|
|
|
|
|
|
|
std::set<wxString> m_customFields;
|
|
|
|
|
|
|
|
std::set<wxString> m_defaultShownFields;
|
|
|
|
|
|
|
|
wxString m_lastError;
|
|
|
|
|
2023-09-27 00:38:25 +00:00
|
|
|
wxString symbol_field = "symbol";
|
|
|
|
wxString footprint_field = "footprint";
|
|
|
|
wxString description_field = "description";
|
|
|
|
wxString keywords_field = "keywords";
|
|
|
|
wxString value_field = "value";
|
|
|
|
wxString datasheet_field = "datasheet";
|
|
|
|
wxString reference_field = "reference";
|
2023-09-19 01:09:21 +00:00
|
|
|
|
2024-04-25 00:42:13 +00:00
|
|
|
// category.id category
|
2024-01-23 01:23:49 +00:00
|
|
|
std::map<std::string, HTTP_LIB_CATEGORY> m_cachedCategories;
|
2023-09-19 01:09:21 +00:00
|
|
|
};
|
|
|
|
|
2023-12-24 00:31:24 +00:00
|
|
|
#endif // SCH_IO_HTTP_LIB_H_
|