2014-10-23 17:53:38 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009-2014 Jean-Pierre Charras, jean-pierre.charras@ujf-grenoble.fr
|
2023-05-05 13:21:56 +00:00
|
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2014-10-23 17:53:38 +00:00
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2009-03-30 15:36:41 +00:00
|
|
|
/* build_BOM_from_board.cpp */
|
|
|
|
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <confirm.h>
|
2021-03-20 15:35:37 +00:00
|
|
|
#include <macros.h>
|
2021-07-29 09:56:22 +00:00
|
|
|
#include <string_utils.h>
|
2018-01-29 20:58:58 +00:00
|
|
|
#include <pcb_edit_frame.h>
|
2024-04-27 19:57:24 +00:00
|
|
|
#include <board.h>
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
#include <project.h>
|
2017-11-12 00:31:38 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2020-11-12 20:19:22 +00:00
|
|
|
#include <footprint.h>
|
2009-03-30 15:36:41 +00:00
|
|
|
#include <wx/listimpl.cpp>
|
2021-05-01 07:50:29 +00:00
|
|
|
#include <wx/filedlg.h>
|
|
|
|
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
/* creates a BOM list from board
|
2011-03-03 19:08:13 +00:00
|
|
|
* The format is:
|
2022-03-03 22:35:40 +00:00
|
|
|
* "Id";"Designator";"Footprint";"Number";"Designation";"Supplier and ref";
|
2011-03-03 19:08:13 +00:00
|
|
|
* 1;"P1";"DB25FC";1;"DB25FEMELLE";;;
|
|
|
|
* 2;"U9";"PGA120";1;"4003APG120";;;
|
|
|
|
* 3;"JP1";"pin_array_8x2";1;"CONN_8X2";;;
|
|
|
|
* 4;"RR1";"r_pack9";1;"9x1K";;;
|
|
|
|
* 5;"X1";"HC-18UH";1;"8MHz";;;
|
|
|
|
* 6;"U8";"24dip300";1;"EP600";;;
|
|
|
|
* 7;"U5";"32dip600";1;"628128";;;
|
|
|
|
* 8;"C2,C3";"C1";2;"47pF";;;
|
|
|
|
* 9;"U1";"20dip300";1;"74LS245";;;
|
|
|
|
* 10;"U3";"20dip300";1;"74LS541";;;
|
|
|
|
* 11;"U2";"20dip300";1;"74LS688";;;
|
|
|
|
* 12;"C1,C4,C5,C6";"CP6";4;"47uF";;;
|
|
|
|
*/
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
class BOM_ENTRY
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxString m_Ref;
|
|
|
|
wxString m_Val;
|
2021-01-19 23:50:18 +00:00
|
|
|
LIB_ID m_FPID;
|
2009-03-30 15:36:41 +00:00
|
|
|
int m_Id;
|
2021-01-19 23:50:18 +00:00
|
|
|
int m_Count;
|
2009-03-30 15:36:41 +00:00
|
|
|
};
|
2021-07-19 23:56:05 +00:00
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
WX_DECLARE_LIST( BOM_ENTRY, BOM_ENTRY_LIST );
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
WX_DEFINE_LIST( BOM_ENTRY_LIST )
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2020-08-20 11:49:59 +00:00
|
|
|
|
2011-03-01 19:26:17 +00:00
|
|
|
void PCB_EDIT_FRAME::RecreateBOMFileFromBoard( wxCommandEvent& aEvent )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2009-04-05 20:49:15 +00:00
|
|
|
wxFileName fn;
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
FILE* fp_bom;
|
2009-04-05 20:49:15 +00:00
|
|
|
wxString msg;
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2020-11-12 23:50:33 +00:00
|
|
|
if( GetBoard()->Footprints().empty() )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2020-08-31 13:19:57 +00:00
|
|
|
ShowInfoBarError( _( "Cannot export BOM: there are no footprints on the PCB." ) );
|
2009-03-30 15:36:41 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the file extension: */
|
2012-08-29 16:59:50 +00:00
|
|
|
fn = GetBoard()->GetFileName();
|
2023-12-28 02:10:01 +00:00
|
|
|
fn.SetExt( FILEEXT::CsvFileExtension );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
wxString pro_dir = wxPathOnly( Prj().GetProjectFullName() );
|
|
|
|
|
2020-08-20 11:49:59 +00:00
|
|
|
wxFileDialog dlg( this, _( "Save Bill of Materials" ), pro_dir, fn.GetFullName(),
|
2023-12-28 02:10:01 +00:00
|
|
|
FILEEXT::CsvFileWildcard(), wxFD_SAVE | wxFD_OVERWRITE_PROMPT );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
|
|
|
if( dlg.ShowModal() == wxID_CANCEL )
|
2009-03-30 15:36:41 +00:00
|
|
|
return;
|
|
|
|
|
2009-04-05 20:49:15 +00:00
|
|
|
fn = dlg.GetPath();
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
fp_bom = wxFopen( fn.GetFullPath(), wxT( "wt" ) );
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2021-07-19 23:56:05 +00:00
|
|
|
if( fp_bom == nullptr )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2021-06-28 23:44:07 +00:00
|
|
|
msg.Printf( _( "Failed to create file '%s'." ), fn.GetFullPath() );
|
2009-03-30 15:36:41 +00:00
|
|
|
DisplayError( this, msg );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write header:
|
2011-03-03 19:08:13 +00:00
|
|
|
msg = wxT( "\"" );
|
|
|
|
msg << _( "Id" ) << wxT( "\";\"" );
|
|
|
|
msg << _( "Designator" ) << wxT( "\";\"" );
|
2022-03-03 22:35:40 +00:00
|
|
|
msg << _( "Footprint" ) << wxT( "\";\"" );
|
2011-03-03 19:08:13 +00:00
|
|
|
msg << _( "Quantity" ) << wxT( "\";\"" );
|
|
|
|
msg << _( "Designation" ) << wxT( "\";\"" );
|
|
|
|
msg << _( "Supplier and ref" ) << wxT( "\";\n" );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
fprintf( fp_bom, "%s", TO_UTF8( msg ) );
|
2009-03-30 15:36:41 +00:00
|
|
|
|
|
|
|
// Build list
|
2021-01-19 23:50:18 +00:00
|
|
|
BOM_ENTRY_LIST list;
|
|
|
|
int i = 1;
|
2013-09-08 18:31:21 +00:00
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
for( FOOTPRINT* footprint : GetBoard()->Footprints() )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2022-01-09 16:27:34 +00:00
|
|
|
if( footprint->GetAttributes() & FP_EXCLUDE_FROM_BOM )
|
|
|
|
continue;
|
|
|
|
|
2009-03-30 15:36:41 +00:00
|
|
|
bool valExist = false;
|
|
|
|
|
2010-01-28 13:10:46 +00:00
|
|
|
// try to find component in existing list
|
2021-01-19 23:50:18 +00:00
|
|
|
for( auto iter = list.begin(); iter != list.end(); ++iter )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2021-01-19 23:50:18 +00:00
|
|
|
BOM_ENTRY* curEntry = *iter;
|
2013-03-13 18:53:58 +00:00
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
if( curEntry->m_Val == footprint->GetValue()
|
|
|
|
&& curEntry->m_FPID == footprint->GetFPID() )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2021-01-19 23:50:18 +00:00
|
|
|
curEntry->m_Ref.Append( wxT( ", " ), 1 );
|
2023-05-05 13:21:56 +00:00
|
|
|
curEntry->m_Ref.Append( footprint->Reference().GetShownText( false ) );
|
2021-01-19 23:50:18 +00:00
|
|
|
curEntry->m_Count++;
|
2010-01-28 13:10:46 +00:00
|
|
|
|
|
|
|
valExist = true;
|
|
|
|
break;
|
2009-03-30 15:36:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-28 13:10:46 +00:00
|
|
|
// If component does not exist yet, create new one and append it to the list.
|
|
|
|
if( valExist == false )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2021-01-19 23:50:18 +00:00
|
|
|
BOM_ENTRY* newEntry = new BOM_ENTRY();
|
|
|
|
newEntry->m_Id = i++;
|
2023-05-05 13:21:56 +00:00
|
|
|
newEntry->m_Val = footprint->Value().GetShownText( false );
|
|
|
|
newEntry->m_Ref = footprint->Reference().GetShownText( false );
|
2021-01-19 23:50:18 +00:00
|
|
|
newEntry->m_FPID = footprint->GetFPID();
|
|
|
|
newEntry->m_Count = 1;
|
|
|
|
list.Append( newEntry );
|
2009-03-30 15:36:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-14 07:25:17 +00:00
|
|
|
// Print list. Also delete temporary created objects.
|
|
|
|
for( size_t ii = list.GetCount(); ii > 0; ii-- )
|
2009-03-30 15:36:41 +00:00
|
|
|
{
|
2021-01-19 23:50:18 +00:00
|
|
|
BOM_ENTRY* curEntry = *list.begin(); // Because the first object will be removed
|
|
|
|
// from list, all objects will be get here
|
2009-03-30 15:36:41 +00:00
|
|
|
|
|
|
|
msg.Empty();
|
|
|
|
|
2021-01-19 23:50:18 +00:00
|
|
|
msg << curEntry->m_Id << wxT( ";\"" );
|
|
|
|
msg << curEntry->m_Ref << wxT( "\";\"" );
|
2023-09-09 04:10:57 +00:00
|
|
|
msg << From_UTF8( curEntry->m_FPID.GetLibItemName().c_str() ) << wxT( "\";" );
|
2021-01-19 23:50:18 +00:00
|
|
|
msg << curEntry->m_Count << wxT( ";\"" );
|
|
|
|
msg << curEntry->m_Val << wxT( "\";;;\n" );
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
fprintf( fp_bom, "%s", TO_UTF8( msg ) );
|
2009-03-30 15:36:41 +00:00
|
|
|
|
2014-11-14 07:25:17 +00:00
|
|
|
// We do not need this object, now: remove it from list and delete it
|
2021-01-19 23:50:18 +00:00
|
|
|
list.DeleteObject( curEntry );
|
2021-07-19 23:56:05 +00:00
|
|
|
delete curEntry;
|
2009-03-30 15:36:41 +00:00
|
|
|
}
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
fclose( fp_bom );
|
2009-03-30 15:36:41 +00:00
|
|
|
}
|