2011-02-05 18:00:05 +00:00
|
|
|
/**
|
2011-02-22 20:59:16 +00:00
|
|
|
* @file footprint_info.cpp
|
2011-02-05 18:00:05 +00:00
|
|
|
*/
|
2009-11-05 19:26:52 +00:00
|
|
|
|
2007-06-05 12:10:51 +00:00
|
|
|
|
|
|
|
/*
|
2011-02-22 17:59:46 +00:00
|
|
|
* Functions to read footprint libraries and fill m_footprints by available footprints names
|
2009-11-23 21:03:26 +00:00
|
|
|
* and their documentation (comments and keywords)
|
2009-02-04 15:25:03 +00:00
|
|
|
*/
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <wxstruct.h>
|
|
|
|
#include <common.h>
|
|
|
|
#include <kicad_string.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <appl_wxstruct.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <pcbcommon.h>
|
|
|
|
#include <pcbstruct.h>
|
|
|
|
#include <footprint_info.h>
|
2012-04-16 03:18:41 +00:00
|
|
|
#include <io_mgr.h>
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <class_pad.h>
|
|
|
|
#include <class_module.h>
|
2012-03-08 17:47:23 +00:00
|
|
|
#include <wildcards_and_files_ext.h>
|
2011-09-23 13:57:12 +00:00
|
|
|
|
2009-07-13 06:20:18 +00:00
|
|
|
|
2011-02-22 17:59:46 +00:00
|
|
|
/* Read the list of libraries (*.mod files)
|
2011-02-05 16:15:48 +00:00
|
|
|
* for each module are stored
|
|
|
|
* the module name
|
|
|
|
* documentation string
|
|
|
|
* associated keywords
|
2011-02-22 17:59:46 +00:00
|
|
|
* lib name
|
2009-11-05 19:26:52 +00:00
|
|
|
* Module description format:
|
2011-02-05 16:15:48 +00:00
|
|
|
* $MODULE c64acmd First line of module description
|
|
|
|
* Li c64acmd DIN connector Library reference
|
|
|
|
* Cd Europe 96 AC male vertical documentation string
|
|
|
|
* Kw PAD_CONN DIN associated keywords
|
|
|
|
* ...... other data (pads, outlines ..)
|
2009-11-05 19:26:52 +00:00
|
|
|
* $Endmodule
|
2009-02-04 15:25:03 +00:00
|
|
|
*/
|
2012-04-16 03:18:41 +00:00
|
|
|
bool FOOTPRINT_LIST::ReadFootprintFiles( wxArrayString& aFootprintsLibNames )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2011-02-22 17:59:46 +00:00
|
|
|
// Clear data before reading files
|
|
|
|
m_filesNotFound.Empty();
|
|
|
|
m_filesInvalid.Empty();
|
|
|
|
m_List.clear();
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
// try
|
2009-02-04 15:25:03 +00:00
|
|
|
{
|
2012-04-17 06:13:22 +00:00
|
|
|
PLUGIN::RELEASER pi( IO_MGR::PluginFind( IO_MGR::LEGACY ) );
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
// Parse Libraries Listed
|
|
|
|
for( unsigned ii = 0; ii < aFootprintsLibNames.GetCount(); ii++ )
|
2009-04-05 20:49:15 +00:00
|
|
|
{
|
2012-04-17 06:13:22 +00:00
|
|
|
wxFileName filename = aFootprintsLibNames[ii];
|
2009-04-05 20:49:15 +00:00
|
|
|
|
2012-11-19 16:19:38 +00:00
|
|
|
filename.SetExt( LegacyFootprintLibPathExtension );
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
wxString libPath = wxGetApp().FindLibraryPath( filename );
|
|
|
|
|
|
|
|
if( !libPath )
|
2012-04-16 03:18:41 +00:00
|
|
|
{
|
2012-04-17 06:13:22 +00:00
|
|
|
m_filesNotFound << filename.GetFullName() << wxT("\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
wxArrayString fpnames = pi->FootprintEnumerate( libPath );
|
|
|
|
|
|
|
|
for( unsigned i=0; i<fpnames.GetCount(); ++i )
|
|
|
|
{
|
2012-11-15 16:04:10 +00:00
|
|
|
std::auto_ptr<MODULE> m( pi->FootprintLoad( libPath, fpnames[i] ) );
|
2011-02-05 16:15:48 +00:00
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
// we're loading what we enumerated, all must be there.
|
|
|
|
wxASSERT( m.get() );
|
2011-02-05 16:15:48 +00:00
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
FOOTPRINT_INFO* fpinfo = new FOOTPRINT_INFO();
|
2009-02-04 15:25:03 +00:00
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
fpinfo->m_Module = fpnames[i];
|
|
|
|
fpinfo->m_LibName = libPath;
|
|
|
|
fpinfo->m_padCount = m->GetPadCount();
|
|
|
|
fpinfo->m_KeyWord = m->GetKeywords();
|
|
|
|
fpinfo->m_Doc = m->GetDescription();
|
|
|
|
|
|
|
|
AddItem( fpinfo );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( IO_ERROR ioe )
|
|
|
|
{
|
|
|
|
m_filesInvalid << ioe.errorText << wxT("\n");
|
2009-02-04 15:25:03 +00:00
|
|
|
}
|
2011-02-05 16:15:48 +00:00
|
|
|
}
|
2009-02-04 15:25:03 +00:00
|
|
|
}
|
|
|
|
|
2012-04-17 06:13:22 +00:00
|
|
|
/* caller should catch this, UI seems not wanted here.
|
|
|
|
catch( IO_ERROR ioe )
|
|
|
|
{
|
|
|
|
DisplayError( NULL, ioe.errorText );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2011-02-22 17:59:46 +00:00
|
|
|
m_List.sort();
|
2009-07-05 16:59:12 +00:00
|
|
|
|
2009-10-05 04:22:27 +00:00
|
|
|
return true;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|