forked from ydb-platform/nbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk_registry_proxy.h
165 lines (121 loc) · 3.59 KB
/
disk_registry_proxy.h
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#pragma once
#include "public.h"
#include <cloud/blockstore/libs/kikimr/components.h>
#include <cloud/blockstore/libs/kikimr/events.h>
#include <contrib/ydb/library/actors/core/actorid.h>
namespace NCloud::NBlockStore::NStorage {
////////////////////////////////////////////////////////////////////////////////
#define BLOCKSTORE_DISK_REGISTRY_PROXY_REQUESTS(xxx, ...) \
xxx(Subscribe, __VA_ARGS__) \
xxx(Unsubscribe, __VA_ARGS__) \
xxx(Reassign, __VA_ARGS__) \
xxx(GetDrTabletInfo, __VA_ARGS__) \
// BLOCKSTORE_DISK_REGISTRY_PROXY_REQUESTS
////////////////////////////////////////////////////////////////////////////////
struct TEvDiskRegistryProxy
{
//
// Subscribe
//
struct TSubscribeRequest
{
NActors::TActorId Subscriber;
explicit TSubscribeRequest(NActors::TActorId subscriber)
: Subscriber(std::move(subscriber))
{}
};
struct TSubscribeResponse
{
const bool Discovered = false;
TSubscribeResponse() = default;
explicit TSubscribeResponse(bool discovered)
: Discovered(discovered)
{}
};
//
// Unsubscribe
//
struct TUnsubscribeRequest
{
NActors::TActorId Subscriber;
explicit TUnsubscribeRequest(NActors::TActorId subscriber)
: Subscriber(std::move(subscriber))
{}
};
struct TUnsubscribeResponse
{
};
//
// ConnectionEstablished notification
//
struct TConnectionEstablished
{
};
//
// ConnectionLost notification
//
struct TConnectionLost
{
};
//
// Reassign
//
struct TReassignRequest
{
TString SysKind;
TString LogKind;
TString IndexKind;
TReassignRequest(
TString sysKind,
TString logKind,
TString indexKind)
: SysKind(std::move(sysKind))
, LogKind(std::move(logKind))
, IndexKind(std::move(indexKind))
{}
};
struct TReassignResponse
{
};
//
// GetDrTabletId notification
//
struct TGetDrTabletInfoRequest
{
};
struct TGetDrTabletInfoResponse
{
const ui64 TabletId = 0;
TGetDrTabletInfoResponse() = default;
explicit TGetDrTabletInfoResponse(ui64 tabletId)
: TabletId(tabletId)
{}
};
//
// Events declaration
//
enum EEvents
{
EvBegin = TBlockStoreEvents::DISK_REGISTRY_PROXY_START,
EvSubscribeRequest,
EvSubscribeResponse,
EvUnsubscribeRequest,
EvUnsubscribeResponse,
EvConnectionLost,
EvConnectionEstablished,
EvReassignRequest,
EvReassignResponse,
EvGetDrTabletInfoRequest,
EvGetDrTabletInfoResponse,
EvEnd
};
static_assert(EvEnd < (int)TBlockStoreEvents::DISK_REGISTRY_PROXY_END,
"EvEnd expected to be < TBlockStoreEvents::DISK_REGISTRY_PROXY_END");
BLOCKSTORE_DISK_REGISTRY_PROXY_REQUESTS(BLOCKSTORE_DECLARE_EVENTS)
using TEvConnectionLost = TResponseEvent<TConnectionLost, EvConnectionLost>;
using TEvConnectionEstablished =
TResponseEvent<TConnectionEstablished, EvConnectionEstablished>;
};
////////////////////////////////////////////////////////////////////////////////
NActors::TActorId MakeDiskRegistryProxyServiceId();
} // namespace NCloud::NBlockStore::NStorage