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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
//! 構成管理系RPCのスキーマ定義。
use bytecodec::bincode_codec::{BincodeDecoder, BincodeEncoder};
use fibers_rpc::{Call, ProcedureId};
use std::net::SocketAddr;

use entity::bucket::{Bucket, BucketId, BucketSummary};
use entity::device::{Device, DeviceId, DeviceSummary};
use entity::server::{Server, ServerId, ServerSummary};
use Result;

/// サーバ一覧取得RPC。
#[derive(Debug)]
pub struct ListServersRpc;
impl Call for ListServersRpc {
    const ID: ProcedureId = ProcedureId(0x0002_0000);
    const NAME: &'static str = "frugalos.config.server.list";

    type Req = ();
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Vec<ServerSummary>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// サーバ情報取得RPC。
#[derive(Debug)]
pub struct GetServerRpc;
impl Call for GetServerRpc {
    const ID: ProcedureId = ProcedureId(0x0002_0001);
    const NAME: &'static str = "frugalos.config.server.get";

    type Req = ServerId;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Option<Server>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// サーバ登録RPC。
#[derive(Debug)]
pub struct PutServerRpc;
impl Call for PutServerRpc {
    const ID: ProcedureId = ProcedureId(0x0002_0002);
    const NAME: &'static str = "frugalos.config.server.put";

    type Req = Server;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Server>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// サーバ削除RPC。
#[derive(Debug)]
pub struct DeleteServerRpc;
impl Call for DeleteServerRpc {
    const ID: ProcedureId = ProcedureId(0x0002_0003);
    const NAME: &'static str = "frugalos.config.server.delete";

    type Req = ServerId;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Option<Server>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// デバイス一覧取得RPC。
#[derive(Debug)]
pub struct ListDevicesRpc;
impl Call for ListDevicesRpc {
    const ID: ProcedureId = ProcedureId(0x0003_0000);
    const NAME: &'static str = "frugalos.config.device.list";

    type Req = ();
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Vec<DeviceSummary>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// デバイス情報取得RPC。
#[derive(Debug)]
pub struct GetDeviceRpc;
impl Call for GetDeviceRpc {
    const ID: ProcedureId = ProcedureId(0x0003_0001);
    const NAME: &'static str = "frugalos.config.device.get";

    type Req = DeviceId;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Option<Device>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// デバイス登録RPC。
#[derive(Debug)]
pub struct PutDeviceRpc;
impl Call for PutDeviceRpc {
    const ID: ProcedureId = ProcedureId(0x0003_0002);
    const NAME: &'static str = "frugalos.config.device.put";

    type Req = Device;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Device>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// デバイス削除RPC。
#[derive(Debug)]
pub struct DeleteDeviceRpc;
impl Call for DeleteDeviceRpc {
    const ID: ProcedureId = ProcedureId(0x0003_0003);
    const NAME: &'static str = "frugalos.config.device.delete";

    type Req = DeviceId;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Option<Device>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// バケツ一覧取得RPC。
#[derive(Debug)]
pub struct ListBucketsRpc;
impl Call for ListBucketsRpc {
    const ID: ProcedureId = ProcedureId(0x0004_0000);
    const NAME: &'static str = "frugalos.config.bucket.list";

    type Req = ();
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Vec<BucketSummary>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// バケツ情報取得RPC。
#[derive(Debug)]
pub struct GetBucketRpc;
impl Call for GetBucketRpc {
    const ID: ProcedureId = ProcedureId(0x0004_0001);
    const NAME: &'static str = "frugalos.config.bucket.get";

    type Req = BucketId;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Option<Bucket>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// バケツ登録RPC。
#[derive(Debug)]
pub struct PutBucketRpc;
impl Call for PutBucketRpc {
    const ID: ProcedureId = ProcedureId(0x0004_0002);
    const NAME: &'static str = "frugalos.config.bucket.put";

    type Req = Bucket;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Bucket>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// バケツ削除RPC。
#[derive(Debug)]
pub struct DeleteBucketRpc;
impl Call for DeleteBucketRpc {
    const ID: ProcedureId = ProcedureId(0x0004_0003);
    const NAME: &'static str = "frugalos.config.bucket.delete";

    type Req = BucketId;
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<Option<Bucket>>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}

/// Raftのリーダノード取得RPC。
// NOTE: リーダ選出中の場合にはserver側でwaitする
#[derive(Debug)]
pub struct GetLeaderRpc;
impl Call for GetLeaderRpc {
    const ID: ProcedureId = ProcedureId(0x0005_0000);
    const NAME: &'static str = "frugalos.config.leader.get";

    type Req = ();
    type ReqDecoder = BincodeDecoder<Self::Req>;
    type ReqEncoder = BincodeEncoder<Self::Req>;

    type Res = Result<SocketAddr>;
    type ResDecoder = BincodeDecoder<Self::Res>;
    type ResEncoder = BincodeEncoder<Self::Res>;
}