279 lines
7.7 KiB
C++
279 lines
7.7 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2009 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
|
* Copyright (C) 2011 Wayne Stambaugh <stambaughw@verizon.net>
|
|
* Copyright (C) 1992-2011 KiCad Developers, see AUTHORS.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
|
|
*/
|
|
|
|
/**
|
|
* @file class_netlist_object.cpp
|
|
* @brief Class NETLIST_OBJECT to handle 1 item connected (in netlist and erc calculations)
|
|
*/
|
|
|
|
#include "fctsys.h"
|
|
#include "macros.h"
|
|
#include "wxEeschemaStruct.h"
|
|
|
|
#include "general.h"
|
|
#include "sch_component.h"
|
|
|
|
#if defined(DEBUG)
|
|
|
|
#include <iostream>
|
|
const char* ShowType( NETLIST_ITEM_T aType )
|
|
{
|
|
const char* ret;
|
|
|
|
switch( aType )
|
|
{
|
|
case NET_SEGMENT:
|
|
ret = "segment"; break;
|
|
|
|
case NET_BUS:
|
|
ret = "bus"; break;
|
|
|
|
case NET_JUNCTION:
|
|
ret = "junction"; break;
|
|
|
|
case NET_LABEL:
|
|
ret = "label"; break;
|
|
|
|
case NET_HIERLABEL:
|
|
ret = "hierlabel"; break;
|
|
|
|
case NET_GLOBLABEL:
|
|
ret = "glabel"; break;
|
|
|
|
case NET_BUSLABELMEMBER:
|
|
ret = "buslblmember"; break;
|
|
|
|
case NET_HIERBUSLABELMEMBER:
|
|
ret = "hierbuslblmember"; break;
|
|
|
|
case NET_GLOBBUSLABELMEMBER:
|
|
ret = "gbuslblmember"; break;
|
|
|
|
case NET_SHEETBUSLABELMEMBER:
|
|
ret = "sbuslblmember"; break;
|
|
|
|
case NET_SHEETLABEL:
|
|
ret = "sheetlabel"; break;
|
|
|
|
case NET_PINLABEL:
|
|
ret = "pinlabel"; break;
|
|
|
|
case NET_PIN:
|
|
ret = "pin"; break;
|
|
|
|
case NET_NOCONNECT:
|
|
ret = "noconnect"; break;
|
|
|
|
default:
|
|
ret = "??"; break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
void NETLIST_OBJECT::Show( std::ostream& out, int ndx )
|
|
{
|
|
wxString path = m_SheetList.PathHumanReadable();
|
|
|
|
out << "<netItem ndx=\"" << ndx << '"' <<
|
|
" type=\"" << ShowType( m_Type ) << '"' <<
|
|
" netCode=\"" << GetNet() << '"' <<
|
|
" sheet=\"" << TO_UTF8( path ) << '"' <<
|
|
">\n";
|
|
|
|
out << " <start " << m_Start << "/> <end " << m_End << "/>\n";
|
|
|
|
if( !m_Label.IsEmpty() )
|
|
out << " <label>" << m_Label.mb_str() << "</label>\n";
|
|
|
|
out << " <sheetpath>" << m_SheetList.PathHumanReadable().mb_str() << "</sheetpath>\n";
|
|
|
|
switch( m_Type )
|
|
{
|
|
case NET_PIN:
|
|
out << " <refOfComp>" << ((SCH_COMPONENT*)m_Link)->GetRef(&m_SheetList).mb_str()
|
|
<< "</refOfComp>\n";
|
|
|
|
if( m_Comp )
|
|
m_Comp->Show( 1, out );
|
|
|
|
break;
|
|
|
|
default:
|
|
// not all the m_Comp classes have working Show functions.
|
|
;
|
|
}
|
|
|
|
/* was segfault-ing
|
|
if( m_Comp )
|
|
m_Comp->Show( 1, out ); // labels may not have good Show() funcs?
|
|
else
|
|
out << " m_Comp==NULL\n";
|
|
*/
|
|
|
|
out << "</netItem>\n";
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
NETLIST_OBJECT::NETLIST_OBJECT()
|
|
{
|
|
m_Type = NET_ITEM_UNSPECIFIED; /* Type of this item (see NETLIST_ITEM_T enum) */
|
|
m_Comp = NULL; /* Pointer on the library item that created this net object
|
|
* (the parent)*/
|
|
m_Link = NULL; /* For SCH_SHEET_PIN:
|
|
* Pointer to the hierarchy sheet that contains this
|
|
* SCH_SHEET_PIN For Pins: pointer to the component that
|
|
* contains this pin
|
|
*/
|
|
m_Flag = 0; /* flag used in calculations */
|
|
m_ElectricalType = 0; /* Has meaning only for Pins and hierarchical pins: electrical
|
|
* type */
|
|
m_NetCode = 0; /* net code for all items except BUS labels because a BUS
|
|
* label has as many net codes as bus members
|
|
*/
|
|
m_BusNetCode = 0; /* Used for BUS connections */
|
|
m_Member = 0; /* for labels type NET_BUSLABELMEMBER ( bus member created
|
|
* from the BUS label ) member number
|
|
*/
|
|
m_FlagOfConnection = UNCONNECTED;
|
|
m_PinNum = 0; /* pin number ( 1 long = 4 bytes -> 4 ascii codes) */
|
|
m_NetNameCandidate = NULL; /* a pointer to a NETLIST_OBJECT type label connected to this
|
|
* object used to give a name to the net
|
|
*/
|
|
}
|
|
|
|
|
|
// Copy constructor
|
|
NETLIST_OBJECT::NETLIST_OBJECT( NETLIST_OBJECT& aSource )
|
|
{
|
|
*this = aSource;
|
|
}
|
|
|
|
|
|
NETLIST_OBJECT::~NETLIST_OBJECT()
|
|
{
|
|
}
|
|
|
|
|
|
bool NETLIST_OBJECT::IsLabelConnected( NETLIST_OBJECT* aNetItem )
|
|
{
|
|
if( aNetItem == this ) // Don't compare the same net list object.
|
|
return false;
|
|
|
|
int at = m_Type;
|
|
int bt = aNetItem->m_Type;
|
|
|
|
if( ( at == NET_HIERLABEL || at == NET_HIERBUSLABELMEMBER )
|
|
&& ( bt == NET_SHEETLABEL || bt == NET_SHEETBUSLABELMEMBER ) )
|
|
{
|
|
if( m_SheetList == aNetItem->m_SheetListInclude )
|
|
{
|
|
return true; //connected!
|
|
}
|
|
}
|
|
|
|
return false; //these two are unconnected
|
|
}
|
|
|
|
|
|
void NETLIST_OBJECT::ConvertBusToNetListItems( NETLIST_OBJECT_LIST& aNetListItems )
|
|
{
|
|
wxCHECK_RET( IsBusLabel( m_Label ),
|
|
wxT( "<" ) + m_Label + wxT( "> is not a valid bus label." ) );
|
|
|
|
if( m_Type == NET_HIERLABEL )
|
|
m_Type = NET_HIERBUSLABELMEMBER;
|
|
else if( m_Type == NET_GLOBLABEL )
|
|
m_Type = NET_GLOBBUSLABELMEMBER;
|
|
else if( m_Type == NET_SHEETLABEL )
|
|
m_Type = NET_SHEETBUSLABELMEMBER;
|
|
else if( m_Type == NET_LABEL )
|
|
m_Type = NET_BUSLABELMEMBER;
|
|
else
|
|
wxCHECK_RET( false, wxT( "Net list object type is not valid." ) );
|
|
|
|
unsigned i;
|
|
wxString tmp, busName;
|
|
long begin, end, member;
|
|
|
|
/* Search for '[' because a bus label is like "busname[nn..mm]" */
|
|
i = m_Label.Find( '[' );
|
|
|
|
busName = m_Label.Left( i );
|
|
i++;
|
|
|
|
while( m_Label[i] != '.' && i < m_Label.Len() )
|
|
{
|
|
tmp.Append( m_Label[i] );
|
|
i++;
|
|
}
|
|
|
|
tmp.ToLong( &begin );
|
|
|
|
while( m_Label[i] == '.' && i < m_Label.Len() )
|
|
i++;
|
|
|
|
tmp.Empty();
|
|
|
|
while( m_Label[i] != ']' && i < m_Label.Len() )
|
|
{
|
|
tmp.Append( m_Label[i] );
|
|
i++;
|
|
}
|
|
|
|
tmp.ToLong( &end );
|
|
|
|
if( begin < 0 )
|
|
begin = 0;
|
|
|
|
if( end < 0 )
|
|
end = 0;
|
|
|
|
if( begin > end )
|
|
EXCHG( begin, end );
|
|
|
|
member = begin;
|
|
tmp = busName;
|
|
tmp << member;
|
|
m_Label = tmp;
|
|
m_Member = member;
|
|
|
|
for( member++; member <= end; member++ )
|
|
{
|
|
NETLIST_OBJECT* item = new NETLIST_OBJECT( *this );
|
|
|
|
// Conversion of bus label to the root name + the current member id.
|
|
tmp = busName;
|
|
tmp << member;
|
|
item->m_Label = tmp;
|
|
item->m_Member = member;
|
|
|
|
aNetListItems.push_back( item );
|
|
}
|
|
}
|