1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst 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);
};
|