You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.4 KiB
82 lines
2.4 KiB
/* 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 <map>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "cmJSONState.h"
|
|
|
|
namespace Json {
|
|
class Value;
|
|
}
|
|
|
|
class cmCTestResourceSpec
|
|
{
|
|
public:
|
|
class Resource
|
|
{
|
|
public:
|
|
std::string Id;
|
|
unsigned int Capacity;
|
|
|
|
bool operator==(const Resource& other) const;
|
|
bool operator!=(const Resource& other) const;
|
|
};
|
|
|
|
class Socket
|
|
{
|
|
public:
|
|
std::map<std::string, std::vector<Resource>> Resources;
|
|
|
|
bool operator==(const Socket& other) const;
|
|
bool operator!=(const Socket& other) const;
|
|
};
|
|
|
|
Socket LocalSocket;
|
|
cmJSONState parseState;
|
|
|
|
bool ReadFromJSONFile(const std::string& filename);
|
|
|
|
bool operator==(const cmCTestResourceSpec& other) const;
|
|
bool operator!=(const cmCTestResourceSpec& other) const;
|
|
};
|
|
|
|
namespace cmCTestResourceSpecErrors {
|
|
const auto FILE_NOT_FOUND = [](const Json::Value*, cmJSONState* state) {
|
|
state->AddError("File not found");
|
|
};
|
|
const auto JSON_PARSE_ERROR = [](const Json::Value* value,
|
|
cmJSONState* state) {
|
|
state->AddErrorAtValue("JSON parse error", value);
|
|
};
|
|
const auto INVALID_ROOT = [](const Json::Value* value, cmJSONState* state) {
|
|
state->AddErrorAtValue("Invalid root object", value);
|
|
};
|
|
const auto NO_VERSION = [](const Json::Value* value, cmJSONState* state) {
|
|
state->AddErrorAtValue("No version specified", value);
|
|
};
|
|
const auto INVALID_VERSION = [](const Json::Value* value, cmJSONState* state) {
|
|
state->AddErrorAtValue("Invalid version object", value);
|
|
};
|
|
const auto UNSUPPORTED_VERSION = [](const Json::Value* value,
|
|
cmJSONState* state) {
|
|
state->AddErrorAtValue("Unsupported version", value);
|
|
};
|
|
const auto INVALID_SOCKET_SPEC = [](const Json::Value* value,
|
|
cmJSONState* state) {
|
|
state->AddErrorAtValue("Invalid socket object", value);
|
|
};
|
|
const auto INVALID_RESOURCE_TYPE = [](const Json::Value* value,
|
|
cmJSONState* state) {
|
|
state->AddErrorAtValue("Invalid resource type object", value);
|
|
};
|
|
const auto INVALID_RESOURCE = [](const Json::Value* value,
|
|
cmJSONState* state) {
|
|
state->AddErrorAtValue("Invalid resource object", value);
|
|
};
|
|
}
|