mirror of
https://github.com/Kitware/CMake.git
synced 2026-06-24 08:47:59 +00:00
A stack entry's storage may be shared by other copies, so mutation is incompatible with value semantics. We've migrated the motivating use case to another approach. Revert commitb3873b8272(cmFindPackageStack: Allow controlled mutation, 2025-07-29, v4.2.0-rc1~438^2) and commitf2bdc2176f(cmStack: New, mutable stack class, 2025-07-29, v4.2.0-rc1~438^2~1). Record their parent as a second parent of this commit so `git blame` can see the original history of the restored content.
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
/* 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 <memory>
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include <cm/optional>
|
|
|
|
#include "cmConstStack.h"
|
|
|
|
/**
|
|
* This data represents the actual contents of find_package
|
|
* <PACKAGE>-Config.cmake or <PACKAGE>.cps file, and not what is passed
|
|
* to the find_package command. They can be the same, but it is not guaranteed.
|
|
*/
|
|
|
|
class cmPackageInformation
|
|
{
|
|
public:
|
|
cm::optional<std::string> Directory;
|
|
cm::optional<std::string> Version;
|
|
cm::optional<std::string> Description;
|
|
cm::optional<std::string> License;
|
|
cm::optional<std::string> Website;
|
|
cm::optional<std::string> PackageUrl;
|
|
std::set<std::string> Components;
|
|
};
|
|
|
|
/**
|
|
* Represents one call to find_package.
|
|
*/
|
|
class cmFindPackageCall
|
|
{
|
|
public:
|
|
std::string const Name;
|
|
std::shared_ptr<cmPackageInformation const> PackageInfo;
|
|
unsigned int Index;
|
|
};
|
|
|
|
/**
|
|
* Represents a stack of find_package calls with efficient value semantics.
|
|
*/
|
|
class cmFindPackageStack
|
|
: public cmConstStack<cmFindPackageCall, cmFindPackageStack>
|
|
{
|
|
using cmConstStack::cmConstStack;
|
|
friend class cmConstStack<cmFindPackageCall, cmFindPackageStack>;
|
|
};
|
|
#ifndef cmFindPackageStack_cxx
|
|
extern template class cmConstStack<cmFindPackageCall, cmFindPackageStack>;
|
|
#endif
|