blob: b56533d65fd318ce86dfa24d473a43148c630bcc (
plain)
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
|
#pragma once
#include "BinaryParagraph.h"
#include <unordered_map>
namespace vcpkg
{
enum class InstallState
{
ERROR_STATE,
NOT_INSTALLED,
HALF_INSTALLED,
INSTALLED,
};
enum class Want
{
ERROR_STATE,
UNKNOWN,
INSTALL,
HOLD,
DEINSTALL,
PURGE
};
/// <summary>
/// Installed package metadata
/// </summary>
struct StatusParagraph
{
StatusParagraph();
explicit StatusParagraph(std::unordered_map<std::string, std::string>&& fields);
BinaryParagraph package;
Want want;
InstallState state;
};
void serialize(const StatusParagraph& pgh, std::string& out_str);
std::string to_string(InstallState f);
std::string to_string(Want f);
}
|