2020-04-03 23:22:24 +00:00
|
|
|
|
/*
|
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2019-2020 Thomas Pointhuber <thomas.pointhuber@gmx.at>
|
|
|
|
|
*
|
|
|
|
|
* 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 "altium_parser.h"
|
2021-07-01 18:41:46 +00:00
|
|
|
|
#include "altium_parser_utils.h"
|
2020-04-03 23:22:24 +00:00
|
|
|
|
|
|
|
|
|
#include <compoundfilereader.h>
|
|
|
|
|
#include <ki_exception.h>
|
2021-06-02 04:50:46 +00:00
|
|
|
|
#include <math/util.h>
|
2022-02-19 15:45:55 +00:00
|
|
|
|
#include <numeric>
|
2020-04-03 23:22:24 +00:00
|
|
|
|
#include <sstream>
|
|
|
|
|
#include <utf.h>
|
2021-06-07 22:38:35 +00:00
|
|
|
|
#include <wx/log.h>
|
2021-06-26 19:21:30 +00:00
|
|
|
|
#include <wx/translation.h>
|
2020-04-03 23:22:24 +00:00
|
|
|
|
|
2022-01-06 15:27:09 +00:00
|
|
|
|
|
2022-02-19 15:45:55 +00:00
|
|
|
|
// Helper for debug logging
|
|
|
|
|
std::string FormatPath( const std::vector<std::string>& aVectorPath )
|
|
|
|
|
{
|
|
|
|
|
return std::accumulate( aVectorPath.cbegin(), aVectorPath.cend(), std::string(),
|
|
|
|
|
[]( const std::string& ss, const std::string& s )
|
|
|
|
|
{
|
|
|
|
|
return ss.empty() ? s : ss + '\\' + s;
|
|
|
|
|
} );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-01-06 15:27:09 +00:00
|
|
|
|
ALTIUM_COMPOUND_FILE::ALTIUM_COMPOUND_FILE( const wxString& aFilePath )
|
|
|
|
|
{
|
|
|
|
|
// Open file
|
|
|
|
|
FILE* fp = wxFopen( aFilePath, "rb" );
|
|
|
|
|
|
|
|
|
|
if( fp == nullptr )
|
|
|
|
|
{
|
|
|
|
|
THROW_IO_ERROR( wxString::Format( _( "Cannot open file '%s'." ), aFilePath ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fseek( fp, 0, SEEK_END );
|
|
|
|
|
long len = ftell( fp );
|
|
|
|
|
|
|
|
|
|
if( len < 0 )
|
|
|
|
|
{
|
|
|
|
|
fclose( fp );
|
|
|
|
|
THROW_IO_ERROR( _( "Error reading file: cannot determine length." ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Read into buffer (TODO: add support for memory-mapped files to avoid this copy!)
|
|
|
|
|
m_buffer.resize( len );
|
|
|
|
|
|
|
|
|
|
fseek( fp, 0, SEEK_SET );
|
|
|
|
|
|
|
|
|
|
size_t bytesRead = fread( m_buffer.data(), sizeof( unsigned char ), len, fp );
|
|
|
|
|
fclose( fp );
|
|
|
|
|
|
|
|
|
|
if( static_cast<size_t>( len ) != bytesRead )
|
|
|
|
|
{
|
|
|
|
|
THROW_IO_ERROR( _( "Error reading file." ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
m_reader = std::make_unique<CFB::CompoundFileReader>( m_buffer.data(), m_buffer.size() );
|
|
|
|
|
}
|
|
|
|
|
catch( CFB::CFBException& exception )
|
|
|
|
|
{
|
|
|
|
|
THROW_IO_ERROR( exception.what() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-01-05 22:35:42 +00:00
|
|
|
|
static const CFB::COMPOUND_FILE_ENTRY*
|
|
|
|
|
FindStreamSingleLevel( const CFB::CompoundFileReader& aReader,
|
|
|
|
|
const CFB::COMPOUND_FILE_ENTRY* aEntry, const std::string aName,
|
|
|
|
|
const bool aIsStream )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
|
|
|
|
const CFB::COMPOUND_FILE_ENTRY* ret = nullptr;
|
2022-01-05 22:35:42 +00:00
|
|
|
|
|
|
|
|
|
aReader.EnumFiles( aEntry, 1,
|
|
|
|
|
[&]( const CFB::COMPOUND_FILE_ENTRY* entry, const CFB::utf16string& dir,
|
|
|
|
|
int level ) -> void
|
|
|
|
|
{
|
|
|
|
|
if( aReader.IsStream( entry ) == aIsStream )
|
|
|
|
|
{
|
|
|
|
|
std::string name = UTF16ToUTF8( entry->name );
|
|
|
|
|
if( name == aName.c_str() )
|
|
|
|
|
{
|
|
|
|
|
ret = entry;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-06 15:27:09 +00:00
|
|
|
|
|
|
|
|
|
const CFB::COMPOUND_FILE_ENTRY*
|
2022-02-19 15:45:55 +00:00
|
|
|
|
ALTIUM_COMPOUND_FILE::FindStream( const std::vector<std::string>& aStreamPath ) const
|
2022-01-05 22:35:42 +00:00
|
|
|
|
{
|
2022-01-06 15:27:09 +00:00
|
|
|
|
if( !m_reader )
|
|
|
|
|
{
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const CFB::COMPOUND_FILE_ENTRY* currentDirEntry = m_reader->GetRootEntry();
|
2022-01-05 22:35:42 +00:00
|
|
|
|
|
2022-02-19 15:45:55 +00:00
|
|
|
|
auto it = aStreamPath.cbegin();
|
|
|
|
|
while( currentDirEntry != nullptr )
|
2022-01-05 22:35:42 +00:00
|
|
|
|
{
|
2022-02-19 15:45:55 +00:00
|
|
|
|
const std::string& name = *it;
|
|
|
|
|
|
|
|
|
|
if( ++it == aStreamPath.cend() )
|
2022-01-05 22:35:42 +00:00
|
|
|
|
{
|
2022-02-19 15:45:55 +00:00
|
|
|
|
return FindStreamSingleLevel( *m_reader.get(), currentDirEntry, name, true );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
currentDirEntry =
|
|
|
|
|
FindStreamSingleLevel( *m_reader.get(), currentDirEntry, name, false );
|
2022-01-05 22:35:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-19 15:45:55 +00:00
|
|
|
|
return nullptr;
|
2022-01-05 22:35:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-03 23:22:24 +00:00
|
|
|
|
|
2022-01-06 15:27:09 +00:00
|
|
|
|
ALTIUM_PARSER::ALTIUM_PARSER( const ALTIUM_COMPOUND_FILE& aFile,
|
2021-07-01 18:41:46 +00:00
|
|
|
|
const CFB::COMPOUND_FILE_ENTRY* aEntry )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
|
|
|
|
m_subrecord_end = nullptr;
|
2020-08-23 19:01:08 +00:00
|
|
|
|
m_size = static_cast<size_t>( aEntry->size );
|
|
|
|
|
m_error = false;
|
2020-04-03 23:22:24 +00:00
|
|
|
|
m_content.reset( new char[m_size] );
|
|
|
|
|
m_pos = m_content.get();
|
|
|
|
|
|
|
|
|
|
// read file into buffer
|
2022-01-06 15:27:09 +00:00
|
|
|
|
aFile.GetCompoundFileReader().ReadFile( aEntry, 0, m_content.get(), m_size );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-03-08 22:02:05 +00:00
|
|
|
|
ALTIUM_PARSER::ALTIUM_PARSER( std::unique_ptr<char[]>& aContent, size_t aSize )
|
|
|
|
|
{
|
|
|
|
|
m_subrecord_end = nullptr;
|
|
|
|
|
m_size = aSize;
|
|
|
|
|
m_error = false;
|
|
|
|
|
m_content = std::move( aContent );
|
|
|
|
|
m_pos = m_content.get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-04-03 23:22:24 +00:00
|
|
|
|
std::map<wxString, wxString> ALTIUM_PARSER::ReadProperties()
|
|
|
|
|
{
|
|
|
|
|
std::map<wxString, wxString> kv;
|
|
|
|
|
|
|
|
|
|
uint32_t length = Read<uint32_t>();
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-02-07 15:51:05 +00:00
|
|
|
|
if( length > GetRemainingBytes() )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
|
|
|
|
m_error = true;
|
|
|
|
|
return kv;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 22:02:05 +00:00
|
|
|
|
if( length == 0 )
|
|
|
|
|
{
|
|
|
|
|
return kv;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-07 15:51:05 +00:00
|
|
|
|
// There is one case by kliment where Board6 ends with "|NEARDISTANCE=1000mi".
|
|
|
|
|
// Both the 'l' and the null-byte are missing, which looks like Altium swallowed two bytes.
|
2021-03-08 22:02:05 +00:00
|
|
|
|
bool hasNullByte = m_pos[length - 1] == '\0';
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-03-08 22:02:05 +00:00
|
|
|
|
if( !hasNullByte )
|
2021-02-07 15:51:05 +00:00
|
|
|
|
{
|
2021-07-10 15:37:19 +00:00
|
|
|
|
wxLogError( _( "Missing null byte at end of property list. Imported data might be "
|
|
|
|
|
"malformed or missing." ) );
|
2021-02-07 15:51:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-08 22:02:05 +00:00
|
|
|
|
// we use std::string because std::string can handle NULL-bytes
|
|
|
|
|
// wxString would end the string at the first NULL-byte
|
|
|
|
|
std::string str = std::string( m_pos, length - ( hasNullByte ? 1 : 0 ) );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
m_pos += length;
|
|
|
|
|
|
|
|
|
|
std::size_t token_end = 0;
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2020-04-03 23:22:24 +00:00
|
|
|
|
while( token_end < str.size() && token_end != std::string::npos )
|
|
|
|
|
{
|
|
|
|
|
std::size_t token_start = str.find( '|', token_end );
|
|
|
|
|
std::size_t token_equal = str.find( '=', token_start );
|
2021-03-08 22:02:05 +00:00
|
|
|
|
token_end = str.find( '|', token_start + 1 );
|
|
|
|
|
|
|
|
|
|
if( token_equal >= token_end )
|
|
|
|
|
{
|
|
|
|
|
continue; // this looks like an error: skip the entry. Also matches on std::string::npos
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( token_end == std::string::npos )
|
|
|
|
|
{
|
|
|
|
|
token_end = str.size() + 1; // this is the correct offset
|
|
|
|
|
}
|
2020-04-03 23:22:24 +00:00
|
|
|
|
|
|
|
|
|
std::string keyS = str.substr( token_start + 1, token_equal - token_start - 1 );
|
|
|
|
|
std::string valueS = str.substr( token_equal + 1, token_end - token_equal - 1 );
|
|
|
|
|
|
2021-03-08 22:02:05 +00:00
|
|
|
|
// convert the strings to wxStrings, since we use them everywhere
|
|
|
|
|
// value can have non-ASCII characters, so we convert them from LATIN1/ISO8859-1
|
2020-04-03 23:22:24 +00:00
|
|
|
|
wxString key( keyS.c_str(), wxConvISO8859_1 );
|
2020-10-18 13:23:07 +00:00
|
|
|
|
// Altium stores keys either in Upper, or in CamelCase. Lets unify it.
|
2021-06-26 11:58:56 +00:00
|
|
|
|
wxString canonicalKey = key.Trim( false ).Trim( true ).MakeUpper();
|
|
|
|
|
// If the key starts with '%UTF8%' we have to parse the value using UTF8
|
|
|
|
|
wxString value;
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-06-26 11:58:56 +00:00
|
|
|
|
if( canonicalKey.StartsWith( "%UTF8%" ) )
|
|
|
|
|
value = wxString( valueS.c_str(), wxConvUTF8 );
|
|
|
|
|
else
|
|
|
|
|
value = wxString( valueS.c_str(), wxConvISO8859_1 );
|
|
|
|
|
|
2021-07-24 13:23:55 +00:00
|
|
|
|
// Breathless hack because I haven't a clue what the story is here (but this character
|
|
|
|
|
// appears in a lot of radial dimensions and is rendered by Altium as a space).
|
|
|
|
|
value.Replace( wxT( "ÿ" ), wxT( " " ) );
|
|
|
|
|
|
2021-07-08 14:52:09 +00:00
|
|
|
|
if( canonicalKey == wxT( "DESIGNATOR" )
|
|
|
|
|
|| canonicalKey == wxT( "NAME" )
|
|
|
|
|
|| canonicalKey == wxT( "TEXT" ) )
|
|
|
|
|
{
|
2021-07-06 10:33:41 +00:00
|
|
|
|
value = AltiumPropertyToKiCadString( value.Trim() );
|
2021-07-08 14:52:09 +00:00
|
|
|
|
}
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-06-26 11:58:56 +00:00
|
|
|
|
kv.insert( { canonicalKey, value.Trim() } );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return kv;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-02 04:50:46 +00:00
|
|
|
|
|
|
|
|
|
int32_t ALTIUM_PARSER::ConvertToKicadUnit( const double aValue )
|
|
|
|
|
{
|
2022-03-22 22:34:04 +00:00
|
|
|
|
constexpr double int_limit = ( std::numeric_limits<int>::max() - 10 ) / 2.54;
|
2021-06-02 04:50:46 +00:00
|
|
|
|
|
|
|
|
|
int32_t iu = KiROUND( Clamp<double>( -int_limit, aValue, int_limit ) * 2.54 );
|
|
|
|
|
|
2022-03-22 22:34:04 +00:00
|
|
|
|
// Altium's internal precision is 0.1uinch. KiCad's is 1nm. Round to nearest 10nm to clean
|
|
|
|
|
// up most rounding errors. This allows lossless conversion of increments of 0.05mils and
|
|
|
|
|
// 0.01um.
|
|
|
|
|
return KiROUND( (double) iu / 10.0 ) * 10;
|
2021-06-02 04:50:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
int ALTIUM_PARSER::ReadInt( const std::map<wxString, wxString>& aProps, const wxString& aKey,
|
|
|
|
|
int aDefault )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-07-23 20:46:04 +00:00
|
|
|
|
const std::map<wxString, wxString>::const_iterator& value = aProps.find( aKey );
|
|
|
|
|
return value == aProps.end() ? aDefault : wxAtoi( value->second );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-02 04:50:46 +00:00
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
double ALTIUM_PARSER::ReadDouble( const std::map<wxString, wxString>& aProps, const wxString& aKey,
|
|
|
|
|
double aDefault )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-07-23 20:46:04 +00:00
|
|
|
|
const std::map<wxString, wxString>::const_iterator& value = aProps.find( aKey );
|
|
|
|
|
|
|
|
|
|
if( value == aProps.end() )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
return aDefault;
|
2020-04-06 15:38:26 +00:00
|
|
|
|
|
|
|
|
|
// Locale independent str -> double conversation
|
|
|
|
|
std::istringstream istr( (const char*) value->second.mb_str() );
|
2021-02-27 01:21:55 +00:00
|
|
|
|
istr.imbue( std::locale::classic() );
|
2020-04-06 15:38:26 +00:00
|
|
|
|
|
|
|
|
|
double doubleValue;
|
|
|
|
|
istr >> doubleValue;
|
|
|
|
|
return doubleValue;
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
bool ALTIUM_PARSER::ReadBool( const std::map<wxString, wxString>& aProps, const wxString& aKey,
|
|
|
|
|
bool aDefault )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-07-23 20:46:04 +00:00
|
|
|
|
const std::map<wxString, wxString>::const_iterator& value = aProps.find( aKey );
|
|
|
|
|
|
|
|
|
|
if( value == aProps.end() )
|
2020-10-14 19:04:53 +00:00
|
|
|
|
return aDefault;
|
|
|
|
|
else
|
|
|
|
|
return value->second == "T" || value->second == "TRUE";
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
int32_t ALTIUM_PARSER::ReadKicadUnit( const std::map<wxString, wxString>& aProps,
|
|
|
|
|
const wxString& aKey, const wxString& aDefault )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-07-23 20:46:04 +00:00
|
|
|
|
const wxString& value = ReadString( aProps, aKey, aDefault );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
|
2021-01-31 12:50:17 +00:00
|
|
|
|
wxString prefix;
|
2021-06-26 19:21:30 +00:00
|
|
|
|
|
2021-01-31 12:50:17 +00:00
|
|
|
|
if( !value.EndsWith( "mil", &prefix ) )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-06-26 19:21:30 +00:00
|
|
|
|
wxLogError( _( "Unit '%s' does not end with 'mil'." ), value );
|
2021-01-31 12:50:17 +00:00
|
|
|
|
return 0;
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-31 12:50:17 +00:00
|
|
|
|
double mils;
|
2021-06-26 19:21:30 +00:00
|
|
|
|
|
2021-01-31 12:50:17 +00:00
|
|
|
|
if( !prefix.ToCDouble( &mils ) )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-06-26 19:21:30 +00:00
|
|
|
|
wxLogError( _( "Cannot convert '%s' to double." ), prefix );
|
2021-01-31 12:50:17 +00:00
|
|
|
|
return 0;
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-31 12:50:17 +00:00
|
|
|
|
return ConvertToKicadUnit( mils * 10000 );
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
wxString ALTIUM_PARSER::ReadString( const std::map<wxString, wxString>& aProps,
|
|
|
|
|
const wxString& aKey, const wxString& aDefault )
|
2020-04-03 23:22:24 +00:00
|
|
|
|
{
|
2021-07-23 20:46:04 +00:00
|
|
|
|
const auto& utf8Value = aProps.find( wxString( "%UTF8%" ) + aKey );
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
if( utf8Value != aProps.end() )
|
2021-06-26 11:58:56 +00:00
|
|
|
|
return utf8Value->second;
|
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
const auto& value = aProps.find( aKey );
|
2021-07-01 18:41:46 +00:00
|
|
|
|
|
2021-07-23 20:46:04 +00:00
|
|
|
|
if( value != aProps.end() )
|
2021-07-01 18:41:46 +00:00
|
|
|
|
return value->second;
|
|
|
|
|
|
|
|
|
|
return aDefault;
|
2020-04-03 23:22:24 +00:00
|
|
|
|
}
|