KiCad PCB EDA Suite
Loading...
Searching...
No Matches
footprint_info_impl.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2011 Jean-Pierre Charras, <[email protected]>
5 * Copyright (C) 2013-2016 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright (C) 1992-2022 KiCad Developers, see AUTHORS.txt for contributors.
7 *
8 * This program is free software: you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22
23#include <footprint_info_impl.h>
24
26#include <footprint.h>
27#include <footprint_info.h>
28#include <fp_lib_table.h>
29#include <kiway.h>
30#include <locale_io.h>
31#include <lib_id.h>
32#include <progress_reporter.h>
33#include <string_utils.h>
34#include <core/thread_pool.h>
36
37#include <kiplatform/io.h>
38
39#include <wx/textfile.h>
40#include <wx/txtstrm.h>
41#include <wx/wfstream.h>
42
43
45{
46 FP_LIB_TABLE* fptable = m_owner->GetTable();
47
48 wxASSERT( fptable );
49
50 const FOOTPRINT* footprint = fptable->GetEnumeratedFootprint( m_nickname, m_fpname );
51
52 if( footprint == nullptr ) // Should happen only with malformed/broken libraries
53 {
54 m_pad_count = 0;
56 }
57 else
58 {
61 m_keywords = footprint->GetKeywords();
62 m_doc = footprint->GetLibDescription();
63 }
64
65 m_loaded = true;
66}
67
68
70{
71 m_list.clear();
73}
74
75
76bool FOOTPRINT_LIST_IMPL::CatchErrors( const std::function<void()>& aFunc )
77{
78 try
79 {
80 aFunc();
81 }
82 catch( const IO_ERROR& ioe )
83 {
84 m_errors.move_push( std::make_unique<IO_ERROR>( ioe ) );
85 return false;
86 }
87 catch( const std::exception& se )
88 {
89 // This is a round about way to do this, but who knows what THROW_IO_ERROR()
90 // may be tricked out to do someday, keep it in the game.
91 try
92 {
93 THROW_IO_ERROR( se.what() );
94 }
95 catch( const IO_ERROR& ioe )
96 {
97 m_errors.move_push( std::make_unique<IO_ERROR>( ioe ) );
98 }
99
100 return false;
101 }
102
103 return true;
104}
105
106
107bool FOOTPRINT_LIST_IMPL::ReadFootprintFiles( FP_LIB_TABLE* aTable, const wxString* aNickname,
108 PROGRESS_REPORTER* aProgressReporter )
109{
110 long long int generatedTimestamp = 0;
111
112 if( !CatchErrors( [&]()
113 {
114 generatedTimestamp = aTable->GenerateTimestamp( aNickname );
115 } ) )
116 {
117 return false;
118 }
119
120 if( generatedTimestamp == m_list_timestamp )
121 return true;
122
123 // Disable KIID generation: not needed for library parts; sometimes very slow
124 KIID_NIL_SET_RESET reset_kiid;
125
126 m_progress_reporter = aProgressReporter;
127
129 {
131 m_progress_reporter->Report( _( "Fetching footprint libraries..." ) );
132 }
133
134 m_cancelled = false;
135 m_lib_table = aTable;
136
137 // Clear data before reading files
138 m_errors.clear();
139 m_list.clear();
142
143 if( aNickname )
144 {
145 m_queue_in.push( *aNickname );
146 }
147 else
148 {
149 for( const wxString& nickname : aTable->GetLogicalLibs() )
150 m_queue_in.push( nickname );
151 }
152
153 loadLibs();
154
155 if( !m_cancelled )
156 {
158 {
161 m_progress_reporter->Report( _( "Loading footprints..." ) );
162 }
163
165
168 }
169
170 if( m_cancelled )
171 m_list_timestamp = 0; // God knows what we got before we were canceled
172 else
173 m_list_timestamp = generatedTimestamp;
174
175 return m_errors.empty();
176}
177
178
180{
182 size_t num_returns = m_queue_in.size();
183 std::vector<std::future<size_t>> returns( num_returns );
184
185 auto loader_job =
186 [this]() -> size_t
187 {
188 wxString nickname;
189 size_t retval = 0;
190
191 if( !m_cancelled && m_queue_in.pop( nickname ) )
192 {
193 if( CatchErrors( [this, &nickname]()
194 {
195 m_lib_table->PrefetchLib( nickname );
196 m_queue_out.push( nickname );
197 } ) && m_progress_reporter )
198 {
200 }
201
202 ++retval;
203 }
204
205 return retval;
206 };
207
208 for( size_t ii = 0; ii < num_returns; ++ii )
209 returns[ii] = tp.submit( loader_job );
210
211 for( const std::future<size_t>& ret : returns )
212 {
213 std::future_status status = ret.wait_for( std::chrono::milliseconds( 250 ) );
214
215 while( status != std::future_status::ready )
216 {
218 m_cancelled = true;
219
220 status = ret.wait_for( std::chrono::milliseconds( 250 ) );
221 }
222 }
223}
224
225
227{
228 LOCALE_IO toggle_locale;
229
230 // Parse the footprints in parallel. WARNING! This requires changing the locale, which is
231 // GLOBAL. It is only thread safe to construct the LOCALE_IO before the threads are created,
232 // destroy it after they finish, and block the main (GUI) thread while they work. Any deviation
233 // from this will cause nasal demons.
234 //
235 // TODO: blast LOCALE_IO into the sun
236
239 size_t num_elements = m_queue_out.size();
240 std::vector<std::future<size_t>> returns( num_elements );
241
242 auto fp_thread =
243 [ this, &queue_parsed ]() -> size_t
244 {
245 wxString nickname;
246
247 if( m_cancelled || !m_queue_out.pop( nickname ) )
248 return 0;
249
250 wxArrayString fpnames;
251
253 [&]()
254 {
255 m_lib_table->FootprintEnumerate( fpnames, nickname, false );
256 } );
257
258 for( wxString fpname : fpnames )
259 {
261 [&]()
262 {
263 auto* fpinfo = new FOOTPRINT_INFO_IMPL( this, nickname, fpname );
264 queue_parsed.move_push( std::unique_ptr<FOOTPRINT_INFO>( fpinfo ) );
265 } );
266
267 if( m_cancelled )
268 return 0;
269 }
270
273
274 return 1;
275 };
276
277 for( size_t ii = 0; ii < num_elements; ++ii )
278 returns[ii] = tp.submit( fp_thread );
279
280 for( const std::future<size_t>& ret : returns )
281 {
282 std::future_status status = ret.wait_for( std::chrono::milliseconds( 250 ) );
283
284 while( status != std::future_status::ready )
285 {
288
289 status = ret.wait_for( std::chrono::milliseconds( 250 ) );
290 }
291 }
292
293 std::unique_ptr<FOOTPRINT_INFO> fpi;
294
295 while( queue_parsed.pop( fpi ) )
296 m_list.push_back( std::move( fpi ) );
297
298 std::sort( m_list.begin(), m_list.end(),
299 []( std::unique_ptr<FOOTPRINT_INFO> const& lhs,
300 std::unique_ptr<FOOTPRINT_INFO> const& rhs ) -> bool
301 {
302 return *lhs < *rhs;
303 } );
304}
305
306
308 m_list_timestamp( 0 ),
309 m_progress_reporter( nullptr ),
310 m_cancelled( false )
311{
312}
313
314
315void FOOTPRINT_LIST_IMPL::WriteCacheToFile( const wxString& aFilePath )
316{
317 wxFileName tmpFileName = wxFileName::CreateTempFileName( aFilePath );
318 wxFFileOutputStream outStream( tmpFileName.GetFullPath() );
319 wxTextOutputStream txtStream( outStream );
320
321 if( !outStream.IsOk() )
322 {
323 return;
324 }
325
326 txtStream << wxString::Format( wxT( "%lld" ), m_list_timestamp ) << endl;
327
328 for( std::unique_ptr<FOOTPRINT_INFO>& fpinfo : m_list )
329 {
330 txtStream << fpinfo->GetLibNickname() << endl;
331 txtStream << fpinfo->GetName() << endl;
332 txtStream << EscapeString( fpinfo->GetDesc(), CTX_LINE ) << endl;
333 txtStream << EscapeString( fpinfo->GetKeywords(), CTX_LINE ) << endl;
334 txtStream << wxString::Format( wxT( "%d" ), fpinfo->GetOrderNum() ) << endl;
335 txtStream << wxString::Format( wxT( "%u" ), fpinfo->GetPadCount() ) << endl;
336 txtStream << wxString::Format( wxT( "%u" ), fpinfo->GetUniquePadCount() ) << endl;
337 }
338
339 txtStream.Flush();
340 outStream.Close();
341
342 // Preserve the permissions of the current file
343 KIPLATFORM::IO::DuplicatePermissions( aFilePath, tmpFileName.GetFullPath() );
344
345 if( !wxRenameFile( tmpFileName.GetFullPath(), aFilePath, true ) )
346 {
347 // cleanup in case rename failed
348 // its also not the end of the world since this is just a cache file
349 wxRemoveFile( tmpFileName.GetFullPath() );
350 }
351}
352
353
354void FOOTPRINT_LIST_IMPL::ReadCacheFromFile( const wxString& aFilePath )
355{
356 wxTextFile cacheFile( aFilePath );
357
359 m_list.clear();
360
361 try
362 {
363 if( cacheFile.Exists() && cacheFile.Open() )
364 {
365 cacheFile.GetFirstLine().ToLongLong( &m_list_timestamp );
366
367 while( cacheFile.GetCurrentLine() + 6 < cacheFile.GetLineCount() )
368 {
369 wxString libNickname = cacheFile.GetNextLine();
370 wxString name = cacheFile.GetNextLine();
371 wxString desc = UnescapeString( cacheFile.GetNextLine() );
372 wxString keywords = UnescapeString( cacheFile.GetNextLine() );
373 int orderNum = wxAtoi( cacheFile.GetNextLine() );
374 unsigned int padCount = (unsigned) wxAtoi( cacheFile.GetNextLine() );
375 unsigned int uniquePadCount = (unsigned) wxAtoi( cacheFile.GetNextLine() );
376
377 FOOTPRINT_INFO_IMPL* fpinfo = new FOOTPRINT_INFO_IMPL( libNickname, name, desc,
378 keywords, orderNum,
379 padCount, uniquePadCount );
380
381 m_list.emplace_back( std::unique_ptr<FOOTPRINT_INFO>( fpinfo ) );
382 }
383 }
384 }
385 catch( ... )
386 {
387 // whatever went wrong, invalidate the cache
389 }
390
391 // Sanity check: an empty list is very unlikely to be correct.
392 if( m_list.size() == 0 )
394
395 if( cacheFile.IsOpened() )
396 cacheFile.Close();
397}
const char * name
Definition: DXF_plotter.cpp:57
virtual void load() override
lazily load stuff not filled in by constructor. This may throw IO_ERRORS.
wxString m_doc
Footprint description.
wxString m_fpname
Module name.
wxString m_keywords
Footprint keywords.
unsigned m_unique_pad_count
Number of unique pads.
unsigned m_pad_count
Number of pads.
FOOTPRINT_LIST * m_owner
provides access to FP_LIB_TABLE
wxString m_nickname
library as known in FP_LIB_TABLE
bool ReadFootprintFiles(FP_LIB_TABLE *aTable, const wxString *aNickname=nullptr, PROGRESS_REPORTER *aProgressReporter=nullptr) override
Read all the footprints provided by the combination of aTable and aNickname.
std::atomic_bool m_cancelled
SYNC_QUEUE< wxString > m_queue_in
bool CatchErrors(const std::function< void()> &aFunc)
Call aFunc, pushing any IO_ERRORs and std::exceptions it throws onto m_errors.
void WriteCacheToFile(const wxString &aFilePath) override
void ReadCacheFromFile(const wxString &aFilePath) override
PROGRESS_REPORTER * m_progress_reporter
SYNC_QUEUE< wxString > m_queue_out
FP_LIB_TABLE * m_lib_table
no ownership
FP_LIB_TABLE * GetTable() const
SYNC_QUEUE< std::unique_ptr< IO_ERROR > > m_errors
some can be PARSE_ERRORs also
std::vector< std::unique_ptr< FOOTPRINT_INFO > > m_list
wxString GetLibDescription() const
Definition: footprint.h:257
unsigned GetPadCount(INCLUDE_NPTH_T aIncludeNPTH=INCLUDE_NPTH_T(INCLUDE_NPTH)) const
Return the number of pads.
Definition: footprint.cpp:1861
unsigned GetUniquePadCount(INCLUDE_NPTH_T aIncludeNPTH=INCLUDE_NPTH_T(INCLUDE_NPTH)) const
Return the number of unique non-blank pads.
Definition: footprint.cpp:1911
wxString GetKeywords() const
Definition: footprint.h:260
void FootprintEnumerate(wxArrayString &aFootprintNames, const wxString &aNickname, bool aBestEfforts)
Return a list of footprint names contained within the library given by aNickname.
const FOOTPRINT * GetEnumeratedFootprint(const wxString &aNickname, const wxString &aFootprintName)
A version of FootprintLoad() for use after FootprintEnumerate() for more efficient cache management.
long long GenerateTimestamp(const wxString *aNickname)
Generate a hashed timestamp representing the last-mod-times of the library indicated by aNickname,...
void PrefetchLib(const wxString &aNickname)
If possible, prefetches the specified library (e.g.
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
RAII class to safely set/reset nil KIIDs for use in footprint/symbol loading.
Definition: kiid.h:230
std::vector< wxString > GetLogicalLibs()
Return the logical library names, all of them that are pertinent to a look up done on this LIB_TABLE.
Instantiate the current locale within a scope in which you are expecting exceptions to be thrown.
Definition: locale_io.h:49
A progress reporter interface for use in multi-threaded environments.
virtual bool KeepRefreshing(bool aWait=false)=0
Update the UI (if any).
virtual void Report(const wxString &aMessage)=0
Display aMessage in the progress bar dialog.
virtual void AdvancePhase()=0
Use the next available virtual zone of the dialog progress bar.
virtual void AdvanceProgress()=0
Increment the progress bar length (inside the current virtual zone).
virtual void SetMaxProgress(int aMaxProgress)=0
Fix the value that gives the 100 percent progress bar length (inside the current virtual zone).
Synchronized, locking queue.
Definition: sync_queue.h:32
bool pop(T &aReceiver)
Pop a value if the queue into the provided variable.
Definition: sync_queue.h:63
bool empty() const
Return true if the queue is empty.
Definition: sync_queue.h:82
void clear()
Clear the queue.
Definition: sync_queue.h:100
size_t size() const
Return the size of the queue.
Definition: sync_queue.h:91
void push(T const &aValue)
Push a value onto the queue.
Definition: sync_queue.h:41
void move_push(T &&aValue)
Move a value onto the queue.
Definition: sync_queue.h:50
#define _(s)
@ DO_NOT_INCLUDE_NPTH
Definition: footprint.h:64
#define THROW_IO_ERROR(msg)
Definition: ki_exception.h:39
bool DuplicatePermissions(const wxString &aSrc, const wxString &aDest)
Duplicates the file security data from one file to another ensuring that they are the same between bo...
Definition: unix/io.cpp:40
wxString UnescapeString(const wxString &aSource)
wxString EscapeString(const wxString &aSource, ESCAPE_CONTEXT aContext)
The Escape/Unescape routines use HTML-entity-reference-style encoding to handle characters which are:...
@ CTX_LINE
Definition: string_utils.h:59
static thread_pool * tp
Definition: thread_pool.cpp:30
BS::thread_pool thread_pool
Definition: thread_pool.h:30
thread_pool & GetKiCadThreadPool()
Get a reference to the current thread pool.
Definition: thread_pool.cpp:32
Definition of file extensions used in Kicad.