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.

3489 lines
137 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. // Code generated by protoc-gen-go.
  2. // source: volume_server.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package volume_server_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. volume_server.proto
  8. It has these top-level messages:
  9. BatchDeleteRequest
  10. BatchDeleteResponse
  11. DeleteResult
  12. Empty
  13. VacuumVolumeCheckRequest
  14. VacuumVolumeCheckResponse
  15. VacuumVolumeCompactRequest
  16. VacuumVolumeCompactResponse
  17. VacuumVolumeCommitRequest
  18. VacuumVolumeCommitResponse
  19. VacuumVolumeCleanupRequest
  20. VacuumVolumeCleanupResponse
  21. DeleteCollectionRequest
  22. DeleteCollectionResponse
  23. AllocateVolumeRequest
  24. AllocateVolumeResponse
  25. VolumeSyncStatusRequest
  26. VolumeSyncStatusResponse
  27. VolumeIncrementalCopyRequest
  28. VolumeIncrementalCopyResponse
  29. VolumeMountRequest
  30. VolumeMountResponse
  31. VolumeUnmountRequest
  32. VolumeUnmountResponse
  33. VolumeDeleteRequest
  34. VolumeDeleteResponse
  35. VolumeMarkReadonlyRequest
  36. VolumeMarkReadonlyResponse
  37. VolumeCopyRequest
  38. VolumeCopyResponse
  39. CopyFileRequest
  40. CopyFileResponse
  41. VolumeTailSenderRequest
  42. VolumeTailSenderResponse
  43. VolumeTailReceiverRequest
  44. VolumeTailReceiverResponse
  45. VolumeEcShardsGenerateRequest
  46. VolumeEcShardsGenerateResponse
  47. VolumeEcShardsRebuildRequest
  48. VolumeEcShardsRebuildResponse
  49. VolumeEcShardsCopyRequest
  50. VolumeEcShardsCopyResponse
  51. VolumeEcShardsDeleteRequest
  52. VolumeEcShardsDeleteResponse
  53. VolumeEcShardsMountRequest
  54. VolumeEcShardsMountResponse
  55. VolumeEcShardsUnmountRequest
  56. VolumeEcShardsUnmountResponse
  57. VolumeEcShardReadRequest
  58. VolumeEcShardReadResponse
  59. VolumeEcBlobDeleteRequest
  60. VolumeEcBlobDeleteResponse
  61. VolumeEcShardsToVolumeRequest
  62. VolumeEcShardsToVolumeResponse
  63. ReadVolumeFileStatusRequest
  64. ReadVolumeFileStatusResponse
  65. DiskStatus
  66. MemStatus
  67. RemoteFile
  68. VolumeTierInfo
  69. VolumeTierMoveDatToRemoteRequest
  70. VolumeTierMoveDatToRemoteResponse
  71. VolumeTierMoveDatFromRemoteRequest
  72. VolumeTierMoveDatFromRemoteResponse
  73. QueryRequest
  74. QueriedStripe
  75. */
  76. package volume_server_pb
  77. import proto "github.com/golang/protobuf/proto"
  78. import fmt "fmt"
  79. import math "math"
  80. import (
  81. context "golang.org/x/net/context"
  82. grpc "google.golang.org/grpc"
  83. )
  84. // Reference imports to suppress errors if they are not otherwise used.
  85. var _ = proto.Marshal
  86. var _ = fmt.Errorf
  87. var _ = math.Inf
  88. // This is a compile-time assertion to ensure that this generated file
  89. // is compatible with the proto package it is being compiled against.
  90. // A compilation error at this line likely means your copy of the
  91. // proto package needs to be updated.
  92. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  93. type BatchDeleteRequest struct {
  94. FileIds []string `protobuf:"bytes,1,rep,name=file_ids,json=fileIds" json:"file_ids,omitempty"`
  95. }
  96. func (m *BatchDeleteRequest) Reset() { *m = BatchDeleteRequest{} }
  97. func (m *BatchDeleteRequest) String() string { return proto.CompactTextString(m) }
  98. func (*BatchDeleteRequest) ProtoMessage() {}
  99. func (*BatchDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  100. func (m *BatchDeleteRequest) GetFileIds() []string {
  101. if m != nil {
  102. return m.FileIds
  103. }
  104. return nil
  105. }
  106. type BatchDeleteResponse struct {
  107. Results []*DeleteResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"`
  108. }
  109. func (m *BatchDeleteResponse) Reset() { *m = BatchDeleteResponse{} }
  110. func (m *BatchDeleteResponse) String() string { return proto.CompactTextString(m) }
  111. func (*BatchDeleteResponse) ProtoMessage() {}
  112. func (*BatchDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  113. func (m *BatchDeleteResponse) GetResults() []*DeleteResult {
  114. if m != nil {
  115. return m.Results
  116. }
  117. return nil
  118. }
  119. type DeleteResult struct {
  120. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  121. Status int32 `protobuf:"varint,2,opt,name=status" json:"status,omitempty"`
  122. Error string `protobuf:"bytes,3,opt,name=error" json:"error,omitempty"`
  123. Size uint32 `protobuf:"varint,4,opt,name=size" json:"size,omitempty"`
  124. Version uint32 `protobuf:"varint,5,opt,name=version" json:"version,omitempty"`
  125. }
  126. func (m *DeleteResult) Reset() { *m = DeleteResult{} }
  127. func (m *DeleteResult) String() string { return proto.CompactTextString(m) }
  128. func (*DeleteResult) ProtoMessage() {}
  129. func (*DeleteResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  130. func (m *DeleteResult) GetFileId() string {
  131. if m != nil {
  132. return m.FileId
  133. }
  134. return ""
  135. }
  136. func (m *DeleteResult) GetStatus() int32 {
  137. if m != nil {
  138. return m.Status
  139. }
  140. return 0
  141. }
  142. func (m *DeleteResult) GetError() string {
  143. if m != nil {
  144. return m.Error
  145. }
  146. return ""
  147. }
  148. func (m *DeleteResult) GetSize() uint32 {
  149. if m != nil {
  150. return m.Size
  151. }
  152. return 0
  153. }
  154. func (m *DeleteResult) GetVersion() uint32 {
  155. if m != nil {
  156. return m.Version
  157. }
  158. return 0
  159. }
  160. type Empty struct {
  161. }
  162. func (m *Empty) Reset() { *m = Empty{} }
  163. func (m *Empty) String() string { return proto.CompactTextString(m) }
  164. func (*Empty) ProtoMessage() {}
  165. func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  166. type VacuumVolumeCheckRequest struct {
  167. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  168. }
  169. func (m *VacuumVolumeCheckRequest) Reset() { *m = VacuumVolumeCheckRequest{} }
  170. func (m *VacuumVolumeCheckRequest) String() string { return proto.CompactTextString(m) }
  171. func (*VacuumVolumeCheckRequest) ProtoMessage() {}
  172. func (*VacuumVolumeCheckRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  173. func (m *VacuumVolumeCheckRequest) GetVolumeId() uint32 {
  174. if m != nil {
  175. return m.VolumeId
  176. }
  177. return 0
  178. }
  179. type VacuumVolumeCheckResponse struct {
  180. GarbageRatio float64 `protobuf:"fixed64,1,opt,name=garbage_ratio,json=garbageRatio" json:"garbage_ratio,omitempty"`
  181. }
  182. func (m *VacuumVolumeCheckResponse) Reset() { *m = VacuumVolumeCheckResponse{} }
  183. func (m *VacuumVolumeCheckResponse) String() string { return proto.CompactTextString(m) }
  184. func (*VacuumVolumeCheckResponse) ProtoMessage() {}
  185. func (*VacuumVolumeCheckResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  186. func (m *VacuumVolumeCheckResponse) GetGarbageRatio() float64 {
  187. if m != nil {
  188. return m.GarbageRatio
  189. }
  190. return 0
  191. }
  192. type VacuumVolumeCompactRequest struct {
  193. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  194. Preallocate int64 `protobuf:"varint,2,opt,name=preallocate" json:"preallocate,omitempty"`
  195. }
  196. func (m *VacuumVolumeCompactRequest) Reset() { *m = VacuumVolumeCompactRequest{} }
  197. func (m *VacuumVolumeCompactRequest) String() string { return proto.CompactTextString(m) }
  198. func (*VacuumVolumeCompactRequest) ProtoMessage() {}
  199. func (*VacuumVolumeCompactRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  200. func (m *VacuumVolumeCompactRequest) GetVolumeId() uint32 {
  201. if m != nil {
  202. return m.VolumeId
  203. }
  204. return 0
  205. }
  206. func (m *VacuumVolumeCompactRequest) GetPreallocate() int64 {
  207. if m != nil {
  208. return m.Preallocate
  209. }
  210. return 0
  211. }
  212. type VacuumVolumeCompactResponse struct {
  213. }
  214. func (m *VacuumVolumeCompactResponse) Reset() { *m = VacuumVolumeCompactResponse{} }
  215. func (m *VacuumVolumeCompactResponse) String() string { return proto.CompactTextString(m) }
  216. func (*VacuumVolumeCompactResponse) ProtoMessage() {}
  217. func (*VacuumVolumeCompactResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  218. type VacuumVolumeCommitRequest struct {
  219. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  220. }
  221. func (m *VacuumVolumeCommitRequest) Reset() { *m = VacuumVolumeCommitRequest{} }
  222. func (m *VacuumVolumeCommitRequest) String() string { return proto.CompactTextString(m) }
  223. func (*VacuumVolumeCommitRequest) ProtoMessage() {}
  224. func (*VacuumVolumeCommitRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  225. func (m *VacuumVolumeCommitRequest) GetVolumeId() uint32 {
  226. if m != nil {
  227. return m.VolumeId
  228. }
  229. return 0
  230. }
  231. type VacuumVolumeCommitResponse struct {
  232. }
  233. func (m *VacuumVolumeCommitResponse) Reset() { *m = VacuumVolumeCommitResponse{} }
  234. func (m *VacuumVolumeCommitResponse) String() string { return proto.CompactTextString(m) }
  235. func (*VacuumVolumeCommitResponse) ProtoMessage() {}
  236. func (*VacuumVolumeCommitResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  237. type VacuumVolumeCleanupRequest struct {
  238. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  239. }
  240. func (m *VacuumVolumeCleanupRequest) Reset() { *m = VacuumVolumeCleanupRequest{} }
  241. func (m *VacuumVolumeCleanupRequest) String() string { return proto.CompactTextString(m) }
  242. func (*VacuumVolumeCleanupRequest) ProtoMessage() {}
  243. func (*VacuumVolumeCleanupRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  244. func (m *VacuumVolumeCleanupRequest) GetVolumeId() uint32 {
  245. if m != nil {
  246. return m.VolumeId
  247. }
  248. return 0
  249. }
  250. type VacuumVolumeCleanupResponse struct {
  251. }
  252. func (m *VacuumVolumeCleanupResponse) Reset() { *m = VacuumVolumeCleanupResponse{} }
  253. func (m *VacuumVolumeCleanupResponse) String() string { return proto.CompactTextString(m) }
  254. func (*VacuumVolumeCleanupResponse) ProtoMessage() {}
  255. func (*VacuumVolumeCleanupResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  256. type DeleteCollectionRequest struct {
  257. Collection string `protobuf:"bytes,1,opt,name=collection" json:"collection,omitempty"`
  258. }
  259. func (m *DeleteCollectionRequest) Reset() { *m = DeleteCollectionRequest{} }
  260. func (m *DeleteCollectionRequest) String() string { return proto.CompactTextString(m) }
  261. func (*DeleteCollectionRequest) ProtoMessage() {}
  262. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  263. func (m *DeleteCollectionRequest) GetCollection() string {
  264. if m != nil {
  265. return m.Collection
  266. }
  267. return ""
  268. }
  269. type DeleteCollectionResponse struct {
  270. }
  271. func (m *DeleteCollectionResponse) Reset() { *m = DeleteCollectionResponse{} }
  272. func (m *DeleteCollectionResponse) String() string { return proto.CompactTextString(m) }
  273. func (*DeleteCollectionResponse) ProtoMessage() {}
  274. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  275. type AllocateVolumeRequest struct {
  276. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  277. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  278. Preallocate int64 `protobuf:"varint,3,opt,name=preallocate" json:"preallocate,omitempty"`
  279. Replication string `protobuf:"bytes,4,opt,name=replication" json:"replication,omitempty"`
  280. Ttl string `protobuf:"bytes,5,opt,name=ttl" json:"ttl,omitempty"`
  281. MemoryMapMaxSizeMb uint32 `protobuf:"varint,6,opt,name=memory_map_max_size_mb,json=memoryMapMaxSizeMb" json:"memory_map_max_size_mb,omitempty"`
  282. }
  283. func (m *AllocateVolumeRequest) Reset() { *m = AllocateVolumeRequest{} }
  284. func (m *AllocateVolumeRequest) String() string { return proto.CompactTextString(m) }
  285. func (*AllocateVolumeRequest) ProtoMessage() {}
  286. func (*AllocateVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  287. func (m *AllocateVolumeRequest) GetVolumeId() uint32 {
  288. if m != nil {
  289. return m.VolumeId
  290. }
  291. return 0
  292. }
  293. func (m *AllocateVolumeRequest) GetCollection() string {
  294. if m != nil {
  295. return m.Collection
  296. }
  297. return ""
  298. }
  299. func (m *AllocateVolumeRequest) GetPreallocate() int64 {
  300. if m != nil {
  301. return m.Preallocate
  302. }
  303. return 0
  304. }
  305. func (m *AllocateVolumeRequest) GetReplication() string {
  306. if m != nil {
  307. return m.Replication
  308. }
  309. return ""
  310. }
  311. func (m *AllocateVolumeRequest) GetTtl() string {
  312. if m != nil {
  313. return m.Ttl
  314. }
  315. return ""
  316. }
  317. func (m *AllocateVolumeRequest) GetMemoryMapMaxSizeMb() uint32 {
  318. if m != nil {
  319. return m.MemoryMapMaxSizeMb
  320. }
  321. return 0
  322. }
  323. type AllocateVolumeResponse struct {
  324. }
  325. func (m *AllocateVolumeResponse) Reset() { *m = AllocateVolumeResponse{} }
  326. func (m *AllocateVolumeResponse) String() string { return proto.CompactTextString(m) }
  327. func (*AllocateVolumeResponse) ProtoMessage() {}
  328. func (*AllocateVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  329. type VolumeSyncStatusRequest struct {
  330. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  331. }
  332. func (m *VolumeSyncStatusRequest) Reset() { *m = VolumeSyncStatusRequest{} }
  333. func (m *VolumeSyncStatusRequest) String() string { return proto.CompactTextString(m) }
  334. func (*VolumeSyncStatusRequest) ProtoMessage() {}
  335. func (*VolumeSyncStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  336. func (m *VolumeSyncStatusRequest) GetVolumeId() uint32 {
  337. if m != nil {
  338. return m.VolumeId
  339. }
  340. return 0
  341. }
  342. type VolumeSyncStatusResponse struct {
  343. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  344. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  345. Replication string `protobuf:"bytes,4,opt,name=replication" json:"replication,omitempty"`
  346. Ttl string `protobuf:"bytes,5,opt,name=ttl" json:"ttl,omitempty"`
  347. TailOffset uint64 `protobuf:"varint,6,opt,name=tail_offset,json=tailOffset" json:"tail_offset,omitempty"`
  348. CompactRevision uint32 `protobuf:"varint,7,opt,name=compact_revision,json=compactRevision" json:"compact_revision,omitempty"`
  349. IdxFileSize uint64 `protobuf:"varint,8,opt,name=idx_file_size,json=idxFileSize" json:"idx_file_size,omitempty"`
  350. }
  351. func (m *VolumeSyncStatusResponse) Reset() { *m = VolumeSyncStatusResponse{} }
  352. func (m *VolumeSyncStatusResponse) String() string { return proto.CompactTextString(m) }
  353. func (*VolumeSyncStatusResponse) ProtoMessage() {}
  354. func (*VolumeSyncStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  355. func (m *VolumeSyncStatusResponse) GetVolumeId() uint32 {
  356. if m != nil {
  357. return m.VolumeId
  358. }
  359. return 0
  360. }
  361. func (m *VolumeSyncStatusResponse) GetCollection() string {
  362. if m != nil {
  363. return m.Collection
  364. }
  365. return ""
  366. }
  367. func (m *VolumeSyncStatusResponse) GetReplication() string {
  368. if m != nil {
  369. return m.Replication
  370. }
  371. return ""
  372. }
  373. func (m *VolumeSyncStatusResponse) GetTtl() string {
  374. if m != nil {
  375. return m.Ttl
  376. }
  377. return ""
  378. }
  379. func (m *VolumeSyncStatusResponse) GetTailOffset() uint64 {
  380. if m != nil {
  381. return m.TailOffset
  382. }
  383. return 0
  384. }
  385. func (m *VolumeSyncStatusResponse) GetCompactRevision() uint32 {
  386. if m != nil {
  387. return m.CompactRevision
  388. }
  389. return 0
  390. }
  391. func (m *VolumeSyncStatusResponse) GetIdxFileSize() uint64 {
  392. if m != nil {
  393. return m.IdxFileSize
  394. }
  395. return 0
  396. }
  397. type VolumeIncrementalCopyRequest struct {
  398. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  399. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs" json:"since_ns,omitempty"`
  400. }
  401. func (m *VolumeIncrementalCopyRequest) Reset() { *m = VolumeIncrementalCopyRequest{} }
  402. func (m *VolumeIncrementalCopyRequest) String() string { return proto.CompactTextString(m) }
  403. func (*VolumeIncrementalCopyRequest) ProtoMessage() {}
  404. func (*VolumeIncrementalCopyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  405. func (m *VolumeIncrementalCopyRequest) GetVolumeId() uint32 {
  406. if m != nil {
  407. return m.VolumeId
  408. }
  409. return 0
  410. }
  411. func (m *VolumeIncrementalCopyRequest) GetSinceNs() uint64 {
  412. if m != nil {
  413. return m.SinceNs
  414. }
  415. return 0
  416. }
  417. type VolumeIncrementalCopyResponse struct {
  418. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  419. }
  420. func (m *VolumeIncrementalCopyResponse) Reset() { *m = VolumeIncrementalCopyResponse{} }
  421. func (m *VolumeIncrementalCopyResponse) String() string { return proto.CompactTextString(m) }
  422. func (*VolumeIncrementalCopyResponse) ProtoMessage() {}
  423. func (*VolumeIncrementalCopyResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  424. func (m *VolumeIncrementalCopyResponse) GetFileContent() []byte {
  425. if m != nil {
  426. return m.FileContent
  427. }
  428. return nil
  429. }
  430. type VolumeMountRequest struct {
  431. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  432. }
  433. func (m *VolumeMountRequest) Reset() { *m = VolumeMountRequest{} }
  434. func (m *VolumeMountRequest) String() string { return proto.CompactTextString(m) }
  435. func (*VolumeMountRequest) ProtoMessage() {}
  436. func (*VolumeMountRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  437. func (m *VolumeMountRequest) GetVolumeId() uint32 {
  438. if m != nil {
  439. return m.VolumeId
  440. }
  441. return 0
  442. }
  443. type VolumeMountResponse struct {
  444. }
  445. func (m *VolumeMountResponse) Reset() { *m = VolumeMountResponse{} }
  446. func (m *VolumeMountResponse) String() string { return proto.CompactTextString(m) }
  447. func (*VolumeMountResponse) ProtoMessage() {}
  448. func (*VolumeMountResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  449. type VolumeUnmountRequest struct {
  450. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  451. }
  452. func (m *VolumeUnmountRequest) Reset() { *m = VolumeUnmountRequest{} }
  453. func (m *VolumeUnmountRequest) String() string { return proto.CompactTextString(m) }
  454. func (*VolumeUnmountRequest) ProtoMessage() {}
  455. func (*VolumeUnmountRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  456. func (m *VolumeUnmountRequest) GetVolumeId() uint32 {
  457. if m != nil {
  458. return m.VolumeId
  459. }
  460. return 0
  461. }
  462. type VolumeUnmountResponse struct {
  463. }
  464. func (m *VolumeUnmountResponse) Reset() { *m = VolumeUnmountResponse{} }
  465. func (m *VolumeUnmountResponse) String() string { return proto.CompactTextString(m) }
  466. func (*VolumeUnmountResponse) ProtoMessage() {}
  467. func (*VolumeUnmountResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  468. type VolumeDeleteRequest struct {
  469. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  470. }
  471. func (m *VolumeDeleteRequest) Reset() { *m = VolumeDeleteRequest{} }
  472. func (m *VolumeDeleteRequest) String() string { return proto.CompactTextString(m) }
  473. func (*VolumeDeleteRequest) ProtoMessage() {}
  474. func (*VolumeDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  475. func (m *VolumeDeleteRequest) GetVolumeId() uint32 {
  476. if m != nil {
  477. return m.VolumeId
  478. }
  479. return 0
  480. }
  481. type VolumeDeleteResponse struct {
  482. }
  483. func (m *VolumeDeleteResponse) Reset() { *m = VolumeDeleteResponse{} }
  484. func (m *VolumeDeleteResponse) String() string { return proto.CompactTextString(m) }
  485. func (*VolumeDeleteResponse) ProtoMessage() {}
  486. func (*VolumeDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  487. type VolumeMarkReadonlyRequest struct {
  488. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  489. }
  490. func (m *VolumeMarkReadonlyRequest) Reset() { *m = VolumeMarkReadonlyRequest{} }
  491. func (m *VolumeMarkReadonlyRequest) String() string { return proto.CompactTextString(m) }
  492. func (*VolumeMarkReadonlyRequest) ProtoMessage() {}
  493. func (*VolumeMarkReadonlyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
  494. func (m *VolumeMarkReadonlyRequest) GetVolumeId() uint32 {
  495. if m != nil {
  496. return m.VolumeId
  497. }
  498. return 0
  499. }
  500. type VolumeMarkReadonlyResponse struct {
  501. }
  502. func (m *VolumeMarkReadonlyResponse) Reset() { *m = VolumeMarkReadonlyResponse{} }
  503. func (m *VolumeMarkReadonlyResponse) String() string { return proto.CompactTextString(m) }
  504. func (*VolumeMarkReadonlyResponse) ProtoMessage() {}
  505. func (*VolumeMarkReadonlyResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
  506. type VolumeCopyRequest struct {
  507. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  508. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  509. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  510. Ttl string `protobuf:"bytes,4,opt,name=ttl" json:"ttl,omitempty"`
  511. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode" json:"source_data_node,omitempty"`
  512. }
  513. func (m *VolumeCopyRequest) Reset() { *m = VolumeCopyRequest{} }
  514. func (m *VolumeCopyRequest) String() string { return proto.CompactTextString(m) }
  515. func (*VolumeCopyRequest) ProtoMessage() {}
  516. func (*VolumeCopyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
  517. func (m *VolumeCopyRequest) GetVolumeId() uint32 {
  518. if m != nil {
  519. return m.VolumeId
  520. }
  521. return 0
  522. }
  523. func (m *VolumeCopyRequest) GetCollection() string {
  524. if m != nil {
  525. return m.Collection
  526. }
  527. return ""
  528. }
  529. func (m *VolumeCopyRequest) GetReplication() string {
  530. if m != nil {
  531. return m.Replication
  532. }
  533. return ""
  534. }
  535. func (m *VolumeCopyRequest) GetTtl() string {
  536. if m != nil {
  537. return m.Ttl
  538. }
  539. return ""
  540. }
  541. func (m *VolumeCopyRequest) GetSourceDataNode() string {
  542. if m != nil {
  543. return m.SourceDataNode
  544. }
  545. return ""
  546. }
  547. type VolumeCopyResponse struct {
  548. LastAppendAtNs uint64 `protobuf:"varint,1,opt,name=last_append_at_ns,json=lastAppendAtNs" json:"last_append_at_ns,omitempty"`
  549. }
  550. func (m *VolumeCopyResponse) Reset() { *m = VolumeCopyResponse{} }
  551. func (m *VolumeCopyResponse) String() string { return proto.CompactTextString(m) }
  552. func (*VolumeCopyResponse) ProtoMessage() {}
  553. func (*VolumeCopyResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
  554. func (m *VolumeCopyResponse) GetLastAppendAtNs() uint64 {
  555. if m != nil {
  556. return m.LastAppendAtNs
  557. }
  558. return 0
  559. }
  560. type CopyFileRequest struct {
  561. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  562. Ext string `protobuf:"bytes,2,opt,name=ext" json:"ext,omitempty"`
  563. CompactionRevision uint32 `protobuf:"varint,3,opt,name=compaction_revision,json=compactionRevision" json:"compaction_revision,omitempty"`
  564. StopOffset uint64 `protobuf:"varint,4,opt,name=stop_offset,json=stopOffset" json:"stop_offset,omitempty"`
  565. Collection string `protobuf:"bytes,5,opt,name=collection" json:"collection,omitempty"`
  566. IsEcVolume bool `protobuf:"varint,6,opt,name=is_ec_volume,json=isEcVolume" json:"is_ec_volume,omitempty"`
  567. IgnoreSourceFileNotFound bool `protobuf:"varint,7,opt,name=ignore_source_file_not_found,json=ignoreSourceFileNotFound" json:"ignore_source_file_not_found,omitempty"`
  568. }
  569. func (m *CopyFileRequest) Reset() { *m = CopyFileRequest{} }
  570. func (m *CopyFileRequest) String() string { return proto.CompactTextString(m) }
  571. func (*CopyFileRequest) ProtoMessage() {}
  572. func (*CopyFileRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} }
  573. func (m *CopyFileRequest) GetVolumeId() uint32 {
  574. if m != nil {
  575. return m.VolumeId
  576. }
  577. return 0
  578. }
  579. func (m *CopyFileRequest) GetExt() string {
  580. if m != nil {
  581. return m.Ext
  582. }
  583. return ""
  584. }
  585. func (m *CopyFileRequest) GetCompactionRevision() uint32 {
  586. if m != nil {
  587. return m.CompactionRevision
  588. }
  589. return 0
  590. }
  591. func (m *CopyFileRequest) GetStopOffset() uint64 {
  592. if m != nil {
  593. return m.StopOffset
  594. }
  595. return 0
  596. }
  597. func (m *CopyFileRequest) GetCollection() string {
  598. if m != nil {
  599. return m.Collection
  600. }
  601. return ""
  602. }
  603. func (m *CopyFileRequest) GetIsEcVolume() bool {
  604. if m != nil {
  605. return m.IsEcVolume
  606. }
  607. return false
  608. }
  609. func (m *CopyFileRequest) GetIgnoreSourceFileNotFound() bool {
  610. if m != nil {
  611. return m.IgnoreSourceFileNotFound
  612. }
  613. return false
  614. }
  615. type CopyFileResponse struct {
  616. FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"`
  617. }
  618. func (m *CopyFileResponse) Reset() { *m = CopyFileResponse{} }
  619. func (m *CopyFileResponse) String() string { return proto.CompactTextString(m) }
  620. func (*CopyFileResponse) ProtoMessage() {}
  621. func (*CopyFileResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} }
  622. func (m *CopyFileResponse) GetFileContent() []byte {
  623. if m != nil {
  624. return m.FileContent
  625. }
  626. return nil
  627. }
  628. type VolumeTailSenderRequest struct {
  629. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  630. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs" json:"since_ns,omitempty"`
  631. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds" json:"idle_timeout_seconds,omitempty"`
  632. }
  633. func (m *VolumeTailSenderRequest) Reset() { *m = VolumeTailSenderRequest{} }
  634. func (m *VolumeTailSenderRequest) String() string { return proto.CompactTextString(m) }
  635. func (*VolumeTailSenderRequest) ProtoMessage() {}
  636. func (*VolumeTailSenderRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} }
  637. func (m *VolumeTailSenderRequest) GetVolumeId() uint32 {
  638. if m != nil {
  639. return m.VolumeId
  640. }
  641. return 0
  642. }
  643. func (m *VolumeTailSenderRequest) GetSinceNs() uint64 {
  644. if m != nil {
  645. return m.SinceNs
  646. }
  647. return 0
  648. }
  649. func (m *VolumeTailSenderRequest) GetIdleTimeoutSeconds() uint32 {
  650. if m != nil {
  651. return m.IdleTimeoutSeconds
  652. }
  653. return 0
  654. }
  655. type VolumeTailSenderResponse struct {
  656. NeedleHeader []byte `protobuf:"bytes,1,opt,name=needle_header,json=needleHeader,proto3" json:"needle_header,omitempty"`
  657. NeedleBody []byte `protobuf:"bytes,2,opt,name=needle_body,json=needleBody,proto3" json:"needle_body,omitempty"`
  658. IsLastChunk bool `protobuf:"varint,3,opt,name=is_last_chunk,json=isLastChunk" json:"is_last_chunk,omitempty"`
  659. }
  660. func (m *VolumeTailSenderResponse) Reset() { *m = VolumeTailSenderResponse{} }
  661. func (m *VolumeTailSenderResponse) String() string { return proto.CompactTextString(m) }
  662. func (*VolumeTailSenderResponse) ProtoMessage() {}
  663. func (*VolumeTailSenderResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} }
  664. func (m *VolumeTailSenderResponse) GetNeedleHeader() []byte {
  665. if m != nil {
  666. return m.NeedleHeader
  667. }
  668. return nil
  669. }
  670. func (m *VolumeTailSenderResponse) GetNeedleBody() []byte {
  671. if m != nil {
  672. return m.NeedleBody
  673. }
  674. return nil
  675. }
  676. func (m *VolumeTailSenderResponse) GetIsLastChunk() bool {
  677. if m != nil {
  678. return m.IsLastChunk
  679. }
  680. return false
  681. }
  682. type VolumeTailReceiverRequest struct {
  683. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  684. SinceNs uint64 `protobuf:"varint,2,opt,name=since_ns,json=sinceNs" json:"since_ns,omitempty"`
  685. IdleTimeoutSeconds uint32 `protobuf:"varint,3,opt,name=idle_timeout_seconds,json=idleTimeoutSeconds" json:"idle_timeout_seconds,omitempty"`
  686. SourceVolumeServer string `protobuf:"bytes,4,opt,name=source_volume_server,json=sourceVolumeServer" json:"source_volume_server,omitempty"`
  687. }
  688. func (m *VolumeTailReceiverRequest) Reset() { *m = VolumeTailReceiverRequest{} }
  689. func (m *VolumeTailReceiverRequest) String() string { return proto.CompactTextString(m) }
  690. func (*VolumeTailReceiverRequest) ProtoMessage() {}
  691. func (*VolumeTailReceiverRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} }
  692. func (m *VolumeTailReceiverRequest) GetVolumeId() uint32 {
  693. if m != nil {
  694. return m.VolumeId
  695. }
  696. return 0
  697. }
  698. func (m *VolumeTailReceiverRequest) GetSinceNs() uint64 {
  699. if m != nil {
  700. return m.SinceNs
  701. }
  702. return 0
  703. }
  704. func (m *VolumeTailReceiverRequest) GetIdleTimeoutSeconds() uint32 {
  705. if m != nil {
  706. return m.IdleTimeoutSeconds
  707. }
  708. return 0
  709. }
  710. func (m *VolumeTailReceiverRequest) GetSourceVolumeServer() string {
  711. if m != nil {
  712. return m.SourceVolumeServer
  713. }
  714. return ""
  715. }
  716. type VolumeTailReceiverResponse struct {
  717. }
  718. func (m *VolumeTailReceiverResponse) Reset() { *m = VolumeTailReceiverResponse{} }
  719. func (m *VolumeTailReceiverResponse) String() string { return proto.CompactTextString(m) }
  720. func (*VolumeTailReceiverResponse) ProtoMessage() {}
  721. func (*VolumeTailReceiverResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35} }
  722. type VolumeEcShardsGenerateRequest struct {
  723. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  724. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  725. }
  726. func (m *VolumeEcShardsGenerateRequest) Reset() { *m = VolumeEcShardsGenerateRequest{} }
  727. func (m *VolumeEcShardsGenerateRequest) String() string { return proto.CompactTextString(m) }
  728. func (*VolumeEcShardsGenerateRequest) ProtoMessage() {}
  729. func (*VolumeEcShardsGenerateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36} }
  730. func (m *VolumeEcShardsGenerateRequest) GetVolumeId() uint32 {
  731. if m != nil {
  732. return m.VolumeId
  733. }
  734. return 0
  735. }
  736. func (m *VolumeEcShardsGenerateRequest) GetCollection() string {
  737. if m != nil {
  738. return m.Collection
  739. }
  740. return ""
  741. }
  742. type VolumeEcShardsGenerateResponse struct {
  743. }
  744. func (m *VolumeEcShardsGenerateResponse) Reset() { *m = VolumeEcShardsGenerateResponse{} }
  745. func (m *VolumeEcShardsGenerateResponse) String() string { return proto.CompactTextString(m) }
  746. func (*VolumeEcShardsGenerateResponse) ProtoMessage() {}
  747. func (*VolumeEcShardsGenerateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37} }
  748. type VolumeEcShardsRebuildRequest struct {
  749. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  750. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  751. }
  752. func (m *VolumeEcShardsRebuildRequest) Reset() { *m = VolumeEcShardsRebuildRequest{} }
  753. func (m *VolumeEcShardsRebuildRequest) String() string { return proto.CompactTextString(m) }
  754. func (*VolumeEcShardsRebuildRequest) ProtoMessage() {}
  755. func (*VolumeEcShardsRebuildRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{38} }
  756. func (m *VolumeEcShardsRebuildRequest) GetVolumeId() uint32 {
  757. if m != nil {
  758. return m.VolumeId
  759. }
  760. return 0
  761. }
  762. func (m *VolumeEcShardsRebuildRequest) GetCollection() string {
  763. if m != nil {
  764. return m.Collection
  765. }
  766. return ""
  767. }
  768. type VolumeEcShardsRebuildResponse struct {
  769. RebuiltShardIds []uint32 `protobuf:"varint,1,rep,packed,name=rebuilt_shard_ids,json=rebuiltShardIds" json:"rebuilt_shard_ids,omitempty"`
  770. }
  771. func (m *VolumeEcShardsRebuildResponse) Reset() { *m = VolumeEcShardsRebuildResponse{} }
  772. func (m *VolumeEcShardsRebuildResponse) String() string { return proto.CompactTextString(m) }
  773. func (*VolumeEcShardsRebuildResponse) ProtoMessage() {}
  774. func (*VolumeEcShardsRebuildResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39} }
  775. func (m *VolumeEcShardsRebuildResponse) GetRebuiltShardIds() []uint32 {
  776. if m != nil {
  777. return m.RebuiltShardIds
  778. }
  779. return nil
  780. }
  781. type VolumeEcShardsCopyRequest struct {
  782. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  783. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  784. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds" json:"shard_ids,omitempty"`
  785. CopyEcxFile bool `protobuf:"varint,4,opt,name=copy_ecx_file,json=copyEcxFile" json:"copy_ecx_file,omitempty"`
  786. SourceDataNode string `protobuf:"bytes,5,opt,name=source_data_node,json=sourceDataNode" json:"source_data_node,omitempty"`
  787. CopyEcjFile bool `protobuf:"varint,6,opt,name=copy_ecj_file,json=copyEcjFile" json:"copy_ecj_file,omitempty"`
  788. }
  789. func (m *VolumeEcShardsCopyRequest) Reset() { *m = VolumeEcShardsCopyRequest{} }
  790. func (m *VolumeEcShardsCopyRequest) String() string { return proto.CompactTextString(m) }
  791. func (*VolumeEcShardsCopyRequest) ProtoMessage() {}
  792. func (*VolumeEcShardsCopyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40} }
  793. func (m *VolumeEcShardsCopyRequest) GetVolumeId() uint32 {
  794. if m != nil {
  795. return m.VolumeId
  796. }
  797. return 0
  798. }
  799. func (m *VolumeEcShardsCopyRequest) GetCollection() string {
  800. if m != nil {
  801. return m.Collection
  802. }
  803. return ""
  804. }
  805. func (m *VolumeEcShardsCopyRequest) GetShardIds() []uint32 {
  806. if m != nil {
  807. return m.ShardIds
  808. }
  809. return nil
  810. }
  811. func (m *VolumeEcShardsCopyRequest) GetCopyEcxFile() bool {
  812. if m != nil {
  813. return m.CopyEcxFile
  814. }
  815. return false
  816. }
  817. func (m *VolumeEcShardsCopyRequest) GetSourceDataNode() string {
  818. if m != nil {
  819. return m.SourceDataNode
  820. }
  821. return ""
  822. }
  823. func (m *VolumeEcShardsCopyRequest) GetCopyEcjFile() bool {
  824. if m != nil {
  825. return m.CopyEcjFile
  826. }
  827. return false
  828. }
  829. type VolumeEcShardsCopyResponse struct {
  830. }
  831. func (m *VolumeEcShardsCopyResponse) Reset() { *m = VolumeEcShardsCopyResponse{} }
  832. func (m *VolumeEcShardsCopyResponse) String() string { return proto.CompactTextString(m) }
  833. func (*VolumeEcShardsCopyResponse) ProtoMessage() {}
  834. func (*VolumeEcShardsCopyResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41} }
  835. type VolumeEcShardsDeleteRequest struct {
  836. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  837. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  838. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds" json:"shard_ids,omitempty"`
  839. }
  840. func (m *VolumeEcShardsDeleteRequest) Reset() { *m = VolumeEcShardsDeleteRequest{} }
  841. func (m *VolumeEcShardsDeleteRequest) String() string { return proto.CompactTextString(m) }
  842. func (*VolumeEcShardsDeleteRequest) ProtoMessage() {}
  843. func (*VolumeEcShardsDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{42} }
  844. func (m *VolumeEcShardsDeleteRequest) GetVolumeId() uint32 {
  845. if m != nil {
  846. return m.VolumeId
  847. }
  848. return 0
  849. }
  850. func (m *VolumeEcShardsDeleteRequest) GetCollection() string {
  851. if m != nil {
  852. return m.Collection
  853. }
  854. return ""
  855. }
  856. func (m *VolumeEcShardsDeleteRequest) GetShardIds() []uint32 {
  857. if m != nil {
  858. return m.ShardIds
  859. }
  860. return nil
  861. }
  862. type VolumeEcShardsDeleteResponse struct {
  863. }
  864. func (m *VolumeEcShardsDeleteResponse) Reset() { *m = VolumeEcShardsDeleteResponse{} }
  865. func (m *VolumeEcShardsDeleteResponse) String() string { return proto.CompactTextString(m) }
  866. func (*VolumeEcShardsDeleteResponse) ProtoMessage() {}
  867. func (*VolumeEcShardsDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{43} }
  868. type VolumeEcShardsMountRequest struct {
  869. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  870. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  871. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds" json:"shard_ids,omitempty"`
  872. }
  873. func (m *VolumeEcShardsMountRequest) Reset() { *m = VolumeEcShardsMountRequest{} }
  874. func (m *VolumeEcShardsMountRequest) String() string { return proto.CompactTextString(m) }
  875. func (*VolumeEcShardsMountRequest) ProtoMessage() {}
  876. func (*VolumeEcShardsMountRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{44} }
  877. func (m *VolumeEcShardsMountRequest) GetVolumeId() uint32 {
  878. if m != nil {
  879. return m.VolumeId
  880. }
  881. return 0
  882. }
  883. func (m *VolumeEcShardsMountRequest) GetCollection() string {
  884. if m != nil {
  885. return m.Collection
  886. }
  887. return ""
  888. }
  889. func (m *VolumeEcShardsMountRequest) GetShardIds() []uint32 {
  890. if m != nil {
  891. return m.ShardIds
  892. }
  893. return nil
  894. }
  895. type VolumeEcShardsMountResponse struct {
  896. }
  897. func (m *VolumeEcShardsMountResponse) Reset() { *m = VolumeEcShardsMountResponse{} }
  898. func (m *VolumeEcShardsMountResponse) String() string { return proto.CompactTextString(m) }
  899. func (*VolumeEcShardsMountResponse) ProtoMessage() {}
  900. func (*VolumeEcShardsMountResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{45} }
  901. type VolumeEcShardsUnmountRequest struct {
  902. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  903. ShardIds []uint32 `protobuf:"varint,3,rep,packed,name=shard_ids,json=shardIds" json:"shard_ids,omitempty"`
  904. }
  905. func (m *VolumeEcShardsUnmountRequest) Reset() { *m = VolumeEcShardsUnmountRequest{} }
  906. func (m *VolumeEcShardsUnmountRequest) String() string { return proto.CompactTextString(m) }
  907. func (*VolumeEcShardsUnmountRequest) ProtoMessage() {}
  908. func (*VolumeEcShardsUnmountRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{46} }
  909. func (m *VolumeEcShardsUnmountRequest) GetVolumeId() uint32 {
  910. if m != nil {
  911. return m.VolumeId
  912. }
  913. return 0
  914. }
  915. func (m *VolumeEcShardsUnmountRequest) GetShardIds() []uint32 {
  916. if m != nil {
  917. return m.ShardIds
  918. }
  919. return nil
  920. }
  921. type VolumeEcShardsUnmountResponse struct {
  922. }
  923. func (m *VolumeEcShardsUnmountResponse) Reset() { *m = VolumeEcShardsUnmountResponse{} }
  924. func (m *VolumeEcShardsUnmountResponse) String() string { return proto.CompactTextString(m) }
  925. func (*VolumeEcShardsUnmountResponse) ProtoMessage() {}
  926. func (*VolumeEcShardsUnmountResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{47} }
  927. type VolumeEcShardReadRequest struct {
  928. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  929. ShardId uint32 `protobuf:"varint,2,opt,name=shard_id,json=shardId" json:"shard_id,omitempty"`
  930. Offset int64 `protobuf:"varint,3,opt,name=offset" json:"offset,omitempty"`
  931. Size int64 `protobuf:"varint,4,opt,name=size" json:"size,omitempty"`
  932. FileKey uint64 `protobuf:"varint,5,opt,name=file_key,json=fileKey" json:"file_key,omitempty"`
  933. }
  934. func (m *VolumeEcShardReadRequest) Reset() { *m = VolumeEcShardReadRequest{} }
  935. func (m *VolumeEcShardReadRequest) String() string { return proto.CompactTextString(m) }
  936. func (*VolumeEcShardReadRequest) ProtoMessage() {}
  937. func (*VolumeEcShardReadRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{48} }
  938. func (m *VolumeEcShardReadRequest) GetVolumeId() uint32 {
  939. if m != nil {
  940. return m.VolumeId
  941. }
  942. return 0
  943. }
  944. func (m *VolumeEcShardReadRequest) GetShardId() uint32 {
  945. if m != nil {
  946. return m.ShardId
  947. }
  948. return 0
  949. }
  950. func (m *VolumeEcShardReadRequest) GetOffset() int64 {
  951. if m != nil {
  952. return m.Offset
  953. }
  954. return 0
  955. }
  956. func (m *VolumeEcShardReadRequest) GetSize() int64 {
  957. if m != nil {
  958. return m.Size
  959. }
  960. return 0
  961. }
  962. func (m *VolumeEcShardReadRequest) GetFileKey() uint64 {
  963. if m != nil {
  964. return m.FileKey
  965. }
  966. return 0
  967. }
  968. type VolumeEcShardReadResponse struct {
  969. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  970. IsDeleted bool `protobuf:"varint,2,opt,name=is_deleted,json=isDeleted" json:"is_deleted,omitempty"`
  971. }
  972. func (m *VolumeEcShardReadResponse) Reset() { *m = VolumeEcShardReadResponse{} }
  973. func (m *VolumeEcShardReadResponse) String() string { return proto.CompactTextString(m) }
  974. func (*VolumeEcShardReadResponse) ProtoMessage() {}
  975. func (*VolumeEcShardReadResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{49} }
  976. func (m *VolumeEcShardReadResponse) GetData() []byte {
  977. if m != nil {
  978. return m.Data
  979. }
  980. return nil
  981. }
  982. func (m *VolumeEcShardReadResponse) GetIsDeleted() bool {
  983. if m != nil {
  984. return m.IsDeleted
  985. }
  986. return false
  987. }
  988. type VolumeEcBlobDeleteRequest struct {
  989. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  990. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  991. FileKey uint64 `protobuf:"varint,3,opt,name=file_key,json=fileKey" json:"file_key,omitempty"`
  992. Version uint32 `protobuf:"varint,4,opt,name=version" json:"version,omitempty"`
  993. }
  994. func (m *VolumeEcBlobDeleteRequest) Reset() { *m = VolumeEcBlobDeleteRequest{} }
  995. func (m *VolumeEcBlobDeleteRequest) String() string { return proto.CompactTextString(m) }
  996. func (*VolumeEcBlobDeleteRequest) ProtoMessage() {}
  997. func (*VolumeEcBlobDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{50} }
  998. func (m *VolumeEcBlobDeleteRequest) GetVolumeId() uint32 {
  999. if m != nil {
  1000. return m.VolumeId
  1001. }
  1002. return 0
  1003. }
  1004. func (m *VolumeEcBlobDeleteRequest) GetCollection() string {
  1005. if m != nil {
  1006. return m.Collection
  1007. }
  1008. return ""
  1009. }
  1010. func (m *VolumeEcBlobDeleteRequest) GetFileKey() uint64 {
  1011. if m != nil {
  1012. return m.FileKey
  1013. }
  1014. return 0
  1015. }
  1016. func (m *VolumeEcBlobDeleteRequest) GetVersion() uint32 {
  1017. if m != nil {
  1018. return m.Version
  1019. }
  1020. return 0
  1021. }
  1022. type VolumeEcBlobDeleteResponse struct {
  1023. }
  1024. func (m *VolumeEcBlobDeleteResponse) Reset() { *m = VolumeEcBlobDeleteResponse{} }
  1025. func (m *VolumeEcBlobDeleteResponse) String() string { return proto.CompactTextString(m) }
  1026. func (*VolumeEcBlobDeleteResponse) ProtoMessage() {}
  1027. func (*VolumeEcBlobDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{51} }
  1028. type VolumeEcShardsToVolumeRequest struct {
  1029. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1030. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  1031. }
  1032. func (m *VolumeEcShardsToVolumeRequest) Reset() { *m = VolumeEcShardsToVolumeRequest{} }
  1033. func (m *VolumeEcShardsToVolumeRequest) String() string { return proto.CompactTextString(m) }
  1034. func (*VolumeEcShardsToVolumeRequest) ProtoMessage() {}
  1035. func (*VolumeEcShardsToVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{52} }
  1036. func (m *VolumeEcShardsToVolumeRequest) GetVolumeId() uint32 {
  1037. if m != nil {
  1038. return m.VolumeId
  1039. }
  1040. return 0
  1041. }
  1042. func (m *VolumeEcShardsToVolumeRequest) GetCollection() string {
  1043. if m != nil {
  1044. return m.Collection
  1045. }
  1046. return ""
  1047. }
  1048. type VolumeEcShardsToVolumeResponse struct {
  1049. }
  1050. func (m *VolumeEcShardsToVolumeResponse) Reset() { *m = VolumeEcShardsToVolumeResponse{} }
  1051. func (m *VolumeEcShardsToVolumeResponse) String() string { return proto.CompactTextString(m) }
  1052. func (*VolumeEcShardsToVolumeResponse) ProtoMessage() {}
  1053. func (*VolumeEcShardsToVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{53} }
  1054. type ReadVolumeFileStatusRequest struct {
  1055. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1056. }
  1057. func (m *ReadVolumeFileStatusRequest) Reset() { *m = ReadVolumeFileStatusRequest{} }
  1058. func (m *ReadVolumeFileStatusRequest) String() string { return proto.CompactTextString(m) }
  1059. func (*ReadVolumeFileStatusRequest) ProtoMessage() {}
  1060. func (*ReadVolumeFileStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{54} }
  1061. func (m *ReadVolumeFileStatusRequest) GetVolumeId() uint32 {
  1062. if m != nil {
  1063. return m.VolumeId
  1064. }
  1065. return 0
  1066. }
  1067. type ReadVolumeFileStatusResponse struct {
  1068. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1069. IdxFileTimestampSeconds uint64 `protobuf:"varint,2,opt,name=idx_file_timestamp_seconds,json=idxFileTimestampSeconds" json:"idx_file_timestamp_seconds,omitempty"`
  1070. IdxFileSize uint64 `protobuf:"varint,3,opt,name=idx_file_size,json=idxFileSize" json:"idx_file_size,omitempty"`
  1071. DatFileTimestampSeconds uint64 `protobuf:"varint,4,opt,name=dat_file_timestamp_seconds,json=datFileTimestampSeconds" json:"dat_file_timestamp_seconds,omitempty"`
  1072. DatFileSize uint64 `protobuf:"varint,5,opt,name=dat_file_size,json=datFileSize" json:"dat_file_size,omitempty"`
  1073. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  1074. CompactionRevision uint32 `protobuf:"varint,7,opt,name=compaction_revision,json=compactionRevision" json:"compaction_revision,omitempty"`
  1075. Collection string `protobuf:"bytes,8,opt,name=collection" json:"collection,omitempty"`
  1076. }
  1077. func (m *ReadVolumeFileStatusResponse) Reset() { *m = ReadVolumeFileStatusResponse{} }
  1078. func (m *ReadVolumeFileStatusResponse) String() string { return proto.CompactTextString(m) }
  1079. func (*ReadVolumeFileStatusResponse) ProtoMessage() {}
  1080. func (*ReadVolumeFileStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{55} }
  1081. func (m *ReadVolumeFileStatusResponse) GetVolumeId() uint32 {
  1082. if m != nil {
  1083. return m.VolumeId
  1084. }
  1085. return 0
  1086. }
  1087. func (m *ReadVolumeFileStatusResponse) GetIdxFileTimestampSeconds() uint64 {
  1088. if m != nil {
  1089. return m.IdxFileTimestampSeconds
  1090. }
  1091. return 0
  1092. }
  1093. func (m *ReadVolumeFileStatusResponse) GetIdxFileSize() uint64 {
  1094. if m != nil {
  1095. return m.IdxFileSize
  1096. }
  1097. return 0
  1098. }
  1099. func (m *ReadVolumeFileStatusResponse) GetDatFileTimestampSeconds() uint64 {
  1100. if m != nil {
  1101. return m.DatFileTimestampSeconds
  1102. }
  1103. return 0
  1104. }
  1105. func (m *ReadVolumeFileStatusResponse) GetDatFileSize() uint64 {
  1106. if m != nil {
  1107. return m.DatFileSize
  1108. }
  1109. return 0
  1110. }
  1111. func (m *ReadVolumeFileStatusResponse) GetFileCount() uint64 {
  1112. if m != nil {
  1113. return m.FileCount
  1114. }
  1115. return 0
  1116. }
  1117. func (m *ReadVolumeFileStatusResponse) GetCompactionRevision() uint32 {
  1118. if m != nil {
  1119. return m.CompactionRevision
  1120. }
  1121. return 0
  1122. }
  1123. func (m *ReadVolumeFileStatusResponse) GetCollection() string {
  1124. if m != nil {
  1125. return m.Collection
  1126. }
  1127. return ""
  1128. }
  1129. type DiskStatus struct {
  1130. Dir string `protobuf:"bytes,1,opt,name=dir" json:"dir,omitempty"`
  1131. All uint64 `protobuf:"varint,2,opt,name=all" json:"all,omitempty"`
  1132. Used uint64 `protobuf:"varint,3,opt,name=used" json:"used,omitempty"`
  1133. Free uint64 `protobuf:"varint,4,opt,name=free" json:"free,omitempty"`
  1134. }
  1135. func (m *DiskStatus) Reset() { *m = DiskStatus{} }
  1136. func (m *DiskStatus) String() string { return proto.CompactTextString(m) }
  1137. func (*DiskStatus) ProtoMessage() {}
  1138. func (*DiskStatus) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56} }
  1139. func (m *DiskStatus) GetDir() string {
  1140. if m != nil {
  1141. return m.Dir
  1142. }
  1143. return ""
  1144. }
  1145. func (m *DiskStatus) GetAll() uint64 {
  1146. if m != nil {
  1147. return m.All
  1148. }
  1149. return 0
  1150. }
  1151. func (m *DiskStatus) GetUsed() uint64 {
  1152. if m != nil {
  1153. return m.Used
  1154. }
  1155. return 0
  1156. }
  1157. func (m *DiskStatus) GetFree() uint64 {
  1158. if m != nil {
  1159. return m.Free
  1160. }
  1161. return 0
  1162. }
  1163. type MemStatus struct {
  1164. Goroutines int32 `protobuf:"varint,1,opt,name=goroutines" json:"goroutines,omitempty"`
  1165. All uint64 `protobuf:"varint,2,opt,name=all" json:"all,omitempty"`
  1166. Used uint64 `protobuf:"varint,3,opt,name=used" json:"used,omitempty"`
  1167. Free uint64 `protobuf:"varint,4,opt,name=free" json:"free,omitempty"`
  1168. Self uint64 `protobuf:"varint,5,opt,name=self" json:"self,omitempty"`
  1169. Heap uint64 `protobuf:"varint,6,opt,name=heap" json:"heap,omitempty"`
  1170. Stack uint64 `protobuf:"varint,7,opt,name=stack" json:"stack,omitempty"`
  1171. }
  1172. func (m *MemStatus) Reset() { *m = MemStatus{} }
  1173. func (m *MemStatus) String() string { return proto.CompactTextString(m) }
  1174. func (*MemStatus) ProtoMessage() {}
  1175. func (*MemStatus) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{57} }
  1176. func (m *MemStatus) GetGoroutines() int32 {
  1177. if m != nil {
  1178. return m.Goroutines
  1179. }
  1180. return 0
  1181. }
  1182. func (m *MemStatus) GetAll() uint64 {
  1183. if m != nil {
  1184. return m.All
  1185. }
  1186. return 0
  1187. }
  1188. func (m *MemStatus) GetUsed() uint64 {
  1189. if m != nil {
  1190. return m.Used
  1191. }
  1192. return 0
  1193. }
  1194. func (m *MemStatus) GetFree() uint64 {
  1195. if m != nil {
  1196. return m.Free
  1197. }
  1198. return 0
  1199. }
  1200. func (m *MemStatus) GetSelf() uint64 {
  1201. if m != nil {
  1202. return m.Self
  1203. }
  1204. return 0
  1205. }
  1206. func (m *MemStatus) GetHeap() uint64 {
  1207. if m != nil {
  1208. return m.Heap
  1209. }
  1210. return 0
  1211. }
  1212. func (m *MemStatus) GetStack() uint64 {
  1213. if m != nil {
  1214. return m.Stack
  1215. }
  1216. return 0
  1217. }
  1218. // tired storage on volume servers
  1219. type RemoteFile struct {
  1220. BackendType string `protobuf:"bytes,1,opt,name=backend_type,json=backendType" json:"backend_type,omitempty"`
  1221. BackendId string `protobuf:"bytes,2,opt,name=backend_id,json=backendId" json:"backend_id,omitempty"`
  1222. Key string `protobuf:"bytes,3,opt,name=key" json:"key,omitempty"`
  1223. Offset uint64 `protobuf:"varint,4,opt,name=offset" json:"offset,omitempty"`
  1224. FileSize uint64 `protobuf:"varint,5,opt,name=file_size,json=fileSize" json:"file_size,omitempty"`
  1225. ModifiedTime uint64 `protobuf:"varint,6,opt,name=modified_time,json=modifiedTime" json:"modified_time,omitempty"`
  1226. }
  1227. func (m *RemoteFile) Reset() { *m = RemoteFile{} }
  1228. func (m *RemoteFile) String() string { return proto.CompactTextString(m) }
  1229. func (*RemoteFile) ProtoMessage() {}
  1230. func (*RemoteFile) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{58} }
  1231. func (m *RemoteFile) GetBackendType() string {
  1232. if m != nil {
  1233. return m.BackendType
  1234. }
  1235. return ""
  1236. }
  1237. func (m *RemoteFile) GetBackendId() string {
  1238. if m != nil {
  1239. return m.BackendId
  1240. }
  1241. return ""
  1242. }
  1243. func (m *RemoteFile) GetKey() string {
  1244. if m != nil {
  1245. return m.Key
  1246. }
  1247. return ""
  1248. }
  1249. func (m *RemoteFile) GetOffset() uint64 {
  1250. if m != nil {
  1251. return m.Offset
  1252. }
  1253. return 0
  1254. }
  1255. func (m *RemoteFile) GetFileSize() uint64 {
  1256. if m != nil {
  1257. return m.FileSize
  1258. }
  1259. return 0
  1260. }
  1261. func (m *RemoteFile) GetModifiedTime() uint64 {
  1262. if m != nil {
  1263. return m.ModifiedTime
  1264. }
  1265. return 0
  1266. }
  1267. type VolumeTierInfo struct {
  1268. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files" json:"files,omitempty"`
  1269. }
  1270. func (m *VolumeTierInfo) Reset() { *m = VolumeTierInfo{} }
  1271. func (m *VolumeTierInfo) String() string { return proto.CompactTextString(m) }
  1272. func (*VolumeTierInfo) ProtoMessage() {}
  1273. func (*VolumeTierInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{59} }
  1274. func (m *VolumeTierInfo) GetFiles() []*RemoteFile {
  1275. if m != nil {
  1276. return m.Files
  1277. }
  1278. return nil
  1279. }
  1280. type VolumeTierMoveDatToRemoteRequest struct {
  1281. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1282. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  1283. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName" json:"destination_backend_name,omitempty"`
  1284. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile" json:"keep_local_dat_file,omitempty"`
  1285. }
  1286. func (m *VolumeTierMoveDatToRemoteRequest) Reset() { *m = VolumeTierMoveDatToRemoteRequest{} }
  1287. func (m *VolumeTierMoveDatToRemoteRequest) String() string { return proto.CompactTextString(m) }
  1288. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  1289. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  1290. return fileDescriptor0, []int{60}
  1291. }
  1292. func (m *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  1293. if m != nil {
  1294. return m.VolumeId
  1295. }
  1296. return 0
  1297. }
  1298. func (m *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  1299. if m != nil {
  1300. return m.Collection
  1301. }
  1302. return ""
  1303. }
  1304. func (m *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  1305. if m != nil {
  1306. return m.DestinationBackendName
  1307. }
  1308. return ""
  1309. }
  1310. func (m *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  1311. if m != nil {
  1312. return m.KeepLocalDatFile
  1313. }
  1314. return false
  1315. }
  1316. type VolumeTierMoveDatToRemoteResponse struct {
  1317. Processed int64 `protobuf:"varint,1,opt,name=processed" json:"processed,omitempty"`
  1318. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage" json:"processedPercentage,omitempty"`
  1319. }
  1320. func (m *VolumeTierMoveDatToRemoteResponse) Reset() { *m = VolumeTierMoveDatToRemoteResponse{} }
  1321. func (m *VolumeTierMoveDatToRemoteResponse) String() string { return proto.CompactTextString(m) }
  1322. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  1323. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  1324. return fileDescriptor0, []int{61}
  1325. }
  1326. func (m *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  1327. if m != nil {
  1328. return m.Processed
  1329. }
  1330. return 0
  1331. }
  1332. func (m *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  1333. if m != nil {
  1334. return m.ProcessedPercentage
  1335. }
  1336. return 0
  1337. }
  1338. type VolumeTierMoveDatFromRemoteRequest struct {
  1339. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1340. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  1341. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile" json:"keep_remote_dat_file,omitempty"`
  1342. }
  1343. func (m *VolumeTierMoveDatFromRemoteRequest) Reset() { *m = VolumeTierMoveDatFromRemoteRequest{} }
  1344. func (m *VolumeTierMoveDatFromRemoteRequest) String() string { return proto.CompactTextString(m) }
  1345. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  1346. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  1347. return fileDescriptor0, []int{62}
  1348. }
  1349. func (m *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  1350. if m != nil {
  1351. return m.VolumeId
  1352. }
  1353. return 0
  1354. }
  1355. func (m *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  1356. if m != nil {
  1357. return m.Collection
  1358. }
  1359. return ""
  1360. }
  1361. func (m *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  1362. if m != nil {
  1363. return m.KeepRemoteDatFile
  1364. }
  1365. return false
  1366. }
  1367. type VolumeTierMoveDatFromRemoteResponse struct {
  1368. Processed int64 `protobuf:"varint,1,opt,name=processed" json:"processed,omitempty"`
  1369. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage" json:"processedPercentage,omitempty"`
  1370. }
  1371. func (m *VolumeTierMoveDatFromRemoteResponse) Reset() { *m = VolumeTierMoveDatFromRemoteResponse{} }
  1372. func (m *VolumeTierMoveDatFromRemoteResponse) String() string { return proto.CompactTextString(m) }
  1373. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  1374. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  1375. return fileDescriptor0, []int{63}
  1376. }
  1377. func (m *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  1378. if m != nil {
  1379. return m.Processed
  1380. }
  1381. return 0
  1382. }
  1383. func (m *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  1384. if m != nil {
  1385. return m.ProcessedPercentage
  1386. }
  1387. return 0
  1388. }
  1389. // select on volume servers
  1390. type QueryRequest struct {
  1391. Selections []string `protobuf:"bytes,1,rep,name=selections" json:"selections,omitempty"`
  1392. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds" json:"from_file_ids,omitempty"`
  1393. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter" json:"filter,omitempty"`
  1394. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization" json:"input_serialization,omitempty"`
  1395. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization" json:"output_serialization,omitempty"`
  1396. }
  1397. func (m *QueryRequest) Reset() { *m = QueryRequest{} }
  1398. func (m *QueryRequest) String() string { return proto.CompactTextString(m) }
  1399. func (*QueryRequest) ProtoMessage() {}
  1400. func (*QueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64} }
  1401. func (m *QueryRequest) GetSelections() []string {
  1402. if m != nil {
  1403. return m.Selections
  1404. }
  1405. return nil
  1406. }
  1407. func (m *QueryRequest) GetFromFileIds() []string {
  1408. if m != nil {
  1409. return m.FromFileIds
  1410. }
  1411. return nil
  1412. }
  1413. func (m *QueryRequest) GetFilter() *QueryRequest_Filter {
  1414. if m != nil {
  1415. return m.Filter
  1416. }
  1417. return nil
  1418. }
  1419. func (m *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  1420. if m != nil {
  1421. return m.InputSerialization
  1422. }
  1423. return nil
  1424. }
  1425. func (m *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  1426. if m != nil {
  1427. return m.OutputSerialization
  1428. }
  1429. return nil
  1430. }
  1431. type QueryRequest_Filter struct {
  1432. Field string `protobuf:"bytes,1,opt,name=field" json:"field,omitempty"`
  1433. Operand string `protobuf:"bytes,2,opt,name=operand" json:"operand,omitempty"`
  1434. Value string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
  1435. }
  1436. func (m *QueryRequest_Filter) Reset() { *m = QueryRequest_Filter{} }
  1437. func (m *QueryRequest_Filter) String() string { return proto.CompactTextString(m) }
  1438. func (*QueryRequest_Filter) ProtoMessage() {}
  1439. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64, 0} }
  1440. func (m *QueryRequest_Filter) GetField() string {
  1441. if m != nil {
  1442. return m.Field
  1443. }
  1444. return ""
  1445. }
  1446. func (m *QueryRequest_Filter) GetOperand() string {
  1447. if m != nil {
  1448. return m.Operand
  1449. }
  1450. return ""
  1451. }
  1452. func (m *QueryRequest_Filter) GetValue() string {
  1453. if m != nil {
  1454. return m.Value
  1455. }
  1456. return ""
  1457. }
  1458. type QueryRequest_InputSerialization struct {
  1459. // NONE | GZIP | BZIP2
  1460. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType" json:"compression_type,omitempty"`
  1461. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput" json:"csv_input,omitempty"`
  1462. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput" json:"json_input,omitempty"`
  1463. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput" json:"parquet_input,omitempty"`
  1464. }
  1465. func (m *QueryRequest_InputSerialization) Reset() { *m = QueryRequest_InputSerialization{} }
  1466. func (m *QueryRequest_InputSerialization) String() string { return proto.CompactTextString(m) }
  1467. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  1468. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  1469. return fileDescriptor0, []int{64, 1}
  1470. }
  1471. func (m *QueryRequest_InputSerialization) GetCompressionType() string {
  1472. if m != nil {
  1473. return m.CompressionType
  1474. }
  1475. return ""
  1476. }
  1477. func (m *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  1478. if m != nil {
  1479. return m.CsvInput
  1480. }
  1481. return nil
  1482. }
  1483. func (m *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  1484. if m != nil {
  1485. return m.JsonInput
  1486. }
  1487. return nil
  1488. }
  1489. func (m *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  1490. if m != nil {
  1491. return m.ParquetInput
  1492. }
  1493. return nil
  1494. }
  1495. type QueryRequest_InputSerialization_CSVInput struct {
  1496. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo" json:"file_header_info,omitempty"`
  1497. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter" json:"record_delimiter,omitempty"`
  1498. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter" json:"field_delimiter,omitempty"`
  1499. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer" json:"quote_charactoer,omitempty"`
  1500. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter" json:"quote_escape_character,omitempty"`
  1501. Comments string `protobuf:"bytes,6,opt,name=comments" json:"comments,omitempty"`
  1502. // If true, records might contain record delimiters within quote characters
  1503. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter" json:"allow_quoted_record_delimiter,omitempty"`
  1504. }
  1505. func (m *QueryRequest_InputSerialization_CSVInput) Reset() {
  1506. *m = QueryRequest_InputSerialization_CSVInput{}
  1507. }
  1508. func (m *QueryRequest_InputSerialization_CSVInput) String() string { return proto.CompactTextString(m) }
  1509. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  1510. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  1511. return fileDescriptor0, []int{64, 1, 0}
  1512. }
  1513. func (m *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  1514. if m != nil {
  1515. return m.FileHeaderInfo
  1516. }
  1517. return ""
  1518. }
  1519. func (m *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  1520. if m != nil {
  1521. return m.RecordDelimiter
  1522. }
  1523. return ""
  1524. }
  1525. func (m *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  1526. if m != nil {
  1527. return m.FieldDelimiter
  1528. }
  1529. return ""
  1530. }
  1531. func (m *QueryRequest_InputSerialization_CSVInput) GetQuoteCharactoer() string {
  1532. if m != nil {
  1533. return m.QuoteCharactoer
  1534. }
  1535. return ""
  1536. }
  1537. func (m *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  1538. if m != nil {
  1539. return m.QuoteEscapeCharacter
  1540. }
  1541. return ""
  1542. }
  1543. func (m *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  1544. if m != nil {
  1545. return m.Comments
  1546. }
  1547. return ""
  1548. }
  1549. func (m *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  1550. if m != nil {
  1551. return m.AllowQuotedRecordDelimiter
  1552. }
  1553. return false
  1554. }
  1555. type QueryRequest_InputSerialization_JSONInput struct {
  1556. Type string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
  1557. }
  1558. func (m *QueryRequest_InputSerialization_JSONInput) Reset() {
  1559. *m = QueryRequest_InputSerialization_JSONInput{}
  1560. }
  1561. func (m *QueryRequest_InputSerialization_JSONInput) String() string { return proto.CompactTextString(m) }
  1562. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  1563. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  1564. return fileDescriptor0, []int{64, 1, 1}
  1565. }
  1566. func (m *QueryRequest_InputSerialization_JSONInput) GetType() string {
  1567. if m != nil {
  1568. return m.Type
  1569. }
  1570. return ""
  1571. }
  1572. type QueryRequest_InputSerialization_ParquetInput struct {
  1573. }
  1574. func (m *QueryRequest_InputSerialization_ParquetInput) Reset() {
  1575. *m = QueryRequest_InputSerialization_ParquetInput{}
  1576. }
  1577. func (m *QueryRequest_InputSerialization_ParquetInput) String() string {
  1578. return proto.CompactTextString(m)
  1579. }
  1580. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  1581. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  1582. return fileDescriptor0, []int{64, 1, 2}
  1583. }
  1584. type QueryRequest_OutputSerialization struct {
  1585. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput" json:"csv_output,omitempty"`
  1586. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput" json:"json_output,omitempty"`
  1587. }
  1588. func (m *QueryRequest_OutputSerialization) Reset() { *m = QueryRequest_OutputSerialization{} }
  1589. func (m *QueryRequest_OutputSerialization) String() string { return proto.CompactTextString(m) }
  1590. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  1591. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  1592. return fileDescriptor0, []int{64, 2}
  1593. }
  1594. func (m *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  1595. if m != nil {
  1596. return m.CsvOutput
  1597. }
  1598. return nil
  1599. }
  1600. func (m *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  1601. if m != nil {
  1602. return m.JsonOutput
  1603. }
  1604. return nil
  1605. }
  1606. type QueryRequest_OutputSerialization_CSVOutput struct {
  1607. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields" json:"quote_fields,omitempty"`
  1608. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter" json:"record_delimiter,omitempty"`
  1609. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter" json:"field_delimiter,omitempty"`
  1610. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer" json:"quote_charactoer,omitempty"`
  1611. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter" json:"quote_escape_character,omitempty"`
  1612. }
  1613. func (m *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  1614. *m = QueryRequest_OutputSerialization_CSVOutput{}
  1615. }
  1616. func (m *QueryRequest_OutputSerialization_CSVOutput) String() string {
  1617. return proto.CompactTextString(m)
  1618. }
  1619. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  1620. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  1621. return fileDescriptor0, []int{64, 2, 0}
  1622. }
  1623. func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  1624. if m != nil {
  1625. return m.QuoteFields
  1626. }
  1627. return ""
  1628. }
  1629. func (m *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  1630. if m != nil {
  1631. return m.RecordDelimiter
  1632. }
  1633. return ""
  1634. }
  1635. func (m *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  1636. if m != nil {
  1637. return m.FieldDelimiter
  1638. }
  1639. return ""
  1640. }
  1641. func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharactoer() string {
  1642. if m != nil {
  1643. return m.QuoteCharactoer
  1644. }
  1645. return ""
  1646. }
  1647. func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  1648. if m != nil {
  1649. return m.QuoteEscapeCharacter
  1650. }
  1651. return ""
  1652. }
  1653. type QueryRequest_OutputSerialization_JSONOutput struct {
  1654. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter" json:"record_delimiter,omitempty"`
  1655. }
  1656. func (m *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  1657. *m = QueryRequest_OutputSerialization_JSONOutput{}
  1658. }
  1659. func (m *QueryRequest_OutputSerialization_JSONOutput) String() string {
  1660. return proto.CompactTextString(m)
  1661. }
  1662. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  1663. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  1664. return fileDescriptor0, []int{64, 2, 1}
  1665. }
  1666. func (m *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  1667. if m != nil {
  1668. return m.RecordDelimiter
  1669. }
  1670. return ""
  1671. }
  1672. type QueriedStripe struct {
  1673. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  1674. }
  1675. func (m *QueriedStripe) Reset() { *m = QueriedStripe{} }
  1676. func (m *QueriedStripe) String() string { return proto.CompactTextString(m) }
  1677. func (*QueriedStripe) ProtoMessage() {}
  1678. func (*QueriedStripe) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{65} }
  1679. func (m *QueriedStripe) GetRecords() []byte {
  1680. if m != nil {
  1681. return m.Records
  1682. }
  1683. return nil
  1684. }
  1685. func init() {
  1686. proto.RegisterType((*BatchDeleteRequest)(nil), "volume_server_pb.BatchDeleteRequest")
  1687. proto.RegisterType((*BatchDeleteResponse)(nil), "volume_server_pb.BatchDeleteResponse")
  1688. proto.RegisterType((*DeleteResult)(nil), "volume_server_pb.DeleteResult")
  1689. proto.RegisterType((*Empty)(nil), "volume_server_pb.Empty")
  1690. proto.RegisterType((*VacuumVolumeCheckRequest)(nil), "volume_server_pb.VacuumVolumeCheckRequest")
  1691. proto.RegisterType((*VacuumVolumeCheckResponse)(nil), "volume_server_pb.VacuumVolumeCheckResponse")
  1692. proto.RegisterType((*VacuumVolumeCompactRequest)(nil), "volume_server_pb.VacuumVolumeCompactRequest")
  1693. proto.RegisterType((*VacuumVolumeCompactResponse)(nil), "volume_server_pb.VacuumVolumeCompactResponse")
  1694. proto.RegisterType((*VacuumVolumeCommitRequest)(nil), "volume_server_pb.VacuumVolumeCommitRequest")
  1695. proto.RegisterType((*VacuumVolumeCommitResponse)(nil), "volume_server_pb.VacuumVolumeCommitResponse")
  1696. proto.RegisterType((*VacuumVolumeCleanupRequest)(nil), "volume_server_pb.VacuumVolumeCleanupRequest")
  1697. proto.RegisterType((*VacuumVolumeCleanupResponse)(nil), "volume_server_pb.VacuumVolumeCleanupResponse")
  1698. proto.RegisterType((*DeleteCollectionRequest)(nil), "volume_server_pb.DeleteCollectionRequest")
  1699. proto.RegisterType((*DeleteCollectionResponse)(nil), "volume_server_pb.DeleteCollectionResponse")
  1700. proto.RegisterType((*AllocateVolumeRequest)(nil), "volume_server_pb.AllocateVolumeRequest")
  1701. proto.RegisterType((*AllocateVolumeResponse)(nil), "volume_server_pb.AllocateVolumeResponse")
  1702. proto.RegisterType((*VolumeSyncStatusRequest)(nil), "volume_server_pb.VolumeSyncStatusRequest")
  1703. proto.RegisterType((*VolumeSyncStatusResponse)(nil), "volume_server_pb.VolumeSyncStatusResponse")
  1704. proto.RegisterType((*VolumeIncrementalCopyRequest)(nil), "volume_server_pb.VolumeIncrementalCopyRequest")
  1705. proto.RegisterType((*VolumeIncrementalCopyResponse)(nil), "volume_server_pb.VolumeIncrementalCopyResponse")
  1706. proto.RegisterType((*VolumeMountRequest)(nil), "volume_server_pb.VolumeMountRequest")
  1707. proto.RegisterType((*VolumeMountResponse)(nil), "volume_server_pb.VolumeMountResponse")
  1708. proto.RegisterType((*VolumeUnmountRequest)(nil), "volume_server_pb.VolumeUnmountRequest")
  1709. proto.RegisterType((*VolumeUnmountResponse)(nil), "volume_server_pb.VolumeUnmountResponse")
  1710. proto.RegisterType((*VolumeDeleteRequest)(nil), "volume_server_pb.VolumeDeleteRequest")
  1711. proto.RegisterType((*VolumeDeleteResponse)(nil), "volume_server_pb.VolumeDeleteResponse")
  1712. proto.RegisterType((*VolumeMarkReadonlyRequest)(nil), "volume_server_pb.VolumeMarkReadonlyRequest")
  1713. proto.RegisterType((*VolumeMarkReadonlyResponse)(nil), "volume_server_pb.VolumeMarkReadonlyResponse")
  1714. proto.RegisterType((*VolumeCopyRequest)(nil), "volume_server_pb.VolumeCopyRequest")
  1715. proto.RegisterType((*VolumeCopyResponse)(nil), "volume_server_pb.VolumeCopyResponse")
  1716. proto.RegisterType((*CopyFileRequest)(nil), "volume_server_pb.CopyFileRequest")
  1717. proto.RegisterType((*CopyFileResponse)(nil), "volume_server_pb.CopyFileResponse")
  1718. proto.RegisterType((*VolumeTailSenderRequest)(nil), "volume_server_pb.VolumeTailSenderRequest")
  1719. proto.RegisterType((*VolumeTailSenderResponse)(nil), "volume_server_pb.VolumeTailSenderResponse")
  1720. proto.RegisterType((*VolumeTailReceiverRequest)(nil), "volume_server_pb.VolumeTailReceiverRequest")
  1721. proto.RegisterType((*VolumeTailReceiverResponse)(nil), "volume_server_pb.VolumeTailReceiverResponse")
  1722. proto.RegisterType((*VolumeEcShardsGenerateRequest)(nil), "volume_server_pb.VolumeEcShardsGenerateRequest")
  1723. proto.RegisterType((*VolumeEcShardsGenerateResponse)(nil), "volume_server_pb.VolumeEcShardsGenerateResponse")
  1724. proto.RegisterType((*VolumeEcShardsRebuildRequest)(nil), "volume_server_pb.VolumeEcShardsRebuildRequest")
  1725. proto.RegisterType((*VolumeEcShardsRebuildResponse)(nil), "volume_server_pb.VolumeEcShardsRebuildResponse")
  1726. proto.RegisterType((*VolumeEcShardsCopyRequest)(nil), "volume_server_pb.VolumeEcShardsCopyRequest")
  1727. proto.RegisterType((*VolumeEcShardsCopyResponse)(nil), "volume_server_pb.VolumeEcShardsCopyResponse")
  1728. proto.RegisterType((*VolumeEcShardsDeleteRequest)(nil), "volume_server_pb.VolumeEcShardsDeleteRequest")
  1729. proto.RegisterType((*VolumeEcShardsDeleteResponse)(nil), "volume_server_pb.VolumeEcShardsDeleteResponse")
  1730. proto.RegisterType((*VolumeEcShardsMountRequest)(nil), "volume_server_pb.VolumeEcShardsMountRequest")
  1731. proto.RegisterType((*VolumeEcShardsMountResponse)(nil), "volume_server_pb.VolumeEcShardsMountResponse")
  1732. proto.RegisterType((*VolumeEcShardsUnmountRequest)(nil), "volume_server_pb.VolumeEcShardsUnmountRequest")
  1733. proto.RegisterType((*VolumeEcShardsUnmountResponse)(nil), "volume_server_pb.VolumeEcShardsUnmountResponse")
  1734. proto.RegisterType((*VolumeEcShardReadRequest)(nil), "volume_server_pb.VolumeEcShardReadRequest")
  1735. proto.RegisterType((*VolumeEcShardReadResponse)(nil), "volume_server_pb.VolumeEcShardReadResponse")
  1736. proto.RegisterType((*VolumeEcBlobDeleteRequest)(nil), "volume_server_pb.VolumeEcBlobDeleteRequest")
  1737. proto.RegisterType((*VolumeEcBlobDeleteResponse)(nil), "volume_server_pb.VolumeEcBlobDeleteResponse")
  1738. proto.RegisterType((*VolumeEcShardsToVolumeRequest)(nil), "volume_server_pb.VolumeEcShardsToVolumeRequest")
  1739. proto.RegisterType((*VolumeEcShardsToVolumeResponse)(nil), "volume_server_pb.VolumeEcShardsToVolumeResponse")
  1740. proto.RegisterType((*ReadVolumeFileStatusRequest)(nil), "volume_server_pb.ReadVolumeFileStatusRequest")
  1741. proto.RegisterType((*ReadVolumeFileStatusResponse)(nil), "volume_server_pb.ReadVolumeFileStatusResponse")
  1742. proto.RegisterType((*DiskStatus)(nil), "volume_server_pb.DiskStatus")
  1743. proto.RegisterType((*MemStatus)(nil), "volume_server_pb.MemStatus")
  1744. proto.RegisterType((*RemoteFile)(nil), "volume_server_pb.RemoteFile")
  1745. proto.RegisterType((*VolumeTierInfo)(nil), "volume_server_pb.VolumeTierInfo")
  1746. proto.RegisterType((*VolumeTierMoveDatToRemoteRequest)(nil), "volume_server_pb.VolumeTierMoveDatToRemoteRequest")
  1747. proto.RegisterType((*VolumeTierMoveDatToRemoteResponse)(nil), "volume_server_pb.VolumeTierMoveDatToRemoteResponse")
  1748. proto.RegisterType((*VolumeTierMoveDatFromRemoteRequest)(nil), "volume_server_pb.VolumeTierMoveDatFromRemoteRequest")
  1749. proto.RegisterType((*VolumeTierMoveDatFromRemoteResponse)(nil), "volume_server_pb.VolumeTierMoveDatFromRemoteResponse")
  1750. proto.RegisterType((*QueryRequest)(nil), "volume_server_pb.QueryRequest")
  1751. proto.RegisterType((*QueryRequest_Filter)(nil), "volume_server_pb.QueryRequest.Filter")
  1752. proto.RegisterType((*QueryRequest_InputSerialization)(nil), "volume_server_pb.QueryRequest.InputSerialization")
  1753. proto.RegisterType((*QueryRequest_InputSerialization_CSVInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.CSVInput")
  1754. proto.RegisterType((*QueryRequest_InputSerialization_JSONInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.JSONInput")
  1755. proto.RegisterType((*QueryRequest_InputSerialization_ParquetInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.ParquetInput")
  1756. proto.RegisterType((*QueryRequest_OutputSerialization)(nil), "volume_server_pb.QueryRequest.OutputSerialization")
  1757. proto.RegisterType((*QueryRequest_OutputSerialization_CSVOutput)(nil), "volume_server_pb.QueryRequest.OutputSerialization.CSVOutput")
  1758. proto.RegisterType((*QueryRequest_OutputSerialization_JSONOutput)(nil), "volume_server_pb.QueryRequest.OutputSerialization.JSONOutput")
  1759. proto.RegisterType((*QueriedStripe)(nil), "volume_server_pb.QueriedStripe")
  1760. }
  1761. // Reference imports to suppress errors if they are not otherwise used.
  1762. var _ context.Context
  1763. var _ grpc.ClientConn
  1764. // This is a compile-time assertion to ensure that this generated file
  1765. // is compatible with the grpc package it is being compiled against.
  1766. const _ = grpc.SupportPackageIsVersion4
  1767. // Client API for VolumeServer service
  1768. type VolumeServerClient interface {
  1769. // Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  1770. BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error)
  1771. VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error)
  1772. VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error)
  1773. VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error)
  1774. VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error)
  1775. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  1776. AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error)
  1777. VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error)
  1778. VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error)
  1779. VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error)
  1780. VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error)
  1781. VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error)
  1782. VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error)
  1783. // copy the .idx .dat files, and mount this volume
  1784. VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error)
  1785. ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error)
  1786. CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error)
  1787. VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error)
  1788. VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error)
  1789. // erasure coding
  1790. VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error)
  1791. VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error)
  1792. VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error)
  1793. VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error)
  1794. VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error)
  1795. VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error)
  1796. VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error)
  1797. VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error)
  1798. VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error)
  1799. // tiered storage
  1800. VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error)
  1801. VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error)
  1802. // query
  1803. Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error)
  1804. }
  1805. type volumeServerClient struct {
  1806. cc *grpc.ClientConn
  1807. }
  1808. func NewVolumeServerClient(cc *grpc.ClientConn) VolumeServerClient {
  1809. return &volumeServerClient{cc}
  1810. }
  1811. func (c *volumeServerClient) BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error) {
  1812. out := new(BatchDeleteResponse)
  1813. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/BatchDelete", in, out, c.cc, opts...)
  1814. if err != nil {
  1815. return nil, err
  1816. }
  1817. return out, nil
  1818. }
  1819. func (c *volumeServerClient) VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error) {
  1820. out := new(VacuumVolumeCheckResponse)
  1821. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCheck", in, out, c.cc, opts...)
  1822. if err != nil {
  1823. return nil, err
  1824. }
  1825. return out, nil
  1826. }
  1827. func (c *volumeServerClient) VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error) {
  1828. out := new(VacuumVolumeCompactResponse)
  1829. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCompact", in, out, c.cc, opts...)
  1830. if err != nil {
  1831. return nil, err
  1832. }
  1833. return out, nil
  1834. }
  1835. func (c *volumeServerClient) VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error) {
  1836. out := new(VacuumVolumeCommitResponse)
  1837. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCommit", in, out, c.cc, opts...)
  1838. if err != nil {
  1839. return nil, err
  1840. }
  1841. return out, nil
  1842. }
  1843. func (c *volumeServerClient) VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error) {
  1844. out := new(VacuumVolumeCleanupResponse)
  1845. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCleanup", in, out, c.cc, opts...)
  1846. if err != nil {
  1847. return nil, err
  1848. }
  1849. return out, nil
  1850. }
  1851. func (c *volumeServerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  1852. out := new(DeleteCollectionResponse)
  1853. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/DeleteCollection", in, out, c.cc, opts...)
  1854. if err != nil {
  1855. return nil, err
  1856. }
  1857. return out, nil
  1858. }
  1859. func (c *volumeServerClient) AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error) {
  1860. out := new(AllocateVolumeResponse)
  1861. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/AllocateVolume", in, out, c.cc, opts...)
  1862. if err != nil {
  1863. return nil, err
  1864. }
  1865. return out, nil
  1866. }
  1867. func (c *volumeServerClient) VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error) {
  1868. out := new(VolumeSyncStatusResponse)
  1869. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeSyncStatus", in, out, c.cc, opts...)
  1870. if err != nil {
  1871. return nil, err
  1872. }
  1873. return out, nil
  1874. }
  1875. func (c *volumeServerClient) VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error) {
  1876. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[0], c.cc, "/volume_server_pb.VolumeServer/VolumeIncrementalCopy", opts...)
  1877. if err != nil {
  1878. return nil, err
  1879. }
  1880. x := &volumeServerVolumeIncrementalCopyClient{stream}
  1881. if err := x.ClientStream.SendMsg(in); err != nil {
  1882. return nil, err
  1883. }
  1884. if err := x.ClientStream.CloseSend(); err != nil {
  1885. return nil, err
  1886. }
  1887. return x, nil
  1888. }
  1889. type VolumeServer_VolumeIncrementalCopyClient interface {
  1890. Recv() (*VolumeIncrementalCopyResponse, error)
  1891. grpc.ClientStream
  1892. }
  1893. type volumeServerVolumeIncrementalCopyClient struct {
  1894. grpc.ClientStream
  1895. }
  1896. func (x *volumeServerVolumeIncrementalCopyClient) Recv() (*VolumeIncrementalCopyResponse, error) {
  1897. m := new(VolumeIncrementalCopyResponse)
  1898. if err := x.ClientStream.RecvMsg(m); err != nil {
  1899. return nil, err
  1900. }
  1901. return m, nil
  1902. }
  1903. func (c *volumeServerClient) VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error) {
  1904. out := new(VolumeMountResponse)
  1905. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMount", in, out, c.cc, opts...)
  1906. if err != nil {
  1907. return nil, err
  1908. }
  1909. return out, nil
  1910. }
  1911. func (c *volumeServerClient) VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error) {
  1912. out := new(VolumeUnmountResponse)
  1913. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeUnmount", in, out, c.cc, opts...)
  1914. if err != nil {
  1915. return nil, err
  1916. }
  1917. return out, nil
  1918. }
  1919. func (c *volumeServerClient) VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error) {
  1920. out := new(VolumeDeleteResponse)
  1921. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeDelete", in, out, c.cc, opts...)
  1922. if err != nil {
  1923. return nil, err
  1924. }
  1925. return out, nil
  1926. }
  1927. func (c *volumeServerClient) VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error) {
  1928. out := new(VolumeMarkReadonlyResponse)
  1929. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkReadonly", in, out, c.cc, opts...)
  1930. if err != nil {
  1931. return nil, err
  1932. }
  1933. return out, nil
  1934. }
  1935. func (c *volumeServerClient) VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error) {
  1936. out := new(VolumeCopyResponse)
  1937. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeCopy", in, out, c.cc, opts...)
  1938. if err != nil {
  1939. return nil, err
  1940. }
  1941. return out, nil
  1942. }
  1943. func (c *volumeServerClient) ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error) {
  1944. out := new(ReadVolumeFileStatusResponse)
  1945. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/ReadVolumeFileStatus", in, out, c.cc, opts...)
  1946. if err != nil {
  1947. return nil, err
  1948. }
  1949. return out, nil
  1950. }
  1951. func (c *volumeServerClient) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error) {
  1952. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[1], c.cc, "/volume_server_pb.VolumeServer/CopyFile", opts...)
  1953. if err != nil {
  1954. return nil, err
  1955. }
  1956. x := &volumeServerCopyFileClient{stream}
  1957. if err := x.ClientStream.SendMsg(in); err != nil {
  1958. return nil, err
  1959. }
  1960. if err := x.ClientStream.CloseSend(); err != nil {
  1961. return nil, err
  1962. }
  1963. return x, nil
  1964. }
  1965. type VolumeServer_CopyFileClient interface {
  1966. Recv() (*CopyFileResponse, error)
  1967. grpc.ClientStream
  1968. }
  1969. type volumeServerCopyFileClient struct {
  1970. grpc.ClientStream
  1971. }
  1972. func (x *volumeServerCopyFileClient) Recv() (*CopyFileResponse, error) {
  1973. m := new(CopyFileResponse)
  1974. if err := x.ClientStream.RecvMsg(m); err != nil {
  1975. return nil, err
  1976. }
  1977. return m, nil
  1978. }
  1979. func (c *volumeServerClient) VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error) {
  1980. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[2], c.cc, "/volume_server_pb.VolumeServer/VolumeTailSender", opts...)
  1981. if err != nil {
  1982. return nil, err
  1983. }
  1984. x := &volumeServerVolumeTailSenderClient{stream}
  1985. if err := x.ClientStream.SendMsg(in); err != nil {
  1986. return nil, err
  1987. }
  1988. if err := x.ClientStream.CloseSend(); err != nil {
  1989. return nil, err
  1990. }
  1991. return x, nil
  1992. }
  1993. type VolumeServer_VolumeTailSenderClient interface {
  1994. Recv() (*VolumeTailSenderResponse, error)
  1995. grpc.ClientStream
  1996. }
  1997. type volumeServerVolumeTailSenderClient struct {
  1998. grpc.ClientStream
  1999. }
  2000. func (x *volumeServerVolumeTailSenderClient) Recv() (*VolumeTailSenderResponse, error) {
  2001. m := new(VolumeTailSenderResponse)
  2002. if err := x.ClientStream.RecvMsg(m); err != nil {
  2003. return nil, err
  2004. }
  2005. return m, nil
  2006. }
  2007. func (c *volumeServerClient) VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error) {
  2008. out := new(VolumeTailReceiverResponse)
  2009. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeTailReceiver", in, out, c.cc, opts...)
  2010. if err != nil {
  2011. return nil, err
  2012. }
  2013. return out, nil
  2014. }
  2015. func (c *volumeServerClient) VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error) {
  2016. out := new(VolumeEcShardsGenerateResponse)
  2017. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate", in, out, c.cc, opts...)
  2018. if err != nil {
  2019. return nil, err
  2020. }
  2021. return out, nil
  2022. }
  2023. func (c *volumeServerClient) VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error) {
  2024. out := new(VolumeEcShardsRebuildResponse)
  2025. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild", in, out, c.cc, opts...)
  2026. if err != nil {
  2027. return nil, err
  2028. }
  2029. return out, nil
  2030. }
  2031. func (c *volumeServerClient) VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error) {
  2032. out := new(VolumeEcShardsCopyResponse)
  2033. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsCopy", in, out, c.cc, opts...)
  2034. if err != nil {
  2035. return nil, err
  2036. }
  2037. return out, nil
  2038. }
  2039. func (c *volumeServerClient) VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error) {
  2040. out := new(VolumeEcShardsDeleteResponse)
  2041. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsDelete", in, out, c.cc, opts...)
  2042. if err != nil {
  2043. return nil, err
  2044. }
  2045. return out, nil
  2046. }
  2047. func (c *volumeServerClient) VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error) {
  2048. out := new(VolumeEcShardsMountResponse)
  2049. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsMount", in, out, c.cc, opts...)
  2050. if err != nil {
  2051. return nil, err
  2052. }
  2053. return out, nil
  2054. }
  2055. func (c *volumeServerClient) VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error) {
  2056. out := new(VolumeEcShardsUnmountResponse)
  2057. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount", in, out, c.cc, opts...)
  2058. if err != nil {
  2059. return nil, err
  2060. }
  2061. return out, nil
  2062. }
  2063. func (c *volumeServerClient) VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error) {
  2064. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[3], c.cc, "/volume_server_pb.VolumeServer/VolumeEcShardRead", opts...)
  2065. if err != nil {
  2066. return nil, err
  2067. }
  2068. x := &volumeServerVolumeEcShardReadClient{stream}
  2069. if err := x.ClientStream.SendMsg(in); err != nil {
  2070. return nil, err
  2071. }
  2072. if err := x.ClientStream.CloseSend(); err != nil {
  2073. return nil, err
  2074. }
  2075. return x, nil
  2076. }
  2077. type VolumeServer_VolumeEcShardReadClient interface {
  2078. Recv() (*VolumeEcShardReadResponse, error)
  2079. grpc.ClientStream
  2080. }
  2081. type volumeServerVolumeEcShardReadClient struct {
  2082. grpc.ClientStream
  2083. }
  2084. func (x *volumeServerVolumeEcShardReadClient) Recv() (*VolumeEcShardReadResponse, error) {
  2085. m := new(VolumeEcShardReadResponse)
  2086. if err := x.ClientStream.RecvMsg(m); err != nil {
  2087. return nil, err
  2088. }
  2089. return m, nil
  2090. }
  2091. func (c *volumeServerClient) VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error) {
  2092. out := new(VolumeEcBlobDeleteResponse)
  2093. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcBlobDelete", in, out, c.cc, opts...)
  2094. if err != nil {
  2095. return nil, err
  2096. }
  2097. return out, nil
  2098. }
  2099. func (c *volumeServerClient) VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error) {
  2100. out := new(VolumeEcShardsToVolumeResponse)
  2101. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume", in, out, c.cc, opts...)
  2102. if err != nil {
  2103. return nil, err
  2104. }
  2105. return out, nil
  2106. }
  2107. func (c *volumeServerClient) VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error) {
  2108. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[4], c.cc, "/volume_server_pb.VolumeServer/VolumeTierMoveDatToRemote", opts...)
  2109. if err != nil {
  2110. return nil, err
  2111. }
  2112. x := &volumeServerVolumeTierMoveDatToRemoteClient{stream}
  2113. if err := x.ClientStream.SendMsg(in); err != nil {
  2114. return nil, err
  2115. }
  2116. if err := x.ClientStream.CloseSend(); err != nil {
  2117. return nil, err
  2118. }
  2119. return x, nil
  2120. }
  2121. type VolumeServer_VolumeTierMoveDatToRemoteClient interface {
  2122. Recv() (*VolumeTierMoveDatToRemoteResponse, error)
  2123. grpc.ClientStream
  2124. }
  2125. type volumeServerVolumeTierMoveDatToRemoteClient struct {
  2126. grpc.ClientStream
  2127. }
  2128. func (x *volumeServerVolumeTierMoveDatToRemoteClient) Recv() (*VolumeTierMoveDatToRemoteResponse, error) {
  2129. m := new(VolumeTierMoveDatToRemoteResponse)
  2130. if err := x.ClientStream.RecvMsg(m); err != nil {
  2131. return nil, err
  2132. }
  2133. return m, nil
  2134. }
  2135. func (c *volumeServerClient) VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error) {
  2136. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[5], c.cc, "/volume_server_pb.VolumeServer/VolumeTierMoveDatFromRemote", opts...)
  2137. if err != nil {
  2138. return nil, err
  2139. }
  2140. x := &volumeServerVolumeTierMoveDatFromRemoteClient{stream}
  2141. if err := x.ClientStream.SendMsg(in); err != nil {
  2142. return nil, err
  2143. }
  2144. if err := x.ClientStream.CloseSend(); err != nil {
  2145. return nil, err
  2146. }
  2147. return x, nil
  2148. }
  2149. type VolumeServer_VolumeTierMoveDatFromRemoteClient interface {
  2150. Recv() (*VolumeTierMoveDatFromRemoteResponse, error)
  2151. grpc.ClientStream
  2152. }
  2153. type volumeServerVolumeTierMoveDatFromRemoteClient struct {
  2154. grpc.ClientStream
  2155. }
  2156. func (x *volumeServerVolumeTierMoveDatFromRemoteClient) Recv() (*VolumeTierMoveDatFromRemoteResponse, error) {
  2157. m := new(VolumeTierMoveDatFromRemoteResponse)
  2158. if err := x.ClientStream.RecvMsg(m); err != nil {
  2159. return nil, err
  2160. }
  2161. return m, nil
  2162. }
  2163. func (c *volumeServerClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error) {
  2164. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[6], c.cc, "/volume_server_pb.VolumeServer/Query", opts...)
  2165. if err != nil {
  2166. return nil, err
  2167. }
  2168. x := &volumeServerQueryClient{stream}
  2169. if err := x.ClientStream.SendMsg(in); err != nil {
  2170. return nil, err
  2171. }
  2172. if err := x.ClientStream.CloseSend(); err != nil {
  2173. return nil, err
  2174. }
  2175. return x, nil
  2176. }
  2177. type VolumeServer_QueryClient interface {
  2178. Recv() (*QueriedStripe, error)
  2179. grpc.ClientStream
  2180. }
  2181. type volumeServerQueryClient struct {
  2182. grpc.ClientStream
  2183. }
  2184. func (x *volumeServerQueryClient) Recv() (*QueriedStripe, error) {
  2185. m := new(QueriedStripe)
  2186. if err := x.ClientStream.RecvMsg(m); err != nil {
  2187. return nil, err
  2188. }
  2189. return m, nil
  2190. }
  2191. // Server API for VolumeServer service
  2192. type VolumeServerServer interface {
  2193. // Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  2194. BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error)
  2195. VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error)
  2196. VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error)
  2197. VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error)
  2198. VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error)
  2199. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  2200. AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error)
  2201. VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error)
  2202. VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error
  2203. VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error)
  2204. VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error)
  2205. VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error)
  2206. VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error)
  2207. // copy the .idx .dat files, and mount this volume
  2208. VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error)
  2209. ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error)
  2210. CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error
  2211. VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error
  2212. VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error)
  2213. // erasure coding
  2214. VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error)
  2215. VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error)
  2216. VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error)
  2217. VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error)
  2218. VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error)
  2219. VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error)
  2220. VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error
  2221. VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error)
  2222. VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error)
  2223. // tiered storage
  2224. VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error
  2225. VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error
  2226. // query
  2227. Query(*QueryRequest, VolumeServer_QueryServer) error
  2228. }
  2229. func RegisterVolumeServerServer(s *grpc.Server, srv VolumeServerServer) {
  2230. s.RegisterService(&_VolumeServer_serviceDesc, srv)
  2231. }
  2232. func _VolumeServer_BatchDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2233. in := new(BatchDeleteRequest)
  2234. if err := dec(in); err != nil {
  2235. return nil, err
  2236. }
  2237. if interceptor == nil {
  2238. return srv.(VolumeServerServer).BatchDelete(ctx, in)
  2239. }
  2240. info := &grpc.UnaryServerInfo{
  2241. Server: srv,
  2242. FullMethod: "/volume_server_pb.VolumeServer/BatchDelete",
  2243. }
  2244. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2245. return srv.(VolumeServerServer).BatchDelete(ctx, req.(*BatchDeleteRequest))
  2246. }
  2247. return interceptor(ctx, in, info, handler)
  2248. }
  2249. func _VolumeServer_VacuumVolumeCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2250. in := new(VacuumVolumeCheckRequest)
  2251. if err := dec(in); err != nil {
  2252. return nil, err
  2253. }
  2254. if interceptor == nil {
  2255. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, in)
  2256. }
  2257. info := &grpc.UnaryServerInfo{
  2258. Server: srv,
  2259. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCheck",
  2260. }
  2261. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2262. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, req.(*VacuumVolumeCheckRequest))
  2263. }
  2264. return interceptor(ctx, in, info, handler)
  2265. }
  2266. func _VolumeServer_VacuumVolumeCompact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2267. in := new(VacuumVolumeCompactRequest)
  2268. if err := dec(in); err != nil {
  2269. return nil, err
  2270. }
  2271. if interceptor == nil {
  2272. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, in)
  2273. }
  2274. info := &grpc.UnaryServerInfo{
  2275. Server: srv,
  2276. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCompact",
  2277. }
  2278. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2279. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, req.(*VacuumVolumeCompactRequest))
  2280. }
  2281. return interceptor(ctx, in, info, handler)
  2282. }
  2283. func _VolumeServer_VacuumVolumeCommit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2284. in := new(VacuumVolumeCommitRequest)
  2285. if err := dec(in); err != nil {
  2286. return nil, err
  2287. }
  2288. if interceptor == nil {
  2289. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, in)
  2290. }
  2291. info := &grpc.UnaryServerInfo{
  2292. Server: srv,
  2293. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCommit",
  2294. }
  2295. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2296. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, req.(*VacuumVolumeCommitRequest))
  2297. }
  2298. return interceptor(ctx, in, info, handler)
  2299. }
  2300. func _VolumeServer_VacuumVolumeCleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2301. in := new(VacuumVolumeCleanupRequest)
  2302. if err := dec(in); err != nil {
  2303. return nil, err
  2304. }
  2305. if interceptor == nil {
  2306. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, in)
  2307. }
  2308. info := &grpc.UnaryServerInfo{
  2309. Server: srv,
  2310. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCleanup",
  2311. }
  2312. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2313. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, req.(*VacuumVolumeCleanupRequest))
  2314. }
  2315. return interceptor(ctx, in, info, handler)
  2316. }
  2317. func _VolumeServer_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2318. in := new(DeleteCollectionRequest)
  2319. if err := dec(in); err != nil {
  2320. return nil, err
  2321. }
  2322. if interceptor == nil {
  2323. return srv.(VolumeServerServer).DeleteCollection(ctx, in)
  2324. }
  2325. info := &grpc.UnaryServerInfo{
  2326. Server: srv,
  2327. FullMethod: "/volume_server_pb.VolumeServer/DeleteCollection",
  2328. }
  2329. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2330. return srv.(VolumeServerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  2331. }
  2332. return interceptor(ctx, in, info, handler)
  2333. }
  2334. func _VolumeServer_AllocateVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2335. in := new(AllocateVolumeRequest)
  2336. if err := dec(in); err != nil {
  2337. return nil, err
  2338. }
  2339. if interceptor == nil {
  2340. return srv.(VolumeServerServer).AllocateVolume(ctx, in)
  2341. }
  2342. info := &grpc.UnaryServerInfo{
  2343. Server: srv,
  2344. FullMethod: "/volume_server_pb.VolumeServer/AllocateVolume",
  2345. }
  2346. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2347. return srv.(VolumeServerServer).AllocateVolume(ctx, req.(*AllocateVolumeRequest))
  2348. }
  2349. return interceptor(ctx, in, info, handler)
  2350. }
  2351. func _VolumeServer_VolumeSyncStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2352. in := new(VolumeSyncStatusRequest)
  2353. if err := dec(in); err != nil {
  2354. return nil, err
  2355. }
  2356. if interceptor == nil {
  2357. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, in)
  2358. }
  2359. info := &grpc.UnaryServerInfo{
  2360. Server: srv,
  2361. FullMethod: "/volume_server_pb.VolumeServer/VolumeSyncStatus",
  2362. }
  2363. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2364. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, req.(*VolumeSyncStatusRequest))
  2365. }
  2366. return interceptor(ctx, in, info, handler)
  2367. }
  2368. func _VolumeServer_VolumeIncrementalCopy_Handler(srv interface{}, stream grpc.ServerStream) error {
  2369. m := new(VolumeIncrementalCopyRequest)
  2370. if err := stream.RecvMsg(m); err != nil {
  2371. return err
  2372. }
  2373. return srv.(VolumeServerServer).VolumeIncrementalCopy(m, &volumeServerVolumeIncrementalCopyServer{stream})
  2374. }
  2375. type VolumeServer_VolumeIncrementalCopyServer interface {
  2376. Send(*VolumeIncrementalCopyResponse) error
  2377. grpc.ServerStream
  2378. }
  2379. type volumeServerVolumeIncrementalCopyServer struct {
  2380. grpc.ServerStream
  2381. }
  2382. func (x *volumeServerVolumeIncrementalCopyServer) Send(m *VolumeIncrementalCopyResponse) error {
  2383. return x.ServerStream.SendMsg(m)
  2384. }
  2385. func _VolumeServer_VolumeMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2386. in := new(VolumeMountRequest)
  2387. if err := dec(in); err != nil {
  2388. return nil, err
  2389. }
  2390. if interceptor == nil {
  2391. return srv.(VolumeServerServer).VolumeMount(ctx, in)
  2392. }
  2393. info := &grpc.UnaryServerInfo{
  2394. Server: srv,
  2395. FullMethod: "/volume_server_pb.VolumeServer/VolumeMount",
  2396. }
  2397. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2398. return srv.(VolumeServerServer).VolumeMount(ctx, req.(*VolumeMountRequest))
  2399. }
  2400. return interceptor(ctx, in, info, handler)
  2401. }
  2402. func _VolumeServer_VolumeUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2403. in := new(VolumeUnmountRequest)
  2404. if err := dec(in); err != nil {
  2405. return nil, err
  2406. }
  2407. if interceptor == nil {
  2408. return srv.(VolumeServerServer).VolumeUnmount(ctx, in)
  2409. }
  2410. info := &grpc.UnaryServerInfo{
  2411. Server: srv,
  2412. FullMethod: "/volume_server_pb.VolumeServer/VolumeUnmount",
  2413. }
  2414. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2415. return srv.(VolumeServerServer).VolumeUnmount(ctx, req.(*VolumeUnmountRequest))
  2416. }
  2417. return interceptor(ctx, in, info, handler)
  2418. }
  2419. func _VolumeServer_VolumeDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2420. in := new(VolumeDeleteRequest)
  2421. if err := dec(in); err != nil {
  2422. return nil, err
  2423. }
  2424. if interceptor == nil {
  2425. return srv.(VolumeServerServer).VolumeDelete(ctx, in)
  2426. }
  2427. info := &grpc.UnaryServerInfo{
  2428. Server: srv,
  2429. FullMethod: "/volume_server_pb.VolumeServer/VolumeDelete",
  2430. }
  2431. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2432. return srv.(VolumeServerServer).VolumeDelete(ctx, req.(*VolumeDeleteRequest))
  2433. }
  2434. return interceptor(ctx, in, info, handler)
  2435. }
  2436. func _VolumeServer_VolumeMarkReadonly_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2437. in := new(VolumeMarkReadonlyRequest)
  2438. if err := dec(in); err != nil {
  2439. return nil, err
  2440. }
  2441. if interceptor == nil {
  2442. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, in)
  2443. }
  2444. info := &grpc.UnaryServerInfo{
  2445. Server: srv,
  2446. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkReadonly",
  2447. }
  2448. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2449. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, req.(*VolumeMarkReadonlyRequest))
  2450. }
  2451. return interceptor(ctx, in, info, handler)
  2452. }
  2453. func _VolumeServer_VolumeCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2454. in := new(VolumeCopyRequest)
  2455. if err := dec(in); err != nil {
  2456. return nil, err
  2457. }
  2458. if interceptor == nil {
  2459. return srv.(VolumeServerServer).VolumeCopy(ctx, in)
  2460. }
  2461. info := &grpc.UnaryServerInfo{
  2462. Server: srv,
  2463. FullMethod: "/volume_server_pb.VolumeServer/VolumeCopy",
  2464. }
  2465. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2466. return srv.(VolumeServerServer).VolumeCopy(ctx, req.(*VolumeCopyRequest))
  2467. }
  2468. return interceptor(ctx, in, info, handler)
  2469. }
  2470. func _VolumeServer_ReadVolumeFileStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2471. in := new(ReadVolumeFileStatusRequest)
  2472. if err := dec(in); err != nil {
  2473. return nil, err
  2474. }
  2475. if interceptor == nil {
  2476. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, in)
  2477. }
  2478. info := &grpc.UnaryServerInfo{
  2479. Server: srv,
  2480. FullMethod: "/volume_server_pb.VolumeServer/ReadVolumeFileStatus",
  2481. }
  2482. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2483. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, req.(*ReadVolumeFileStatusRequest))
  2484. }
  2485. return interceptor(ctx, in, info, handler)
  2486. }
  2487. func _VolumeServer_CopyFile_Handler(srv interface{}, stream grpc.ServerStream) error {
  2488. m := new(CopyFileRequest)
  2489. if err := stream.RecvMsg(m); err != nil {
  2490. return err
  2491. }
  2492. return srv.(VolumeServerServer).CopyFile(m, &volumeServerCopyFileServer{stream})
  2493. }
  2494. type VolumeServer_CopyFileServer interface {
  2495. Send(*CopyFileResponse) error
  2496. grpc.ServerStream
  2497. }
  2498. type volumeServerCopyFileServer struct {
  2499. grpc.ServerStream
  2500. }
  2501. func (x *volumeServerCopyFileServer) Send(m *CopyFileResponse) error {
  2502. return x.ServerStream.SendMsg(m)
  2503. }
  2504. func _VolumeServer_VolumeTailSender_Handler(srv interface{}, stream grpc.ServerStream) error {
  2505. m := new(VolumeTailSenderRequest)
  2506. if err := stream.RecvMsg(m); err != nil {
  2507. return err
  2508. }
  2509. return srv.(VolumeServerServer).VolumeTailSender(m, &volumeServerVolumeTailSenderServer{stream})
  2510. }
  2511. type VolumeServer_VolumeTailSenderServer interface {
  2512. Send(*VolumeTailSenderResponse) error
  2513. grpc.ServerStream
  2514. }
  2515. type volumeServerVolumeTailSenderServer struct {
  2516. grpc.ServerStream
  2517. }
  2518. func (x *volumeServerVolumeTailSenderServer) Send(m *VolumeTailSenderResponse) error {
  2519. return x.ServerStream.SendMsg(m)
  2520. }
  2521. func _VolumeServer_VolumeTailReceiver_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2522. in := new(VolumeTailReceiverRequest)
  2523. if err := dec(in); err != nil {
  2524. return nil, err
  2525. }
  2526. if interceptor == nil {
  2527. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, in)
  2528. }
  2529. info := &grpc.UnaryServerInfo{
  2530. Server: srv,
  2531. FullMethod: "/volume_server_pb.VolumeServer/VolumeTailReceiver",
  2532. }
  2533. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2534. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, req.(*VolumeTailReceiverRequest))
  2535. }
  2536. return interceptor(ctx, in, info, handler)
  2537. }
  2538. func _VolumeServer_VolumeEcShardsGenerate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2539. in := new(VolumeEcShardsGenerateRequest)
  2540. if err := dec(in); err != nil {
  2541. return nil, err
  2542. }
  2543. if interceptor == nil {
  2544. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, in)
  2545. }
  2546. info := &grpc.UnaryServerInfo{
  2547. Server: srv,
  2548. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate",
  2549. }
  2550. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2551. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, req.(*VolumeEcShardsGenerateRequest))
  2552. }
  2553. return interceptor(ctx, in, info, handler)
  2554. }
  2555. func _VolumeServer_VolumeEcShardsRebuild_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2556. in := new(VolumeEcShardsRebuildRequest)
  2557. if err := dec(in); err != nil {
  2558. return nil, err
  2559. }
  2560. if interceptor == nil {
  2561. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, in)
  2562. }
  2563. info := &grpc.UnaryServerInfo{
  2564. Server: srv,
  2565. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild",
  2566. }
  2567. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2568. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, req.(*VolumeEcShardsRebuildRequest))
  2569. }
  2570. return interceptor(ctx, in, info, handler)
  2571. }
  2572. func _VolumeServer_VolumeEcShardsCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2573. in := new(VolumeEcShardsCopyRequest)
  2574. if err := dec(in); err != nil {
  2575. return nil, err
  2576. }
  2577. if interceptor == nil {
  2578. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, in)
  2579. }
  2580. info := &grpc.UnaryServerInfo{
  2581. Server: srv,
  2582. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsCopy",
  2583. }
  2584. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2585. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, req.(*VolumeEcShardsCopyRequest))
  2586. }
  2587. return interceptor(ctx, in, info, handler)
  2588. }
  2589. func _VolumeServer_VolumeEcShardsDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2590. in := new(VolumeEcShardsDeleteRequest)
  2591. if err := dec(in); err != nil {
  2592. return nil, err
  2593. }
  2594. if interceptor == nil {
  2595. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, in)
  2596. }
  2597. info := &grpc.UnaryServerInfo{
  2598. Server: srv,
  2599. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsDelete",
  2600. }
  2601. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2602. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, req.(*VolumeEcShardsDeleteRequest))
  2603. }
  2604. return interceptor(ctx, in, info, handler)
  2605. }
  2606. func _VolumeServer_VolumeEcShardsMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2607. in := new(VolumeEcShardsMountRequest)
  2608. if err := dec(in); err != nil {
  2609. return nil, err
  2610. }
  2611. if interceptor == nil {
  2612. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, in)
  2613. }
  2614. info := &grpc.UnaryServerInfo{
  2615. Server: srv,
  2616. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsMount",
  2617. }
  2618. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2619. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, req.(*VolumeEcShardsMountRequest))
  2620. }
  2621. return interceptor(ctx, in, info, handler)
  2622. }
  2623. func _VolumeServer_VolumeEcShardsUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2624. in := new(VolumeEcShardsUnmountRequest)
  2625. if err := dec(in); err != nil {
  2626. return nil, err
  2627. }
  2628. if interceptor == nil {
  2629. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, in)
  2630. }
  2631. info := &grpc.UnaryServerInfo{
  2632. Server: srv,
  2633. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount",
  2634. }
  2635. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2636. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, req.(*VolumeEcShardsUnmountRequest))
  2637. }
  2638. return interceptor(ctx, in, info, handler)
  2639. }
  2640. func _VolumeServer_VolumeEcShardRead_Handler(srv interface{}, stream grpc.ServerStream) error {
  2641. m := new(VolumeEcShardReadRequest)
  2642. if err := stream.RecvMsg(m); err != nil {
  2643. return err
  2644. }
  2645. return srv.(VolumeServerServer).VolumeEcShardRead(m, &volumeServerVolumeEcShardReadServer{stream})
  2646. }
  2647. type VolumeServer_VolumeEcShardReadServer interface {
  2648. Send(*VolumeEcShardReadResponse) error
  2649. grpc.ServerStream
  2650. }
  2651. type volumeServerVolumeEcShardReadServer struct {
  2652. grpc.ServerStream
  2653. }
  2654. func (x *volumeServerVolumeEcShardReadServer) Send(m *VolumeEcShardReadResponse) error {
  2655. return x.ServerStream.SendMsg(m)
  2656. }
  2657. func _VolumeServer_VolumeEcBlobDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2658. in := new(VolumeEcBlobDeleteRequest)
  2659. if err := dec(in); err != nil {
  2660. return nil, err
  2661. }
  2662. if interceptor == nil {
  2663. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, in)
  2664. }
  2665. info := &grpc.UnaryServerInfo{
  2666. Server: srv,
  2667. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcBlobDelete",
  2668. }
  2669. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2670. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, req.(*VolumeEcBlobDeleteRequest))
  2671. }
  2672. return interceptor(ctx, in, info, handler)
  2673. }
  2674. func _VolumeServer_VolumeEcShardsToVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2675. in := new(VolumeEcShardsToVolumeRequest)
  2676. if err := dec(in); err != nil {
  2677. return nil, err
  2678. }
  2679. if interceptor == nil {
  2680. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, in)
  2681. }
  2682. info := &grpc.UnaryServerInfo{
  2683. Server: srv,
  2684. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume",
  2685. }
  2686. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2687. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, req.(*VolumeEcShardsToVolumeRequest))
  2688. }
  2689. return interceptor(ctx, in, info, handler)
  2690. }
  2691. func _VolumeServer_VolumeTierMoveDatToRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  2692. m := new(VolumeTierMoveDatToRemoteRequest)
  2693. if err := stream.RecvMsg(m); err != nil {
  2694. return err
  2695. }
  2696. return srv.(VolumeServerServer).VolumeTierMoveDatToRemote(m, &volumeServerVolumeTierMoveDatToRemoteServer{stream})
  2697. }
  2698. type VolumeServer_VolumeTierMoveDatToRemoteServer interface {
  2699. Send(*VolumeTierMoveDatToRemoteResponse) error
  2700. grpc.ServerStream
  2701. }
  2702. type volumeServerVolumeTierMoveDatToRemoteServer struct {
  2703. grpc.ServerStream
  2704. }
  2705. func (x *volumeServerVolumeTierMoveDatToRemoteServer) Send(m *VolumeTierMoveDatToRemoteResponse) error {
  2706. return x.ServerStream.SendMsg(m)
  2707. }
  2708. func _VolumeServer_VolumeTierMoveDatFromRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  2709. m := new(VolumeTierMoveDatFromRemoteRequest)
  2710. if err := stream.RecvMsg(m); err != nil {
  2711. return err
  2712. }
  2713. return srv.(VolumeServerServer).VolumeTierMoveDatFromRemote(m, &volumeServerVolumeTierMoveDatFromRemoteServer{stream})
  2714. }
  2715. type VolumeServer_VolumeTierMoveDatFromRemoteServer interface {
  2716. Send(*VolumeTierMoveDatFromRemoteResponse) error
  2717. grpc.ServerStream
  2718. }
  2719. type volumeServerVolumeTierMoveDatFromRemoteServer struct {
  2720. grpc.ServerStream
  2721. }
  2722. func (x *volumeServerVolumeTierMoveDatFromRemoteServer) Send(m *VolumeTierMoveDatFromRemoteResponse) error {
  2723. return x.ServerStream.SendMsg(m)
  2724. }
  2725. func _VolumeServer_Query_Handler(srv interface{}, stream grpc.ServerStream) error {
  2726. m := new(QueryRequest)
  2727. if err := stream.RecvMsg(m); err != nil {
  2728. return err
  2729. }
  2730. return srv.(VolumeServerServer).Query(m, &volumeServerQueryServer{stream})
  2731. }
  2732. type VolumeServer_QueryServer interface {
  2733. Send(*QueriedStripe) error
  2734. grpc.ServerStream
  2735. }
  2736. type volumeServerQueryServer struct {
  2737. grpc.ServerStream
  2738. }
  2739. func (x *volumeServerQueryServer) Send(m *QueriedStripe) error {
  2740. return x.ServerStream.SendMsg(m)
  2741. }
  2742. var _VolumeServer_serviceDesc = grpc.ServiceDesc{
  2743. ServiceName: "volume_server_pb.VolumeServer",
  2744. HandlerType: (*VolumeServerServer)(nil),
  2745. Methods: []grpc.MethodDesc{
  2746. {
  2747. MethodName: "BatchDelete",
  2748. Handler: _VolumeServer_BatchDelete_Handler,
  2749. },
  2750. {
  2751. MethodName: "VacuumVolumeCheck",
  2752. Handler: _VolumeServer_VacuumVolumeCheck_Handler,
  2753. },
  2754. {
  2755. MethodName: "VacuumVolumeCompact",
  2756. Handler: _VolumeServer_VacuumVolumeCompact_Handler,
  2757. },
  2758. {
  2759. MethodName: "VacuumVolumeCommit",
  2760. Handler: _VolumeServer_VacuumVolumeCommit_Handler,
  2761. },
  2762. {
  2763. MethodName: "VacuumVolumeCleanup",
  2764. Handler: _VolumeServer_VacuumVolumeCleanup_Handler,
  2765. },
  2766. {
  2767. MethodName: "DeleteCollection",
  2768. Handler: _VolumeServer_DeleteCollection_Handler,
  2769. },
  2770. {
  2771. MethodName: "AllocateVolume",
  2772. Handler: _VolumeServer_AllocateVolume_Handler,
  2773. },
  2774. {
  2775. MethodName: "VolumeSyncStatus",
  2776. Handler: _VolumeServer_VolumeSyncStatus_Handler,
  2777. },
  2778. {
  2779. MethodName: "VolumeMount",
  2780. Handler: _VolumeServer_VolumeMount_Handler,
  2781. },
  2782. {
  2783. MethodName: "VolumeUnmount",
  2784. Handler: _VolumeServer_VolumeUnmount_Handler,
  2785. },
  2786. {
  2787. MethodName: "VolumeDelete",
  2788. Handler: _VolumeServer_VolumeDelete_Handler,
  2789. },
  2790. {
  2791. MethodName: "VolumeMarkReadonly",
  2792. Handler: _VolumeServer_VolumeMarkReadonly_Handler,
  2793. },
  2794. {
  2795. MethodName: "VolumeCopy",
  2796. Handler: _VolumeServer_VolumeCopy_Handler,
  2797. },
  2798. {
  2799. MethodName: "ReadVolumeFileStatus",
  2800. Handler: _VolumeServer_ReadVolumeFileStatus_Handler,
  2801. },
  2802. {
  2803. MethodName: "VolumeTailReceiver",
  2804. Handler: _VolumeServer_VolumeTailReceiver_Handler,
  2805. },
  2806. {
  2807. MethodName: "VolumeEcShardsGenerate",
  2808. Handler: _VolumeServer_VolumeEcShardsGenerate_Handler,
  2809. },
  2810. {
  2811. MethodName: "VolumeEcShardsRebuild",
  2812. Handler: _VolumeServer_VolumeEcShardsRebuild_Handler,
  2813. },
  2814. {
  2815. MethodName: "VolumeEcShardsCopy",
  2816. Handler: _VolumeServer_VolumeEcShardsCopy_Handler,
  2817. },
  2818. {
  2819. MethodName: "VolumeEcShardsDelete",
  2820. Handler: _VolumeServer_VolumeEcShardsDelete_Handler,
  2821. },
  2822. {
  2823. MethodName: "VolumeEcShardsMount",
  2824. Handler: _VolumeServer_VolumeEcShardsMount_Handler,
  2825. },
  2826. {
  2827. MethodName: "VolumeEcShardsUnmount",
  2828. Handler: _VolumeServer_VolumeEcShardsUnmount_Handler,
  2829. },
  2830. {
  2831. MethodName: "VolumeEcBlobDelete",
  2832. Handler: _VolumeServer_VolumeEcBlobDelete_Handler,
  2833. },
  2834. {
  2835. MethodName: "VolumeEcShardsToVolume",
  2836. Handler: _VolumeServer_VolumeEcShardsToVolume_Handler,
  2837. },
  2838. },
  2839. Streams: []grpc.StreamDesc{
  2840. {
  2841. StreamName: "VolumeIncrementalCopy",
  2842. Handler: _VolumeServer_VolumeIncrementalCopy_Handler,
  2843. ServerStreams: true,
  2844. },
  2845. {
  2846. StreamName: "CopyFile",
  2847. Handler: _VolumeServer_CopyFile_Handler,
  2848. ServerStreams: true,
  2849. },
  2850. {
  2851. StreamName: "VolumeTailSender",
  2852. Handler: _VolumeServer_VolumeTailSender_Handler,
  2853. ServerStreams: true,
  2854. },
  2855. {
  2856. StreamName: "VolumeEcShardRead",
  2857. Handler: _VolumeServer_VolumeEcShardRead_Handler,
  2858. ServerStreams: true,
  2859. },
  2860. {
  2861. StreamName: "VolumeTierMoveDatToRemote",
  2862. Handler: _VolumeServer_VolumeTierMoveDatToRemote_Handler,
  2863. ServerStreams: true,
  2864. },
  2865. {
  2866. StreamName: "VolumeTierMoveDatFromRemote",
  2867. Handler: _VolumeServer_VolumeTierMoveDatFromRemote_Handler,
  2868. ServerStreams: true,
  2869. },
  2870. {
  2871. StreamName: "Query",
  2872. Handler: _VolumeServer_Query_Handler,
  2873. ServerStreams: true,
  2874. },
  2875. },
  2876. Metadata: "volume_server.proto",
  2877. }
  2878. func init() { proto.RegisterFile("volume_server.proto", fileDescriptor0) }
  2879. var fileDescriptor0 = []byte{
  2880. // 2870 bytes of a gzipped FileDescriptorProto
  2881. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x1a, 0x4d, 0x73, 0x1c, 0x47,
  2882. 0x55, 0xab, 0xd5, 0xc7, 0xee, 0xdb, 0x95, 0x25, 0xb7, 0x14, 0x79, 0x33, 0xfe, 0x52, 0xc6, 0xf9,
  2883. 0xb0, 0x9d, 0x58, 0x76, 0x94, 0x84, 0x84, 0x84, 0x04, 0x6c, 0xd9, 0x06, 0x93, 0x58, 0x4e, 0x46,
  2884. 0x8e, 0x09, 0x24, 0xc5, 0x54, 0x6b, 0xa6, 0x65, 0x4d, 0x34, 0x33, 0x3d, 0x9e, 0xe9, 0x95, 0xbd,
  2885. 0x2e, 0x38, 0x85, 0x03, 0x17, 0x38, 0x50, 0x5c, 0x38, 0x73, 0xe7, 0x4a, 0x15, 0x67, 0x0e, 0xf9,
  2886. 0x03, 0x5c, 0xb9, 0x70, 0xe0, 0xc4, 0x81, 0x1b, 0x55, 0x5c, 0xa8, 0xfe, 0x9a, 0x9d, 0x4f, 0xed,
  2887. 0x28, 0x16, 0x45, 0x71, 0xeb, 0x79, 0xfd, 0x3e, 0xfa, 0xbd, 0x7e, 0xef, 0x75, 0xbf, 0x7e, 0x03,
  2888. 0xcb, 0x07, 0xd4, 0x1f, 0x06, 0xc4, 0x4e, 0x48, 0x7c, 0x40, 0xe2, 0xf5, 0x28, 0xa6, 0x8c, 0xa2,
  2889. 0xa5, 0x1c, 0xd0, 0x8e, 0x76, 0xcc, 0xab, 0x80, 0x6e, 0x60, 0xe6, 0xec, 0xdd, 0x24, 0x3e, 0x61,
  2890. 0xc4, 0x22, 0x8f, 0x86, 0x24, 0x61, 0xe8, 0x79, 0xe8, 0xec, 0x7a, 0x3e, 0xb1, 0x3d, 0x37, 0x19,
  2891. 0xb4, 0xd6, 0xda, 0x17, 0xbb, 0xd6, 0x3c, 0xff, 0xbe, 0xe3, 0x26, 0xe6, 0x3d, 0x58, 0xce, 0x11,
  2892. 0x24, 0x11, 0x0d, 0x13, 0x82, 0xde, 0x81, 0xf9, 0x98, 0x24, 0x43, 0x9f, 0x49, 0x82, 0xde, 0xc6,
  2893. 0xb9, 0xf5, 0xa2, 0xac, 0xf5, 0x94, 0x64, 0xe8, 0x33, 0x4b, 0xa3, 0x9b, 0x5f, 0xb5, 0xa0, 0x9f,
  2894. 0x9d, 0x41, 0xa7, 0x60, 0x5e, 0x09, 0x1f, 0xb4, 0xd6, 0x5a, 0x17, 0xbb, 0xd6, 0x9c, 0x94, 0x8d,
  2895. 0x56, 0x61, 0x2e, 0x61, 0x98, 0x0d, 0x93, 0xc1, 0xf4, 0x5a, 0xeb, 0xe2, 0xac, 0xa5, 0xbe, 0xd0,
  2896. 0x0a, 0xcc, 0x92, 0x38, 0xa6, 0xf1, 0xa0, 0x2d, 0xd0, 0xe5, 0x07, 0x42, 0x30, 0x93, 0x78, 0x4f,
  2897. 0xc9, 0x60, 0x66, 0xad, 0x75, 0x71, 0xc1, 0x12, 0x63, 0x34, 0x80, 0xf9, 0x03, 0x12, 0x27, 0x1e,
  2898. 0x0d, 0x07, 0xb3, 0x02, 0xac, 0x3f, 0xcd, 0x79, 0x98, 0xbd, 0x15, 0x44, 0x6c, 0x64, 0xbe, 0x0d,
  2899. 0x83, 0x07, 0xd8, 0x19, 0x0e, 0x83, 0x07, 0x62, 0xf9, 0x9b, 0x7b, 0xc4, 0xd9, 0xd7, 0x66, 0x39,
  2900. 0x0d, 0x5d, 0xa5, 0x94, 0x5a, 0xdb, 0x82, 0xd5, 0x91, 0x80, 0x3b, 0xae, 0xf9, 0x3d, 0x78, 0xbe,
  2901. 0x82, 0x50, 0x99, 0xe7, 0x02, 0x2c, 0x3c, 0xc4, 0xf1, 0x0e, 0x7e, 0x48, 0xec, 0x18, 0x33, 0x8f,
  2902. 0x0a, 0xea, 0x96, 0xd5, 0x57, 0x40, 0x8b, 0xc3, 0xcc, 0xcf, 0xc1, 0xc8, 0x71, 0xa0, 0x41, 0x84,
  2903. 0x1d, 0xd6, 0x44, 0x38, 0x5a, 0x83, 0x5e, 0x14, 0x13, 0xec, 0xfb, 0xd4, 0xc1, 0x8c, 0x08, 0xfb,
  2904. 0xb4, 0xad, 0x2c, 0xc8, 0x3c, 0x0b, 0xa7, 0x2b, 0x99, 0xcb, 0x05, 0x9a, 0xef, 0x14, 0x56, 0x4f,
  2905. 0x83, 0xc0, 0x6b, 0x24, 0xda, 0x3c, 0x53, 0x5a, 0xb5, 0xa0, 0x54, 0x7c, 0xbf, 0x5d, 0x98, 0xf5,
  2906. 0x09, 0x0e, 0x87, 0x51, 0x23, 0xc6, 0xc5, 0x15, 0x6b, 0xd2, 0x94, 0xf3, 0x29, 0xe9, 0x36, 0x9b,
  2907. 0xd4, 0xf7, 0x89, 0xc3, 0x3c, 0x1a, 0x6a, 0xb6, 0xe7, 0x00, 0x9c, 0x14, 0xa8, 0x9c, 0x28, 0x03,
  2908. 0x31, 0x0d, 0x18, 0x94, 0x49, 0x15, 0xdb, 0xbf, 0xb6, 0xe0, 0xb9, 0xeb, 0xca, 0x68, 0x52, 0x70,
  2909. 0xa3, 0x0d, 0xc8, 0x8b, 0x9c, 0x2e, 0x8a, 0x2c, 0x6e, 0x50, 0xbb, 0xb4, 0x41, 0x1c, 0x23, 0x26,
  2910. 0x91, 0xef, 0x39, 0x58, 0xb0, 0x98, 0x11, 0x2c, 0xb2, 0x20, 0xb4, 0x04, 0x6d, 0xc6, 0x7c, 0xe1,
  2911. 0xb9, 0x5d, 0x8b, 0x0f, 0xd1, 0x06, 0xac, 0x06, 0x24, 0xa0, 0xf1, 0xc8, 0x0e, 0x70, 0x64, 0x07,
  2912. 0xf8, 0x89, 0xcd, 0xdd, 0xdc, 0x0e, 0x76, 0x06, 0x73, 0x62, 0x7d, 0x48, 0xce, 0xde, 0xc5, 0xd1,
  2913. 0x5d, 0xfc, 0x64, 0xdb, 0x7b, 0x4a, 0xee, 0xee, 0x98, 0x03, 0x58, 0x2d, 0xea, 0xa7, 0x54, 0xff,
  2914. 0x16, 0x9c, 0x92, 0x90, 0xed, 0x51, 0xe8, 0x6c, 0x8b, 0xd8, 0x6a, 0xb4, 0x51, 0xff, 0x6e, 0xc1,
  2915. 0xa0, 0x4c, 0xa8, 0x3c, 0xff, 0x59, 0xad, 0x76, 0x64, 0x9b, 0x9c, 0x87, 0x1e, 0xc3, 0x9e, 0x6f,
  2916. 0xd3, 0xdd, 0xdd, 0x84, 0x30, 0x61, 0x88, 0x19, 0x0b, 0x38, 0xe8, 0x9e, 0x80, 0xa0, 0x4b, 0xb0,
  2917. 0xe4, 0x48, 0xef, 0xb7, 0x63, 0x72, 0xe0, 0x89, 0x6c, 0x30, 0x2f, 0x16, 0xb6, 0xe8, 0xe8, 0xa8,
  2918. 0x90, 0x60, 0x64, 0xc2, 0x82, 0xe7, 0x3e, 0xb1, 0x45, 0x3a, 0x12, 0xc9, 0xa4, 0x23, 0xb8, 0xf5,
  2919. 0x3c, 0xf7, 0xc9, 0x6d, 0xcf, 0x27, 0xdc, 0xa2, 0xe6, 0x03, 0x38, 0x23, 0x95, 0xbf, 0x13, 0x3a,
  2920. 0x31, 0x09, 0x48, 0xc8, 0xb0, 0xbf, 0x49, 0xa3, 0x51, 0x23, 0xb7, 0x79, 0x1e, 0x3a, 0x89, 0x17,
  2921. 0x3a, 0xc4, 0x0e, 0x65, 0x52, 0x9b, 0xb1, 0xe6, 0xc5, 0xf7, 0x56, 0x62, 0xde, 0x80, 0xb3, 0x35,
  2922. 0x7c, 0x95, 0x65, 0x5f, 0x80, 0xbe, 0x58, 0x98, 0x43, 0x43, 0x46, 0x42, 0x26, 0x78, 0xf7, 0xad,
  2923. 0x1e, 0x87, 0x6d, 0x4a, 0x90, 0xf9, 0x3a, 0x20, 0xc9, 0xe3, 0x2e, 0x1d, 0x86, 0xcd, 0xc2, 0xf9,
  2924. 0x39, 0x58, 0xce, 0x91, 0x28, 0xdf, 0x78, 0x03, 0x56, 0x24, 0xf8, 0xd3, 0x30, 0x68, 0xcc, 0xeb,
  2925. 0x14, 0x3c, 0x57, 0x20, 0x52, 0xdc, 0x36, 0xb4, 0x90, 0xfc, 0xb1, 0x73, 0x28, 0xb3, 0x55, 0xbd,
  2926. 0x82, 0xfc, 0xc9, 0x23, 0x32, 0x97, 0x5c, 0x30, 0x8e, 0xf7, 0x2d, 0x82, 0x5d, 0x1a, 0xfa, 0xa3,
  2927. 0xc6, 0x99, 0xab, 0x82, 0x52, 0xf1, 0xfd, 0x43, 0x0b, 0x4e, 0xea, 0x94, 0xd6, 0x70, 0x37, 0x8f,
  2928. 0xe8, 0xce, 0xed, 0x5a, 0x77, 0x9e, 0x19, 0xbb, 0xf3, 0x45, 0x58, 0x4a, 0xe8, 0x30, 0x76, 0x88,
  2929. 0xed, 0x62, 0x86, 0xed, 0x90, 0xba, 0x44, 0x79, 0xfb, 0x09, 0x09, 0xbf, 0x89, 0x19, 0xde, 0xa2,
  2930. 0x2e, 0x31, 0xbf, 0xab, 0x37, 0x3b, 0xe7, 0x25, 0x97, 0xe0, 0xa4, 0x8f, 0x13, 0x66, 0xe3, 0x28,
  2931. 0x22, 0xa1, 0x6b, 0x63, 0xc6, 0x5d, 0xad, 0x25, 0x5c, 0xed, 0x04, 0x9f, 0xb8, 0x2e, 0xe0, 0xd7,
  2932. 0xd9, 0x56, 0x62, 0xfe, 0x76, 0x1a, 0x16, 0x39, 0x2d, 0x77, 0xed, 0x46, 0xfa, 0x2e, 0x41, 0x9b,
  2933. 0x3c, 0x61, 0x4a, 0x51, 0x3e, 0x44, 0x57, 0x61, 0x59, 0xc5, 0x90, 0x47, 0xc3, 0x71, 0x78, 0xb5,
  2934. 0x65, 0x36, 0x1a, 0x4f, 0xa5, 0x11, 0x76, 0x1e, 0x7a, 0x09, 0xa3, 0x91, 0x8e, 0xd6, 0x19, 0x19,
  2935. 0xad, 0x1c, 0xa4, 0xa2, 0x35, 0x6f, 0xd3, 0xd9, 0x0a, 0x9b, 0xf6, 0xbd, 0xc4, 0x26, 0x8e, 0x2d,
  2936. 0x57, 0x25, 0xe2, 0xbd, 0x63, 0x81, 0x97, 0xdc, 0x72, 0xa4, 0x35, 0xd0, 0x07, 0x70, 0xc6, 0x7b,
  2937. 0x18, 0xd2, 0x98, 0xd8, 0xca, 0x90, 0x22, 0x6a, 0x42, 0xca, 0xec, 0x5d, 0x3a, 0x0c, 0x5d, 0x11,
  2938. 0xfb, 0x1d, 0x6b, 0x20, 0x71, 0xb6, 0x05, 0x0a, 0xb7, 0xc0, 0x16, 0x65, 0xb7, 0xf9, 0xbc, 0xf9,
  2939. 0x16, 0x2c, 0x8d, 0xad, 0xd2, 0x3c, 0xf6, 0xbe, 0x6a, 0xe9, 0x74, 0x7a, 0x1f, 0x7b, 0xfe, 0x36,
  2940. 0x09, 0x5d, 0x12, 0x3f, 0x63, 0x4e, 0x40, 0xd7, 0x60, 0xc5, 0x73, 0x7d, 0x62, 0x33, 0x2f, 0x20,
  2941. 0x74, 0xc8, 0xec, 0x84, 0x38, 0x34, 0x74, 0x13, 0x6d, 0x5f, 0x3e, 0x77, 0x5f, 0x4e, 0x6d, 0xcb,
  2942. 0x19, 0xf3, 0x17, 0x69, 0x6e, 0xce, 0xae, 0x62, 0x7c, 0x2b, 0x09, 0x09, 0xe1, 0x0c, 0xf7, 0x08,
  2943. 0x76, 0x49, 0xac, 0xd4, 0xe8, 0x4b, 0xe0, 0x0f, 0x04, 0x8c, 0xef, 0x90, 0x42, 0xda, 0xa1, 0xee,
  2944. 0x48, 0xac, 0xa8, 0x6f, 0x81, 0x04, 0xdd, 0xa0, 0xee, 0x48, 0x24, 0xc9, 0xc4, 0x16, 0x4e, 0xe6,
  2945. 0xec, 0x0d, 0xc3, 0x7d, 0xb1, 0x9a, 0x8e, 0xd5, 0xf3, 0x92, 0x8f, 0x70, 0xc2, 0x36, 0x39, 0xc8,
  2946. 0xfc, 0x63, 0x4b, 0x47, 0x29, 0x5f, 0x86, 0x45, 0x1c, 0xe2, 0x1d, 0xfc, 0x0f, 0xcc, 0xc1, 0x29,
  2947. 0x94, 0x13, 0xe4, 0x6e, 0xa7, 0x2a, 0xe0, 0x90, 0x9c, 0x53, 0x67, 0x99, 0x98, 0x19, 0x27, 0x89,
  2948. 0xfc, 0xc2, 0x55, 0x92, 0xf8, 0x42, 0x27, 0xe9, 0x5b, 0xce, 0xf6, 0x1e, 0x8e, 0xdd, 0xe4, 0xfb,
  2949. 0x24, 0x24, 0x31, 0x66, 0xc7, 0x72, 0x69, 0x30, 0xd7, 0xe0, 0x5c, 0x1d, 0x77, 0x25, 0xff, 0x73,
  2950. 0x7d, 0xf8, 0x68, 0x0c, 0x8b, 0xec, 0x0c, 0x3d, 0xdf, 0x3d, 0x16, 0xf1, 0x1f, 0x16, 0x95, 0x4b,
  2951. 0x99, 0x2b, 0xff, 0xb9, 0x0c, 0x27, 0x63, 0x01, 0x62, 0x76, 0xc2, 0x11, 0xd2, 0x7a, 0x61, 0xc1,
  2952. 0x5a, 0x54, 0x13, 0x82, 0x90, 0xd7, 0x0d, 0x7f, 0x4f, 0x3d, 0x40, 0x73, 0x3b, 0xb6, 0xb4, 0x7a,
  2953. 0x1a, 0xba, 0x63, 0xf1, 0x6d, 0x21, 0xbe, 0x93, 0x28, 0xb9, 0xdc, 0x3b, 0x1d, 0x1a, 0x8d, 0x6c,
  2954. 0xe2, 0xc8, 0x73, 0x5c, 0x6c, 0x75, 0xc7, 0xea, 0x71, 0xe0, 0x2d, 0x47, 0x1c, 0xe3, 0xcd, 0x73,
  2955. 0x6c, 0x86, 0xdb, 0x97, 0x92, 0xdb, 0x5c, 0x96, 0xdb, 0x97, 0x9c, 0xdb, 0xd8, 0x63, 0xf2, 0x8a,
  2956. 0xaa, 0x1d, 0x7b, 0x0c, 0xa7, 0xf3, 0xb3, 0xcd, 0x8f, 0xc0, 0x67, 0x32, 0x84, 0x79, 0xae, 0xe8,
  2957. 0x2a, 0x85, 0x73, 0xf4, 0xa0, 0xb8, 0xec, 0xc6, 0x77, 0x86, 0x67, 0x5b, 0xd7, 0xd9, 0xa2, 0x41,
  2958. 0xf2, 0x17, 0x8f, 0xcf, 0x8a, 0xcb, 0x3e, 0xc2, 0x05, 0xe4, 0x70, 0xc1, 0xe7, 0x8b, 0xee, 0x5d,
  2959. 0xbc, 0xa5, 0xfc, 0x2e, 0xcd, 0x9d, 0x0a, 0x83, 0xdf, 0x11, 0x1a, 0xe7, 0x2c, 0x25, 0x57, 0x98,
  2960. 0x63, 0xc1, 0x9a, 0x57, 0x62, 0x79, 0x11, 0xab, 0xce, 0x3a, 0x59, 0x03, 0xa8, 0xaf, 0x5c, 0xb9,
  2961. 0xda, 0x56, 0xe5, 0xaa, 0x2e, 0xc3, 0xf7, 0xc9, 0x48, 0xf8, 0xe3, 0x8c, 0x2c, 0xc3, 0x3f, 0x24,
  2962. 0x23, 0x73, 0xab, 0x10, 0x4d, 0x72, 0x69, 0x2a, 0x2e, 0x11, 0xcc, 0x70, 0x47, 0x56, 0xe9, 0x5c,
  2963. 0x8c, 0xd1, 0x59, 0x00, 0x2f, 0xb1, 0x5d, 0xb1, 0xe7, 0x72, 0x51, 0x1d, 0xab, 0xeb, 0x29, 0x27,
  2964. 0x70, 0xcd, 0x5f, 0x65, 0xc2, 0xf3, 0x86, 0x4f, 0x77, 0x8e, 0xd1, 0x2b, 0xb3, 0x5a, 0xb4, 0x73,
  2965. 0x5a, 0x64, 0xeb, 0xf1, 0x99, 0x7c, 0x3d, 0x9e, 0x09, 0xa2, 0xec, 0x72, 0xea, 0xd2, 0xee, 0x7d,
  2966. 0x7a, 0x7c, 0xb5, 0x5a, 0x39, 0xed, 0x8e, 0xb9, 0x2b, 0xf9, 0xef, 0xc2, 0x69, 0x6e, 0x70, 0x09,
  2967. 0x15, 0x95, 0x40, 0xf3, 0x6a, 0xe9, 0x1f, 0xd3, 0x70, 0xa6, 0x9a, 0xb8, 0x49, 0xc5, 0xf4, 0x1e,
  2968. 0x18, 0x69, 0x45, 0xc2, 0x8f, 0xbd, 0x84, 0xe1, 0x20, 0x4a, 0x0f, 0x3e, 0x79, 0x3e, 0x9e, 0x52,
  2969. 0xe5, 0xc9, 0x7d, 0x3d, 0xaf, 0x4f, 0xbf, 0x52, 0x39, 0xd3, 0x2e, 0x95, 0x33, 0x5c, 0x80, 0x8b,
  2970. 0x59, 0x9d, 0x00, 0x79, 0x3f, 0x3b, 0xe5, 0x62, 0x56, 0x27, 0x20, 0x25, 0x16, 0x02, 0xa4, 0xd7,
  2971. 0xf6, 0x14, 0xbe, 0x10, 0x70, 0x16, 0x40, 0x5d, 0x9d, 0x86, 0xa1, 0x2e, 0xcf, 0xba, 0xf2, 0xe2,
  2972. 0x34, 0x0c, 0x6b, 0x6f, 0x90, 0xf3, 0xb5, 0x37, 0xc8, 0xfc, 0x6e, 0x76, 0x4a, 0xbb, 0xf9, 0x19,
  2973. 0xc0, 0x4d, 0x2f, 0xd9, 0x97, 0x46, 0xe6, 0x57, 0x56, 0xd7, 0x8b, 0xd5, 0x9b, 0x00, 0x1f, 0x72,
  2974. 0x08, 0xf6, 0x7d, 0x65, 0x3a, 0x3e, 0xe4, 0xe1, 0x33, 0x4c, 0x88, 0xab, 0xac, 0x23, 0xc6, 0x1c,
  2975. 0xb6, 0x1b, 0x13, 0xa2, 0x0c, 0x20, 0xc6, 0xe6, 0xef, 0x5b, 0xd0, 0xbd, 0x4b, 0x02, 0xc5, 0xf9,
  2976. 0x1c, 0xc0, 0x43, 0x1a, 0xd3, 0x21, 0xf3, 0x42, 0x22, 0x6f, 0xd8, 0xb3, 0x56, 0x06, 0xf2, 0xcd,
  2977. 0xe5, 0x88, 0xd4, 0x40, 0xfc, 0x5d, 0x65, 0x4c, 0x31, 0xe6, 0xb0, 0x3d, 0x82, 0x23, 0x65, 0x3f,
  2978. 0x31, 0x46, 0x2b, 0x30, 0x9b, 0x30, 0xec, 0xec, 0x0b, 0x63, 0xcd, 0x58, 0xf2, 0xc3, 0xfc, 0x53,
  2979. 0x0b, 0xc0, 0x22, 0x01, 0x65, 0xc2, 0xd7, 0xf8, 0xcd, 0x75, 0x07, 0x3b, 0xfb, 0xbc, 0x16, 0x60,
  2980. 0xa3, 0x88, 0x28, 0x4b, 0xf4, 0x14, 0xec, 0xfe, 0x28, 0x12, 0x3b, 0xa4, 0x51, 0x54, 0xfe, 0xea,
  2981. 0x5a, 0x5d, 0x05, 0x91, 0xb7, 0x7e, 0x1d, 0xca, 0x5d, 0x8b, 0x0f, 0x33, 0x39, 0x4d, 0x2e, 0x5b,
  2982. 0xe7, 0xb4, 0xd3, 0xd0, 0x2d, 0xba, 0x82, 0x48, 0x05, 0xc2, 0x0f, 0x2e, 0xc0, 0x42, 0x40, 0x5d,
  2983. 0x6f, 0xd7, 0x23, 0xae, 0x70, 0x34, 0xa5, 0x4a, 0x5f, 0x03, 0xb9, 0x73, 0x99, 0x37, 0xe1, 0x84,
  2984. 0xba, 0x7d, 0x79, 0x24, 0xbe, 0x13, 0xee, 0x52, 0xb4, 0x01, 0xb3, 0x9c, 0x85, 0x7e, 0x66, 0x3c,
  2985. 0x53, 0x7e, 0x66, 0x1c, 0x2b, 0x6b, 0x49, 0x54, 0xf3, 0xeb, 0x16, 0xac, 0x8d, 0xd9, 0xdc, 0xa5,
  2986. 0x07, 0xfc, 0x40, 0xbf, 0x4f, 0x25, 0xe2, 0xb1, 0xe4, 0xb8, 0x77, 0x60, 0xe0, 0x92, 0x84, 0x79,
  2987. 0xa1, 0x28, 0xe3, 0x6c, 0x6d, 0xbe, 0x10, 0x07, 0x44, 0x19, 0x6a, 0x35, 0x33, 0x7f, 0x43, 0x4e,
  2988. 0x6f, 0xe1, 0x80, 0xa0, 0x2b, 0xb0, 0xbc, 0x4f, 0x48, 0x64, 0xfb, 0xd4, 0xc1, 0xbe, 0xad, 0xa3,
  2989. 0x47, 0xdd, 0x52, 0x96, 0xf8, 0xd4, 0x47, 0x7c, 0xe6, 0xa6, 0x8c, 0x20, 0x33, 0x81, 0x17, 0x0e,
  2990. 0xd1, 0x44, 0x65, 0x90, 0x33, 0xd0, 0x8d, 0x62, 0xea, 0x90, 0x84, 0x7b, 0x57, 0x4b, 0x1c, 0x28,
  2991. 0x63, 0x00, 0xba, 0x06, 0xcb, 0xe9, 0xc7, 0xc7, 0x24, 0x76, 0x48, 0xc8, 0xf0, 0x43, 0xf9, 0x66,
  2992. 0x38, 0x6d, 0x55, 0x4d, 0x99, 0xbf, 0x69, 0x81, 0x59, 0x92, 0x7a, 0x3b, 0xa6, 0xc1, 0x31, 0x5a,
  2993. 0xf0, 0x2a, 0xac, 0x08, 0x3b, 0xc4, 0x82, 0xe5, 0xd8, 0x10, 0xb2, 0x98, 0x38, 0xc9, 0xe7, 0xa4,
  2994. 0x34, 0x6d, 0x89, 0x21, 0x5c, 0x38, 0x74, 0x4d, 0xff, 0x25, 0x5b, 0xfc, 0xab, 0x0f, 0xfd, 0x4f,
  2995. 0x86, 0x24, 0x1e, 0x65, 0x1e, 0x1b, 0x13, 0xa2, 0xb4, 0xd0, 0xaf, 0xe5, 0x19, 0x08, 0xcf, 0x89,
  2996. 0xbb, 0x31, 0x0d, 0xec, 0xf4, 0x41, 0x7d, 0x5a, 0xa0, 0xf4, 0x38, 0xf0, 0xb6, 0x7c, 0x54, 0x47,
  2997. 0xef, 0xc3, 0xdc, 0xae, 0xe7, 0x33, 0x22, 0x9f, 0xb0, 0x7b, 0x1b, 0x2f, 0x95, 0xbd, 0x3a, 0x2b,
  2998. 0x73, 0xfd, 0xb6, 0x40, 0xb6, 0x14, 0x11, 0xda, 0x81, 0x65, 0x2f, 0x8c, 0x44, 0x01, 0x14, 0x7b,
  2999. 0xd8, 0xf7, 0x9e, 0x8e, 0x9f, 0xcb, 0x7a, 0x1b, 0xaf, 0x4f, 0xe0, 0x75, 0x87, 0x53, 0x6e, 0x67,
  3000. 0x09, 0x2d, 0xe4, 0x95, 0x60, 0x88, 0xc0, 0x0a, 0x1d, 0xb2, 0xb2, 0x90, 0x59, 0x21, 0x64, 0x63,
  3001. 0x82, 0x90, 0x7b, 0x82, 0x34, 0x2f, 0x65, 0x99, 0x96, 0x81, 0xc6, 0x16, 0xcc, 0x49, 0xe5, 0x78,
  3002. 0x36, 0xdb, 0xf5, 0x88, 0xaf, 0x9b, 0x00, 0xf2, 0x83, 0xdf, 0x18, 0x68, 0x44, 0x62, 0x1c, 0xea,
  3003. 0xc4, 0xa4, 0x3f, 0x39, 0xfe, 0x01, 0xf6, 0x87, 0x3a, 0xde, 0xe4, 0x87, 0xf1, 0x97, 0x59, 0x40,
  3004. 0x65, 0x0d, 0xf5, 0x1b, 0x60, 0x4c, 0x12, 0x7e, 0x86, 0x64, 0x33, 0xe1, 0x62, 0x06, 0x2e, 0xb2,
  3005. 0xe1, 0x8f, 0xa0, 0xeb, 0x24, 0x07, 0xb6, 0x30, 0x89, 0x90, 0xd9, 0xdb, 0x78, 0xf7, 0xc8, 0x26,
  3006. 0x5d, 0xdf, 0xdc, 0x7e, 0x20, 0xa0, 0x56, 0xc7, 0x49, 0x0e, 0xc4, 0x08, 0xfd, 0x04, 0xe0, 0xcb,
  3007. 0x84, 0x86, 0x8a, 0xb3, 0xdc, 0xf8, 0xf7, 0x8e, 0xce, 0xf9, 0x87, 0xdb, 0xf7, 0xb6, 0x24, 0xeb,
  3008. 0x2e, 0x67, 0x27, 0x79, 0x3b, 0xb0, 0x10, 0xe1, 0xf8, 0xd1, 0x90, 0x30, 0xc5, 0x5e, 0xfa, 0xc2,
  3009. 0x07, 0x47, 0x67, 0xff, 0xb1, 0x64, 0x23, 0x25, 0xf4, 0xa3, 0xcc, 0x97, 0xf1, 0xf5, 0x34, 0x74,
  3010. 0xb4, 0x5e, 0xbc, 0x86, 0x12, 0x1e, 0x2e, 0x5f, 0x12, 0x6c, 0x2f, 0xdc, 0xa5, 0xca, 0xa2, 0x27,
  3011. 0x38, 0x5c, 0x3e, 0x26, 0x88, 0x0c, 0x7e, 0x09, 0x96, 0x62, 0xe2, 0xd0, 0xd8, 0xe5, 0xb7, 0x51,
  3012. 0x2f, 0xf0, 0xb8, 0xdb, 0xcb, 0xbd, 0x5c, 0x94, 0xf0, 0x9b, 0x1a, 0x8c, 0x5e, 0x81, 0x45, 0xb1,
  3013. 0xed, 0x19, 0xcc, 0xb6, 0xe6, 0x49, 0xfc, 0x0c, 0xe2, 0x25, 0x58, 0x7a, 0x34, 0xe4, 0x79, 0xc3,
  3014. 0xd9, 0xc3, 0x31, 0x76, 0x18, 0x4d, 0x6b, 0xfa, 0x45, 0x01, 0xdf, 0x4c, 0xc1, 0xe8, 0x4d, 0x58,
  3015. 0x95, 0xa8, 0x24, 0x71, 0x70, 0x94, 0x52, 0x90, 0x58, 0x95, 0x7c, 0x2b, 0x62, 0xf6, 0x96, 0x98,
  3016. 0xdc, 0xd4, 0x73, 0xc8, 0x80, 0x8e, 0x43, 0x83, 0x80, 0x84, 0x2c, 0x11, 0x07, 0x55, 0xd7, 0x4a,
  3017. 0xbf, 0xd1, 0x75, 0x38, 0x8b, 0x7d, 0x9f, 0x3e, 0xb6, 0x05, 0xa5, 0x6b, 0x97, 0xb4, 0x93, 0x2f,
  3018. 0x4c, 0x86, 0x40, 0xfa, 0x44, 0xe0, 0x58, 0x79, 0x45, 0x8d, 0xf3, 0xd0, 0x4d, 0xf7, 0x91, 0x9f,
  3019. 0xed, 0x19, 0x87, 0x14, 0x63, 0xe3, 0x04, 0xf4, 0xb3, 0x3b, 0x61, 0xfc, 0xb3, 0x0d, 0xcb, 0x15,
  3020. 0x41, 0x85, 0x3e, 0x07, 0xe0, 0xde, 0x2a, 0x43, 0x4b, 0xb9, 0xeb, 0x77, 0x8e, 0x1e, 0x9c, 0xdc,
  3021. 0x5f, 0x25, 0xd8, 0xe2, 0xde, 0x2f, 0x87, 0xe8, 0xa7, 0xd0, 0x13, 0x1e, 0xab, 0xb8, 0x4b, 0x97,
  3022. 0x7d, 0xff, 0x1b, 0x70, 0xe7, 0xba, 0x2a, 0xf6, 0x22, 0x06, 0xe4, 0xd8, 0xf8, 0x5b, 0x0b, 0xba,
  3023. 0xa9, 0x60, 0x7e, 0x53, 0x91, 0x1b, 0x25, 0xf6, 0x3a, 0xd1, 0x37, 0x15, 0x01, 0xbb, 0x2d, 0x40,
  3024. 0xff, 0x97, 0xae, 0x64, 0xbc, 0x0d, 0x30, 0xd6, 0xbf, 0x52, 0x85, 0x56, 0xa5, 0x0a, 0xe6, 0x25,
  3025. 0x58, 0xe0, 0x96, 0xf5, 0x88, 0xbb, 0xcd, 0x62, 0x2f, 0x12, 0xed, 0x4c, 0x89, 0x93, 0xa8, 0x52,
  3026. 0x4f, 0x7f, 0x6e, 0xfc, 0xd9, 0x80, 0x7e, 0xf6, 0x19, 0x0b, 0x7d, 0x01, 0xbd, 0x4c, 0xdb, 0x16,
  3027. 0xbd, 0x58, 0xde, 0xb4, 0x72, 0x1b, 0xd8, 0x78, 0x69, 0x02, 0x96, 0xaa, 0x86, 0xa6, 0x50, 0x08,
  3028. 0x27, 0x4b, 0xbd, 0x4f, 0x74, 0xb9, 0x4c, 0x5d, 0xd7, 0x59, 0x35, 0x5e, 0x6d, 0x84, 0x9b, 0xca,
  3029. 0x63, 0xb0, 0x5c, 0xd1, 0xcc, 0x44, 0xaf, 0x4d, 0xe0, 0x92, 0x6b, 0xa8, 0x1a, 0x57, 0x1a, 0x62,
  3030. 0xa7, 0x52, 0x1f, 0x01, 0x2a, 0x77, 0x3a, 0xd1, 0xab, 0x13, 0xd9, 0x8c, 0x3b, 0xa9, 0xc6, 0x6b,
  3031. 0xcd, 0x90, 0x6b, 0x15, 0x95, 0x3d, 0xd0, 0x89, 0x8a, 0xe6, 0xba, 0xac, 0x13, 0x15, 0x2d, 0x34,
  3032. 0x56, 0xa7, 0xd0, 0x3e, 0x2c, 0x15, 0xfb, 0xa3, 0xe8, 0x52, 0x5d, 0x3f, 0xbf, 0xd4, 0x7e, 0x35,
  3033. 0x2e, 0x37, 0x41, 0x4d, 0x85, 0x11, 0x38, 0x91, 0xef, 0x47, 0xa2, 0x57, 0xca, 0xf4, 0x95, 0x1d,
  3034. 0x59, 0xe3, 0xe2, 0x64, 0xc4, 0xac, 0x4e, 0xc5, 0x1e, 0x65, 0x95, 0x4e, 0x35, 0x0d, 0xd0, 0x2a,
  3035. 0x9d, 0xea, 0x5a, 0x9e, 0xe6, 0x14, 0xfa, 0x99, 0x6e, 0x7c, 0x15, 0x7a, 0x77, 0x68, 0xbd, 0x8e,
  3036. 0x4d, 0x75, 0xf3, 0xd0, 0xb8, 0xda, 0x18, 0x5f, 0xcb, 0xbe, 0xd6, 0xe2, 0xb1, 0x9e, 0x69, 0xe1,
  3037. 0x55, 0xc5, 0x7a, 0xb9, 0x29, 0x58, 0x15, 0xeb, 0x55, 0x7d, 0xc0, 0x29, 0xb4, 0x03, 0x0b, 0xb9,
  3038. 0xa6, 0x1e, 0x7a, 0xb9, 0x8e, 0x32, 0xff, 0x52, 0x67, 0xbc, 0x32, 0x11, 0x2f, 0x95, 0x61, 0xeb,
  3039. 0xec, 0xa5, 0xd2, 0x55, 0xed, 0xe2, 0xf2, 0xf9, 0xea, 0xe5, 0x49, 0x68, 0xb9, 0x50, 0x2e, 0xb5,
  3040. 0xfe, 0x2a, 0x43, 0xb9, 0xae, 0xb5, 0x58, 0x19, 0xca, 0xf5, 0xdd, 0xc4, 0x29, 0xf4, 0x63, 0x80,
  3041. 0x71, 0x7b, 0x0e, 0x5d, 0xa8, 0xa3, 0xce, 0xee, 0xfe, 0x8b, 0x87, 0x23, 0xa5, 0xac, 0x1f, 0xc3,
  3042. 0x4a, 0xd5, 0x8b, 0x12, 0xba, 0x52, 0x55, 0x1c, 0xd7, 0x3e, 0x5b, 0x19, 0xeb, 0x4d, 0xd1, 0x53,
  3043. 0xc1, 0x9f, 0x42, 0x47, 0xb7, 0xc6, 0xd0, 0x0b, 0x65, 0xea, 0x42, 0x33, 0xd1, 0x30, 0x0f, 0x43,
  3044. 0xc9, 0x38, 0x70, 0xa0, 0x63, 0x75, 0xdc, 0xb3, 0xaa, 0x8f, 0xd5, 0x52, 0x77, 0xad, 0x3e, 0x56,
  3045. 0xcb, 0x2d, 0x30, 0x21, 0x2e, 0x75, 0x86, 0x6c, 0x8b, 0xa7, 0xde, 0x19, 0x2a, 0x3a, 0x58, 0xf5,
  3046. 0xce, 0x50, 0xd9, 0x35, 0x9a, 0x42, 0x3f, 0x87, 0xd5, 0xea, 0xce, 0x0e, 0xaa, 0x8d, 0xf8, 0x9a,
  3047. 0x0e, 0x93, 0x71, 0xad, 0x39, 0x41, 0x2a, 0xfe, 0xa9, 0xce, 0x4f, 0x85, 0xce, 0x4e, 0x7d, 0x7e,
  3048. 0xaa, 0xee, 0x2f, 0x19, 0x57, 0x1b, 0xe3, 0x97, 0x43, 0x2f, 0xdb, 0x1e, 0xa9, 0xb7, 0x76, 0x45,
  3049. 0xb7, 0xa8, 0xde, 0xda, 0x95, 0x1d, 0x17, 0x11, 0x1f, 0x55, 0xad, 0x8f, 0xaa, 0xf8, 0x38, 0xa4,
  3050. 0x37, 0x63, 0xac, 0x37, 0x45, 0xcf, 0x1d, 0xdf, 0xe5, 0xde, 0x06, 0x9a, 0xb8, 0xfe, 0x5c, 0x66,
  3051. 0xbe, 0xd2, 0x10, 0xbb, 0x7e, 0x77, 0x75, 0xa6, 0x9e, 0xa8, 0x40, 0x21, 0x63, 0x5f, 0x6d, 0x8c,
  3052. 0x9f, 0xca, 0x8e, 0xf4, 0x4f, 0x13, 0x99, 0xbe, 0x04, 0xba, 0x3c, 0x81, 0x4f, 0xa6, 0xaf, 0x62,
  3053. 0xbc, 0xda, 0x08, 0xb7, 0x2a, 0x7a, 0xb3, 0x9d, 0x82, 0xc3, 0xfc, 0xa9, 0xd4, 0xde, 0x38, 0xcc,
  3054. 0x9f, 0x2a, 0x9a, 0x0f, 0x15, 0xd1, 0xab, 0x1b, 0x04, 0x93, 0xa3, 0xb7, 0xd0, 0xa8, 0x98, 0x1c,
  3055. 0xbd, 0xa5, 0xde, 0xc3, 0x14, 0xfa, 0xe5, 0xb8, 0x99, 0x5e, 0x7e, 0x04, 0x44, 0x1b, 0xb5, 0xa9,
  3056. 0xa8, 0xf6, 0xed, 0xd3, 0x78, 0xe3, 0x48, 0x34, 0x19, 0xe3, 0xff, 0xba, 0xa5, 0xbb, 0x77, 0x95,
  3057. 0xaf, 0x70, 0xe8, 0xcd, 0x06, 0x8c, 0x4b, 0x0f, 0x89, 0xc6, 0x5b, 0x47, 0xa4, 0xca, 0x2c, 0xe8,
  3058. 0x23, 0x98, 0x15, 0xd5, 0x27, 0x3a, 0x77, 0x78, 0x59, 0x6a, 0x9c, 0xaf, 0x9e, 0x4f, 0x8b, 0x2b,
  3059. 0xce, 0x6d, 0x67, 0x4e, 0xfc, 0x36, 0xfb, 0xc6, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xb3, 0xd7,
  3060. 0xc4, 0x53, 0x4d, 0x2b, 0x00, 0x00,
  3061. }