25#include <wx/filename.h>
27#include <wx/mstream.h>
28#include <wx/wfstream.h>
71 if(
HasFile( aName.GetFullName() ) )
74 return m_files[aName.GetFullName()].get();
76 m_files.erase( aName.GetFullName() );
79 wxFFileInputStream file( aName.GetFullPath() );
80 wxMemoryBuffer buffer;
85 wxFileOffset length = file.GetLength();
87 std::shared_ptr<EMBEDDED_FILE> efile = std::make_shared<EMBEDDED_FILE>();
88 efile->name = aName.GetFullName();
89 efile->decompressedData.resize( length );
91 wxString ext = aName.GetExt().Upper();
94 if( ext ==
"STP" || ext ==
"STPZ" || ext ==
"STEP" || ext ==
"WRL" || ext ==
"WRZ" )
98 else if( ext ==
"WOFF" || ext ==
"WOFF2" || ext ==
"TTF" || ext ==
"OTF" )
102 else if( ext ==
"PDF" )
106 else if( ext ==
"KICAD_WKS" )
111 if( !efile->decompressedData.data() )
114 char* data = efile->decompressedData.data();
115 wxFileOffset total_read = 0;
117 while( !file.Eof() && total_read < length )
119 file.Read( data, length - total_read );
121 size_t read = file.LastRead();
129 efile->is_valid =
true;
132 m_files[aName.GetFullName()] = std::move( efile );
143 AddFile( std::shared_ptr<EMBEDDED_FILE>( aFile ) );
152 wxString
name = aFile->name;
153 auto [it, inserted] =
m_files.emplace( std::move(
name ), std::move( aFile ) );
178 const std::set<wxString>& aExcludedNames )
181 std::map<wxString, std::shared_ptr<EMBEDDED_FILE>> filtered;
185 if( aExcludedNames.count( file->name ) )
188 filtered[
name] = file;
191 m_files = std::move( filtered );
211 aOut.
Print(
"(embedded_files " );
223 aOut.
Print(
"(file " );
226 const char* type =
nullptr;
234 default: type =
"other";
break;
237 aOut.
Print(
"(type %s)", type );
241 aOut.
Print(
"(data" );
252 aOut.
Print(
"\n%1s%.*s%s\n", first ?
"" :
"|", length, view.data(),
253 remaining == length ?
"|" :
"" );
271 std::vector<char> compressedData;
272 size_t estCompressedSize = ZSTD_compressBound( aFile.
decompressedData.size() );
273 compressedData.resize( estCompressedSize );
274 size_t compressedSize = ZSTD_compress( compressedData.data(), estCompressedSize,
278 if( ZSTD_isError( compressedSize ) )
280 compressedData.clear();
284 const size_t dstLen = wxBase64EncodedSize( compressedSize );
287 compressedData.data(), compressedSize );
289 if( retval != dstLen )
306 std::vector<char> compressedData;
309 if( compressedSize == 0 )
311 wxLogTrace( wxT(
"KICAD_EMBED" ),
312 wxT(
"%s:%s:%d\n * Base64DecodedSize failed for file '%s' with size %zu" ),
313 __FILE__, __FUNCTION__, __LINE__, aFile.
name,
318 compressedData.resize( compressedSize );
319 void* compressed = compressedData.data();
325 unsigned long long estDecompressedSize = ZSTD_getFrameContentSize( compressed, compressedSize );
327 if( estDecompressedSize > 1e9 )
330 if( estDecompressedSize == ZSTD_CONTENTSIZE_ERROR
331 || estDecompressedSize == ZSTD_CONTENTSIZE_UNKNOWN )
339 size_t decompressedSize = ZSTD_decompress( decompressed, estDecompressedSize,
340 compressed, compressedSize );
342 if( ZSTD_isError( decompressedSize ) )
344 wxLogTrace( wxT(
"KICAD_EMBED" ),
345 wxT(
"%s:%s:%d\n * ZSTD_decompress failed with error '%s'" ),
346 __FILE__, __FUNCTION__, __LINE__, ZSTD_getErrorName( decompressedSize ) );
360 std::string sha_hash;
365 wxLogTrace( wxT(
"KICAD_EMBED" ),
366 wxT(
"%s:%s:%d\n * Checksum error in embedded file '%s'" ),
367 __FILE__, __FUNCTION__, __LINE__, aFile.
name );
383 wxLogTrace( wxT(
"KICAD_EMBED" ),
384 wxT(
"%s:%s:%d\n * Checksum error in embedded file '%s'" ),
385 __FILE__, __FUNCTION__, __LINE__, aFile.
name );
400 wxFFileInputStream file( aFileName.GetFullPath() );
405 wxFileOffset length = file.GetLength();
406 std::vector<char> data( length );
411 char* dataPtr = data.data();
412 wxFileOffset totalRead = 0;
414 while( !file.Eof() && totalRead < length )
416 file.Read( dataPtr, length - totalRead );
417 size_t bytesRead = file.LastRead();
418 dataPtr += bytesRead;
419 totalRead += bytesRead;
438 CurLineNumber(), CurOffset() );
440 using namespace EMBEDDED_FILES_T;
442 std::unique_ptr<EMBEDDED_FILES::EMBEDDED_FILE> file(
nullptr );
444 for(
T token = NextTok(); token != T_RIGHT; token = NextTok() )
446 if( token != T_LEFT )
451 if( token != T_file )
456 if( !file->compressedEncodedData.empty() )
462 CurSource(), CurLine(), CurLineNumber(), CurOffset() );
466 aFiles->
AddFile( file.release() );
469 file = std::unique_ptr<EMBEDDED_FILES::EMBEDDED_FILE>(
nullptr );
471 for( token = NextTok(); token != T_RIGHT; token = NextTok() )
473 if( token != T_LEFT )
484 NeedSYMBOLorNUMBER();
486 if( !IsSymbol( token ) )
487 Expecting(
"checksum data" );
489 file->data_hash = CurStr();
504 if( curTok == T_RIGHT )
516 file->compressedEncodedData.reserve( 1 << 17 );
518 while( token != T_BAR )
520 if( !IsSymbol( token ) )
521 Expecting(
"base64 file data" );
523 file->compressedEncodedData += CurStr();
527 file->compressedEncodedData.shrink_to_fit();
535 wxLogTrace( wxT(
"KICAD_EMBED" ),
536 wxT(
"Duplicate 'name' tag in embedded file %s" ), file->name );
539 NeedSYMBOLorNUMBER();
541 file = std::make_unique<EMBEDDED_FILES::EMBEDDED_FILE>();
542 file->name = CurStr();
560 default: Expecting(
"datasheet, font, model, worksheet or other" );
break;
567 Expecting(
"checksum, data or name" );
575 if( !file->compressedEncodedData.empty() )
581 CurSource(), CurLine(), CurLineNumber(), CurOffset() );
585 aFiles->
AddFile( file.release() );
592 wxFileName cacheFile;
594 auto it =
m_files.find( aName );
600 cacheFile.AppendDir( wxT(
"embed" ) );
604 wxLogTrace( wxT(
"KICAD_EMBED" ),
605 wxT(
"%s:%s:%d\n * failed to create embed cache directory '%s'" ),
606 __FILE__, __FUNCTION__, __LINE__, cacheFile.GetPath() );
608 cacheFile.SetPath( wxFileName::GetTempDir() );
611 wxFileName inputName( aName );
615 cacheFile.SetName(
"kicad_embedded_" + it->second->data_hash );
616 cacheFile.SetExt( inputName.GetExt() );
618 if( cacheFile.FileExists() && cacheFile.IsFileReadable() )
621 wxFFileOutputStream out( cacheFile.GetFullPath() );
629 out.Write( it->second->decompressedData.data(), it->second->decompressedData.size() );
657 m_files( std::move( other.m_files ) ),
662 other.m_embedFonts =
false;
672 m_files = std::move( other.m_files );
676 other.m_embedFonts =
false;
709 m_files[
name] = std::make_shared<EMBEDDED_FILE>( *file );
731 m_files[
name] = std::make_shared<EMBEDDED_FILE>( *file );
void ParseEmbedded(EMBEDDED_FILES *aFiles)
std::vector< wxString > m_fontFiles
void RemoveFile(const wxString &name, bool aErase=true)
Remove a file from the collection and frees the memory.
@ OUT_OF_MEMORY
Could not allocate memory.
@ FILE_NOT_FOUND
File not found on disk.
@ CHECKSUM_ERROR
Checksum in file does not match data.
wxFileName GetTemporaryFileName(const wxString &aName) const
void WriteEmbeddedFiles(OUTPUTFORMATTER &aOut, bool aWriteData) const
Output formatter for the embedded files.
const std::vector< wxString > * UpdateFontFiles()
Helper function to get a list of fonts for fontconfig to add to the library.
FILE_ADDED_CALLBACK m_fileAddedCallback
static RETURN_CODE DecompressAndDecode(EMBEDDED_FILE &aFile)
Takes data from the #compressedEncodedData buffer and Base64 decodes it.
static RETURN_CODE ComputeFileHash(const wxFileName &aFileName, std::string &aHash)
Compute the hash of a file on disk without fully embedding it.
bool HasFile(const wxString &name) const
void ClearEmbeddedFiles(bool aDeleteFiles=true)
void ClearEmbeddedFonts()
Remove all embedded fonts from the collection.
EMBEDDED_FILES & operator=(EMBEDDED_FILES &&other) noexcept
EMBEDDED_FILE * AddFile(const wxFileName &aName, bool aOverwrite)
Load a file from disk and adds it to the collection.
const std::vector< wxString > * GetFontFiles() const
If we just need the cached version of the font files, we can use this function which is const and wil...
std::map< wxString, std::shared_ptr< EMBEDDED_FILE > > m_files
static RETURN_CODE CompressAndEncode(EMBEDDED_FILE &aFile)
Take data from the #decompressedData buffer and compresses it using ZSTD into the #compressedEncodedD...
bool m_embedFonts
If set, fonts will be embedded in the element on save.
void AssignSharedFrom(const EMBEDDED_FILES &aSource, const std::set< wxString > &aExcludedNames={})
Replace this collection's files with references to aSource's files, skipping any whose name appears i...
A streaming C++ equivalent for MurmurHash3_x64_128.
FORCE_INLINE void addDataV1(const uint8_t *data, size_t length)
FORCE_INLINE void add(const std::string &input)
FORCE_INLINE HASH_128 digest()
static bool EnsurePathExists(const wxString &aPath, bool aPathToFile=false)
Attempts to create a given path if it does not exist.
static wxString GetUserCachePath()
Gets the stock (install) 3d viewer plugins path.
static const std::string KiCadUriPrefix
#define THROW_PARSE_ERROR(aProblem, aSource, aInputLine, aLineNumber, aByteIndex)
#define MIME_BASE64_LENGTH
std::vector< char > decompressedData
std::string compressedEncodedData
std::string ToString() const
A filename or source description, a problem input line, a line number, a byte offset,...
wxString result
Test unit parsing edge cases and error handling.
Definition of file extensions used in Kicad.