kicad/pcbnew/class_netclass.cpp

436 lines
12 KiB
C++
Raw Normal View History

2009-08-17 02:59:38 +00:00
/*
* This program source code file is part of KICAD, a free EDA CAD application.
*
* Copyright (C) 2009 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
* Copyright (C) 2009 Jean-Pierre Charras, jean-pierre.charras@inpg.fr
* Copyright (C) 2009 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
*/
#include "fctsys.h"
#include "common.h"
#include "kicad_string.h"
#include "pcbnew.h"
2009-10-28 11:48:47 +00:00
#include "class_board_design_settings.h"
#include "richio.h"
// Current design settings (used also to read configs):
extern BOARD_DESIGN_SETTINGS boardDesignSettings;
2009-09-10 15:22:26 +00:00
// This will get mapped to "kicad_default" in the specctra_export.
const wxString NETCLASS::Default = wxT("Default");
// Initial values for netclass initialization
int NETCLASS::DEFAULT_CLEARANCE = 100; // track to track and track to pads clearance
int NETCLASS::DEFAULT_VIA_DRILL = 250; // default via drill
int NETCLASS::DEFAULT_UVIA_DRILL = 50; // micro via drill
2009-08-17 02:59:38 +00:00
2009-09-10 15:22:26 +00:00
NETCLASS::NETCLASS( BOARD* aParent, const wxString& aName, const NETCLASS* initialParameters ) :
2009-08-17 02:59:38 +00:00
m_Parent( aParent ),
m_Name( aName )
{
2009-09-10 15:22:26 +00:00
// use initialParameters if not NULL, else set the initial
// parameters from boardDesignSettings (try to change this)
2009-09-10 15:22:26 +00:00
SetParams( initialParameters );
}
2009-08-17 02:59:38 +00:00
2009-09-10 15:22:26 +00:00
void NETCLASS::SetParams( const NETCLASS* defaults )
{
if( defaults )
{
SetClearance( defaults->GetClearance() );
SetTrackWidth( defaults->GetTrackWidth() );
SetViaDiameter( defaults->GetViaDiameter() );
SetViaDrill( defaults->GetViaDrill() );
SetuViaDiameter( defaults->GetuViaDiameter() );
SetuViaDrill( defaults->GetuViaDrill() );
}
else
{ // We should use m_Parent->GetBoardDesignSettings()
// But when the NETCLASSES constructor is called
// (it call NETCLASS constructor), the m_Parent constructor (see BOARD::BOARD)
// is not run, and GetBoardDesignSettings() return a bad value
// TODO: see how change that.
const BOARD_DESIGN_SETTINGS& g = boardDesignSettings;
2009-09-10 15:22:26 +00:00
SetTrackWidth( g.m_TrackMinWidth );
SetViaDiameter( g.m_ViasMinSize );
SetuViaDiameter(g.m_MicroViasMinSize );
// Use default values for next parameters:
SetClearance( DEFAULT_CLEARANCE );
SetViaDrill( DEFAULT_VIA_DRILL );
SetuViaDrill( DEFAULT_UVIA_DRILL );
2009-09-10 15:22:26 +00:00
}
}
NETCLASS::~NETCLASS()
{
}
2009-08-17 02:59:38 +00:00
NETCLASSES::NETCLASSES( BOARD* aParent ) :
m_Parent( aParent ),
m_Default( aParent, NETCLASS::Default )
{
}
2009-08-17 02:59:38 +00:00
NETCLASSES::~NETCLASSES()
{
2009-08-17 02:59:38 +00:00
Clear();
}
2009-08-17 02:59:38 +00:00
void NETCLASSES::Clear()
{
2009-08-17 02:59:38 +00:00
// Although std::map<> will destroy the items that it contains, in this
// case we have NETCLASS* (pointers) and "destroying" a pointer does not
// delete the object that the pointer points to.
// this NETCLASSES is owner of its NETCLASS pointers,
// so delete NETCLASSes pointed to by them.
for( iterator i = begin(); i!=end(); )
{
// http://www.sgi.com/tech/stl/Map.html says:
// "Erasing an element from a map also does not invalidate any iterators,
// except, of course, for iterators that actually point to the element that
// is being erased."
iterator e = i++; // copy, then advance.
2009-08-17 02:59:38 +00:00
delete e->second; // delete the NETCLASS, which 'second' points to.
m_NetClasses.erase( e );
}
}
2009-09-10 15:22:26 +00:00
bool NETCLASSES::Add( NETCLASS* aNetClass )
{
2009-09-10 15:22:26 +00:00
const wxString& name = aNetClass->GetName();
2009-08-17 02:59:38 +00:00
if( name == NETCLASS::Default )
{
// invoke operator=(), which is currently generated by compiler.
2009-09-10 15:22:26 +00:00
m_Default = *aNetClass;
delete aNetClass; // we own aNetClass, must delete it since we copied it.
2009-08-17 02:59:38 +00:00
return true;
}
// Test for an existing netclass:
2009-08-17 02:59:38 +00:00
if( !Find( name ) )
{
2009-09-10 15:22:26 +00:00
// name not found, take ownership
m_NetClasses[name] = aNetClass;
2009-08-17 02:59:38 +00:00
return true;
}
2009-09-10 15:22:26 +00:00
else
{
// name already exists
// do not "take ownership" and return false telling caller such.
return false;
}
}
2009-08-17 02:59:38 +00:00
NETCLASS* NETCLASSES::Remove( const wxString& aNetName )
{
2009-08-17 02:59:38 +00:00
NETCLASSMAP::iterator found = m_NetClasses.find( aNetName );
if( found != m_NetClasses.end() )
{
2009-08-17 02:59:38 +00:00
NETCLASS* netclass = found->second;
m_NetClasses.erase( found );
return netclass;
}
return NULL;
}
2009-08-17 02:59:38 +00:00
NETCLASS* NETCLASSES::Find( const wxString& aName ) const
{
if( aName == NETCLASS::Default )
return (NETCLASS*) &m_Default;
NETCLASSMAP::const_iterator found = m_NetClasses.find( aName );
if( found == m_NetClasses.end() )
return NULL;
else
return found->second;
}
void BOARD::SynchronizeNetsAndNetClasses()
{
// D(printf("start\n");) // simple performance/timing indicator.
// set all NETs to the default NETCLASS, then later override some
// as we go through the NETCLASSes.
int count = m_NetInfo->GetCount();
for( int i=0; i<count; ++i )
{
NETINFO_ITEM* net = FindNet( i );
if( net )
net->SetClass( m_NetClasses.GetDefault() );
}
2009-08-17 02:59:38 +00:00
// Add netclass name and pointer to nets. If a net is in more than one netclass,
// set the net's name and pointer to only the first netclass. Subsequent
// and therefore bogus netclass memberships will be deleted in logic below this loop.
2009-08-17 02:59:38 +00:00
for( NETCLASSES::iterator clazz=m_NetClasses.begin(); clazz!=m_NetClasses.end(); ++clazz )
{
2009-08-17 02:59:38 +00:00
NETCLASS* netclass = clazz->second;
for( NETCLASS::iterator member = netclass->begin(); member!=netclass->end(); ++member )
{
2009-08-17 02:59:38 +00:00
const wxString& netname = *member;
// although this overall function seems to be adequately fast,
// FindNet( wxString ) uses now a fast binary search and is fast
// event for large net lists
2009-08-17 02:59:38 +00:00
NETINFO_ITEM* net = FindNet( netname );
if( net && net->GetClassName() == NETCLASS::Default )
{
2009-08-17 02:59:38 +00:00
net->SetClass( netclass );
}
}
}
2009-08-17 02:59:38 +00:00
// Finally, make sure that every NET is in a NETCLASS, even if that
// means the Default NETCLASS. And make sure that all NETCLASSes do not
// contain netnames that do not exist, by deleting all netnames from
// every netclass and re-adding them.
2009-08-17 02:59:38 +00:00
for( NETCLASSES::iterator clazz=m_NetClasses.begin(); clazz!=m_NetClasses.end(); ++clazz )
{
2009-08-17 02:59:38 +00:00
NETCLASS* netclass = clazz->second;
2009-08-17 02:59:38 +00:00
netclass->Clear();
}
m_NetClasses.GetDefault()->Clear();
2009-08-17 02:59:38 +00:00
for( int i=0; i<count; ++i )
{
NETINFO_ITEM* net = FindNet( i );
if( net )
{
2009-08-17 02:59:38 +00:00
const wxString& classname = net->GetClassName();
// because of the std:map<> this should be fast, and because of
// prior logic, netclass should not be NULL.
NETCLASS* netclass = m_NetClasses.Find( classname );
wxASSERT( netclass );
netclass->Add( net->GetNetname() );
}
}
2009-08-17 02:59:38 +00:00
// D(printf("stop\n");)
}
2009-08-17 02:59:38 +00:00
bool NETCLASSES::Save( FILE* aFile ) const
{
2009-08-17 02:59:38 +00:00
bool result;
// save the default first.
result = m_Default.Save( aFile );
2009-08-17 02:59:38 +00:00
if( result )
{
2009-08-17 02:59:38 +00:00
// the rest will be alphabetical in the *.brd file.
for( const_iterator i = begin(); i!=end(); ++i )
{
NETCLASS* netclass = i->second;
result = netclass->Save( aFile );
if( !result )
break;
}
}
2009-08-17 02:59:38 +00:00
return result;
}
bool NETCLASS::Save( FILE* aFile ) const
{
2009-08-17 02:59:38 +00:00
bool result = true;
2009-09-10 15:22:26 +00:00
fprintf( aFile, "$" BRD_NETCLASS "\n" );
fprintf( aFile, "Name \"%s\"\n", CONV_TO_UTF8( m_Name ) );
2009-08-17 02:59:38 +00:00
fprintf( aFile, "Desc \"%s\"\n", CONV_TO_UTF8( GetDescription() ) );
// Write parameters
2009-09-10 15:22:26 +00:00
2009-08-17 02:59:38 +00:00
fprintf( aFile, "Clearance %d\n", GetClearance() );
2009-09-10 15:22:26 +00:00
fprintf( aFile, "TrackWidth %d\n", GetTrackWidth() );
fprintf( aFile, "ViaDia %d\n", GetViaDiameter() );
fprintf( aFile, "ViaDrill %d\n", GetViaDrill() );
fprintf( aFile, "uViaDia %d\n", GetuViaDiameter() );
fprintf( aFile, "uViaDrill %d\n", GetuViaDrill() );
2009-08-17 02:59:38 +00:00
// Write members:
for( const_iterator i = begin(); i!=end(); ++i )
fprintf( aFile, "AddNet \"%s\"\n", CONV_TO_UTF8( *i ) );
2009-09-10 15:22:26 +00:00
fprintf( aFile, "$End" BRD_NETCLASS "\n" );
2009-08-17 02:59:38 +00:00
return result;
}
2009-08-17 02:59:38 +00:00
#if defined(DEBUG)
void NETCLASS::Show( int nestLevel, std::ostream& os )
{
2009-08-17 02:59:38 +00:00
// for now, make it look like XML:
//NestedSpace( nestLevel, os )
os << '<' << GetClass().Lower().mb_str() << ">\n";
for( const_iterator i = begin(); i!=end(); ++i )
{
// NestedSpace( nestLevel+1, os ) << *i;
os << CONV_TO_UTF8( *i );
2009-08-17 02:59:38 +00:00
}
// NestedSpace( nestLevel, os )
os << "</" << GetClass().Lower().mb_str() << ">\n";
}
2009-08-17 02:59:38 +00:00
#endif
2009-08-17 02:59:38 +00:00
bool NETCLASS::ReadDescr( LINE_READER* aReader )
{
2009-08-17 02:59:38 +00:00
bool result = false;
char* Line;
2009-08-17 02:59:38 +00:00
char Buffer[1024];
wxString netname;
while( aReader->ReadLine() )
{
Line = aReader->Line();
2009-08-17 02:59:38 +00:00
if( strnicmp( Line, "AddNet", 6 ) == 0 )
{
2009-08-17 02:59:38 +00:00
ReadDelimitedText( Buffer, Line + 6, sizeof(Buffer) );
netname = CONV_FROM_UTF8( Buffer );
Add( netname );
continue;
}
2009-08-17 02:59:38 +00:00
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "$end" BRD_NETCLASS, sizeof( "$end" BRD_NETCLASS)-1) == 0 )
{
2009-08-17 02:59:38 +00:00
result = true;
break;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "Clearance", 9 ) == 0 )
2009-08-17 02:59:38 +00:00
{
2009-09-10 15:22:26 +00:00
SetClearance( atoi( Line + 9 ) );
continue;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "TrackWidth", 10 ) == 0 )
{
2009-09-10 15:22:26 +00:00
SetTrackWidth( atoi( Line + 10 ) );
continue;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "ViaDia", 6 ) == 0 )
{
2009-09-10 15:22:26 +00:00
SetViaDiameter( atoi( Line + 6 ) );
continue;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "ViaDrill", 8 ) == 0 )
{
2009-09-10 15:22:26 +00:00
SetViaDrill( atoi( Line + 8 ) );
continue;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "uViaDia", 7 ) == 0 )
{
2009-09-10 15:22:26 +00:00
SetuViaDiameter( atoi( Line + 7 ) );
continue;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "uViaDrill", 9 ) == 0 )
{
2009-09-10 15:22:26 +00:00
SetuViaDrill( atoi( Line + 9 ) );
continue;
}
2009-09-10 15:22:26 +00:00
if( strnicmp( Line, "Name", 4 ) == 0 )
{
ReadDelimitedText( Buffer, Line + 4, sizeof(Buffer) );
m_Name = CONV_FROM_UTF8( Buffer );
2009-08-17 02:59:38 +00:00
continue;
}
2009-08-17 02:59:38 +00:00
if( strnicmp( Line, "Desc", 4 ) == 0 )
{
2009-08-17 02:59:38 +00:00
ReadDelimitedText( Buffer, Line + 4, sizeof(Buffer) );
SetDescription( CONV_FROM_UTF8( Buffer ) );
continue;
}
}
2009-08-17 02:59:38 +00:00
return result;
}
int NETCLASS::GetTrackMinWidth() const
{
return m_Parent->GetBoardDesignSettings()->m_TrackMinWidth;
}
int NETCLASS::GetViaMinDiameter() const
{
return m_Parent->GetBoardDesignSettings()->m_ViasMinSize;
}
int NETCLASS::GetViaMinDrill() const
{
return m_Parent->GetBoardDesignSettings()->m_ViasMinDrill;
}
int NETCLASS::GetuViaMinDiameter() const
{
return m_Parent->GetBoardDesignSettings()->m_MicroViasMinSize;
}
int NETCLASS::GetuViaMinDrill() const
{
return m_Parent->GetBoardDesignSettings()->m_MicroViasMinDrill;
}