37#include <wx/stdpaths.h>
53 Bracket_Windows =
'%',
61 std::function<bool( wxString* )> projectResolver =
62 [&]( wxString* token ) ->
bool
72 const std::function<
bool( wxString* )>* aResolver )
74 static wxRegEx userDefinedWarningError( wxS(
"^(ERC|DRC)_(WARNING|ERROR).*$" ) );
76 size_t sourceLen = aSource.length();
78 newbuf.Alloc( sourceLen );
80 for(
size_t i = 0; i < sourceLen; ++i )
82 if( aSource[i] ==
'$' && i + 1 < sourceLen && aSource[i+1] ==
'{' )
86 for( i = i + 2; i < sourceLen; ++i )
88 if( aSource[i] ==
'}' )
91 token.append( aSource[i] );
97 if( userDefinedWarningError.Matches( token ) )
101 else if( aResolver && (*aResolver)( &token ) )
103 newbuf.append( token );
108 newbuf.append(
"${" + token +
"}" );
113 newbuf.append( aSource[i] );
123 std::function<bool( wxString* )> tokenExtractor =
124 [&]( wxString* token ) ->
bool
135 return aSource.StartsWith( wxS(
"${" ) );
147 if(
auto [
_, result ] = aSet->insert( str ); !result )
151 size_t strlen = str.length();
154 strResult.Alloc( strlen );
156 auto getVersionedEnvVar =
157 [](
const wxString& aMatch, wxString& aResult ) ->
bool
161 if( var.Matches( aMatch ) )
163 const auto value = ENV_VAR::GetEnvVar<wxString>( var );
176 for(
size_t n = 0; n < strlen; n++ )
178 wxUniChar str_n = str[n];
180 switch( str_n.GetValue() )
189 if( str_n == wxT(
'%' ) )
191 bracket = Bracket_Windows;
195 if( n == strlen - 1 )
201 switch( str[n + 1].GetValue() )
223 wxUniChar str_m = str[m];
225 while( wxIsalnum( str_m ) || str_m == wxT(
'_' ) || str_m == wxT(
':' ) )
236 wxString strVarName( str.c_str() + n + 1, m - n - 1 );
240 bool expanded =
false;
241 wxString tmp = strVarName;
248 else if( wxGetEnv( strVarName, &tmp ) )
257 else if( strVarName.Contains(
"KISYS3DMOD") || strVarName.Matches(
"KICAD*_3DMODEL_DIR" ) )
259 if( getVersionedEnvVar(
"KICAD*_3DMODEL_DIR", strResult ) )
262 else if( strVarName.Matches(
"KICAD*_SYMBOL_DIR" ) )
264 if( getVersionedEnvVar(
"KICAD*_SYMBOL_DIR", strResult ) )
267 else if( strVarName.Matches(
"KICAD*_FOOTPRINT_DIR" ) )
269 if( getVersionedEnvVar(
"KICAD*_FOOTPRINT_DIR", strResult ) )
272 else if( strVarName.Matches(
"KICAD*_3RD_PARTY" ) )
274 if( getVersionedEnvVar(
"KICAD*_3RD_PARTY", strResult ) )
281 if ( bracket != Bracket_Windows )
284 strResult << str[n - 1];
286 strResult << str_n << strVarName;
292 if( m == strlen || str_m != (wxChar)bracket )
301 wxLogWarning(
_(
"Environment variables expansion failed: missing '%c' "
302 "at position %u in '%s'." ),
303 (
char)bracket, (
unsigned int) (m + 1), str.c_str() );
310 strResult << (wxChar)bracket;
323 if( n < strlen - 1 && (str[n + 1] == wxT(
'%' ) || str[n + 1] == wxT(
'$' )) )
337 std::set<wxString> loop_check;
338 auto first_pos = strResult.find_first_of( wxS(
"{(%" ) );
339 auto last_pos = strResult.find_last_of( wxS(
"})%" ) );
341 if( first_pos != strResult.npos && last_pos != strResult.npos && first_pos != last_pos )
352 static std::mutex getenv_mutex;
354 std::lock_guard<std::mutex> lock( getenv_mutex );
370 const wxString& aBaseFilename,
374 wxString baseFilePath = wxFileName( aBaseFilename ).GetPath();
378 if( !aTargetFullFileName->MakeAbsolute( baseFilePath ) )
382 msg.Printf(
_(
"Cannot make path '%s' absolute with respect to '%s'." ),
383 aTargetFullFileName->GetPath(),
392 wxString outputPath( aTargetFullFileName->GetPath() );
394 if( !wxFileName::DirExists( outputPath ) )
397 if( wxFileName::Mkdir( outputPath, wxS_DIR_DEFAULT, wxPATH_MKDIR_FULL ) )
401 msg.Printf(
_(
"Output directory '%s' created." ), outputPath );
410 msg.Printf(
_(
"Cannot create output directory '%s'." ), outputPath );
424 wxString newFilename( aFilename );
429 if( newFilename.Lower().AfterLast(
'.' ) != aExtension )
431 if( newFilename.Last() !=
'.' )
432 newFilename.Append(
'.' );
434 newFilename.Append( aExtension );
471 if( dot_special && (*n ==
'.') )
568#if wxUSE_DATETIME && defined(__WIN32__) && !defined(__WXMICROWIN__)
574static wxInt64 EPOCH_OFFSET_IN_MSEC = wxLL(11644473600000);
577static void ConvertFileTimeToWx( wxDateTime* dt,
const FILETIME& ft )
579 wxLongLong t( ft.dwHighDateTime, ft.dwLowDateTime );
581 t -= EPOCH_OFFSET_IN_MSEC;
583 *dt = wxDateTime( t );
597long long TimestampDir(
const wxString& aDirPath,
const wxString& aFilespec )
599 long long timestamp = 0;
601#if defined( __WIN32__ )
606 std::wstring filespec( aDirPath.t_str() );
608 filespec += aFilespec.t_str();
610 WIN32_FIND_DATA findData;
611 wxDateTime lastModDate;
613 HANDLE fileHandle = ::FindFirstFile( filespec.data(), &findData );
615 if( fileHandle != INVALID_HANDLE_VALUE )
619 ConvertFileTimeToWx( &lastModDate, findData.ftLastWriteTime );
620 timestamp += lastModDate.GetValue().GetValue();
623 timestamp += findData.nFileSizeLow;
625 while ( FindNextFile( fileHandle, &findData ) != 0 );
628 FindClose( fileHandle );
632 std::string filespec( aFilespec.fn_str() );
633 std::string dir_path( aDirPath.fn_str() );
635 DIR* dir = opendir( dir_path.c_str() );
639 for( dirent* dir_entry = readdir( dir ); dir_entry; dir_entry = readdir( dir ) )
641 if( !
matchWild( filespec.c_str(), dir_entry->d_name,
true ) )
644 std::string entry_path = dir_path +
'/' + dir_entry->d_name;
645 struct stat entry_stat;
647 if( wxCRT_Lstat( entry_path.c_str(), &entry_stat ) == 0 )
650 if( S_ISLNK( entry_stat.st_mode ) )
652 char buffer[ PATH_MAX + 1 ];
653 ssize_t pathLen = readlink( entry_path.c_str(), buffer, PATH_MAX );
657 struct stat linked_stat;
658 buffer[ pathLen ] =
'\0';
659 entry_path = dir_path + buffer;
661 if( wxCRT_Lstat( entry_path.c_str(), &linked_stat ) == 0 )
663 entry_stat = linked_stat;
673 if( S_ISREG( entry_stat.st_mode ) )
675 timestamp += entry_stat.st_mtime * 1000;
678 timestamp += entry_stat.st_size;
684 timestamp += (signed) std::hash<std::string>{}( std::string( dir_entry->d_name ) );
701 wxMessageDialog dialog(
nullptr,
_(
"This operating system is not supported "
702 "by KiCad and its dependencies." ),
703 _(
"Unsupported Operating System" ),
704 wxOK | wxICON_EXCLAMATION );
706 dialog.SetExtendedMessage(
_(
"Any issues with KiCad on this system cannot "
707 "be reported to the official bugtracker." ) );
Container for project specific data.
virtual bool TextVarResolver(wxString *aToken) const
A pure virtual class used to derive REPORTER objects from.
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)=0
Report a string with a given severity.
const wxString ExpandEnvVarSubstitutions(const wxString &aString, const PROJECT *aProject)
Replace any environment variable & text variable references with their values.
const wxString ResolveUriByEnvVars(const wxString &aUri, const PROJECT *aProject)
Replace any environment and/or text variables in URIs.
wxString EnsureFileExtension(const wxString &aFilename, const wxString &aExtension)
It's annoying to throw up nag dialogs when the extension isn't right.
bool WarnUserIfOperatingSystemUnsupported()
Checks if the operating system is explicitly unsupported and displays a disclaimer message box.
bool matchWild(const char *pat, const char *text, bool dot_special)
Performance enhancements to file and directory operations.
bool EnsureFileDirectoryExists(wxFileName *aTargetFullFileName, const wxString &aBaseFilename, REPORTER *aReporter)
Make aTargetFullFileName absolute and create the path of this file if it doesn't yet exist.
wxString KIwxExpandEnvVars(const wxString &str, const PROJECT *aProject, std::set< wxString > *aSet=nullptr)
bool IsTextVar(const wxString &aSource)
Returns true if the string is a text var, e.g starts with ${.
wxString ExpandTextVars(const wxString &aSource, const PROJECT *aProject)
wxString GetTextVars(const wxString &aSource)
Returns any variables unexpanded, e.g.
long long TimestampDir(const wxString &aDirPath, const wxString &aFilespec)
A copy of ConvertFileTimeToWx() because wxWidgets left it as a static function private to src/common/...
Base window classes and related definitions.
Functions related to environment variables, including help functions.
This file contains miscellaneous commonly used macros and functions.
#define KI_FALLTHROUGH
The KI_FALLTHROUGH macro is to be used when switch statement cases should purposely fallthrough from ...
KICOMMON_API const ENV_VAR_LIST & GetPredefinedEnvVars()
Get the list of pre-defined environment variables.