
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
50 lines
1.3 KiB
C++
50 lines
1.3 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 <cstddef>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmUVHandlePtr.h"
|
|
#include "cmUVProcessChain.h"
|
|
#include "cmUVStream.h"
|
|
|
|
class cmInstrumentation;
|
|
|
|
class cmInstallScriptHandler
|
|
{
|
|
public:
|
|
cmInstallScriptHandler() = default;
|
|
cmInstallScriptHandler(std::string, std::string, std::string,
|
|
std::vector<std::string>&);
|
|
bool IsParallel();
|
|
int Install(unsigned int j, cmInstrumentation& instrumentation);
|
|
std::vector<std::vector<std::string>> GetCommands() const;
|
|
class InstallScript
|
|
{
|
|
public:
|
|
InstallScript(std::vector<std::string> const&);
|
|
void start(cm::uv_loop_ptr&, std::function<void()>);
|
|
void printResult(std::size_t n, std::size_t total);
|
|
|
|
private:
|
|
std::vector<std::string> command;
|
|
std::vector<std::string> output;
|
|
std::string name;
|
|
std::unique_ptr<cmUVProcessChain> chain;
|
|
std::unique_ptr<cmUVStreamReadHandle> streamHandler;
|
|
cm::uv_pipe_ptr pipe;
|
|
};
|
|
|
|
private:
|
|
std::vector<std::vector<std::string>> commands;
|
|
std::vector<std::string> directories;
|
|
std::vector<std::string> configs;
|
|
std::string binaryDir;
|
|
std::string component;
|
|
bool parallel;
|
|
};
|