256 lines
8.0 KiB
C++
256 lines
8.0 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2019 Thomas Pointhuber <thomas.pointhuber@gmx.at>
|
|
* Copyright (C) 2020-2023 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 altium_designer_plugin.cpp
|
|
* @brief Pcbnew PLUGIN for Altium *.PcbDoc format.
|
|
*/
|
|
|
|
#include <wx/string.h>
|
|
|
|
#include <altium_designer_plugin.h>
|
|
#include <altium_pcb.h>
|
|
#include "plugins/altium/altium_parser.h"
|
|
|
|
#include <board.h>
|
|
|
|
#include <compoundfilereader.h>
|
|
#include <utf.h>
|
|
|
|
ALTIUM_DESIGNER_PLUGIN::ALTIUM_DESIGNER_PLUGIN()
|
|
{
|
|
m_board = nullptr;
|
|
m_props = nullptr;
|
|
}
|
|
|
|
|
|
ALTIUM_DESIGNER_PLUGIN::~ALTIUM_DESIGNER_PLUGIN()
|
|
{
|
|
}
|
|
|
|
|
|
bool ALTIUM_DESIGNER_PLUGIN::checkFileHeader( const wxString& aFileName )
|
|
{
|
|
// Compound File Binary Format header
|
|
return fileStartsWithBinaryHeader( aFileName, { 0xD0, 0xCF, 0x11, 0xE0, 0xA1, 0xB1, 0x1A, 0xE1} );
|
|
}
|
|
|
|
|
|
bool ALTIUM_DESIGNER_PLUGIN::CanReadBoard( const wxString& aFileName ) const
|
|
{
|
|
if( !PLUGIN::CanReadBoard( aFileName ) )
|
|
return false;
|
|
|
|
return checkFileHeader( aFileName );
|
|
}
|
|
|
|
|
|
bool ALTIUM_DESIGNER_PLUGIN::CanReadFootprintLib( const wxString& aFileName ) const
|
|
{
|
|
if( !PLUGIN::CanReadFootprintLib( aFileName ) )
|
|
return false;
|
|
|
|
return checkFileHeader( aFileName );
|
|
}
|
|
|
|
|
|
BOARD* ALTIUM_DESIGNER_PLUGIN::LoadBoard( const wxString& aFileName, BOARD* aAppendToMe,
|
|
const STRING_UTF8_MAP* aProperties, PROJECT* aProject,
|
|
PROGRESS_REPORTER* aProgressReporter )
|
|
{
|
|
m_props = aProperties;
|
|
|
|
m_board = aAppendToMe ? aAppendToMe : new BOARD();
|
|
|
|
// Give the filename to the board if it's new
|
|
if( !aAppendToMe )
|
|
m_board->SetFileName( aFileName );
|
|
|
|
// clang-format off
|
|
const std::map<ALTIUM_PCB_DIR, std::string> mapping = {
|
|
{ ALTIUM_PCB_DIR::FILE_HEADER, "FileHeader" },
|
|
{ ALTIUM_PCB_DIR::ARCS6, "Arcs6" },
|
|
{ ALTIUM_PCB_DIR::BOARD6, "Board6" },
|
|
{ ALTIUM_PCB_DIR::BOARDREGIONS, "BoardRegions" },
|
|
{ ALTIUM_PCB_DIR::CLASSES6, "Classes6" },
|
|
{ ALTIUM_PCB_DIR::COMPONENTS6, "Components6" },
|
|
{ ALTIUM_PCB_DIR::COMPONENTBODIES6, "ComponentBodies6" },
|
|
{ ALTIUM_PCB_DIR::DIMENSIONS6, "Dimensions6" },
|
|
{ ALTIUM_PCB_DIR::EXTENDPRIMITIVEINFORMATION, "ExtendedPrimitiveInformation" },
|
|
{ ALTIUM_PCB_DIR::FILLS6, "Fills6" },
|
|
{ ALTIUM_PCB_DIR::MODELS, "Models" },
|
|
{ ALTIUM_PCB_DIR::NETS6, "Nets6" },
|
|
{ ALTIUM_PCB_DIR::PADS6, "Pads6" },
|
|
{ ALTIUM_PCB_DIR::POLYGONS6, "Polygons6" },
|
|
{ ALTIUM_PCB_DIR::REGIONS6, "Regions6" },
|
|
{ ALTIUM_PCB_DIR::RULES6, "Rules6" },
|
|
{ ALTIUM_PCB_DIR::SHAPEBASEDREGIONS6, "ShapeBasedRegions6" },
|
|
{ ALTIUM_PCB_DIR::TEXTS6, "Texts6" },
|
|
{ ALTIUM_PCB_DIR::TRACKS6, "Tracks6" },
|
|
{ ALTIUM_PCB_DIR::VIAS6, "Vias6" },
|
|
{ ALTIUM_PCB_DIR::WIDESTRINGS6, "WideStrings6" }
|
|
};
|
|
// clang-format on
|
|
|
|
ALTIUM_COMPOUND_FILE altiumPcbFile( aFileName );
|
|
|
|
try
|
|
{
|
|
// Parse File
|
|
ALTIUM_PCB pcb( m_board, aProgressReporter );
|
|
pcb.Parse( altiumPcbFile, mapping );
|
|
}
|
|
catch( CFB::CFBException& exception )
|
|
{
|
|
THROW_IO_ERROR( exception.what() );
|
|
}
|
|
|
|
return m_board;
|
|
}
|
|
|
|
long long ALTIUM_DESIGNER_PLUGIN::GetLibraryTimestamp( const wxString& aLibraryPath ) const
|
|
{
|
|
// File hasn't been loaded yet.
|
|
if( aLibraryPath.IsEmpty() )
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
wxFileName fn( aLibraryPath );
|
|
|
|
if( fn.IsFileReadable() )
|
|
{
|
|
return fn.GetModificationTime().GetValue().GetValue();
|
|
}
|
|
else
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
void ALTIUM_DESIGNER_PLUGIN::FootprintEnumerate( wxArrayString& aFootprintNames,
|
|
const wxString& aLibraryPath, bool aBestEfforts,
|
|
const STRING_UTF8_MAP* aProperties )
|
|
{
|
|
ALTIUM_COMPOUND_FILE* altiumLibFile = nullptr;
|
|
auto it = m_fplibFiles.find( aLibraryPath );
|
|
|
|
if( it == m_fplibFiles.end() )
|
|
{
|
|
auto new_it = m_fplibFiles.emplace( aLibraryPath, std::make_unique<ALTIUM_COMPOUND_FILE>( aLibraryPath ) );
|
|
altiumLibFile = new_it.first->second.get();
|
|
}
|
|
else
|
|
{
|
|
altiumLibFile = it->second.get();
|
|
}
|
|
|
|
try
|
|
{
|
|
// Map code-page-dependent names to unicode names
|
|
std::map<wxString, wxString> patternMap = altiumLibFile->ListLibFootprints();
|
|
|
|
const std::vector<std::string> streamName = { "Library", "Data" };
|
|
const CFB::COMPOUND_FILE_ENTRY* libraryData = altiumLibFile->FindStream( streamName );
|
|
|
|
if( libraryData == nullptr )
|
|
{
|
|
THROW_IO_ERROR(
|
|
wxString::Format( _( "File not found: '%s'." ), FormatPath( streamName ) ) );
|
|
}
|
|
|
|
ALTIUM_PARSER parser( *altiumLibFile, libraryData );
|
|
|
|
std::map<wxString, wxString> properties = parser.ReadProperties();
|
|
|
|
uint32_t numberOfFootprints = parser.Read<uint32_t>();
|
|
aFootprintNames.Alloc( numberOfFootprints );
|
|
|
|
for( size_t i = 0; i < numberOfFootprints; i++ )
|
|
{
|
|
parser.ReadAndSetSubrecordLength();
|
|
|
|
wxScopedCharBuffer charBuffer = parser.ReadCharBuffer();
|
|
wxString fpPattern( charBuffer, wxConvISO8859_1 );
|
|
|
|
auto it = patternMap.find( fpPattern );
|
|
if( it != patternMap.end() )
|
|
{
|
|
aFootprintNames.Add( it->second ); // Proper unicode name
|
|
}
|
|
else
|
|
{
|
|
THROW_IO_ERROR( wxString::Format( "Component name not found: '%s'", fpPattern ) );
|
|
}
|
|
|
|
parser.SkipSubrecord();
|
|
}
|
|
|
|
if( parser.HasParsingError() )
|
|
{
|
|
THROW_IO_ERROR( wxString::Format( "%s stream was not parsed correctly",
|
|
FormatPath( streamName ) ) );
|
|
}
|
|
|
|
if( parser.GetRemainingBytes() != 0 )
|
|
{
|
|
THROW_IO_ERROR(
|
|
wxString::Format( "%s stream is not fully parsed", FormatPath( streamName ) ) );
|
|
}
|
|
}
|
|
catch( CFB::CFBException& exception )
|
|
{
|
|
THROW_IO_ERROR( exception.what() );
|
|
}
|
|
}
|
|
|
|
FOOTPRINT* ALTIUM_DESIGNER_PLUGIN::FootprintLoad( const wxString& aLibraryPath,
|
|
const wxString& aFootprintName, bool aKeepUUID,
|
|
const STRING_UTF8_MAP* aProperties )
|
|
{
|
|
ALTIUM_COMPOUND_FILE* altiumLibFile = nullptr;
|
|
auto it = m_fplibFiles.find( aLibraryPath );
|
|
|
|
if( it == m_fplibFiles.end() )
|
|
{
|
|
auto new_it = m_fplibFiles.emplace( aLibraryPath, std::make_unique<ALTIUM_COMPOUND_FILE>( aLibraryPath ) );
|
|
altiumLibFile = new_it.first->second.get();
|
|
}
|
|
else
|
|
{
|
|
altiumLibFile = it->second.get();
|
|
}
|
|
|
|
try
|
|
{
|
|
// Parse File
|
|
ALTIUM_PCB pcb( m_board, nullptr );
|
|
return pcb.ParseFootprint( *altiumLibFile, aFootprintName );
|
|
}
|
|
catch( CFB::CFBException& exception )
|
|
{
|
|
THROW_IO_ERROR( exception.what() );
|
|
}
|
|
}
|