KiCad PCB EDA Suite
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
pcb_io_odbpp.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 The KiCad Developers, see AUTHORS.txt for contributors.
5 * Author: SYSUEric <jzzhuang666@gmail.com>.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21
22#ifndef _PCB_IO_ODBPP_H_
23#define _PCB_IO_ODBPP_H_
24
25#include <pcb_io/pcb_io.h>
26#include <pcb_io/pcb_io_mgr.h>
28
29#include <eda_shape.h>
30#include <layer_ids.h> // PCB_LAYER_ID
31#include <font/font.h>
33#include <stroke_params.h>
34#include <memory>
35#include "odb_entity.h"
36
37class BOARD;
38class BOARD_ITEM;
39class EDA_TEXT;
40class FOOTPRINT;
42class NETINFO_ITEM;
43class PAD;
44class PCB_SHAPE;
45class PCB_VIA;
47class SHAPE_POLY_SET;
48class SHAPE_SEGMENT;
49class EDA_DATA;
50
51
52class PCB_IO_ODBPP : public PCB_IO
53{
54public:
55 PCB_IO_ODBPP() : PCB_IO( wxS( "ODBPlusPlus" ) ) { m_board = nullptr; }
56
57 ~PCB_IO_ODBPP() override;
58
59 void SaveBoard( const wxString& aFileName, BOARD* aBoard,
60 const std::map<std::string, UTF8>* aProperties = nullptr ) override;
61
63 {
64 return IO_BASE::IO_FILE_DESC( _HKI( "ODB++ Production File" ), { "ZIP" }, {}, true, false, true );
65 }
66
68 {
69 // No library description for this plugin
70 return IO_BASE::IO_FILE_DESC( wxEmptyString, {} );
71 }
72
73
74 std::vector<FOOTPRINT*> GetImportedCachedLibraryFootprints() override;
75
76 long long GetLibraryTimestamp( const wxString& aLibraryPath ) const override { return 0; }
77
78 // Reading currently disabled
79 bool CanReadBoard( const wxString& aFileName ) const override { return false; }
80
81 // Reading currently disabled
82 bool CanReadFootprint( const wxString& aFileName ) const override { return false; }
83
84 // Reading currently disabled
85 bool CanReadLibrary( const wxString& aFileName ) const override { return false; }
86
87public:
88 inline std::vector<std::pair<PCB_LAYER_ID, wxString>>& GetLayerNameList()
89 {
90 return m_layer_name_list;
91 }
92
93 inline std::map<PCB_LAYER_ID, std::map<int, std::vector<BOARD_ITEM*>>>& GetLayerElementsMap()
94 {
95 return m_layer_elements;
96 }
97
98 inline std::vector<std::shared_ptr<FOOTPRINT>>& GetLoadedFootprintList()
99 {
100 return m_loaded_footprints;
101 }
102
103 inline std::map<std::pair<PCB_LAYER_ID, PCB_LAYER_ID>, std::vector<BOARD_ITEM*>>&
105 {
106 return m_drill_layers;
107 }
108
109 inline std::map<std::tuple<ODB_AUX_LAYER_TYPE, PCB_LAYER_ID, PCB_LAYER_ID>,
110 std::vector<BOARD_ITEM*>>&
112 {
113 return m_auxilliary_layers;
114 }
115
116 inline std::map<std::pair<PCB_LAYER_ID, PCB_LAYER_ID>, std::vector<BOARD_ITEM*>>&
118 {
119 return m_slot_holes;
120 }
121
122 inline std::map<const PAD*, EDA_DATA::SUB_NET_TOEPRINT*>& GetPadSubnetMap()
123 {
124 return m_topeprint_subnets;
125 }
126
127 inline std::map<std::pair<PCB_LAYER_ID, ZONE*>, EDA_DATA::SUB_NET_PLANE*>& GetPlaneSubnetMap()
128 {
129 return m_plane_subnets;
130 }
131
132 inline std::map<PCB_TRACK*, EDA_DATA::SUB_NET*>& GetViaTraceSubnetMap()
133 {
134 return m_via_trace_subnets;
135 }
136
137
138 std::shared_ptr<ODB_TREE_WRITER> m_writer;
139
140 bool GenerateFiles( ODB_TREE_WRITER& writer );
141 bool ExportODB( const wxString& aFileName );
142 void CreateEntity();
143
145
146 // Frees the memory allocated for the loaded footprints in #m_loaded_footprints.
148
149 static double m_scale;
150 static double m_symbolScale;
151 static int m_sigfig;
152 static std::string m_unitsStr;
153
154private:
155 template <typename T, typename... Args>
156 void Make( Args&&... args )
157 {
158 std::shared_ptr<ODB_ENTITY_BASE> entity =
159 std::make_shared<T>( std::forward<Args>( args )... );
160
161 if( entity )
162 m_entities.push_back( entity );
163 }
164
166
167 std::vector<std::shared_ptr<FOOTPRINT>> m_loaded_footprints;
168
169 std::vector<std::pair<PCB_LAYER_ID, wxString>>
170 m_layer_name_list; //<! layer name in matrix entity to the internal layer id
171
172 std::map<std::pair<PCB_LAYER_ID, PCB_LAYER_ID>, std::vector<BOARD_ITEM*>>
173 m_drill_layers; //<! Drill sets are output as layers (to/from pairs)
174
175 std::map<std::tuple<ODB_AUX_LAYER_TYPE, PCB_LAYER_ID, PCB_LAYER_ID>, std::vector<BOARD_ITEM*>>
176 m_auxilliary_layers; //<! Auxilliary layers, from/to pairs or simple (depending on type)
177
178 std::map<std::pair<PCB_LAYER_ID, PCB_LAYER_ID>, std::vector<BOARD_ITEM*>>
179 m_slot_holes; //<! Storage vector of slotted holes that need to be output as cutouts
180
181 std::map<PCB_LAYER_ID, std::map<int, std::vector<BOARD_ITEM*>>>
182 m_layer_elements; //<! Storage map of layer to element list
183
184 std::map<const PAD*, EDA_DATA::SUB_NET_TOEPRINT*> m_topeprint_subnets;
185
186 std::map<std::pair<PCB_LAYER_ID, ZONE*>, EDA_DATA::SUB_NET_PLANE*> m_plane_subnets;
187
188 std::map<PCB_TRACK*, EDA_DATA::SUB_NET*> m_via_trace_subnets;
189
190 std::vector<std::shared_ptr<ODB_ENTITY_BASE>> m_entities;
191};
192
193#endif // _PCB_IO_ODBPP_H_
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition: board_item.h:78
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:297
A mix-in class (via multiple inheritance) that handles texts such as labels, parts,...
Definition: eda_text.h:80
Handle the data for a net.
Definition: netinfo.h:56
Definition: pad.h:54
std::map< std::pair< PCB_LAYER_ID, ZONE * >, EDA_DATA::SUB_NET_PLANE * > & GetPlaneSubnetMap()
Definition: pcb_io_odbpp.h:127
static int m_sigfig
Definition: pcb_io_odbpp.h:151
BOARD * m_board
Definition: pcb_io_odbpp.h:165
std::map< PCB_TRACK *, EDA_DATA::SUB_NET * > & GetViaTraceSubnetMap()
Definition: pcb_io_odbpp.h:132
std::shared_ptr< ODB_TREE_WRITER > m_writer
Definition: pcb_io_odbpp.h:138
~PCB_IO_ODBPP() override
bool CanReadBoard(const wxString &aFileName) const override
Checks if this PCB_IO can read the specified board file.
Definition: pcb_io_odbpp.h:79
std::vector< FOOTPRINT * > GetImportedCachedLibraryFootprints() override
Return a container with the cached library footprints generated in the last call to Load.
void ClearLoadedFootprints()
void Make(Args &&... args)
Definition: pcb_io_odbpp.h:156
std::vector< std::shared_ptr< FOOTPRINT > > & GetLoadedFootprintList()
Definition: pcb_io_odbpp.h:98
std::map< std::pair< PCB_LAYER_ID, ZONE * >, EDA_DATA::SUB_NET_PLANE * > m_plane_subnets
Definition: pcb_io_odbpp.h:186
bool CanReadFootprint(const wxString &aFileName) const override
Checks if this PCB_IO can read a footprint from specified file or directory.
Definition: pcb_io_odbpp.h:82
std::map< std::tuple< ODB_AUX_LAYER_TYPE, PCB_LAYER_ID, PCB_LAYER_ID >, std::vector< BOARD_ITEM * > > m_auxilliary_layers
Definition: pcb_io_odbpp.h:176
std::map< std::pair< PCB_LAYER_ID, PCB_LAYER_ID >, std::vector< BOARD_ITEM * > > m_drill_layers
Definition: pcb_io_odbpp.h:173
void CreateEntity()
std::vector< std::pair< PCB_LAYER_ID, wxString > > & GetLayerNameList()
Definition: pcb_io_odbpp.h:88
bool ExportODB(const wxString &aFileName)
static double m_symbolScale
Definition: pcb_io_odbpp.h:150
std::vector< std::shared_ptr< FOOTPRINT > > m_loaded_footprints
Definition: pcb_io_odbpp.h:167
std::map< std::pair< PCB_LAYER_ID, PCB_LAYER_ID >, std::vector< BOARD_ITEM * > > & GetSlotHolesMap()
Definition: pcb_io_odbpp.h:117
std::map< const PAD *, EDA_DATA::SUB_NET_TOEPRINT * > & GetPadSubnetMap()
Definition: pcb_io_odbpp.h:122
std::map< PCB_LAYER_ID, std::map< int, std::vector< BOARD_ITEM * > > > & GetLayerElementsMap()
Definition: pcb_io_odbpp.h:93
std::vector< std::pair< PCB_LAYER_ID, wxString > > m_layer_name_list
Definition: pcb_io_odbpp.h:170
const IO_BASE::IO_FILE_DESC GetBoardFileDesc() const override
Returns board file description for the PCB_IO.
Definition: pcb_io_odbpp.h:62
std::vector< std::shared_ptr< ODB_ENTITY_BASE > > m_entities
Definition: pcb_io_odbpp.h:190
void SaveBoard(const wxString &aFileName, BOARD *aBoard, const std::map< std::string, UTF8 > *aProperties=nullptr) override
Write aBoard to a storage file in a format that this PCB_IO implementation knows about or it can be u...
std::map< const PAD *, EDA_DATA::SUB_NET_TOEPRINT * > m_topeprint_subnets
Definition: pcb_io_odbpp.h:184
std::map< std::tuple< ODB_AUX_LAYER_TYPE, PCB_LAYER_ID, PCB_LAYER_ID >, std::vector< BOARD_ITEM * > > & GetAuxilliaryLayerItemsMap()
Definition: pcb_io_odbpp.h:111
std::map< std::pair< PCB_LAYER_ID, PCB_LAYER_ID >, std::vector< BOARD_ITEM * > > m_slot_holes
Definition: pcb_io_odbpp.h:179
const IO_BASE::IO_FILE_DESC GetLibraryDesc() const override
Get the descriptor for the library container that this IO plugin operates on.
Definition: pcb_io_odbpp.h:67
static std::string m_unitsStr
Definition: pcb_io_odbpp.h:152
static double m_scale
Definition: pcb_io_odbpp.h:149
std::map< PCB_LAYER_ID, std::map< int, std::vector< BOARD_ITEM * > > > m_layer_elements
Definition: pcb_io_odbpp.h:182
bool GenerateFiles(ODB_TREE_WRITER &writer)
std::map< PCB_TRACK *, EDA_DATA::SUB_NET * > m_via_trace_subnets
Definition: pcb_io_odbpp.h:188
bool CreateDirectories(ODB_TREE_WRITER &writer)
std::map< std::pair< PCB_LAYER_ID, PCB_LAYER_ID >, std::vector< BOARD_ITEM * > > & GetDrillLayerItemsMap()
Definition: pcb_io_odbpp.h:104
bool CanReadLibrary(const wxString &aFileName) const override
Checks if this IO object can read the specified library file/directory.
Definition: pcb_io_odbpp.h:85
long long GetLibraryTimestamp(const wxString &aLibraryPath) const override
Generate a timestamp representing all the files in the library (including the library directory).
Definition: pcb_io_odbpp.h:76
A base class that BOARD loading and saving plugins should derive from.
Definition: pcb_io.h:71
A progress reporter interface for use in multi-threaded environments.
Represent a set of closed polygons.
#define _HKI(x)
Container that describes file type info.
Definition: io_base.h:43