vcpkg/toolsrc/include/PackageSpec.h

54 lines
1.3 KiB
C
Raw Normal View History

2016-09-19 11:50:08 +08:00
#pragma once
#include "PackageSpecParseResult.h"
2017-04-04 06:02:45 +08:00
#include "Triplet.h"
2017-04-01 07:33:10 +08:00
#include "vcpkg_expected.h"
2016-09-19 11:50:08 +08:00
namespace vcpkg
{
2017-04-04 05:45:00 +08:00
struct PackageSpec
2016-09-19 11:50:08 +08:00
{
static Expected<PackageSpec> from_string(const std::string& spec_as_string, const Triplet& default_triplet);
static Expected<PackageSpec> from_name_and_triplet(const std::string& name, const Triplet& triplet);
const std::string& name() const;
const Triplet& triplet() const;
2016-09-19 11:50:08 +08:00
std::string dir() const;
std::string to_string() const;
private:
std::string m_name;
Triplet m_triplet;
2016-09-19 11:50:08 +08:00
};
2017-04-04 05:45:00 +08:00
bool operator==(const PackageSpec& left, const PackageSpec& right);
2017-04-13 13:36:44 +08:00
bool operator!=(const PackageSpec& left, const PackageSpec& right);
2016-09-19 11:50:08 +08:00
} //namespace vcpkg
namespace std
{
template <>
2017-04-04 05:45:00 +08:00
struct hash<vcpkg::PackageSpec>
2016-09-19 11:50:08 +08:00
{
2017-04-04 05:45:00 +08:00
size_t operator()(const vcpkg::PackageSpec& value) const
2016-09-19 11:50:08 +08:00
{
size_t hash = 17;
hash = hash * 31 + std::hash<std::string>()(value.name());
hash = hash * 31 + std::hash<vcpkg::Triplet>()(value.triplet());
2016-09-19 11:50:08 +08:00
return hash;
}
};
template <>
2017-04-04 05:45:00 +08:00
struct equal_to<vcpkg::PackageSpec>
2016-09-19 11:50:08 +08:00
{
2017-04-04 05:45:00 +08:00
bool operator()(const vcpkg::PackageSpec& left, const vcpkg::PackageSpec& right) const
2016-09-19 11:50:08 +08:00
{
return left == right;
}
};
} // namespace std