KiCad PCB EDA Suite
Loading...
Searching...
No Matches
pcb_io_altium_designer.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2019 Thomas Pointhuber <[email protected]>
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef PCB_IO_ALTIUM_DESIGNER_H_
26#define PCB_IO_ALTIUM_DESIGNER_H_
27
28#include <pcb_io/pcb_io.h>
29#include <pcb_io/pcb_io_mgr.h>
31
32#include <map>
33#include <memory>
34#include <vector>
35
37class BOARD;
39
45 const std::vector<ALTIUM_PROJECT_VARIANT>& aVariants );
46
47
49{
50public:
51 // -----<PUBLIC PCB_IO API>--------------------------------------------------
53 {
54 return IO_BASE::IO_FILE_DESC( _HKI( "Altium Designer PCB files" ), { "PcbDoc" } );
55 }
56
58 {
59 return IO_BASE::IO_FILE_DESC( _HKI( "Altium PCB Library or Integrated Library" ),
60 { "PcbLib", "IntLib" } );
61 }
62
63 bool CanReadBoard( const wxString& aFileName ) const override;
64 bool CanReadLibrary( const wxString& aFileName ) const override;
65
66 BOARD* LoadBoard( const wxString& aFileName, BOARD* aAppendToMe,
67 const std::map<std::string, UTF8>* aProperties, PROJECT* aProject = nullptr ) override;
68
69 long long GetLibraryTimestamp( const wxString& aLibraryPath ) const override;
70
71 void FootprintEnumerate( wxArrayString& aFootprintNames, const wxString& aLibraryPath,
72 bool aBestEfforts, const std::map<std::string, UTF8>* aProperties = nullptr ) override;
73
74 FOOTPRINT* FootprintLoad( const wxString& aLibraryPath, const wxString& aFootprintName,
75 bool aKeepUUID = false,
76 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
77
78 std::vector<FOOTPRINT*> GetImportedCachedLibraryFootprints() override;
79
80 //bool FootprintExists( const wxString& aLibraryPath, const wxString& aFootprintName, const PROPERTIES* aProperties = nullptr );
81
82 bool IsLibraryWritable( const wxString& aLibraryPath ) override { return false; }
83
84 // -----</PUBLIC PCB_IO API>-------------------------------------------------
85
88
89 static bool checkFileHeader( const wxString& aFileName );
90
97 static std::map<wxString, PCB_LAYER_ID> DefaultLayerMappingCallback(
98 const std::vector<INPUT_LAYER_DESC>& aInputLayerDescriptionVector );
99
100private:
102 {
103 std::vector<std::unique_ptr<ALTIUM_PCB_COMPOUND_FILE>> m_Files;
104 long long m_Timestamp;
105 };
106
107 std::map<wxString, ALTIUM_FILE_CACHE> m_fplibFiles;
108
109 void loadAltiumLibrary( const wxString& aLibraryPath );
110};
111
112#endif // PCB_IO_ALTIUM_DESIGNER_H_
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
Plugin class for import plugins that support remappable layers.
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
FOOTPRINT * FootprintLoad(const wxString &aLibraryPath, const wxString &aFootprintName, bool aKeepUUID=false, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Load a footprint having aFootprintName from the aLibraryPath containing a library format that this PC...
void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aLibraryPath, bool aBestEfforts, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Return a list of footprint names contained within the library at aLibraryPath.
std::vector< FOOTPRINT * > GetImportedCachedLibraryFootprints() override
Return a container with the cached library footprints generated in the last call to Load.
static bool checkFileHeader(const wxString &aFileName)
const IO_BASE::IO_FILE_DESC GetBoardFileDesc() const override
Returns board file description for the PCB_IO.
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
void loadAltiumLibrary(const wxString &aLibraryPath)
static std::map< wxString, PCB_LAYER_ID > DefaultLayerMappingCallback(const std::vector< INPUT_LAYER_DESC > &aInputLayerDescriptionVector)
Return the automapped layers.
bool IsLibraryWritable(const wxString &aLibraryPath) override
Return true if the library at aLibraryPath is writable.
std::map< wxString, ALTIUM_FILE_CACHE > m_fplibFiles
BOARD * LoadBoard(const wxString &aFileName, BOARD *aAppendToMe, const std::map< std::string, UTF8 > *aProperties, PROJECT *aProject=nullptr) override
Load information from some input file format that this PCB_IO implementation knows about into either ...
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
Get the descriptor for the library container that this IO plugin operates on.
bool CanReadLibrary(const wxString &aFileName) const override
Checks if this IO object can read the specified library file/directory.
PCB_IO(const wxString &aName)
Definition pcb_io.h:337
Container for project specific data.
Definition project.h:65
#define _HKI(x)
Definition page_info.cpp:44
void ApplyAltiumProjectVariantsToBoard(BOARD *aBoard, const std::vector< ALTIUM_PROJECT_VARIANT > &aVariants)
Apply parsed Altium project variants to a board by setting FOOTPRINT_VARIANT data on each footprint w...
A project-level assembly variant parsed from an Altium .PrjPcb file.
Container that describes file type info.
Definition io_base.h:43
std::vector< std::unique_ptr< ALTIUM_PCB_COMPOUND_FILE > > m_Files