cmake/Source/cmWorkingDirectory.h

45 lines
1.5 KiB
C
Raw Normal View History

2017-07-20 19:35:53 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2021-09-14 00:13:48 +02:00
#pragma once
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
#include <string>
/** \class cmWorkingDirectory
* \brief An RAII class to manipulate the working directory.
2018-08-09 18:06:22 +02:00
*
* The current working directory is set to the location given to the
* constructor. The working directory can be changed again as needed
* by calling SetDirectory(). When the object is destroyed, the destructor
* will restore the working directory to what it was when the object was
* created, regardless of any calls to SetDirectory() in the meantime.
2017-07-20 19:35:53 +02:00
*/
class cmWorkingDirectory
{
public:
cmWorkingDirectory(std::string const& newdir);
~cmWorkingDirectory();
2019-11-11 23:01:05 +01:00
cmWorkingDirectory(const cmWorkingDirectory&) = delete;
cmWorkingDirectory& operator=(const cmWorkingDirectory&) = delete;
2018-08-09 18:06:22 +02:00
bool SetDirectory(std::string const& newdir);
2017-07-20 19:35:53 +02:00
void Pop();
2021-09-14 00:13:48 +02:00
bool Failed() const { return this->ResultCode != 0; }
2018-08-09 18:06:22 +02:00
/** \return 0 if the last attempt to set the working directory was
* successful. If it failed, the value returned will be the
* \c errno value associated with the failure. A description
* of the error code can be obtained by passing the result
* to \c std::strerror().
*/
2021-09-14 00:13:48 +02:00
int GetLastResult() const { return this->ResultCode; }
2017-07-20 19:35:53 +02:00
2020-08-30 11:54:41 +02:00
std::string const& GetOldDirectory() const { return this->OldDir; }
2017-07-20 19:35:53 +02:00
private:
std::string OldDir;
2018-08-09 18:06:22 +02:00
int ResultCode;
2017-07-20 19:35:53 +02:00
};