2012-10-15 01:38:32 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2012-10-15 16:19:42 +00:00
|
|
|
* Copyright (C) 2010-12 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2012-10-15 01:38:32 +00:00
|
|
|
* Copyright (C) 2012 Wayne Stambaugh <stambaughw@verizon.net>
|
|
|
|
* Copyright (C) 2012 KiCad Developers, see change_log.txt for contributors.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
#ifndef FP_LIB_TABLE_H_
|
|
|
|
#define FP_LIB_TABLE_H_
|
2012-10-15 01:38:32 +00:00
|
|
|
|
2012-10-15 16:19:42 +00:00
|
|
|
#include <macros.h>
|
2012-10-15 01:38:32 +00:00
|
|
|
|
2012-10-15 16:19:42 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2012-10-15 01:38:32 +00:00
|
|
|
|
2013-02-16 01:09:53 +00:00
|
|
|
//#include <fpid.h>
|
2012-10-17 15:12:17 +00:00
|
|
|
#include <io_mgr.h>
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OUTPUTFORMATTER;
|
|
|
|
class MODULE;
|
2012-10-15 22:30:01 +00:00
|
|
|
class FP_LIB_TABLE_LEXER;
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class FP_LIB_TABLE
|
2012-12-08 23:58:03 +00:00
|
|
|
* holds FP_LIB_TABLE::ROW records (rows), and can be searched based on library nickName.
|
2012-10-15 01:38:32 +00:00
|
|
|
* <p>
|
|
|
|
* This class owns the <b>footprint library table</b>, which is like fstab in concept and maps
|
|
|
|
* logical library name to the library URI, type, and options. It is heavily based on the SWEET
|
|
|
|
* parser work done by Dick Hollenbeck and can be seen in new/sch_lib_table.h. A footprint
|
|
|
|
* library table had the following columns:
|
|
|
|
* <ul>
|
|
|
|
* <li> Logical Library Name (Nickname)
|
|
|
|
* <li> Library Type, used to determine which plugin to load to access the library.
|
|
|
|
* <li> Library URI. The full URI to the library source, form dependent on Type.
|
|
|
|
* <li> Options, used for as yet to be defined information such as user names or passwords
|
|
|
|
* </ul>
|
|
|
|
* <p>
|
|
|
|
* The Library Type can be one of:
|
|
|
|
* <ul>
|
|
|
|
* <li> "file"
|
|
|
|
* <li> "ftp"
|
|
|
|
* <li> "http"
|
|
|
|
* </ul>
|
|
|
|
* <p>
|
|
|
|
* For now, the Library URI types needed to support the various types can be one of those
|
|
|
|
* shown below, which are typical of each type:
|
|
|
|
* <ul>
|
|
|
|
* <li> "file://C:/mylibdir"
|
|
|
|
* <li> "ftp://kicad.org/partlib/trunk"
|
|
|
|
* <li> "http://kicad.org/partlib"
|
|
|
|
* </ul>
|
|
|
|
* <p>
|
|
|
|
* The footprint library table is built up from several additive entries (table fragments),
|
|
|
|
* and the final table is a (conceptual) merging of the table fragments. Two
|
|
|
|
* anticipated sources of the entries are a personal table saved in the KiCad configuration
|
|
|
|
* and a project resident table that resides in project file. The project footprint table
|
|
|
|
* entries are considered a higher priority in the final dynamically assembled library table.
|
|
|
|
* An row in the project file contribution to the library table takes precedence over the
|
|
|
|
* personal table if there is a collision of logical library names. Otherwise, the entries
|
|
|
|
* simply combine without issue to make up the applicable library table.
|
|
|
|
*
|
|
|
|
* @author Wayne Stambaugh
|
|
|
|
*/
|
2012-10-17 01:00:25 +00:00
|
|
|
class FP_LIB_TABLE
|
2012-10-15 01:38:32 +00:00
|
|
|
{
|
2012-10-16 06:56:57 +00:00
|
|
|
friend class DIALOG_FP_LIB_TABLE;
|
|
|
|
|
2012-10-15 01:38:32 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ROW
|
|
|
|
* holds a record identifying a footprint library accessed by the appropriate #PLUGIN
|
|
|
|
* object in the #FP_LIB_TABLE.
|
|
|
|
*/
|
|
|
|
class ROW
|
|
|
|
{
|
|
|
|
friend class FP_LIB_TABLE;
|
2012-10-16 06:56:57 +00:00
|
|
|
friend class DIALOG_FP_LIB_TABLE;
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
typedef IO_MGR::PCB_FILE_T LIB_T;
|
|
|
|
|
2012-10-18 15:28:50 +00:00
|
|
|
ROW() : type( IO_MGR::KICAD )
|
|
|
|
{
|
|
|
|
}
|
2012-10-17 15:12:17 +00:00
|
|
|
|
2012-12-08 23:58:03 +00:00
|
|
|
ROW( const wxString& aNick, const wxString& aURI, const wxString& aType,
|
|
|
|
const wxString& aOptions, const wxString& aDescr = wxEmptyString ) :
|
2012-10-17 15:12:17 +00:00
|
|
|
nickName( aNick ),
|
|
|
|
uri( aURI ),
|
2012-12-08 23:58:03 +00:00
|
|
|
options( aOptions ),
|
|
|
|
description( aDescr )
|
2012-10-17 15:12:17 +00:00
|
|
|
{
|
|
|
|
SetType( aType );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==( const ROW& r ) const
|
|
|
|
{
|
|
|
|
return nickName==r.nickName && uri==r.uri && type==r.type && options==r.options;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=( const ROW& r ) const { return !( *this == r ); }
|
|
|
|
|
2012-12-08 23:58:03 +00:00
|
|
|
//-----<accessors>------------------------------------------------------
|
|
|
|
|
2012-10-15 01:38:32 +00:00
|
|
|
/**
|
2012-10-15 16:19:42 +00:00
|
|
|
* Function GetNickName
|
|
|
|
* returns the short name of this library table row.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
const wxString& GetNickName() const { return nickName; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SetNickName
|
|
|
|
* changes the logical name of this library, useful for an editor.
|
|
|
|
*/
|
|
|
|
void SetNickName( const wxString& aNickName ) { nickName = aNickName; }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetType
|
2012-12-08 23:58:03 +00:00
|
|
|
* returns the type of LIB represented by this row.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
const wxString GetType() const { return IO_MGR::ShowType( type ); }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SetType
|
|
|
|
* changes the type represented by this row.
|
|
|
|
*/
|
|
|
|
void SetType( const wxString& aType ) { type = IO_MGR::EnumFromStr( aType ); }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetFullURI
|
|
|
|
* returns the full location specifying URI for the LIB.
|
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
const wxString& GetFullURI() const { return uri; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function SetFullURI
|
|
|
|
* changes the full URI for the library.
|
|
|
|
*/
|
|
|
|
void SetFullURI( const wxString& aFullURI ) { uri = aFullURI; }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetOptions
|
|
|
|
* returns the options string, which may hold a password or anything else needed to
|
|
|
|
* instantiate the underlying LIB_SOURCE.
|
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
const wxString& GetOptions() const { return options; }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
2012-12-08 23:58:03 +00:00
|
|
|
* Function SetOptions
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
void SetOptions( const wxString& aOptions ) { options = aOptions; }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
2012-12-08 23:58:03 +00:00
|
|
|
* Function GetDescr
|
|
|
|
* returns the description of the library referenced by this row.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
const wxString& GetDescr() const { return description; }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
2012-12-08 23:58:03 +00:00
|
|
|
* Function SetDescr
|
|
|
|
* changes the description of the library referenced by this row.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
void SetDescr( const wxString& aDescr ) { description = aDescr; }
|
2012-10-15 01:38:32 +00:00
|
|
|
|
2012-12-08 23:58:03 +00:00
|
|
|
//-----</accessors>-----------------------------------------------------
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
2012-12-08 23:58:03 +00:00
|
|
|
* Function Format
|
|
|
|
* serializes this object as utf8 text to an OUTPUTFORMATTER, and tries to
|
|
|
|
* make it look good using multiple lines and indentation.
|
|
|
|
* @param out is an #OUTPUTFORMATTER
|
|
|
|
* @param nestLevel is the indentation level to base all lines of the output.
|
|
|
|
* Actual indentation will be 2 spaces for each nestLevel.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-12-08 23:58:03 +00:00
|
|
|
void Format( OUTPUTFORMATTER* out, int nestLevel ) const
|
|
|
|
throw( IO_ERROR );
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
private:
|
2012-10-17 15:12:17 +00:00
|
|
|
|
2012-10-15 16:19:42 +00:00
|
|
|
wxString nickName;
|
|
|
|
wxString uri;
|
2012-10-17 15:12:17 +00:00
|
|
|
LIB_T type;
|
2012-10-15 16:19:42 +00:00
|
|
|
wxString options;
|
2012-12-08 23:58:03 +00:00
|
|
|
wxString description;
|
2012-10-15 01:38:32 +00:00
|
|
|
};
|
|
|
|
|
2012-10-15 16:19:42 +00:00
|
|
|
|
2012-10-15 01:38:32 +00:00
|
|
|
/**
|
|
|
|
* Constructor FP_LIB_TABLE
|
|
|
|
* builds a library table by pre-pending this table fragment in front of
|
|
|
|
* @a aFallBackTable. Loading of this table fragment is done by using Parse().
|
|
|
|
*
|
|
|
|
* @param aFallBackTable is another FP_LIB_TABLE which is searched only when
|
2012-12-08 23:58:03 +00:00
|
|
|
* a row is not found in this table. No ownership is
|
2012-10-15 01:38:32 +00:00
|
|
|
* taken of aFallBackTable.
|
|
|
|
*/
|
|
|
|
FP_LIB_TABLE( FP_LIB_TABLE* aFallBackTable = NULL );
|
|
|
|
|
2012-10-18 15:28:50 +00:00
|
|
|
bool operator==( const FP_LIB_TABLE& r ) const
|
|
|
|
{
|
|
|
|
if( rows.size() == r.rows.size() )
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
for( i = 0; i < rows.size() && rows[i] == r.rows[i]; ++i )
|
|
|
|
;
|
|
|
|
|
|
|
|
if( i == rows.size() )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=( const FP_LIB_TABLE& r ) const { return !( *this == r ); }
|
|
|
|
|
2012-10-15 01:38:32 +00:00
|
|
|
/**
|
|
|
|
* Function Parse
|
|
|
|
* fills this table fragment from information in the input stream \a aParser, which
|
|
|
|
* is a DSNLEXER customized for the grammar needed to describe instances of this object.
|
|
|
|
* The entire textual element spec is <br>
|
|
|
|
*
|
|
|
|
* <pre>
|
|
|
|
* (fp_lib_table
|
2012-12-08 23:58:03 +00:00
|
|
|
* (lib (name LOGICAL)(descr DESCRIPTION)(uri FULL_URI)(type TYPE)(options OPTIONS))
|
|
|
|
* (lib (name LOGICAL)(descr DESCRIPTION)(uri FULL_URI)(type TYPE)(options OPTIONS))
|
|
|
|
* (lib (name LOGICAL)(descr DESCRIPTION)(uri FULL_URI)(type TYPE)(options OPTIONS))
|
2012-10-15 01:38:32 +00:00
|
|
|
* )
|
|
|
|
* </pre>
|
|
|
|
*
|
|
|
|
* When this function is called, the input token stream given by \a aParser
|
|
|
|
* is assumed to be positioned at the '^' in the following example, i.e. just
|
|
|
|
* after the identifying keyword and before the content specifying stuff.
|
|
|
|
* <br>
|
|
|
|
* (lib_table ^ (....) )
|
|
|
|
*
|
|
|
|
* @param aParser is the input token stream of keywords and symbols.
|
|
|
|
*/
|
|
|
|
void Parse( FP_LIB_TABLE_LEXER* aParser ) throw( IO_ERROR, PARSE_ERROR );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Format
|
|
|
|
* serializes this object as utf8 text to an #OUTPUTFORMATTER, and tries to
|
|
|
|
* make it look good using multiple lines and indentation.
|
|
|
|
*
|
|
|
|
* @param out is an #OUTPUTFORMATTER
|
|
|
|
* @param nestLevel is the indentation level to base all lines of the output.
|
|
|
|
* Actual indentation will be 2 spaces for each nestLevel.
|
|
|
|
*/
|
|
|
|
void Format( OUTPUTFORMATTER* out, int nestLevel ) const throw( IO_ERROR );
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetLogicalLibs
|
|
|
|
* returns the logical library names, all of them that are pertinent to
|
|
|
|
* a lookup done on this FP_LIB_TABLE.
|
|
|
|
*/
|
2012-10-15 16:19:42 +00:00
|
|
|
std::vector<wxString> GetLogicalLibs();
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
|
|
|
|
|
2012-10-15 01:38:32 +00:00
|
|
|
//----<read accessors>----------------------------------------------------
|
2012-10-15 16:19:42 +00:00
|
|
|
// the returning of a const wxString* tells if not found, but might be too
|
2012-10-15 01:38:32 +00:00
|
|
|
// promiscuous?
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
#if 0
|
2012-10-15 01:38:32 +00:00
|
|
|
/**
|
|
|
|
* Function GetURI
|
|
|
|
* returns the full library path from a logical library name.
|
|
|
|
* @param aLogicalLibraryName is the short name for the library of interest.
|
2012-10-15 16:19:42 +00:00
|
|
|
* @return const wxString* - or NULL if not found.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-10-15 16:19:42 +00:00
|
|
|
const wxString* GetURI( const wxString& aLogicalLibraryName ) const
|
2012-10-15 01:38:32 +00:00
|
|
|
{
|
|
|
|
const ROW* row = FindRow( aLogicalLibraryName );
|
|
|
|
return row ? &row->uri : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetType
|
|
|
|
* returns the type of a logical library.
|
|
|
|
* @param aLogicalLibraryName is the short name for the library of interest.
|
2012-10-15 16:19:42 +00:00
|
|
|
* @return const wxString* - or NULL if not found.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-10-15 16:19:42 +00:00
|
|
|
const wxString* GetType( const wxString& aLogicalLibraryName ) const
|
2012-10-15 01:38:32 +00:00
|
|
|
{
|
|
|
|
const ROW* row = FindRow( aLogicalLibraryName );
|
|
|
|
return row ? &row->type : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function GetLibOptions
|
|
|
|
* returns the options string for \a aLogicalLibraryName.
|
|
|
|
* @param aLogicalLibraryName is the short name for the library of interest.
|
2012-10-15 16:19:42 +00:00
|
|
|
* @return const wxString* - or NULL if not found.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-10-15 16:19:42 +00:00
|
|
|
const wxString* GetLibOptions( const wxString& aLogicalLibraryName ) const
|
2012-10-15 01:38:32 +00:00
|
|
|
{
|
|
|
|
const ROW* row = FindRow( aLogicalLibraryName );
|
|
|
|
return row ? &row->options : 0;
|
|
|
|
}
|
2012-10-17 15:12:17 +00:00
|
|
|
#endif
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
//----</read accessors>---------------------------------------------------
|
|
|
|
|
|
|
|
#if 1 || defined(DEBUG)
|
|
|
|
/// implement the tests in here so we can honor the privilege levels of the
|
|
|
|
/// accessors, something difficult to do from int main(int, char**)
|
|
|
|
void Test();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function InsertRow
|
|
|
|
* adds aRow if it does not already exist or if doReplace is true. If doReplace
|
|
|
|
* is not true and the key for aRow already exists, the function fails and returns false.
|
2012-10-15 16:19:42 +00:00
|
|
|
* The key for the table is the nickName, and all in this table must be unique.
|
2012-10-15 01:38:32 +00:00
|
|
|
* @param aRow is the new row to insert, or to forcibly add if doReplace is true.
|
|
|
|
* @param doReplace if true, means insert regardless of whether aRow's key already
|
|
|
|
* exists. If false, then fail if the key already exists.
|
|
|
|
* @return bool - true if the operation succeeded.
|
|
|
|
*/
|
2012-10-15 16:19:42 +00:00
|
|
|
bool InsertRow( const ROW& aRow, bool doReplace = false );
|
2012-10-15 01:38:32 +00:00
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
/**
|
|
|
|
* Function PluginFind
|
|
|
|
* returns a PLUGIN*. Caller should wrap that in a PLUGIN::RELEASER()
|
|
|
|
* so when it goes out of scope, IO_MGR::PluginRelease() is called.
|
|
|
|
*/
|
|
|
|
PLUGIN* PluginFind( const wxString& aLibraryNickName ) throw( IO_ERROR );
|
|
|
|
|
2012-10-15 01:38:32 +00:00
|
|
|
/**
|
|
|
|
* Function FindRow
|
2013-01-03 20:21:40 +00:00
|
|
|
* returns a ROW if aNickName is found in this table or in any chained
|
2012-10-15 01:38:32 +00:00
|
|
|
* fallBack table fragment, else NULL.
|
|
|
|
*/
|
2012-10-17 15:12:17 +00:00
|
|
|
const ROW* FindRow( const wxString& aNickName ) throw( IO_ERROR );
|
|
|
|
|
|
|
|
|
2012-12-08 23:58:03 +00:00
|
|
|
/**
|
|
|
|
* Function ExpandEnvSubsitutions
|
|
|
|
* replaces any environment variable references with their values and is
|
|
|
|
* here to fully embellish the ROW::uri in a platform independent way.
|
|
|
|
* This enables (fp_lib_table)s to have platform dependent environment
|
|
|
|
* variables in them, allowing for a uniform table across platforms.
|
|
|
|
*/
|
|
|
|
static const wxString ExpandSubtitutions( const wxString aString );
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function findRow
|
2013-01-03 20:21:40 +00:00
|
|
|
* returns a ROW if aNickName is found in this table or in any chained
|
2012-10-17 15:12:17 +00:00
|
|
|
* fallBack table fragment, else NULL.
|
|
|
|
*/
|
|
|
|
const ROW* findRow( const wxString& aNickName );
|
2012-10-15 01:38:32 +00:00
|
|
|
|
2012-10-17 01:00:25 +00:00
|
|
|
void reindex()
|
|
|
|
{
|
|
|
|
nickIndex.clear();
|
|
|
|
|
|
|
|
for( ROWS_CITER it = rows.begin(); it != rows.end(); ++it )
|
|
|
|
nickIndex.insert( INDEX_VALUE( it->nickName, it - rows.begin() ) );
|
|
|
|
}
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
void ensureIndex()
|
|
|
|
{
|
|
|
|
// The dialog lib table editor may not maintain the nickIndex.
|
|
|
|
// Lazy indexing may be required. To handle lazy indexing, we must enforce
|
|
|
|
// that "nickIndex" is either empty or accurate, but never inaccurate.
|
|
|
|
if( !nickIndex.size() )
|
|
|
|
reindex();
|
|
|
|
}
|
|
|
|
|
2012-10-17 01:00:25 +00:00
|
|
|
typedef std::vector<ROW> ROWS;
|
|
|
|
typedef ROWS::iterator ROWS_ITER;
|
|
|
|
typedef ROWS::const_iterator ROWS_CITER;
|
|
|
|
|
|
|
|
ROWS rows;
|
|
|
|
|
|
|
|
/// this is a non-owning index into the ROWS table
|
|
|
|
typedef std::map<wxString,int> INDEX; // "int" is std::vector array index
|
|
|
|
typedef INDEX::iterator INDEX_ITER;
|
|
|
|
typedef INDEX::const_iterator INDEX_CITER;
|
|
|
|
typedef INDEX::value_type INDEX_VALUE;
|
|
|
|
|
|
|
|
/// this particular key is the nickName within each row.
|
|
|
|
INDEX nickIndex;
|
|
|
|
|
|
|
|
FP_LIB_TABLE* fallBack;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
#if 0 // I don't think this is going to be needed.
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
/**
|
2012-10-17 15:12:17 +00:00
|
|
|
* Function LookupPart
|
|
|
|
* finds and loads a MODULE, and parses it. As long as the part is
|
|
|
|
* accessible in any LIB_SOURCE, opened or not opened, this function
|
|
|
|
* will find it and load it into its containing LIB, even if that means
|
|
|
|
* having to open a LIB in this table that was not previously opened.
|
2012-10-15 01:38:32 +00:00
|
|
|
*
|
2012-10-17 15:12:17 +00:00
|
|
|
* @param aFootprintId The fully qualified name of the footprint to look up.
|
2012-10-15 01:38:32 +00:00
|
|
|
*
|
2012-10-17 15:12:17 +00:00
|
|
|
* @return MODULE* - this will never be NULL, and no ownership is transferred because
|
|
|
|
* all MODULEs live in LIBs. You only get to point to them in some LIB. If the MODULE
|
|
|
|
* cannot be found, then an exception is thrown.
|
2012-10-15 01:38:32 +00:00
|
|
|
*
|
2012-10-17 15:12:17 +00:00
|
|
|
* @throw IO_ERROR if any problem occurs or if the footprint cannot be found.
|
2012-10-15 01:38:32 +00:00
|
|
|
*/
|
2012-10-17 15:12:17 +00:00
|
|
|
MODULE* LookupFootprint( const FP_LIB_ID& aFootprintId ) throw( IO_ERROR );
|
2012-10-15 16:19:42 +00:00
|
|
|
#endif
|
2012-10-15 01:38:32 +00:00
|
|
|
|
|
|
|
|
2012-10-17 15:12:17 +00:00
|
|
|
#endif // FP_LIB_TABLE_H_
|