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 ) );
193 aOut.
Print(
"(embedded_files " );
205 aOut.
Print(
"(file " );
208 const char* type =
nullptr;
216 default: type =
"other";
break;
219 aOut.
Print(
"(type %s)", type );
223 aOut.
Print(
"(data" );
234 aOut.
Print(
"\n%1s%.*s%s\n", first ?
"" :
"|", length, view.data(),
235 remaining == length ?
"|" :
"" );
253 std::vector<char> compressedData;
254 size_t estCompressedSize = ZSTD_compressBound( aFile.
decompressedData.size() );
255 compressedData.resize( estCompressedSize );
256 size_t compressedSize = ZSTD_compress( compressedData.data(), estCompressedSize,
260 if( ZSTD_isError( compressedSize ) )
262 compressedData.clear();
266 const size_t dstLen = wxBase64EncodedSize( compressedSize );
269 compressedData.data(), compressedSize );
271 if( retval != dstLen )
288 std::vector<char> compressedData;
291 if( compressedSize == 0 )
293 wxLogTrace( wxT(
"KICAD_EMBED" ),
294 wxT(
"%s:%s:%d\n * Base64DecodedSize failed for file '%s' with size %zu" ),
295 __FILE__, __FUNCTION__, __LINE__, aFile.
name,
300 compressedData.resize( compressedSize );
301 void* compressed = compressedData.data();
307 unsigned long long estDecompressedSize = ZSTD_getFrameContentSize( compressed, compressedSize );
309 if( estDecompressedSize > 1e9 )
312 if( estDecompressedSize == ZSTD_CONTENTSIZE_ERROR
313 || estDecompressedSize == ZSTD_CONTENTSIZE_UNKNOWN )
321 size_t decompressedSize = ZSTD_decompress( decompressed, estDecompressedSize,
322 compressed, compressedSize );
324 if( ZSTD_isError( decompressedSize ) )
326 wxLogTrace( wxT(
"KICAD_EMBED" ),
327 wxT(
"%s:%s:%d\n * ZSTD_decompress failed with error '%s'" ),
328 __FILE__, __FUNCTION__, __LINE__, ZSTD_getErrorName( decompressedSize ) );
342 std::string sha_hash;
347 wxLogTrace( wxT(
"KICAD_EMBED" ),
348 wxT(
"%s:%s:%d\n * Checksum error in embedded file '%s'" ),
349 __FILE__, __FUNCTION__, __LINE__, aFile.
name );
365 wxLogTrace( wxT(
"KICAD_EMBED" ),
366 wxT(
"%s:%s:%d\n * Checksum error in embedded file '%s'" ),
367 __FILE__, __FUNCTION__, __LINE__, aFile.
name );
382 wxFFileInputStream file( aFileName.GetFullPath() );
387 wxFileOffset length = file.GetLength();
388 std::vector<char> data( length );
393 char* dataPtr = data.data();
394 wxFileOffset totalRead = 0;
396 while( !file.Eof() && totalRead < length )
398 file.Read( dataPtr, length - totalRead );
399 size_t bytesRead = file.LastRead();
400 dataPtr += bytesRead;
401 totalRead += bytesRead;
420 CurLineNumber(), CurOffset() );
422 using namespace EMBEDDED_FILES_T;
424 std::unique_ptr<EMBEDDED_FILES::EMBEDDED_FILE> file(
nullptr );
426 for(
T token = NextTok(); token != T_RIGHT; token = NextTok() )
428 if( token != T_LEFT )
433 if( token != T_file )
438 if( !file->compressedEncodedData.empty() )
444 CurSource(), CurLine(), CurLineNumber(), CurOffset() );
448 aFiles->
AddFile( file.release() );
451 file = std::unique_ptr<EMBEDDED_FILES::EMBEDDED_FILE>(
nullptr );
453 for( token = NextTok(); token != T_RIGHT; token = NextTok() )
455 if( token != T_LEFT )
466 NeedSYMBOLorNUMBER();
468 if( !IsSymbol( token ) )
469 Expecting(
"checksum data" );
471 file->data_hash = CurStr();
486 if( curTok == T_RIGHT )
498 file->compressedEncodedData.reserve( 1 << 17 );
500 while( token != T_BAR )
502 if( !IsSymbol( token ) )
503 Expecting(
"base64 file data" );
505 file->compressedEncodedData += CurStr();
509 file->compressedEncodedData.shrink_to_fit();
517 wxLogTrace( wxT(
"KICAD_EMBED" ),
518 wxT(
"Duplicate 'name' tag in embedded file %s" ), file->name );
521 NeedSYMBOLorNUMBER();
523 file = std::make_unique<EMBEDDED_FILES::EMBEDDED_FILE>();
524 file->name = CurStr();
542 default: Expecting(
"datasheet, font, model, worksheet or other" );
break;
549 Expecting(
"checksum, data or name" );
557 if( !file->compressedEncodedData.empty() )
563 CurSource(), CurLine(), CurLineNumber(), CurOffset() );
567 aFiles->
AddFile( file.release() );
574 wxFileName cacheFile;
576 auto it =
m_files.find( aName );
582 cacheFile.AppendDir( wxT(
"embed" ) );
586 wxLogTrace( wxT(
"KICAD_EMBED" ),
587 wxT(
"%s:%s:%d\n * failed to create embed cache directory '%s'" ),
588 __FILE__, __FUNCTION__, __LINE__, cacheFile.GetPath() );
590 cacheFile.SetPath( wxFileName::GetTempDir() );
593 wxFileName inputName( aName );
597 cacheFile.SetName(
"kicad_embedded_" + it->second->data_hash );
598 cacheFile.SetExt( inputName.GetExt() );
600 if( cacheFile.FileExists() && cacheFile.IsFileReadable() )
603 wxFFileOutputStream out( cacheFile.GetFullPath() );
611 out.Write( it->second->decompressedData.data(), it->second->decompressedData.size() );
639 m_files( std::move( other.m_files ) ),
644 other.m_embedFonts =
false;
654 m_files = std::move( other.m_files );
658 other.m_embedFonts =
false;
691 m_files[
name] = std::make_shared<EMBEDDED_FILE>( *file );
713 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.
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.