cmake/Source/cmOutputConverter.h

122 lines
3.6 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-11-17 17:22:37 +01:00
#ifndef cmOutputConverter_h
#define cmOutputConverter_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2015-11-17 17:22:37 +01:00
2016-10-30 18:24:19 +01:00
#include <string>
2017-04-14 19:02:05 +02:00
2020-02-01 23:06:01 +01:00
#include <cm/string_view>
2017-04-14 19:02:05 +02:00
#include "cmStateSnapshot.h"
class cmState;
2016-10-30 18:24:19 +01:00
2015-11-17 17:22:37 +01:00
class cmOutputConverter
{
public:
2017-07-20 19:35:53 +02:00
cmOutputConverter(cmStateSnapshot const& snapshot);
2015-11-17 17:22:37 +01:00
2016-07-09 11:21:54 +02:00
enum OutputFormat
{
SHELL,
WATCOMQUOTE,
2020-08-30 11:54:41 +02:00
NINJAMULTI,
2016-07-09 11:21:54 +02:00
RESPONSE
};
2020-02-01 23:06:01 +01:00
std::string ConvertToOutputFormat(cm::string_view source,
2015-11-17 17:22:37 +01:00
OutputFormat output) const;
2020-02-01 23:06:01 +01:00
std::string ConvertDirectorySeparatorsForShell(cm::string_view source) const;
2015-11-17 17:22:37 +01:00
2019-11-11 23:01:05 +01:00
//! for existing files convert to output path and short path if spaces
2015-11-17 17:22:37 +01:00
std::string ConvertToOutputForExisting(const std::string& remote,
OutputFormat format = SHELL) const;
void SetLinkScriptShell(bool linkScriptShell);
/**
2017-04-14 19:02:05 +02:00
* Flags to pass to Shell_GetArgument. These modify the generated
2015-11-17 17:22:37 +01:00
* quoting and escape sequences to work under alternative
* environments.
*/
enum Shell_Flag_e
{
/** The target shell is in a makefile. */
2016-07-09 11:21:54 +02:00
Shell_Flag_Make = (1 << 0),
2015-11-17 17:22:37 +01:00
/** The target shell is in a VS project file. Do not use with
Shell_Flag_Make. */
2016-07-09 11:21:54 +02:00
Shell_Flag_VSIDE = (1 << 1),
2015-11-17 17:22:37 +01:00
/** In a windows shell the argument is being passed to "echo". */
2016-07-09 11:21:54 +02:00
Shell_Flag_EchoWindows = (1 << 2),
2015-11-17 17:22:37 +01:00
/** The target shell is in a Watcom WMake makefile. */
2016-07-09 11:21:54 +02:00
Shell_Flag_WatcomWMake = (1 << 3),
2015-11-17 17:22:37 +01:00
/** The target shell is in a MinGW Make makefile. */
2016-07-09 11:21:54 +02:00
Shell_Flag_MinGWMake = (1 << 4),
2015-11-17 17:22:37 +01:00
/** The target shell is in a NMake makefile. */
2016-07-09 11:21:54 +02:00
Shell_Flag_NMake = (1 << 5),
2015-11-17 17:22:37 +01:00
/** Make variable reference syntax $(MAKEVAR) should not be escaped
to allow a build tool to replace it. Replacement values
containing spaces, quotes, backslashes, or other
non-alphanumeric characters that have significance to some makes
or shells produce undefined behavior. */
2016-07-09 11:21:54 +02:00
Shell_Flag_AllowMakeVariables = (1 << 6),
2015-11-17 17:22:37 +01:00
/** The target shell quoting uses extra single Quotes for Watcom tools. */
2017-04-14 19:02:05 +02:00
Shell_Flag_WatcomQuote = (1 << 7),
2015-11-17 17:22:37 +01:00
2020-08-30 11:54:41 +02:00
Shell_Flag_IsUnix = (1 << 8),
Shell_Flag_UnescapeNinjaConfiguration = (1 << 9),
2017-04-14 19:02:05 +02:00
};
2015-11-17 17:22:37 +01:00
2020-02-01 23:06:01 +01:00
std::string EscapeForShell(cm::string_view str, bool makeVars = false,
2020-08-30 11:54:41 +02:00
bool forEcho = false, bool useWatcomQuote = false,
bool unescapeNinjaConfiguration = false) const;
2015-11-17 17:22:37 +01:00
2020-02-01 23:06:01 +01:00
static std::string EscapeForCMake(cm::string_view str);
2015-11-17 17:22:37 +01:00
/** Compute an escaped version of the given argument for use in a
windows shell. */
2020-02-01 23:06:01 +01:00
static std::string EscapeWindowsShellArgument(cm::string_view arg,
2015-11-17 17:22:37 +01:00
int shell_flags);
enum FortranFormat
2016-07-09 11:21:54 +02:00
{
2015-11-17 17:22:37 +01:00
FortranFormatNone,
FortranFormatFixed,
FortranFormatFree
2016-07-09 11:21:54 +02:00
};
2020-02-01 23:06:01 +01:00
static FortranFormat GetFortranFormat(cm::string_view value);
2020-08-30 11:54:41 +02:00
enum class FortranPreprocess
{
Unset,
NotNeeded,
Needed
};
static FortranPreprocess GetFortranPreprocess(cm::string_view value);
2015-11-17 17:22:37 +01:00
private:
cmState* GetState() const;
2020-02-01 23:06:01 +01:00
static bool Shell__CharNeedsQuotes(char c, int flags);
static cm::string_view::iterator Shell__SkipMakeVariables(
cm::string_view::iterator begin, cm::string_view::iterator end);
static bool Shell__ArgumentNeedsQuotes(cm::string_view in, int flags);
static std::string Shell__GetArgument(cm::string_view in, int flags);
2015-11-17 17:22:37 +01:00
private:
2017-04-14 19:02:05 +02:00
cmStateSnapshot StateSnapshot;
2015-11-17 17:22:37 +01:00
bool LinkScriptShell;
};
#endif