2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-04-11 18:59:02 +00:00
|
|
|
#ifndef cmCustomCommand_h
|
|
|
|
#define cmCustomCommand_h
|
|
|
|
|
2017-04-11 20:00:21 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-04-29 13:40:20 +00:00
|
|
|
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-09-30 14:46:28 +00:00
|
|
|
#include "cmCustomCommandLines.h"
|
|
|
|
#include "cmListFileCache.h"
|
|
|
|
|
2019-09-12 21:00:36 +00:00
|
|
|
class cmImplicitDependsList
|
|
|
|
: public std::vector<std::pair<std::string, std::string>>
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2001-04-19 17:28:46 +00:00
|
|
|
/** \class cmCustomCommand
|
|
|
|
* \brief A class to encapsulate a custom command
|
|
|
|
*
|
|
|
|
* cmCustomCommand encapsulates the properties of a custom command
|
|
|
|
*/
|
2001-04-11 18:59:02 +00:00
|
|
|
class cmCustomCommand
|
|
|
|
{
|
|
|
|
public:
|
2005-02-22 15:32:44 +00:00
|
|
|
/** Main constructor specifies all information for the command. */
|
2019-10-17 14:15:44 +00:00
|
|
|
cmCustomCommand(std::vector<std::string> outputs,
|
2019-01-21 16:15:21 +00:00
|
|
|
std::vector<std::string> byproducts,
|
|
|
|
std::vector<std::string> depends,
|
2019-10-17 14:15:44 +00:00
|
|
|
cmCustomCommandLines commandLines, cmListFileBacktrace lfbt,
|
2020-04-08 21:02:03 +00:00
|
|
|
const char* comment, const char* workingDirectory,
|
|
|
|
bool stdPipesUTF8);
|
2001-09-04 20:07:54 +00:00
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
/** Get the output file produced by the command. */
|
2006-04-11 15:06:19 +00:00
|
|
|
const std::vector<std::string>& GetOutputs() const;
|
2003-06-03 14:30:23 +00:00
|
|
|
|
2014-11-13 23:54:52 +00:00
|
|
|
/** Get the extra files produced by the command. */
|
|
|
|
const std::vector<std::string>& GetByproducts() const;
|
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
/** Get the vector that holds the list of dependencies. */
|
|
|
|
const std::vector<std::string>& GetDepends() const;
|
|
|
|
|
2014-03-10 17:53:57 +00:00
|
|
|
/** Get the working directory. */
|
|
|
|
std::string const& GetWorkingDirectory() const
|
2016-05-16 14:34:04 +00:00
|
|
|
{
|
|
|
|
return this->WorkingDirectory;
|
|
|
|
}
|
2014-03-10 17:53:57 +00:00
|
|
|
|
2005-02-22 15:32:44 +00:00
|
|
|
/** Get the list of command lines. */
|
|
|
|
const cmCustomCommandLines& GetCommandLines() const;
|
|
|
|
|
|
|
|
/** Get the comment string for the command. */
|
|
|
|
const char* GetComment() const;
|
2002-12-10 21:47:37 +00:00
|
|
|
|
2020-04-08 21:02:03 +00:00
|
|
|
/** Get a value indicating if the command uses UTF-8 output pipes. */
|
|
|
|
bool GetStdPipesUTF8() const { return this->StdPipesUTF8; }
|
|
|
|
|
2006-10-04 19:24:26 +00:00
|
|
|
/** Append to the list of command lines. */
|
|
|
|
void AppendCommands(const cmCustomCommandLines& commandLines);
|
|
|
|
|
|
|
|
/** Append to the list of dependencies. */
|
|
|
|
void AppendDepends(const std::vector<std::string>& depends);
|
|
|
|
|
2006-09-27 17:43:46 +00:00
|
|
|
/** Set/Get whether old-style escaping should be used. */
|
|
|
|
bool GetEscapeOldStyle() const;
|
|
|
|
void SetEscapeOldStyle(bool b);
|
|
|
|
|
|
|
|
/** Set/Get whether the build tool can replace variables in
|
|
|
|
arguments to the command. */
|
|
|
|
bool GetEscapeAllowMakeVars() const;
|
|
|
|
void SetEscapeAllowMakeVars(bool b);
|
|
|
|
|
2010-12-06 19:33:59 +00:00
|
|
|
/** Backtrace of the command that created this custom command. */
|
|
|
|
cmListFileBacktrace const& GetBacktrace() const;
|
|
|
|
|
2019-09-12 21:00:36 +00:00
|
|
|
void SetImplicitDepends(cmImplicitDependsList const&);
|
|
|
|
void AppendImplicitDepends(cmImplicitDependsList const&);
|
|
|
|
cmImplicitDependsList const& GetImplicitDepends() const;
|
2007-09-17 14:50:46 +00:00
|
|
|
|
2014-11-05 20:37:52 +00:00
|
|
|
/** Set/Get whether this custom command should be given access to the
|
|
|
|
real console (if possible). */
|
|
|
|
bool GetUsesTerminal() const;
|
|
|
|
void SetUsesTerminal(bool b);
|
|
|
|
|
2017-01-14 02:01:17 +00:00
|
|
|
/** Set/Get whether lists in command lines should be expanded. */
|
|
|
|
bool GetCommandExpandLists() const;
|
|
|
|
void SetCommandExpandLists(bool b);
|
|
|
|
|
2016-08-05 12:39:31 +00:00
|
|
|
/** Set/Get the depfile (used by the Ninja generator) */
|
|
|
|
const std::string& GetDepfile() const;
|
|
|
|
void SetDepfile(const std::string& depfile);
|
|
|
|
|
2019-05-10 12:37:39 +00:00
|
|
|
/** Set/Get the job_pool (used by the Ninja generator) */
|
|
|
|
const std::string& GetJobPool() const;
|
|
|
|
void SetJobPool(const std::string& job_pool);
|
|
|
|
|
2001-04-19 17:28:46 +00:00
|
|
|
private:
|
2006-04-11 15:06:19 +00:00
|
|
|
std::vector<std::string> Outputs;
|
2014-11-13 23:54:52 +00:00
|
|
|
std::vector<std::string> Byproducts;
|
2006-03-15 16:02:08 +00:00
|
|
|
std::vector<std::string> Depends;
|
|
|
|
cmCustomCommandLines CommandLines;
|
2015-06-07 08:44:59 +00:00
|
|
|
cmListFileBacktrace Backtrace;
|
2019-09-12 21:00:36 +00:00
|
|
|
cmImplicitDependsList ImplicitDepends;
|
2006-03-15 16:02:08 +00:00
|
|
|
std::string Comment;
|
|
|
|
std::string WorkingDirectory;
|
2016-08-05 12:39:31 +00:00
|
|
|
std::string Depfile;
|
2019-05-10 12:37:39 +00:00
|
|
|
std::string JobPool;
|
2018-10-14 23:26:25 +00:00
|
|
|
bool HaveComment = false;
|
|
|
|
bool EscapeAllowMakeVars = false;
|
|
|
|
bool EscapeOldStyle = true;
|
|
|
|
bool UsesTerminal = false;
|
|
|
|
bool CommandExpandLists = false;
|
2020-04-08 21:02:03 +00:00
|
|
|
bool StdPipesUTF8 = false;
|
2001-04-11 18:59:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|