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 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/* 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>
37#include <wx/filedlg.h>
38#include <vector>
39
40
41/* creates a BOM list from board
42 * The format is:
43 * "Id";"Designator";"Footprint";"Number";"Designation";"Supplier and ref";
44 * 1;"P1";"DB25FC";1;"DB25FEMELLE";;;
45 * 2;"U9";"PGA120";1;"4003APG120";;;
46 * 3;"JP1";"pin_array_8x2";1;"CONN_8X2";;;
47 * 4;"RR1";"r_pack9";1;"9x1K";;;
48 * 5;"X1";"HC-18UH";1;"8MHz";;;
49 * 6;"U8";"24dip300";1;"EP600";;;
50 * 7;"U5";"32dip600";1;"628128";;;
51 * 8;"C2,C3";"C1";2;"47pF";;;
52 * 9;"U1";"20dip300";1;"74LS245";;;
53 * 10;"U3";"20dip300";1;"74LS541";;;
54 * 11;"U2";"20dip300";1;"74LS688";;;
55 * 12;"C1,C4,C5,C6";"CP6";4;"47uF";;;
56 */
57
59{
60public:
61 std::vector<wxString> m_Refs;
62 wxString m_Val;
65};
66
67
69{
70 BOARD* board = m_frame->GetBoard();
71 wxFileName fn;
72 FILE* fp_bom;
73
74 if( board->Footprints().empty() )
75 {
76 m_frame->ShowInfoBarError( _( "Cannot export BOM: there are no footprints on the PCB." ) );
77 return 0;
78 }
79
80 /* Set the file extension: */
81 fn = board->GetFileName();
82 fn.SetExt( FILEEXT::CsvFileExtension );
83
84 wxString pro_dir = wxPathOnly( m_frame->Prj().GetProjectFullName() );
85
86 wxFileDialog dlg( m_frame, _( "Save Bill of Materials" ), pro_dir, fn.GetFullName(),
87 FILEEXT::CsvFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
88
89 if( dlg.ShowModal() == wxID_CANCEL )
90 return 0;
91
92 fn = dlg.GetPath();
93
94 fp_bom = wxFopen( fn.GetFullPath(), wxT( "wt" ) );
95
96 if( fp_bom == nullptr )
97 {
98 DisplayError( m_frame, wxString::Format( _( "Failed to create file '%s'." ), fn.GetFullPath() ) );
99 return 0;
100 }
101
102 // Write header:
103 wxString msg = wxT( "\"" );
104 msg << _( "Id" ) << wxT( "\";\"" );
105 msg << _( "Designator" ) << wxT( "\";\"" );
106 msg << _( "Footprint" ) << wxT( "\";\"" );
107 msg << _( "Quantity" ) << wxT( "\";\"" );
108 msg << _( "Designation" ) << wxT( "\";\"" );
109 msg << _( "Supplier and ref" ) << wxT( "\";\n" );
110 fprintf( fp_bom, "%s", TO_UTF8( msg ) );
111
112 // Build list
113 std::vector<BOM_ENTRY> list;
114
115 for( FOOTPRINT* footprint : board->Footprints() )
116 {
117 if( footprint->GetAttributes() & FP_EXCLUDE_FROM_BOM )
118 continue;
119
120 bool valExist = false;
121
122 // try to find component in existing list
123 for( BOM_ENTRY& curEntry : list )
124 {
125 if( curEntry.m_Val == footprint->GetValue() && curEntry.m_FPID == footprint->GetFPID() )
126 {
127 curEntry.m_Refs.emplace_back( footprint->Reference().GetShownText( false ) );
128 curEntry.m_Count++;
129
130 valExist = true;
131 break;
132 }
133 }
134
135 // If component does not exist yet, create new one and append it to the list.
136 if( !valExist )
137 {
138 list.emplace_back();
139 BOM_ENTRY& newEntry = list.back();
140 newEntry.m_Val = footprint->Value().GetShownText( false );
141 newEntry.m_Refs.emplace_back( footprint->Reference().GetShownText( false ) );
142 newEntry.m_FPID = footprint->GetFPID();
143 newEntry.m_Count = 1;
144 }
145 }
146
147 for( BOM_ENTRY& curEntry : list )
148 {
149 std::sort( curEntry.m_Refs.begin(), curEntry.m_Refs.end(),
150 []( const wxString& lhs, const wxString& rhs )
151 {
152 return StrNumCmp( lhs, rhs, true /* ignore case */ ) < 0;
153 } );
154 }
155
156 std::sort( list.begin(), list.end(),
157 []( const BOM_ENTRY& lhs, const BOM_ENTRY& rhs )
158 {
159 return StrNumCmp( lhs.m_Refs[0], rhs.m_Refs[0], true /* ignore case */ ) < 0;
160 } );
161
162 // Print list.
163 int id = 1;
164
165 for( const BOM_ENTRY& curEntry : list )
166 {
167 msg.Empty();
168
169 msg << id++ << wxT( ";\"" );
170
171 msg << curEntry.m_Refs[0];
172
173 for( int ii = 1; ii < (int) curEntry.m_Refs.size(); ++ii )
174 msg << wxT( ", " ) << curEntry.m_Refs[ii];
175
176 msg << wxT( "\";\"" );
177
178 msg << From_UTF8( curEntry.m_FPID.GetLibItemName().c_str() ) << wxT( "\";" );
179 msg << curEntry.m_Count << wxT( ";\"" );
180 msg << curEntry.m_Val << wxT( "\";;;\n" );
181 fprintf( fp_bom, "%s", TO_UTF8( msg ) );
182 }
183
184 fclose( fp_bom );
185
186 return 0;
187}
int GenBOMFileFromBoard(const TOOL_EVENT &aEvent)
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:322
wxString m_Val
LIB_ID m_FPID
int m_Count
std::vector< wxString > m_Refs
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:49
BOARD * board() const
FOOTPRINT * footprint() const
Generic, UI-independent tool event.
Definition tool_event.h:171
void DisplayError(wxWindow *aParent, const wxString &aText)
Display an error or warning message box with aMessage.
Definition confirm.cpp:177
This file is part of the common library.
#define _(s)
@ FP_EXCLUDE_FROM_BOM
Definition footprint.h:84
static const std::string CsvFileExtension
static wxString CsvFileWildcard()
This file contains miscellaneous commonly used macros and functions.
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 of file extensions used in Kicad.