Files
CMake/Source/CPack/cmCPackDragNDropGenerator.h
T
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

84 lines
2.4 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <cstddef>
#include <sstream>
#include <string>
#include <vector>
#include "cmCPackGenerator.h"
class cmGeneratedFileStream;
class cmXMLWriter;
/** \class cmCPackDragNDropGenerator
* \brief A generator for OSX drag-n-drop installs
*/
class cmCPackDragNDropGenerator : public cmCPackGenerator
{
public:
cmCPackTypeMacro(cmCPackDragNDropGenerator, cmCPackGenerator);
cmCPackDragNDropGenerator();
~cmCPackDragNDropGenerator() override;
protected:
int InitializeInternal() override;
char const* GetOutputExtension() override;
int PackageFiles() override;
bool SupportsComponentInstallation() const override;
bool CopyFile(std::ostringstream& source, std::ostringstream& target);
bool CreateEmptyFile(std::ostringstream& target, size_t size);
bool RunCommand(std::string const& command, std::string* output = nullptr);
std::string GetComponentInstallSuffix(
std::string const& componentName) override;
std::string GetComponentInstallDirNameSuffix(
std::string const& componentName) override;
int CreateDMG(std::string const& src_dir, std::string const& output_file);
private:
std::string slaDirectory;
bool singleLicense;
struct RezDict
{
std::string Name;
size_t ID;
std::vector<unsigned char> Data;
};
struct RezArray
{
std::string Key;
std::vector<RezDict> Entries;
};
struct RezDoc
{
RezArray LPic = { "LPic", {} };
RezArray Menu = { "STR#", {} };
RezArray Text = { "TEXT", {} };
RezArray RTF = { "RTF ", {} };
};
void WriteRezXML(std::string const& file, RezDoc const& rez);
void WriteRezArray(cmXMLWriter& xml, RezArray const& array);
void WriteRezDict(cmXMLWriter& xml, RezDict const& dict);
bool WriteLicense(RezDoc& rez, size_t licenseNumber,
std::string licenseLanguage,
std::string const& licenseFile, std::string* error);
void EncodeLicense(RezDict& dict, std::vector<std::string> const& lines);
void EncodeMenu(RezDict& dict, std::vector<std::string> const& lines);
bool ReadFile(std::string const& file, std::vector<std::string>& lines,
std::string* error);
bool BreakLongLine(std::string const& line, std::vector<std::string>& lines,
std::string* error);
};