KiCad PCB EDA Suite
Loading...
Searching...
No Matches
build_BOM_from_board.cpp
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) 2009-2014 Jean-Pierre Charras, [email protected]
5 * Copyright (C) 1992-2023 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/* build_BOM_from_board.cpp */
26
27
28#include <confirm.h>
29#include <macros.h>
30#include <string_utils.h>
31#include <pcb_edit_frame.h>
32#include <board.h>
33#include <project.h>
35#include <footprint.h>
36#include <wx/listimpl.cpp>
37#include <wx/filedlg.h>
38
39
40/* creates a BOM list from board
41 * The format is:
42 * "Id";"Designator";"Footprint";"Number";"Designation";"Supplier and ref";
43 * 1;"P1";"DB25FC";1;"DB25FEMELLE";;;
44 * 2;"U9";"PGA120";1;"4003APG120";;;
45 * 3;"JP1";"pin_array_8x2";1;"CONN_8X2";;;
46 * 4;"RR1";"r_pack9";1;"9x1K";;;
47 * 5;"X1";"HC-18UH";1;"8MHz";;;
48 * 6;"U8";"24dip300";1;"EP600";;;
49 * 7;"U5";"32dip600";1;"628128";;;
50 * 8;"C2,C3";"C1";2;"47pF";;;
51 * 9;"U1";"20dip300";1;"74LS245";;;
52 * 10;"U3";"20dip300";1;"74LS541";;;
53 * 11;"U2";"20dip300";1;"74LS688";;;
54 * 12;"C1,C4,C5,C6";"CP6";4;"47uF";;;
55 */
56
58{
59public:
60 wxString m_Ref;
61 wxString m_Val;
63 int m_Id;
65};
66
67WX_DECLARE_LIST( BOM_ENTRY, BOM_ENTRY_LIST );
68
69WX_DEFINE_LIST( BOM_ENTRY_LIST )
70
71
72void PCB_EDIT_FRAME::RecreateBOMFileFromBoard( wxCommandEvent& aEvent )
73{
74 wxFileName fn;
75 FILE* fp_bom;
76 wxString msg;
77
78 if( GetBoard()->Footprints().empty() )
79 {
80 ShowInfoBarError( _( "Cannot export BOM: there are no footprints on the PCB." ) );
81 return;
82 }
83
84 /* Set the file extension: */
85 fn = GetBoard()->GetFileName();
86 fn.SetExt( FILEEXT::CsvFileExtension );
87
88 wxString pro_dir = wxPathOnly( Prj().GetProjectFullName() );
89
90 wxFileDialog dlg( this, _( "Save Bill of Materials" ), pro_dir, fn.GetFullName(),
91 FILEEXT::CsvFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
92
93 if( dlg.ShowModal() == wxID_CANCEL )
94 return;
95
96 fn = dlg.GetPath();
97
98 fp_bom = wxFopen( fn.GetFullPath(), wxT( "wt" ) );
99
100 if( fp_bom == nullptr )
101 {
102 msg.Printf( _( "Failed to create file '%s'." ), fn.GetFullPath() );
103 DisplayError( this, msg );
104 return;
105 }
106
107 // Write header:
108 msg = wxT( "\"" );
109 msg << _( "Id" ) << wxT( "\";\"" );
110 msg << _( "Designator" ) << wxT( "\";\"" );
111 msg << _( "Footprint" ) << wxT( "\";\"" );
112 msg << _( "Quantity" ) << wxT( "\";\"" );
113 msg << _( "Designation" ) << wxT( "\";\"" );
114 msg << _( "Supplier and ref" ) << wxT( "\";\n" );
115 fprintf( fp_bom, "%s", TO_UTF8( msg ) );
116
117 // Build list
118 BOM_ENTRY_LIST list;
119 int i = 1;
120
121 for( FOOTPRINT* footprint : GetBoard()->Footprints() )
122 {
123 if( footprint->GetAttributes() & FP_EXCLUDE_FROM_BOM )
124 continue;
125
126 bool valExist = false;
127
128 // try to find component in existing list
129 for( auto iter = list.begin(); iter != list.end(); ++iter )
130 {
131 BOM_ENTRY* curEntry = *iter;
132
133 if( curEntry->m_Val == footprint->GetValue()
134 && curEntry->m_FPID == footprint->GetFPID() )
135 {
136 curEntry->m_Ref.Append( wxT( ", " ), 1 );
137 curEntry->m_Ref.Append( footprint->Reference().GetShownText( false ) );
138 curEntry->m_Count++;
139
140 valExist = true;
141 break;
142 }
143 }
144
145 // If component does not exist yet, create new one and append it to the list.
146 if( valExist == false )
147 {
148 BOM_ENTRY* newEntry = new BOM_ENTRY();
149 newEntry->m_Id = i++;
150 newEntry->m_Val = footprint->Value().GetShownText( false );
151 newEntry->m_Ref = footprint->Reference().GetShownText( false );
152 newEntry->m_FPID = footprint->GetFPID();
153 newEntry->m_Count = 1;
154 list.Append( newEntry );
155 }
156 }
157
158 // Print list. Also delete temporary created objects.
159 for( size_t ii = list.GetCount(); ii > 0; ii-- )
160 {
161 BOM_ENTRY* curEntry = *list.begin(); // Because the first object will be removed
162 // from list, all objects will be get here
163
164 msg.Empty();
165
166 msg << curEntry->m_Id << wxT( ";\"" );
167 msg << curEntry->m_Ref << wxT( "\";\"" );
168 msg << From_UTF8( curEntry->m_FPID.GetLibItemName().c_str() ) << wxT( "\";" );
169 msg << curEntry->m_Count << wxT( ";\"" );
170 msg << curEntry->m_Val << wxT( "\";;;\n" );
171 fprintf( fp_bom, "%s", TO_UTF8( msg ) );
172
173 // We do not need this object, now: remove it from list and delete it
174 list.DeleteObject( curEntry );
175 delete curEntry;
176 }
177
178 fclose( fp_bom );
179}
WX_DECLARE_LIST(BOM_ENTRY, BOM_ENTRY_LIST)
const wxString & GetFileName() const
Definition: board.h:319
wxString m_Val
int m_Id
wxString m_Ref
LIB_ID m_FPID
int m_Count
A logical library item identifier and consists of various portions much like a URI.
Definition: lib_id.h:49
const UTF8 & GetLibItemName() const
Definition: lib_id.h:102
The main frame for Pcbnew.
const char * c_str() const
Definition: utf8.h:103
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
Definition: confirm.cpp:161
This file is part of the common library.
static bool empty(const wxTextEntryBase *aCtrl)
#define _(s)
@ FP_EXCLUDE_FROM_BOM
Definition: footprint.h:75
static const std::string CsvFileExtension
static wxString CsvFileWildcard()
PROJECT & Prj()
Definition: kicad.cpp:595
This file contains miscellaneous commonly used macros and functions.
BOARD * GetBoard()
wxString From_UTF8(const char *cstring)
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
Definition: string_utils.h:391
Definition of file extensions used in Kicad.