2017-11-14 10:17:16 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 Wayne Stambaugh <stambaughw@verizon.net>
|
2021-01-25 12:42:36 +00:00
|
|
|
* Copyright (C) 2017-2021 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-11-14 10:17:16 +00:00
|
|
|
* Copyright (C) 2017 CERN
|
2021-01-25 12:42:36 +00:00
|
|
|
*
|
2017-11-14 10:17:16 +00:00
|
|
|
* @author Maciej Suminski <maciej.suminski@cern.ch>
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-01-25 12:42:36 +00:00
|
|
|
///< Helper functions to substitute paths with environmental variables.
|
2017-11-14 10:17:16 +00:00
|
|
|
|
|
|
|
#ifndef ENV_PATHS_H
|
|
|
|
#define ENV_PATHS_H
|
|
|
|
|
2021-06-09 01:56:00 +00:00
|
|
|
#include <wx/string.h>
|
|
|
|
#include <settings/environment.h>
|
|
|
|
|
|
|
|
class wxFileName;
|
|
|
|
class PROJECT;
|
2017-11-14 10:17:16 +00:00
|
|
|
|
|
|
|
/**
|
2021-01-25 12:42:36 +00:00
|
|
|
* Normalize a file path to an environmental variable, if possible.
|
2017-11-19 10:37:27 +00:00
|
|
|
*
|
2017-11-14 10:17:16 +00:00
|
|
|
* @param aFilePath is the full file path (path and file name) to be normalized.
|
2021-01-25 12:42:36 +00:00
|
|
|
* @param aEnvVars is an optional map of environmental variables to try substitution with.
|
2017-11-14 10:17:16 +00:00
|
|
|
* @param aProject is an optional project, to normalize the file path to the project path.
|
2021-09-23 15:44:39 +00:00
|
|
|
* @return Normalized full file path (path and file name) if succeeded or the input path if
|
|
|
|
* the path could not be normalized.
|
2017-11-14 10:17:16 +00:00
|
|
|
*/
|
|
|
|
wxString NormalizePath( const wxFileName& aFilePath, const ENV_VAR_MAP* aEnvVars,
|
2020-12-13 11:26:26 +00:00
|
|
|
const PROJECT* aProject );
|
2017-11-14 10:17:16 +00:00
|
|
|
|
2018-04-06 10:06:05 +00:00
|
|
|
/**
|
2021-01-25 12:42:36 +00:00
|
|
|
* Normalize a file path to an environmental variable, if possible.
|
2018-04-06 10:06:05 +00:00
|
|
|
*
|
|
|
|
* @param aFilePath is the full file path (path and file name) to be normalized.
|
2021-01-25 12:42:36 +00:00
|
|
|
* @param aEnvVars is an optional map of environmental variables to try substitution with.
|
2018-04-06 10:06:05 +00:00
|
|
|
* @param aProjectPath is an optional string to normalize the file path to the project path.
|
2021-09-23 15:44:39 +00:00
|
|
|
* @return Normalized full file path (path and file name) if succeeded or the input path if
|
|
|
|
* the path could not be normalized.
|
2018-04-06 10:06:05 +00:00
|
|
|
*/
|
2020-12-13 11:26:26 +00:00
|
|
|
wxString NormalizePath( const wxFileName& aFilePath, const ENV_VAR_MAP* aEnvVars,
|
|
|
|
const wxString& aProjectPath );
|
2018-04-06 10:06:05 +00:00
|
|
|
|
2017-11-19 10:37:27 +00:00
|
|
|
/**
|
2021-01-25 12:42:36 +00:00
|
|
|
* Search the default paths trying to find one with the requested file.
|
2017-11-19 10:37:27 +00:00
|
|
|
*
|
|
|
|
* @param aFileName is the name of the searched file. It might be a relative path.
|
|
|
|
* @param aEnvVars is an optional map of environmental variables that can contain paths.
|
|
|
|
* @param aProject is an optional project, to check the project path.
|
2017-11-22 20:54:18 +00:00
|
|
|
* @return Full path (apth and file name) if the file was found in one of the paths, otherwise
|
2021-01-25 12:42:36 +00:00
|
|
|
* an empty string.
|
2017-11-19 10:37:27 +00:00
|
|
|
*/
|
2020-12-13 11:26:26 +00:00
|
|
|
wxString ResolveFile( const wxString& aFileName, const ENV_VAR_MAP* aEnvVars,
|
|
|
|
const PROJECT* aProject );
|
2017-11-19 10:37:27 +00:00
|
|
|
|
2017-11-14 10:17:16 +00:00
|
|
|
#endif /* ENV_PATHS_H */
|