/* * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2014 CERN * Copyright (C) 2014-2018 KiCad Developers, see CHANGELOG.TXT for contributors. * * 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 #include #include #include #if defined(__MINGW32__) #define PATH_SEPS wxT( ";\r\n" ) #else #define PATH_SEPS wxT( ":;\r\n" ) // unix == linux | mac #endif int SEARCH_STACK::Split( wxArrayString* aResult, const wxString& aPathString ) { wxStringTokenizer tokenizer( aPathString, PATH_SEPS, wxTOKEN_STRTOK ); while( tokenizer.HasMoreTokens() ) { wxString path = tokenizer.GetNextToken(); aResult->Add( path ); } return aResult->GetCount(); } // Convert aRelativePath to an absolute path based on aBaseDir static wxString base_dir( const wxString& aRelativePath, const wxString& aBaseDir ) { wxFileName fn = aRelativePath; if( !fn.IsAbsolute() && !!aBaseDir ) { wxASSERT_MSG( wxFileName( aBaseDir ).IsAbsolute(), wxT( "Must pass absolute path in aBaseDir" ) ); fn.MakeRelativeTo( aBaseDir ); } return fn.GetFullPath(); } wxString SEARCH_STACK::FilenameWithRelativePathInSearchList( const wxString& aFullFilename, const wxString& aBaseDir ) { wxFileName fn = aFullFilename; wxString filename = aFullFilename; unsigned pathlen = fn.GetPath().Len(); // path len, used to find the better (shortest) // subpath within defaults paths for( unsigned kk = 0; kk < GetCount(); kk++ ) { fn = aFullFilename; // Search for the shortest subpath within 'this': if( fn.MakeRelativeTo( base_dir( (*this)[kk], aBaseDir ) ) ) { if( fn.GetPathWithSep().StartsWith( wxT("..") ) ) // Path outside kicad libs paths continue; if( pathlen > fn.GetPath().Len() ) // A better (shortest) subpath is found { filename = fn.GetPathWithSep() + fn.GetFullName(); pathlen = fn.GetPath().Len(); } } } return filename; } void SEARCH_STACK::RemovePaths( const wxString& aPaths ) { bool isCS = wxFileName::IsCaseSensitive(); wxArrayString paths; Split( &paths, aPaths ); for( unsigned i=0; i= GetCount() ) { for( unsigned i=0; i