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.

3498 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
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
5 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. Extension string `protobuf:"bytes,7,opt,name=extension" json:"extension,omitempty"`
  1227. }
  1228. func (m *RemoteFile) Reset() { *m = RemoteFile{} }
  1229. func (m *RemoteFile) String() string { return proto.CompactTextString(m) }
  1230. func (*RemoteFile) ProtoMessage() {}
  1231. func (*RemoteFile) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{58} }
  1232. func (m *RemoteFile) GetBackendType() string {
  1233. if m != nil {
  1234. return m.BackendType
  1235. }
  1236. return ""
  1237. }
  1238. func (m *RemoteFile) GetBackendId() string {
  1239. if m != nil {
  1240. return m.BackendId
  1241. }
  1242. return ""
  1243. }
  1244. func (m *RemoteFile) GetKey() string {
  1245. if m != nil {
  1246. return m.Key
  1247. }
  1248. return ""
  1249. }
  1250. func (m *RemoteFile) GetOffset() uint64 {
  1251. if m != nil {
  1252. return m.Offset
  1253. }
  1254. return 0
  1255. }
  1256. func (m *RemoteFile) GetFileSize() uint64 {
  1257. if m != nil {
  1258. return m.FileSize
  1259. }
  1260. return 0
  1261. }
  1262. func (m *RemoteFile) GetModifiedTime() uint64 {
  1263. if m != nil {
  1264. return m.ModifiedTime
  1265. }
  1266. return 0
  1267. }
  1268. func (m *RemoteFile) GetExtension() string {
  1269. if m != nil {
  1270. return m.Extension
  1271. }
  1272. return ""
  1273. }
  1274. type VolumeTierInfo struct {
  1275. Files []*RemoteFile `protobuf:"bytes,1,rep,name=files" json:"files,omitempty"`
  1276. }
  1277. func (m *VolumeTierInfo) Reset() { *m = VolumeTierInfo{} }
  1278. func (m *VolumeTierInfo) String() string { return proto.CompactTextString(m) }
  1279. func (*VolumeTierInfo) ProtoMessage() {}
  1280. func (*VolumeTierInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{59} }
  1281. func (m *VolumeTierInfo) GetFiles() []*RemoteFile {
  1282. if m != nil {
  1283. return m.Files
  1284. }
  1285. return nil
  1286. }
  1287. type VolumeTierMoveDatToRemoteRequest struct {
  1288. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1289. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  1290. DestinationBackendName string `protobuf:"bytes,3,opt,name=destination_backend_name,json=destinationBackendName" json:"destination_backend_name,omitempty"`
  1291. KeepLocalDatFile bool `protobuf:"varint,4,opt,name=keep_local_dat_file,json=keepLocalDatFile" json:"keep_local_dat_file,omitempty"`
  1292. }
  1293. func (m *VolumeTierMoveDatToRemoteRequest) Reset() { *m = VolumeTierMoveDatToRemoteRequest{} }
  1294. func (m *VolumeTierMoveDatToRemoteRequest) String() string { return proto.CompactTextString(m) }
  1295. func (*VolumeTierMoveDatToRemoteRequest) ProtoMessage() {}
  1296. func (*VolumeTierMoveDatToRemoteRequest) Descriptor() ([]byte, []int) {
  1297. return fileDescriptor0, []int{60}
  1298. }
  1299. func (m *VolumeTierMoveDatToRemoteRequest) GetVolumeId() uint32 {
  1300. if m != nil {
  1301. return m.VolumeId
  1302. }
  1303. return 0
  1304. }
  1305. func (m *VolumeTierMoveDatToRemoteRequest) GetCollection() string {
  1306. if m != nil {
  1307. return m.Collection
  1308. }
  1309. return ""
  1310. }
  1311. func (m *VolumeTierMoveDatToRemoteRequest) GetDestinationBackendName() string {
  1312. if m != nil {
  1313. return m.DestinationBackendName
  1314. }
  1315. return ""
  1316. }
  1317. func (m *VolumeTierMoveDatToRemoteRequest) GetKeepLocalDatFile() bool {
  1318. if m != nil {
  1319. return m.KeepLocalDatFile
  1320. }
  1321. return false
  1322. }
  1323. type VolumeTierMoveDatToRemoteResponse struct {
  1324. Processed int64 `protobuf:"varint,1,opt,name=processed" json:"processed,omitempty"`
  1325. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage" json:"processedPercentage,omitempty"`
  1326. }
  1327. func (m *VolumeTierMoveDatToRemoteResponse) Reset() { *m = VolumeTierMoveDatToRemoteResponse{} }
  1328. func (m *VolumeTierMoveDatToRemoteResponse) String() string { return proto.CompactTextString(m) }
  1329. func (*VolumeTierMoveDatToRemoteResponse) ProtoMessage() {}
  1330. func (*VolumeTierMoveDatToRemoteResponse) Descriptor() ([]byte, []int) {
  1331. return fileDescriptor0, []int{61}
  1332. }
  1333. func (m *VolumeTierMoveDatToRemoteResponse) GetProcessed() int64 {
  1334. if m != nil {
  1335. return m.Processed
  1336. }
  1337. return 0
  1338. }
  1339. func (m *VolumeTierMoveDatToRemoteResponse) GetProcessedPercentage() float32 {
  1340. if m != nil {
  1341. return m.ProcessedPercentage
  1342. }
  1343. return 0
  1344. }
  1345. type VolumeTierMoveDatFromRemoteRequest struct {
  1346. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1347. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  1348. KeepRemoteDatFile bool `protobuf:"varint,3,opt,name=keep_remote_dat_file,json=keepRemoteDatFile" json:"keep_remote_dat_file,omitempty"`
  1349. }
  1350. func (m *VolumeTierMoveDatFromRemoteRequest) Reset() { *m = VolumeTierMoveDatFromRemoteRequest{} }
  1351. func (m *VolumeTierMoveDatFromRemoteRequest) String() string { return proto.CompactTextString(m) }
  1352. func (*VolumeTierMoveDatFromRemoteRequest) ProtoMessage() {}
  1353. func (*VolumeTierMoveDatFromRemoteRequest) Descriptor() ([]byte, []int) {
  1354. return fileDescriptor0, []int{62}
  1355. }
  1356. func (m *VolumeTierMoveDatFromRemoteRequest) GetVolumeId() uint32 {
  1357. if m != nil {
  1358. return m.VolumeId
  1359. }
  1360. return 0
  1361. }
  1362. func (m *VolumeTierMoveDatFromRemoteRequest) GetCollection() string {
  1363. if m != nil {
  1364. return m.Collection
  1365. }
  1366. return ""
  1367. }
  1368. func (m *VolumeTierMoveDatFromRemoteRequest) GetKeepRemoteDatFile() bool {
  1369. if m != nil {
  1370. return m.KeepRemoteDatFile
  1371. }
  1372. return false
  1373. }
  1374. type VolumeTierMoveDatFromRemoteResponse struct {
  1375. Processed int64 `protobuf:"varint,1,opt,name=processed" json:"processed,omitempty"`
  1376. ProcessedPercentage float32 `protobuf:"fixed32,2,opt,name=processedPercentage" json:"processedPercentage,omitempty"`
  1377. }
  1378. func (m *VolumeTierMoveDatFromRemoteResponse) Reset() { *m = VolumeTierMoveDatFromRemoteResponse{} }
  1379. func (m *VolumeTierMoveDatFromRemoteResponse) String() string { return proto.CompactTextString(m) }
  1380. func (*VolumeTierMoveDatFromRemoteResponse) ProtoMessage() {}
  1381. func (*VolumeTierMoveDatFromRemoteResponse) Descriptor() ([]byte, []int) {
  1382. return fileDescriptor0, []int{63}
  1383. }
  1384. func (m *VolumeTierMoveDatFromRemoteResponse) GetProcessed() int64 {
  1385. if m != nil {
  1386. return m.Processed
  1387. }
  1388. return 0
  1389. }
  1390. func (m *VolumeTierMoveDatFromRemoteResponse) GetProcessedPercentage() float32 {
  1391. if m != nil {
  1392. return m.ProcessedPercentage
  1393. }
  1394. return 0
  1395. }
  1396. // select on volume servers
  1397. type QueryRequest struct {
  1398. Selections []string `protobuf:"bytes,1,rep,name=selections" json:"selections,omitempty"`
  1399. FromFileIds []string `protobuf:"bytes,2,rep,name=from_file_ids,json=fromFileIds" json:"from_file_ids,omitempty"`
  1400. Filter *QueryRequest_Filter `protobuf:"bytes,3,opt,name=filter" json:"filter,omitempty"`
  1401. InputSerialization *QueryRequest_InputSerialization `protobuf:"bytes,4,opt,name=input_serialization,json=inputSerialization" json:"input_serialization,omitempty"`
  1402. OutputSerialization *QueryRequest_OutputSerialization `protobuf:"bytes,5,opt,name=output_serialization,json=outputSerialization" json:"output_serialization,omitempty"`
  1403. }
  1404. func (m *QueryRequest) Reset() { *m = QueryRequest{} }
  1405. func (m *QueryRequest) String() string { return proto.CompactTextString(m) }
  1406. func (*QueryRequest) ProtoMessage() {}
  1407. func (*QueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64} }
  1408. func (m *QueryRequest) GetSelections() []string {
  1409. if m != nil {
  1410. return m.Selections
  1411. }
  1412. return nil
  1413. }
  1414. func (m *QueryRequest) GetFromFileIds() []string {
  1415. if m != nil {
  1416. return m.FromFileIds
  1417. }
  1418. return nil
  1419. }
  1420. func (m *QueryRequest) GetFilter() *QueryRequest_Filter {
  1421. if m != nil {
  1422. return m.Filter
  1423. }
  1424. return nil
  1425. }
  1426. func (m *QueryRequest) GetInputSerialization() *QueryRequest_InputSerialization {
  1427. if m != nil {
  1428. return m.InputSerialization
  1429. }
  1430. return nil
  1431. }
  1432. func (m *QueryRequest) GetOutputSerialization() *QueryRequest_OutputSerialization {
  1433. if m != nil {
  1434. return m.OutputSerialization
  1435. }
  1436. return nil
  1437. }
  1438. type QueryRequest_Filter struct {
  1439. Field string `protobuf:"bytes,1,opt,name=field" json:"field,omitempty"`
  1440. Operand string `protobuf:"bytes,2,opt,name=operand" json:"operand,omitempty"`
  1441. Value string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
  1442. }
  1443. func (m *QueryRequest_Filter) Reset() { *m = QueryRequest_Filter{} }
  1444. func (m *QueryRequest_Filter) String() string { return proto.CompactTextString(m) }
  1445. func (*QueryRequest_Filter) ProtoMessage() {}
  1446. func (*QueryRequest_Filter) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64, 0} }
  1447. func (m *QueryRequest_Filter) GetField() string {
  1448. if m != nil {
  1449. return m.Field
  1450. }
  1451. return ""
  1452. }
  1453. func (m *QueryRequest_Filter) GetOperand() string {
  1454. if m != nil {
  1455. return m.Operand
  1456. }
  1457. return ""
  1458. }
  1459. func (m *QueryRequest_Filter) GetValue() string {
  1460. if m != nil {
  1461. return m.Value
  1462. }
  1463. return ""
  1464. }
  1465. type QueryRequest_InputSerialization struct {
  1466. // NONE | GZIP | BZIP2
  1467. CompressionType string `protobuf:"bytes,1,opt,name=compression_type,json=compressionType" json:"compression_type,omitempty"`
  1468. CsvInput *QueryRequest_InputSerialization_CSVInput `protobuf:"bytes,2,opt,name=csv_input,json=csvInput" json:"csv_input,omitempty"`
  1469. JsonInput *QueryRequest_InputSerialization_JSONInput `protobuf:"bytes,3,opt,name=json_input,json=jsonInput" json:"json_input,omitempty"`
  1470. ParquetInput *QueryRequest_InputSerialization_ParquetInput `protobuf:"bytes,4,opt,name=parquet_input,json=parquetInput" json:"parquet_input,omitempty"`
  1471. }
  1472. func (m *QueryRequest_InputSerialization) Reset() { *m = QueryRequest_InputSerialization{} }
  1473. func (m *QueryRequest_InputSerialization) String() string { return proto.CompactTextString(m) }
  1474. func (*QueryRequest_InputSerialization) ProtoMessage() {}
  1475. func (*QueryRequest_InputSerialization) Descriptor() ([]byte, []int) {
  1476. return fileDescriptor0, []int{64, 1}
  1477. }
  1478. func (m *QueryRequest_InputSerialization) GetCompressionType() string {
  1479. if m != nil {
  1480. return m.CompressionType
  1481. }
  1482. return ""
  1483. }
  1484. func (m *QueryRequest_InputSerialization) GetCsvInput() *QueryRequest_InputSerialization_CSVInput {
  1485. if m != nil {
  1486. return m.CsvInput
  1487. }
  1488. return nil
  1489. }
  1490. func (m *QueryRequest_InputSerialization) GetJsonInput() *QueryRequest_InputSerialization_JSONInput {
  1491. if m != nil {
  1492. return m.JsonInput
  1493. }
  1494. return nil
  1495. }
  1496. func (m *QueryRequest_InputSerialization) GetParquetInput() *QueryRequest_InputSerialization_ParquetInput {
  1497. if m != nil {
  1498. return m.ParquetInput
  1499. }
  1500. return nil
  1501. }
  1502. type QueryRequest_InputSerialization_CSVInput struct {
  1503. FileHeaderInfo string `protobuf:"bytes,1,opt,name=file_header_info,json=fileHeaderInfo" json:"file_header_info,omitempty"`
  1504. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter" json:"record_delimiter,omitempty"`
  1505. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter" json:"field_delimiter,omitempty"`
  1506. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer" json:"quote_charactoer,omitempty"`
  1507. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter" json:"quote_escape_character,omitempty"`
  1508. Comments string `protobuf:"bytes,6,opt,name=comments" json:"comments,omitempty"`
  1509. // If true, records might contain record delimiters within quote characters
  1510. AllowQuotedRecordDelimiter bool `protobuf:"varint,7,opt,name=allow_quoted_record_delimiter,json=allowQuotedRecordDelimiter" json:"allow_quoted_record_delimiter,omitempty"`
  1511. }
  1512. func (m *QueryRequest_InputSerialization_CSVInput) Reset() {
  1513. *m = QueryRequest_InputSerialization_CSVInput{}
  1514. }
  1515. func (m *QueryRequest_InputSerialization_CSVInput) String() string { return proto.CompactTextString(m) }
  1516. func (*QueryRequest_InputSerialization_CSVInput) ProtoMessage() {}
  1517. func (*QueryRequest_InputSerialization_CSVInput) Descriptor() ([]byte, []int) {
  1518. return fileDescriptor0, []int{64, 1, 0}
  1519. }
  1520. func (m *QueryRequest_InputSerialization_CSVInput) GetFileHeaderInfo() string {
  1521. if m != nil {
  1522. return m.FileHeaderInfo
  1523. }
  1524. return ""
  1525. }
  1526. func (m *QueryRequest_InputSerialization_CSVInput) GetRecordDelimiter() string {
  1527. if m != nil {
  1528. return m.RecordDelimiter
  1529. }
  1530. return ""
  1531. }
  1532. func (m *QueryRequest_InputSerialization_CSVInput) GetFieldDelimiter() string {
  1533. if m != nil {
  1534. return m.FieldDelimiter
  1535. }
  1536. return ""
  1537. }
  1538. func (m *QueryRequest_InputSerialization_CSVInput) GetQuoteCharactoer() string {
  1539. if m != nil {
  1540. return m.QuoteCharactoer
  1541. }
  1542. return ""
  1543. }
  1544. func (m *QueryRequest_InputSerialization_CSVInput) GetQuoteEscapeCharacter() string {
  1545. if m != nil {
  1546. return m.QuoteEscapeCharacter
  1547. }
  1548. return ""
  1549. }
  1550. func (m *QueryRequest_InputSerialization_CSVInput) GetComments() string {
  1551. if m != nil {
  1552. return m.Comments
  1553. }
  1554. return ""
  1555. }
  1556. func (m *QueryRequest_InputSerialization_CSVInput) GetAllowQuotedRecordDelimiter() bool {
  1557. if m != nil {
  1558. return m.AllowQuotedRecordDelimiter
  1559. }
  1560. return false
  1561. }
  1562. type QueryRequest_InputSerialization_JSONInput struct {
  1563. Type string `protobuf:"bytes,1,opt,name=type" json:"type,omitempty"`
  1564. }
  1565. func (m *QueryRequest_InputSerialization_JSONInput) Reset() {
  1566. *m = QueryRequest_InputSerialization_JSONInput{}
  1567. }
  1568. func (m *QueryRequest_InputSerialization_JSONInput) String() string { return proto.CompactTextString(m) }
  1569. func (*QueryRequest_InputSerialization_JSONInput) ProtoMessage() {}
  1570. func (*QueryRequest_InputSerialization_JSONInput) Descriptor() ([]byte, []int) {
  1571. return fileDescriptor0, []int{64, 1, 1}
  1572. }
  1573. func (m *QueryRequest_InputSerialization_JSONInput) GetType() string {
  1574. if m != nil {
  1575. return m.Type
  1576. }
  1577. return ""
  1578. }
  1579. type QueryRequest_InputSerialization_ParquetInput struct {
  1580. }
  1581. func (m *QueryRequest_InputSerialization_ParquetInput) Reset() {
  1582. *m = QueryRequest_InputSerialization_ParquetInput{}
  1583. }
  1584. func (m *QueryRequest_InputSerialization_ParquetInput) String() string {
  1585. return proto.CompactTextString(m)
  1586. }
  1587. func (*QueryRequest_InputSerialization_ParquetInput) ProtoMessage() {}
  1588. func (*QueryRequest_InputSerialization_ParquetInput) Descriptor() ([]byte, []int) {
  1589. return fileDescriptor0, []int{64, 1, 2}
  1590. }
  1591. type QueryRequest_OutputSerialization struct {
  1592. CsvOutput *QueryRequest_OutputSerialization_CSVOutput `protobuf:"bytes,2,opt,name=csv_output,json=csvOutput" json:"csv_output,omitempty"`
  1593. JsonOutput *QueryRequest_OutputSerialization_JSONOutput `protobuf:"bytes,3,opt,name=json_output,json=jsonOutput" json:"json_output,omitempty"`
  1594. }
  1595. func (m *QueryRequest_OutputSerialization) Reset() { *m = QueryRequest_OutputSerialization{} }
  1596. func (m *QueryRequest_OutputSerialization) String() string { return proto.CompactTextString(m) }
  1597. func (*QueryRequest_OutputSerialization) ProtoMessage() {}
  1598. func (*QueryRequest_OutputSerialization) Descriptor() ([]byte, []int) {
  1599. return fileDescriptor0, []int{64, 2}
  1600. }
  1601. func (m *QueryRequest_OutputSerialization) GetCsvOutput() *QueryRequest_OutputSerialization_CSVOutput {
  1602. if m != nil {
  1603. return m.CsvOutput
  1604. }
  1605. return nil
  1606. }
  1607. func (m *QueryRequest_OutputSerialization) GetJsonOutput() *QueryRequest_OutputSerialization_JSONOutput {
  1608. if m != nil {
  1609. return m.JsonOutput
  1610. }
  1611. return nil
  1612. }
  1613. type QueryRequest_OutputSerialization_CSVOutput struct {
  1614. QuoteFields string `protobuf:"bytes,1,opt,name=quote_fields,json=quoteFields" json:"quote_fields,omitempty"`
  1615. RecordDelimiter string `protobuf:"bytes,2,opt,name=record_delimiter,json=recordDelimiter" json:"record_delimiter,omitempty"`
  1616. FieldDelimiter string `protobuf:"bytes,3,opt,name=field_delimiter,json=fieldDelimiter" json:"field_delimiter,omitempty"`
  1617. QuoteCharactoer string `protobuf:"bytes,4,opt,name=quote_charactoer,json=quoteCharactoer" json:"quote_charactoer,omitempty"`
  1618. QuoteEscapeCharacter string `protobuf:"bytes,5,opt,name=quote_escape_character,json=quoteEscapeCharacter" json:"quote_escape_character,omitempty"`
  1619. }
  1620. func (m *QueryRequest_OutputSerialization_CSVOutput) Reset() {
  1621. *m = QueryRequest_OutputSerialization_CSVOutput{}
  1622. }
  1623. func (m *QueryRequest_OutputSerialization_CSVOutput) String() string {
  1624. return proto.CompactTextString(m)
  1625. }
  1626. func (*QueryRequest_OutputSerialization_CSVOutput) ProtoMessage() {}
  1627. func (*QueryRequest_OutputSerialization_CSVOutput) Descriptor() ([]byte, []int) {
  1628. return fileDescriptor0, []int{64, 2, 0}
  1629. }
  1630. func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteFields() string {
  1631. if m != nil {
  1632. return m.QuoteFields
  1633. }
  1634. return ""
  1635. }
  1636. func (m *QueryRequest_OutputSerialization_CSVOutput) GetRecordDelimiter() string {
  1637. if m != nil {
  1638. return m.RecordDelimiter
  1639. }
  1640. return ""
  1641. }
  1642. func (m *QueryRequest_OutputSerialization_CSVOutput) GetFieldDelimiter() string {
  1643. if m != nil {
  1644. return m.FieldDelimiter
  1645. }
  1646. return ""
  1647. }
  1648. func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteCharactoer() string {
  1649. if m != nil {
  1650. return m.QuoteCharactoer
  1651. }
  1652. return ""
  1653. }
  1654. func (m *QueryRequest_OutputSerialization_CSVOutput) GetQuoteEscapeCharacter() string {
  1655. if m != nil {
  1656. return m.QuoteEscapeCharacter
  1657. }
  1658. return ""
  1659. }
  1660. type QueryRequest_OutputSerialization_JSONOutput struct {
  1661. RecordDelimiter string `protobuf:"bytes,1,opt,name=record_delimiter,json=recordDelimiter" json:"record_delimiter,omitempty"`
  1662. }
  1663. func (m *QueryRequest_OutputSerialization_JSONOutput) Reset() {
  1664. *m = QueryRequest_OutputSerialization_JSONOutput{}
  1665. }
  1666. func (m *QueryRequest_OutputSerialization_JSONOutput) String() string {
  1667. return proto.CompactTextString(m)
  1668. }
  1669. func (*QueryRequest_OutputSerialization_JSONOutput) ProtoMessage() {}
  1670. func (*QueryRequest_OutputSerialization_JSONOutput) Descriptor() ([]byte, []int) {
  1671. return fileDescriptor0, []int{64, 2, 1}
  1672. }
  1673. func (m *QueryRequest_OutputSerialization_JSONOutput) GetRecordDelimiter() string {
  1674. if m != nil {
  1675. return m.RecordDelimiter
  1676. }
  1677. return ""
  1678. }
  1679. type QueriedStripe struct {
  1680. Records []byte `protobuf:"bytes,1,opt,name=records,proto3" json:"records,omitempty"`
  1681. }
  1682. func (m *QueriedStripe) Reset() { *m = QueriedStripe{} }
  1683. func (m *QueriedStripe) String() string { return proto.CompactTextString(m) }
  1684. func (*QueriedStripe) ProtoMessage() {}
  1685. func (*QueriedStripe) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{65} }
  1686. func (m *QueriedStripe) GetRecords() []byte {
  1687. if m != nil {
  1688. return m.Records
  1689. }
  1690. return nil
  1691. }
  1692. func init() {
  1693. proto.RegisterType((*BatchDeleteRequest)(nil), "volume_server_pb.BatchDeleteRequest")
  1694. proto.RegisterType((*BatchDeleteResponse)(nil), "volume_server_pb.BatchDeleteResponse")
  1695. proto.RegisterType((*DeleteResult)(nil), "volume_server_pb.DeleteResult")
  1696. proto.RegisterType((*Empty)(nil), "volume_server_pb.Empty")
  1697. proto.RegisterType((*VacuumVolumeCheckRequest)(nil), "volume_server_pb.VacuumVolumeCheckRequest")
  1698. proto.RegisterType((*VacuumVolumeCheckResponse)(nil), "volume_server_pb.VacuumVolumeCheckResponse")
  1699. proto.RegisterType((*VacuumVolumeCompactRequest)(nil), "volume_server_pb.VacuumVolumeCompactRequest")
  1700. proto.RegisterType((*VacuumVolumeCompactResponse)(nil), "volume_server_pb.VacuumVolumeCompactResponse")
  1701. proto.RegisterType((*VacuumVolumeCommitRequest)(nil), "volume_server_pb.VacuumVolumeCommitRequest")
  1702. proto.RegisterType((*VacuumVolumeCommitResponse)(nil), "volume_server_pb.VacuumVolumeCommitResponse")
  1703. proto.RegisterType((*VacuumVolumeCleanupRequest)(nil), "volume_server_pb.VacuumVolumeCleanupRequest")
  1704. proto.RegisterType((*VacuumVolumeCleanupResponse)(nil), "volume_server_pb.VacuumVolumeCleanupResponse")
  1705. proto.RegisterType((*DeleteCollectionRequest)(nil), "volume_server_pb.DeleteCollectionRequest")
  1706. proto.RegisterType((*DeleteCollectionResponse)(nil), "volume_server_pb.DeleteCollectionResponse")
  1707. proto.RegisterType((*AllocateVolumeRequest)(nil), "volume_server_pb.AllocateVolumeRequest")
  1708. proto.RegisterType((*AllocateVolumeResponse)(nil), "volume_server_pb.AllocateVolumeResponse")
  1709. proto.RegisterType((*VolumeSyncStatusRequest)(nil), "volume_server_pb.VolumeSyncStatusRequest")
  1710. proto.RegisterType((*VolumeSyncStatusResponse)(nil), "volume_server_pb.VolumeSyncStatusResponse")
  1711. proto.RegisterType((*VolumeIncrementalCopyRequest)(nil), "volume_server_pb.VolumeIncrementalCopyRequest")
  1712. proto.RegisterType((*VolumeIncrementalCopyResponse)(nil), "volume_server_pb.VolumeIncrementalCopyResponse")
  1713. proto.RegisterType((*VolumeMountRequest)(nil), "volume_server_pb.VolumeMountRequest")
  1714. proto.RegisterType((*VolumeMountResponse)(nil), "volume_server_pb.VolumeMountResponse")
  1715. proto.RegisterType((*VolumeUnmountRequest)(nil), "volume_server_pb.VolumeUnmountRequest")
  1716. proto.RegisterType((*VolumeUnmountResponse)(nil), "volume_server_pb.VolumeUnmountResponse")
  1717. proto.RegisterType((*VolumeDeleteRequest)(nil), "volume_server_pb.VolumeDeleteRequest")
  1718. proto.RegisterType((*VolumeDeleteResponse)(nil), "volume_server_pb.VolumeDeleteResponse")
  1719. proto.RegisterType((*VolumeMarkReadonlyRequest)(nil), "volume_server_pb.VolumeMarkReadonlyRequest")
  1720. proto.RegisterType((*VolumeMarkReadonlyResponse)(nil), "volume_server_pb.VolumeMarkReadonlyResponse")
  1721. proto.RegisterType((*VolumeCopyRequest)(nil), "volume_server_pb.VolumeCopyRequest")
  1722. proto.RegisterType((*VolumeCopyResponse)(nil), "volume_server_pb.VolumeCopyResponse")
  1723. proto.RegisterType((*CopyFileRequest)(nil), "volume_server_pb.CopyFileRequest")
  1724. proto.RegisterType((*CopyFileResponse)(nil), "volume_server_pb.CopyFileResponse")
  1725. proto.RegisterType((*VolumeTailSenderRequest)(nil), "volume_server_pb.VolumeTailSenderRequest")
  1726. proto.RegisterType((*VolumeTailSenderResponse)(nil), "volume_server_pb.VolumeTailSenderResponse")
  1727. proto.RegisterType((*VolumeTailReceiverRequest)(nil), "volume_server_pb.VolumeTailReceiverRequest")
  1728. proto.RegisterType((*VolumeTailReceiverResponse)(nil), "volume_server_pb.VolumeTailReceiverResponse")
  1729. proto.RegisterType((*VolumeEcShardsGenerateRequest)(nil), "volume_server_pb.VolumeEcShardsGenerateRequest")
  1730. proto.RegisterType((*VolumeEcShardsGenerateResponse)(nil), "volume_server_pb.VolumeEcShardsGenerateResponse")
  1731. proto.RegisterType((*VolumeEcShardsRebuildRequest)(nil), "volume_server_pb.VolumeEcShardsRebuildRequest")
  1732. proto.RegisterType((*VolumeEcShardsRebuildResponse)(nil), "volume_server_pb.VolumeEcShardsRebuildResponse")
  1733. proto.RegisterType((*VolumeEcShardsCopyRequest)(nil), "volume_server_pb.VolumeEcShardsCopyRequest")
  1734. proto.RegisterType((*VolumeEcShardsCopyResponse)(nil), "volume_server_pb.VolumeEcShardsCopyResponse")
  1735. proto.RegisterType((*VolumeEcShardsDeleteRequest)(nil), "volume_server_pb.VolumeEcShardsDeleteRequest")
  1736. proto.RegisterType((*VolumeEcShardsDeleteResponse)(nil), "volume_server_pb.VolumeEcShardsDeleteResponse")
  1737. proto.RegisterType((*VolumeEcShardsMountRequest)(nil), "volume_server_pb.VolumeEcShardsMountRequest")
  1738. proto.RegisterType((*VolumeEcShardsMountResponse)(nil), "volume_server_pb.VolumeEcShardsMountResponse")
  1739. proto.RegisterType((*VolumeEcShardsUnmountRequest)(nil), "volume_server_pb.VolumeEcShardsUnmountRequest")
  1740. proto.RegisterType((*VolumeEcShardsUnmountResponse)(nil), "volume_server_pb.VolumeEcShardsUnmountResponse")
  1741. proto.RegisterType((*VolumeEcShardReadRequest)(nil), "volume_server_pb.VolumeEcShardReadRequest")
  1742. proto.RegisterType((*VolumeEcShardReadResponse)(nil), "volume_server_pb.VolumeEcShardReadResponse")
  1743. proto.RegisterType((*VolumeEcBlobDeleteRequest)(nil), "volume_server_pb.VolumeEcBlobDeleteRequest")
  1744. proto.RegisterType((*VolumeEcBlobDeleteResponse)(nil), "volume_server_pb.VolumeEcBlobDeleteResponse")
  1745. proto.RegisterType((*VolumeEcShardsToVolumeRequest)(nil), "volume_server_pb.VolumeEcShardsToVolumeRequest")
  1746. proto.RegisterType((*VolumeEcShardsToVolumeResponse)(nil), "volume_server_pb.VolumeEcShardsToVolumeResponse")
  1747. proto.RegisterType((*ReadVolumeFileStatusRequest)(nil), "volume_server_pb.ReadVolumeFileStatusRequest")
  1748. proto.RegisterType((*ReadVolumeFileStatusResponse)(nil), "volume_server_pb.ReadVolumeFileStatusResponse")
  1749. proto.RegisterType((*DiskStatus)(nil), "volume_server_pb.DiskStatus")
  1750. proto.RegisterType((*MemStatus)(nil), "volume_server_pb.MemStatus")
  1751. proto.RegisterType((*RemoteFile)(nil), "volume_server_pb.RemoteFile")
  1752. proto.RegisterType((*VolumeTierInfo)(nil), "volume_server_pb.VolumeTierInfo")
  1753. proto.RegisterType((*VolumeTierMoveDatToRemoteRequest)(nil), "volume_server_pb.VolumeTierMoveDatToRemoteRequest")
  1754. proto.RegisterType((*VolumeTierMoveDatToRemoteResponse)(nil), "volume_server_pb.VolumeTierMoveDatToRemoteResponse")
  1755. proto.RegisterType((*VolumeTierMoveDatFromRemoteRequest)(nil), "volume_server_pb.VolumeTierMoveDatFromRemoteRequest")
  1756. proto.RegisterType((*VolumeTierMoveDatFromRemoteResponse)(nil), "volume_server_pb.VolumeTierMoveDatFromRemoteResponse")
  1757. proto.RegisterType((*QueryRequest)(nil), "volume_server_pb.QueryRequest")
  1758. proto.RegisterType((*QueryRequest_Filter)(nil), "volume_server_pb.QueryRequest.Filter")
  1759. proto.RegisterType((*QueryRequest_InputSerialization)(nil), "volume_server_pb.QueryRequest.InputSerialization")
  1760. proto.RegisterType((*QueryRequest_InputSerialization_CSVInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.CSVInput")
  1761. proto.RegisterType((*QueryRequest_InputSerialization_JSONInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.JSONInput")
  1762. proto.RegisterType((*QueryRequest_InputSerialization_ParquetInput)(nil), "volume_server_pb.QueryRequest.InputSerialization.ParquetInput")
  1763. proto.RegisterType((*QueryRequest_OutputSerialization)(nil), "volume_server_pb.QueryRequest.OutputSerialization")
  1764. proto.RegisterType((*QueryRequest_OutputSerialization_CSVOutput)(nil), "volume_server_pb.QueryRequest.OutputSerialization.CSVOutput")
  1765. proto.RegisterType((*QueryRequest_OutputSerialization_JSONOutput)(nil), "volume_server_pb.QueryRequest.OutputSerialization.JSONOutput")
  1766. proto.RegisterType((*QueriedStripe)(nil), "volume_server_pb.QueriedStripe")
  1767. }
  1768. // Reference imports to suppress errors if they are not otherwise used.
  1769. var _ context.Context
  1770. var _ grpc.ClientConn
  1771. // This is a compile-time assertion to ensure that this generated file
  1772. // is compatible with the grpc package it is being compiled against.
  1773. const _ = grpc.SupportPackageIsVersion4
  1774. // Client API for VolumeServer service
  1775. type VolumeServerClient interface {
  1776. // Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  1777. BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error)
  1778. VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error)
  1779. VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error)
  1780. VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error)
  1781. VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error)
  1782. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  1783. AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error)
  1784. VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error)
  1785. VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error)
  1786. VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error)
  1787. VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error)
  1788. VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error)
  1789. VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error)
  1790. // copy the .idx .dat files, and mount this volume
  1791. VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error)
  1792. ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error)
  1793. CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error)
  1794. VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error)
  1795. VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error)
  1796. // erasure coding
  1797. VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error)
  1798. VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error)
  1799. VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error)
  1800. VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error)
  1801. VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error)
  1802. VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error)
  1803. VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error)
  1804. VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error)
  1805. VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error)
  1806. // tiered storage
  1807. VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error)
  1808. VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error)
  1809. // query
  1810. Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error)
  1811. }
  1812. type volumeServerClient struct {
  1813. cc *grpc.ClientConn
  1814. }
  1815. func NewVolumeServerClient(cc *grpc.ClientConn) VolumeServerClient {
  1816. return &volumeServerClient{cc}
  1817. }
  1818. func (c *volumeServerClient) BatchDelete(ctx context.Context, in *BatchDeleteRequest, opts ...grpc.CallOption) (*BatchDeleteResponse, error) {
  1819. out := new(BatchDeleteResponse)
  1820. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/BatchDelete", in, out, c.cc, opts...)
  1821. if err != nil {
  1822. return nil, err
  1823. }
  1824. return out, nil
  1825. }
  1826. func (c *volumeServerClient) VacuumVolumeCheck(ctx context.Context, in *VacuumVolumeCheckRequest, opts ...grpc.CallOption) (*VacuumVolumeCheckResponse, error) {
  1827. out := new(VacuumVolumeCheckResponse)
  1828. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCheck", in, out, c.cc, opts...)
  1829. if err != nil {
  1830. return nil, err
  1831. }
  1832. return out, nil
  1833. }
  1834. func (c *volumeServerClient) VacuumVolumeCompact(ctx context.Context, in *VacuumVolumeCompactRequest, opts ...grpc.CallOption) (*VacuumVolumeCompactResponse, error) {
  1835. out := new(VacuumVolumeCompactResponse)
  1836. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCompact", in, out, c.cc, opts...)
  1837. if err != nil {
  1838. return nil, err
  1839. }
  1840. return out, nil
  1841. }
  1842. func (c *volumeServerClient) VacuumVolumeCommit(ctx context.Context, in *VacuumVolumeCommitRequest, opts ...grpc.CallOption) (*VacuumVolumeCommitResponse, error) {
  1843. out := new(VacuumVolumeCommitResponse)
  1844. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCommit", in, out, c.cc, opts...)
  1845. if err != nil {
  1846. return nil, err
  1847. }
  1848. return out, nil
  1849. }
  1850. func (c *volumeServerClient) VacuumVolumeCleanup(ctx context.Context, in *VacuumVolumeCleanupRequest, opts ...grpc.CallOption) (*VacuumVolumeCleanupResponse, error) {
  1851. out := new(VacuumVolumeCleanupResponse)
  1852. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VacuumVolumeCleanup", in, out, c.cc, opts...)
  1853. if err != nil {
  1854. return nil, err
  1855. }
  1856. return out, nil
  1857. }
  1858. func (c *volumeServerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  1859. out := new(DeleteCollectionResponse)
  1860. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/DeleteCollection", in, out, c.cc, opts...)
  1861. if err != nil {
  1862. return nil, err
  1863. }
  1864. return out, nil
  1865. }
  1866. func (c *volumeServerClient) AllocateVolume(ctx context.Context, in *AllocateVolumeRequest, opts ...grpc.CallOption) (*AllocateVolumeResponse, error) {
  1867. out := new(AllocateVolumeResponse)
  1868. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/AllocateVolume", in, out, c.cc, opts...)
  1869. if err != nil {
  1870. return nil, err
  1871. }
  1872. return out, nil
  1873. }
  1874. func (c *volumeServerClient) VolumeSyncStatus(ctx context.Context, in *VolumeSyncStatusRequest, opts ...grpc.CallOption) (*VolumeSyncStatusResponse, error) {
  1875. out := new(VolumeSyncStatusResponse)
  1876. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeSyncStatus", in, out, c.cc, opts...)
  1877. if err != nil {
  1878. return nil, err
  1879. }
  1880. return out, nil
  1881. }
  1882. func (c *volumeServerClient) VolumeIncrementalCopy(ctx context.Context, in *VolumeIncrementalCopyRequest, opts ...grpc.CallOption) (VolumeServer_VolumeIncrementalCopyClient, error) {
  1883. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[0], c.cc, "/volume_server_pb.VolumeServer/VolumeIncrementalCopy", opts...)
  1884. if err != nil {
  1885. return nil, err
  1886. }
  1887. x := &volumeServerVolumeIncrementalCopyClient{stream}
  1888. if err := x.ClientStream.SendMsg(in); err != nil {
  1889. return nil, err
  1890. }
  1891. if err := x.ClientStream.CloseSend(); err != nil {
  1892. return nil, err
  1893. }
  1894. return x, nil
  1895. }
  1896. type VolumeServer_VolumeIncrementalCopyClient interface {
  1897. Recv() (*VolumeIncrementalCopyResponse, error)
  1898. grpc.ClientStream
  1899. }
  1900. type volumeServerVolumeIncrementalCopyClient struct {
  1901. grpc.ClientStream
  1902. }
  1903. func (x *volumeServerVolumeIncrementalCopyClient) Recv() (*VolumeIncrementalCopyResponse, error) {
  1904. m := new(VolumeIncrementalCopyResponse)
  1905. if err := x.ClientStream.RecvMsg(m); err != nil {
  1906. return nil, err
  1907. }
  1908. return m, nil
  1909. }
  1910. func (c *volumeServerClient) VolumeMount(ctx context.Context, in *VolumeMountRequest, opts ...grpc.CallOption) (*VolumeMountResponse, error) {
  1911. out := new(VolumeMountResponse)
  1912. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMount", in, out, c.cc, opts...)
  1913. if err != nil {
  1914. return nil, err
  1915. }
  1916. return out, nil
  1917. }
  1918. func (c *volumeServerClient) VolumeUnmount(ctx context.Context, in *VolumeUnmountRequest, opts ...grpc.CallOption) (*VolumeUnmountResponse, error) {
  1919. out := new(VolumeUnmountResponse)
  1920. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeUnmount", in, out, c.cc, opts...)
  1921. if err != nil {
  1922. return nil, err
  1923. }
  1924. return out, nil
  1925. }
  1926. func (c *volumeServerClient) VolumeDelete(ctx context.Context, in *VolumeDeleteRequest, opts ...grpc.CallOption) (*VolumeDeleteResponse, error) {
  1927. out := new(VolumeDeleteResponse)
  1928. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeDelete", in, out, c.cc, opts...)
  1929. if err != nil {
  1930. return nil, err
  1931. }
  1932. return out, nil
  1933. }
  1934. func (c *volumeServerClient) VolumeMarkReadonly(ctx context.Context, in *VolumeMarkReadonlyRequest, opts ...grpc.CallOption) (*VolumeMarkReadonlyResponse, error) {
  1935. out := new(VolumeMarkReadonlyResponse)
  1936. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeMarkReadonly", in, out, c.cc, opts...)
  1937. if err != nil {
  1938. return nil, err
  1939. }
  1940. return out, nil
  1941. }
  1942. func (c *volumeServerClient) VolumeCopy(ctx context.Context, in *VolumeCopyRequest, opts ...grpc.CallOption) (*VolumeCopyResponse, error) {
  1943. out := new(VolumeCopyResponse)
  1944. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeCopy", in, out, c.cc, opts...)
  1945. if err != nil {
  1946. return nil, err
  1947. }
  1948. return out, nil
  1949. }
  1950. func (c *volumeServerClient) ReadVolumeFileStatus(ctx context.Context, in *ReadVolumeFileStatusRequest, opts ...grpc.CallOption) (*ReadVolumeFileStatusResponse, error) {
  1951. out := new(ReadVolumeFileStatusResponse)
  1952. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/ReadVolumeFileStatus", in, out, c.cc, opts...)
  1953. if err != nil {
  1954. return nil, err
  1955. }
  1956. return out, nil
  1957. }
  1958. func (c *volumeServerClient) CopyFile(ctx context.Context, in *CopyFileRequest, opts ...grpc.CallOption) (VolumeServer_CopyFileClient, error) {
  1959. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[1], c.cc, "/volume_server_pb.VolumeServer/CopyFile", opts...)
  1960. if err != nil {
  1961. return nil, err
  1962. }
  1963. x := &volumeServerCopyFileClient{stream}
  1964. if err := x.ClientStream.SendMsg(in); err != nil {
  1965. return nil, err
  1966. }
  1967. if err := x.ClientStream.CloseSend(); err != nil {
  1968. return nil, err
  1969. }
  1970. return x, nil
  1971. }
  1972. type VolumeServer_CopyFileClient interface {
  1973. Recv() (*CopyFileResponse, error)
  1974. grpc.ClientStream
  1975. }
  1976. type volumeServerCopyFileClient struct {
  1977. grpc.ClientStream
  1978. }
  1979. func (x *volumeServerCopyFileClient) Recv() (*CopyFileResponse, error) {
  1980. m := new(CopyFileResponse)
  1981. if err := x.ClientStream.RecvMsg(m); err != nil {
  1982. return nil, err
  1983. }
  1984. return m, nil
  1985. }
  1986. func (c *volumeServerClient) VolumeTailSender(ctx context.Context, in *VolumeTailSenderRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTailSenderClient, error) {
  1987. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[2], c.cc, "/volume_server_pb.VolumeServer/VolumeTailSender", opts...)
  1988. if err != nil {
  1989. return nil, err
  1990. }
  1991. x := &volumeServerVolumeTailSenderClient{stream}
  1992. if err := x.ClientStream.SendMsg(in); err != nil {
  1993. return nil, err
  1994. }
  1995. if err := x.ClientStream.CloseSend(); err != nil {
  1996. return nil, err
  1997. }
  1998. return x, nil
  1999. }
  2000. type VolumeServer_VolumeTailSenderClient interface {
  2001. Recv() (*VolumeTailSenderResponse, error)
  2002. grpc.ClientStream
  2003. }
  2004. type volumeServerVolumeTailSenderClient struct {
  2005. grpc.ClientStream
  2006. }
  2007. func (x *volumeServerVolumeTailSenderClient) Recv() (*VolumeTailSenderResponse, error) {
  2008. m := new(VolumeTailSenderResponse)
  2009. if err := x.ClientStream.RecvMsg(m); err != nil {
  2010. return nil, err
  2011. }
  2012. return m, nil
  2013. }
  2014. func (c *volumeServerClient) VolumeTailReceiver(ctx context.Context, in *VolumeTailReceiverRequest, opts ...grpc.CallOption) (*VolumeTailReceiverResponse, error) {
  2015. out := new(VolumeTailReceiverResponse)
  2016. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeTailReceiver", in, out, c.cc, opts...)
  2017. if err != nil {
  2018. return nil, err
  2019. }
  2020. return out, nil
  2021. }
  2022. func (c *volumeServerClient) VolumeEcShardsGenerate(ctx context.Context, in *VolumeEcShardsGenerateRequest, opts ...grpc.CallOption) (*VolumeEcShardsGenerateResponse, error) {
  2023. out := new(VolumeEcShardsGenerateResponse)
  2024. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate", in, out, c.cc, opts...)
  2025. if err != nil {
  2026. return nil, err
  2027. }
  2028. return out, nil
  2029. }
  2030. func (c *volumeServerClient) VolumeEcShardsRebuild(ctx context.Context, in *VolumeEcShardsRebuildRequest, opts ...grpc.CallOption) (*VolumeEcShardsRebuildResponse, error) {
  2031. out := new(VolumeEcShardsRebuildResponse)
  2032. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild", in, out, c.cc, opts...)
  2033. if err != nil {
  2034. return nil, err
  2035. }
  2036. return out, nil
  2037. }
  2038. func (c *volumeServerClient) VolumeEcShardsCopy(ctx context.Context, in *VolumeEcShardsCopyRequest, opts ...grpc.CallOption) (*VolumeEcShardsCopyResponse, error) {
  2039. out := new(VolumeEcShardsCopyResponse)
  2040. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsCopy", in, out, c.cc, opts...)
  2041. if err != nil {
  2042. return nil, err
  2043. }
  2044. return out, nil
  2045. }
  2046. func (c *volumeServerClient) VolumeEcShardsDelete(ctx context.Context, in *VolumeEcShardsDeleteRequest, opts ...grpc.CallOption) (*VolumeEcShardsDeleteResponse, error) {
  2047. out := new(VolumeEcShardsDeleteResponse)
  2048. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsDelete", in, out, c.cc, opts...)
  2049. if err != nil {
  2050. return nil, err
  2051. }
  2052. return out, nil
  2053. }
  2054. func (c *volumeServerClient) VolumeEcShardsMount(ctx context.Context, in *VolumeEcShardsMountRequest, opts ...grpc.CallOption) (*VolumeEcShardsMountResponse, error) {
  2055. out := new(VolumeEcShardsMountResponse)
  2056. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsMount", in, out, c.cc, opts...)
  2057. if err != nil {
  2058. return nil, err
  2059. }
  2060. return out, nil
  2061. }
  2062. func (c *volumeServerClient) VolumeEcShardsUnmount(ctx context.Context, in *VolumeEcShardsUnmountRequest, opts ...grpc.CallOption) (*VolumeEcShardsUnmountResponse, error) {
  2063. out := new(VolumeEcShardsUnmountResponse)
  2064. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount", in, out, c.cc, opts...)
  2065. if err != nil {
  2066. return nil, err
  2067. }
  2068. return out, nil
  2069. }
  2070. func (c *volumeServerClient) VolumeEcShardRead(ctx context.Context, in *VolumeEcShardReadRequest, opts ...grpc.CallOption) (VolumeServer_VolumeEcShardReadClient, error) {
  2071. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[3], c.cc, "/volume_server_pb.VolumeServer/VolumeEcShardRead", opts...)
  2072. if err != nil {
  2073. return nil, err
  2074. }
  2075. x := &volumeServerVolumeEcShardReadClient{stream}
  2076. if err := x.ClientStream.SendMsg(in); err != nil {
  2077. return nil, err
  2078. }
  2079. if err := x.ClientStream.CloseSend(); err != nil {
  2080. return nil, err
  2081. }
  2082. return x, nil
  2083. }
  2084. type VolumeServer_VolumeEcShardReadClient interface {
  2085. Recv() (*VolumeEcShardReadResponse, error)
  2086. grpc.ClientStream
  2087. }
  2088. type volumeServerVolumeEcShardReadClient struct {
  2089. grpc.ClientStream
  2090. }
  2091. func (x *volumeServerVolumeEcShardReadClient) Recv() (*VolumeEcShardReadResponse, error) {
  2092. m := new(VolumeEcShardReadResponse)
  2093. if err := x.ClientStream.RecvMsg(m); err != nil {
  2094. return nil, err
  2095. }
  2096. return m, nil
  2097. }
  2098. func (c *volumeServerClient) VolumeEcBlobDelete(ctx context.Context, in *VolumeEcBlobDeleteRequest, opts ...grpc.CallOption) (*VolumeEcBlobDeleteResponse, error) {
  2099. out := new(VolumeEcBlobDeleteResponse)
  2100. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcBlobDelete", in, out, c.cc, opts...)
  2101. if err != nil {
  2102. return nil, err
  2103. }
  2104. return out, nil
  2105. }
  2106. func (c *volumeServerClient) VolumeEcShardsToVolume(ctx context.Context, in *VolumeEcShardsToVolumeRequest, opts ...grpc.CallOption) (*VolumeEcShardsToVolumeResponse, error) {
  2107. out := new(VolumeEcShardsToVolumeResponse)
  2108. err := grpc.Invoke(ctx, "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume", in, out, c.cc, opts...)
  2109. if err != nil {
  2110. return nil, err
  2111. }
  2112. return out, nil
  2113. }
  2114. func (c *volumeServerClient) VolumeTierMoveDatToRemote(ctx context.Context, in *VolumeTierMoveDatToRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatToRemoteClient, error) {
  2115. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[4], c.cc, "/volume_server_pb.VolumeServer/VolumeTierMoveDatToRemote", opts...)
  2116. if err != nil {
  2117. return nil, err
  2118. }
  2119. x := &volumeServerVolumeTierMoveDatToRemoteClient{stream}
  2120. if err := x.ClientStream.SendMsg(in); err != nil {
  2121. return nil, err
  2122. }
  2123. if err := x.ClientStream.CloseSend(); err != nil {
  2124. return nil, err
  2125. }
  2126. return x, nil
  2127. }
  2128. type VolumeServer_VolumeTierMoveDatToRemoteClient interface {
  2129. Recv() (*VolumeTierMoveDatToRemoteResponse, error)
  2130. grpc.ClientStream
  2131. }
  2132. type volumeServerVolumeTierMoveDatToRemoteClient struct {
  2133. grpc.ClientStream
  2134. }
  2135. func (x *volumeServerVolumeTierMoveDatToRemoteClient) Recv() (*VolumeTierMoveDatToRemoteResponse, error) {
  2136. m := new(VolumeTierMoveDatToRemoteResponse)
  2137. if err := x.ClientStream.RecvMsg(m); err != nil {
  2138. return nil, err
  2139. }
  2140. return m, nil
  2141. }
  2142. func (c *volumeServerClient) VolumeTierMoveDatFromRemote(ctx context.Context, in *VolumeTierMoveDatFromRemoteRequest, opts ...grpc.CallOption) (VolumeServer_VolumeTierMoveDatFromRemoteClient, error) {
  2143. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[5], c.cc, "/volume_server_pb.VolumeServer/VolumeTierMoveDatFromRemote", opts...)
  2144. if err != nil {
  2145. return nil, err
  2146. }
  2147. x := &volumeServerVolumeTierMoveDatFromRemoteClient{stream}
  2148. if err := x.ClientStream.SendMsg(in); err != nil {
  2149. return nil, err
  2150. }
  2151. if err := x.ClientStream.CloseSend(); err != nil {
  2152. return nil, err
  2153. }
  2154. return x, nil
  2155. }
  2156. type VolumeServer_VolumeTierMoveDatFromRemoteClient interface {
  2157. Recv() (*VolumeTierMoveDatFromRemoteResponse, error)
  2158. grpc.ClientStream
  2159. }
  2160. type volumeServerVolumeTierMoveDatFromRemoteClient struct {
  2161. grpc.ClientStream
  2162. }
  2163. func (x *volumeServerVolumeTierMoveDatFromRemoteClient) Recv() (*VolumeTierMoveDatFromRemoteResponse, error) {
  2164. m := new(VolumeTierMoveDatFromRemoteResponse)
  2165. if err := x.ClientStream.RecvMsg(m); err != nil {
  2166. return nil, err
  2167. }
  2168. return m, nil
  2169. }
  2170. func (c *volumeServerClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (VolumeServer_QueryClient, error) {
  2171. stream, err := grpc.NewClientStream(ctx, &_VolumeServer_serviceDesc.Streams[6], c.cc, "/volume_server_pb.VolumeServer/Query", opts...)
  2172. if err != nil {
  2173. return nil, err
  2174. }
  2175. x := &volumeServerQueryClient{stream}
  2176. if err := x.ClientStream.SendMsg(in); err != nil {
  2177. return nil, err
  2178. }
  2179. if err := x.ClientStream.CloseSend(); err != nil {
  2180. return nil, err
  2181. }
  2182. return x, nil
  2183. }
  2184. type VolumeServer_QueryClient interface {
  2185. Recv() (*QueriedStripe, error)
  2186. grpc.ClientStream
  2187. }
  2188. type volumeServerQueryClient struct {
  2189. grpc.ClientStream
  2190. }
  2191. func (x *volumeServerQueryClient) Recv() (*QueriedStripe, error) {
  2192. m := new(QueriedStripe)
  2193. if err := x.ClientStream.RecvMsg(m); err != nil {
  2194. return nil, err
  2195. }
  2196. return m, nil
  2197. }
  2198. // Server API for VolumeServer service
  2199. type VolumeServerServer interface {
  2200. // Experts only: takes multiple fid parameters. This function does not propagate deletes to replicas.
  2201. BatchDelete(context.Context, *BatchDeleteRequest) (*BatchDeleteResponse, error)
  2202. VacuumVolumeCheck(context.Context, *VacuumVolumeCheckRequest) (*VacuumVolumeCheckResponse, error)
  2203. VacuumVolumeCompact(context.Context, *VacuumVolumeCompactRequest) (*VacuumVolumeCompactResponse, error)
  2204. VacuumVolumeCommit(context.Context, *VacuumVolumeCommitRequest) (*VacuumVolumeCommitResponse, error)
  2205. VacuumVolumeCleanup(context.Context, *VacuumVolumeCleanupRequest) (*VacuumVolumeCleanupResponse, error)
  2206. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  2207. AllocateVolume(context.Context, *AllocateVolumeRequest) (*AllocateVolumeResponse, error)
  2208. VolumeSyncStatus(context.Context, *VolumeSyncStatusRequest) (*VolumeSyncStatusResponse, error)
  2209. VolumeIncrementalCopy(*VolumeIncrementalCopyRequest, VolumeServer_VolumeIncrementalCopyServer) error
  2210. VolumeMount(context.Context, *VolumeMountRequest) (*VolumeMountResponse, error)
  2211. VolumeUnmount(context.Context, *VolumeUnmountRequest) (*VolumeUnmountResponse, error)
  2212. VolumeDelete(context.Context, *VolumeDeleteRequest) (*VolumeDeleteResponse, error)
  2213. VolumeMarkReadonly(context.Context, *VolumeMarkReadonlyRequest) (*VolumeMarkReadonlyResponse, error)
  2214. // copy the .idx .dat files, and mount this volume
  2215. VolumeCopy(context.Context, *VolumeCopyRequest) (*VolumeCopyResponse, error)
  2216. ReadVolumeFileStatus(context.Context, *ReadVolumeFileStatusRequest) (*ReadVolumeFileStatusResponse, error)
  2217. CopyFile(*CopyFileRequest, VolumeServer_CopyFileServer) error
  2218. VolumeTailSender(*VolumeTailSenderRequest, VolumeServer_VolumeTailSenderServer) error
  2219. VolumeTailReceiver(context.Context, *VolumeTailReceiverRequest) (*VolumeTailReceiverResponse, error)
  2220. // erasure coding
  2221. VolumeEcShardsGenerate(context.Context, *VolumeEcShardsGenerateRequest) (*VolumeEcShardsGenerateResponse, error)
  2222. VolumeEcShardsRebuild(context.Context, *VolumeEcShardsRebuildRequest) (*VolumeEcShardsRebuildResponse, error)
  2223. VolumeEcShardsCopy(context.Context, *VolumeEcShardsCopyRequest) (*VolumeEcShardsCopyResponse, error)
  2224. VolumeEcShardsDelete(context.Context, *VolumeEcShardsDeleteRequest) (*VolumeEcShardsDeleteResponse, error)
  2225. VolumeEcShardsMount(context.Context, *VolumeEcShardsMountRequest) (*VolumeEcShardsMountResponse, error)
  2226. VolumeEcShardsUnmount(context.Context, *VolumeEcShardsUnmountRequest) (*VolumeEcShardsUnmountResponse, error)
  2227. VolumeEcShardRead(*VolumeEcShardReadRequest, VolumeServer_VolumeEcShardReadServer) error
  2228. VolumeEcBlobDelete(context.Context, *VolumeEcBlobDeleteRequest) (*VolumeEcBlobDeleteResponse, error)
  2229. VolumeEcShardsToVolume(context.Context, *VolumeEcShardsToVolumeRequest) (*VolumeEcShardsToVolumeResponse, error)
  2230. // tiered storage
  2231. VolumeTierMoveDatToRemote(*VolumeTierMoveDatToRemoteRequest, VolumeServer_VolumeTierMoveDatToRemoteServer) error
  2232. VolumeTierMoveDatFromRemote(*VolumeTierMoveDatFromRemoteRequest, VolumeServer_VolumeTierMoveDatFromRemoteServer) error
  2233. // query
  2234. Query(*QueryRequest, VolumeServer_QueryServer) error
  2235. }
  2236. func RegisterVolumeServerServer(s *grpc.Server, srv VolumeServerServer) {
  2237. s.RegisterService(&_VolumeServer_serviceDesc, srv)
  2238. }
  2239. func _VolumeServer_BatchDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2240. in := new(BatchDeleteRequest)
  2241. if err := dec(in); err != nil {
  2242. return nil, err
  2243. }
  2244. if interceptor == nil {
  2245. return srv.(VolumeServerServer).BatchDelete(ctx, in)
  2246. }
  2247. info := &grpc.UnaryServerInfo{
  2248. Server: srv,
  2249. FullMethod: "/volume_server_pb.VolumeServer/BatchDelete",
  2250. }
  2251. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2252. return srv.(VolumeServerServer).BatchDelete(ctx, req.(*BatchDeleteRequest))
  2253. }
  2254. return interceptor(ctx, in, info, handler)
  2255. }
  2256. func _VolumeServer_VacuumVolumeCheck_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2257. in := new(VacuumVolumeCheckRequest)
  2258. if err := dec(in); err != nil {
  2259. return nil, err
  2260. }
  2261. if interceptor == nil {
  2262. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, in)
  2263. }
  2264. info := &grpc.UnaryServerInfo{
  2265. Server: srv,
  2266. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCheck",
  2267. }
  2268. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2269. return srv.(VolumeServerServer).VacuumVolumeCheck(ctx, req.(*VacuumVolumeCheckRequest))
  2270. }
  2271. return interceptor(ctx, in, info, handler)
  2272. }
  2273. func _VolumeServer_VacuumVolumeCompact_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2274. in := new(VacuumVolumeCompactRequest)
  2275. if err := dec(in); err != nil {
  2276. return nil, err
  2277. }
  2278. if interceptor == nil {
  2279. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, in)
  2280. }
  2281. info := &grpc.UnaryServerInfo{
  2282. Server: srv,
  2283. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCompact",
  2284. }
  2285. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2286. return srv.(VolumeServerServer).VacuumVolumeCompact(ctx, req.(*VacuumVolumeCompactRequest))
  2287. }
  2288. return interceptor(ctx, in, info, handler)
  2289. }
  2290. func _VolumeServer_VacuumVolumeCommit_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2291. in := new(VacuumVolumeCommitRequest)
  2292. if err := dec(in); err != nil {
  2293. return nil, err
  2294. }
  2295. if interceptor == nil {
  2296. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, in)
  2297. }
  2298. info := &grpc.UnaryServerInfo{
  2299. Server: srv,
  2300. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCommit",
  2301. }
  2302. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2303. return srv.(VolumeServerServer).VacuumVolumeCommit(ctx, req.(*VacuumVolumeCommitRequest))
  2304. }
  2305. return interceptor(ctx, in, info, handler)
  2306. }
  2307. func _VolumeServer_VacuumVolumeCleanup_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2308. in := new(VacuumVolumeCleanupRequest)
  2309. if err := dec(in); err != nil {
  2310. return nil, err
  2311. }
  2312. if interceptor == nil {
  2313. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, in)
  2314. }
  2315. info := &grpc.UnaryServerInfo{
  2316. Server: srv,
  2317. FullMethod: "/volume_server_pb.VolumeServer/VacuumVolumeCleanup",
  2318. }
  2319. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2320. return srv.(VolumeServerServer).VacuumVolumeCleanup(ctx, req.(*VacuumVolumeCleanupRequest))
  2321. }
  2322. return interceptor(ctx, in, info, handler)
  2323. }
  2324. func _VolumeServer_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2325. in := new(DeleteCollectionRequest)
  2326. if err := dec(in); err != nil {
  2327. return nil, err
  2328. }
  2329. if interceptor == nil {
  2330. return srv.(VolumeServerServer).DeleteCollection(ctx, in)
  2331. }
  2332. info := &grpc.UnaryServerInfo{
  2333. Server: srv,
  2334. FullMethod: "/volume_server_pb.VolumeServer/DeleteCollection",
  2335. }
  2336. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2337. return srv.(VolumeServerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  2338. }
  2339. return interceptor(ctx, in, info, handler)
  2340. }
  2341. func _VolumeServer_AllocateVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2342. in := new(AllocateVolumeRequest)
  2343. if err := dec(in); err != nil {
  2344. return nil, err
  2345. }
  2346. if interceptor == nil {
  2347. return srv.(VolumeServerServer).AllocateVolume(ctx, in)
  2348. }
  2349. info := &grpc.UnaryServerInfo{
  2350. Server: srv,
  2351. FullMethod: "/volume_server_pb.VolumeServer/AllocateVolume",
  2352. }
  2353. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2354. return srv.(VolumeServerServer).AllocateVolume(ctx, req.(*AllocateVolumeRequest))
  2355. }
  2356. return interceptor(ctx, in, info, handler)
  2357. }
  2358. func _VolumeServer_VolumeSyncStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2359. in := new(VolumeSyncStatusRequest)
  2360. if err := dec(in); err != nil {
  2361. return nil, err
  2362. }
  2363. if interceptor == nil {
  2364. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, in)
  2365. }
  2366. info := &grpc.UnaryServerInfo{
  2367. Server: srv,
  2368. FullMethod: "/volume_server_pb.VolumeServer/VolumeSyncStatus",
  2369. }
  2370. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2371. return srv.(VolumeServerServer).VolumeSyncStatus(ctx, req.(*VolumeSyncStatusRequest))
  2372. }
  2373. return interceptor(ctx, in, info, handler)
  2374. }
  2375. func _VolumeServer_VolumeIncrementalCopy_Handler(srv interface{}, stream grpc.ServerStream) error {
  2376. m := new(VolumeIncrementalCopyRequest)
  2377. if err := stream.RecvMsg(m); err != nil {
  2378. return err
  2379. }
  2380. return srv.(VolumeServerServer).VolumeIncrementalCopy(m, &volumeServerVolumeIncrementalCopyServer{stream})
  2381. }
  2382. type VolumeServer_VolumeIncrementalCopyServer interface {
  2383. Send(*VolumeIncrementalCopyResponse) error
  2384. grpc.ServerStream
  2385. }
  2386. type volumeServerVolumeIncrementalCopyServer struct {
  2387. grpc.ServerStream
  2388. }
  2389. func (x *volumeServerVolumeIncrementalCopyServer) Send(m *VolumeIncrementalCopyResponse) error {
  2390. return x.ServerStream.SendMsg(m)
  2391. }
  2392. func _VolumeServer_VolumeMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2393. in := new(VolumeMountRequest)
  2394. if err := dec(in); err != nil {
  2395. return nil, err
  2396. }
  2397. if interceptor == nil {
  2398. return srv.(VolumeServerServer).VolumeMount(ctx, in)
  2399. }
  2400. info := &grpc.UnaryServerInfo{
  2401. Server: srv,
  2402. FullMethod: "/volume_server_pb.VolumeServer/VolumeMount",
  2403. }
  2404. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2405. return srv.(VolumeServerServer).VolumeMount(ctx, req.(*VolumeMountRequest))
  2406. }
  2407. return interceptor(ctx, in, info, handler)
  2408. }
  2409. func _VolumeServer_VolumeUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2410. in := new(VolumeUnmountRequest)
  2411. if err := dec(in); err != nil {
  2412. return nil, err
  2413. }
  2414. if interceptor == nil {
  2415. return srv.(VolumeServerServer).VolumeUnmount(ctx, in)
  2416. }
  2417. info := &grpc.UnaryServerInfo{
  2418. Server: srv,
  2419. FullMethod: "/volume_server_pb.VolumeServer/VolumeUnmount",
  2420. }
  2421. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2422. return srv.(VolumeServerServer).VolumeUnmount(ctx, req.(*VolumeUnmountRequest))
  2423. }
  2424. return interceptor(ctx, in, info, handler)
  2425. }
  2426. func _VolumeServer_VolumeDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2427. in := new(VolumeDeleteRequest)
  2428. if err := dec(in); err != nil {
  2429. return nil, err
  2430. }
  2431. if interceptor == nil {
  2432. return srv.(VolumeServerServer).VolumeDelete(ctx, in)
  2433. }
  2434. info := &grpc.UnaryServerInfo{
  2435. Server: srv,
  2436. FullMethod: "/volume_server_pb.VolumeServer/VolumeDelete",
  2437. }
  2438. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2439. return srv.(VolumeServerServer).VolumeDelete(ctx, req.(*VolumeDeleteRequest))
  2440. }
  2441. return interceptor(ctx, in, info, handler)
  2442. }
  2443. func _VolumeServer_VolumeMarkReadonly_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2444. in := new(VolumeMarkReadonlyRequest)
  2445. if err := dec(in); err != nil {
  2446. return nil, err
  2447. }
  2448. if interceptor == nil {
  2449. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, in)
  2450. }
  2451. info := &grpc.UnaryServerInfo{
  2452. Server: srv,
  2453. FullMethod: "/volume_server_pb.VolumeServer/VolumeMarkReadonly",
  2454. }
  2455. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2456. return srv.(VolumeServerServer).VolumeMarkReadonly(ctx, req.(*VolumeMarkReadonlyRequest))
  2457. }
  2458. return interceptor(ctx, in, info, handler)
  2459. }
  2460. func _VolumeServer_VolumeCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2461. in := new(VolumeCopyRequest)
  2462. if err := dec(in); err != nil {
  2463. return nil, err
  2464. }
  2465. if interceptor == nil {
  2466. return srv.(VolumeServerServer).VolumeCopy(ctx, in)
  2467. }
  2468. info := &grpc.UnaryServerInfo{
  2469. Server: srv,
  2470. FullMethod: "/volume_server_pb.VolumeServer/VolumeCopy",
  2471. }
  2472. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2473. return srv.(VolumeServerServer).VolumeCopy(ctx, req.(*VolumeCopyRequest))
  2474. }
  2475. return interceptor(ctx, in, info, handler)
  2476. }
  2477. func _VolumeServer_ReadVolumeFileStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2478. in := new(ReadVolumeFileStatusRequest)
  2479. if err := dec(in); err != nil {
  2480. return nil, err
  2481. }
  2482. if interceptor == nil {
  2483. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, in)
  2484. }
  2485. info := &grpc.UnaryServerInfo{
  2486. Server: srv,
  2487. FullMethod: "/volume_server_pb.VolumeServer/ReadVolumeFileStatus",
  2488. }
  2489. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2490. return srv.(VolumeServerServer).ReadVolumeFileStatus(ctx, req.(*ReadVolumeFileStatusRequest))
  2491. }
  2492. return interceptor(ctx, in, info, handler)
  2493. }
  2494. func _VolumeServer_CopyFile_Handler(srv interface{}, stream grpc.ServerStream) error {
  2495. m := new(CopyFileRequest)
  2496. if err := stream.RecvMsg(m); err != nil {
  2497. return err
  2498. }
  2499. return srv.(VolumeServerServer).CopyFile(m, &volumeServerCopyFileServer{stream})
  2500. }
  2501. type VolumeServer_CopyFileServer interface {
  2502. Send(*CopyFileResponse) error
  2503. grpc.ServerStream
  2504. }
  2505. type volumeServerCopyFileServer struct {
  2506. grpc.ServerStream
  2507. }
  2508. func (x *volumeServerCopyFileServer) Send(m *CopyFileResponse) error {
  2509. return x.ServerStream.SendMsg(m)
  2510. }
  2511. func _VolumeServer_VolumeTailSender_Handler(srv interface{}, stream grpc.ServerStream) error {
  2512. m := new(VolumeTailSenderRequest)
  2513. if err := stream.RecvMsg(m); err != nil {
  2514. return err
  2515. }
  2516. return srv.(VolumeServerServer).VolumeTailSender(m, &volumeServerVolumeTailSenderServer{stream})
  2517. }
  2518. type VolumeServer_VolumeTailSenderServer interface {
  2519. Send(*VolumeTailSenderResponse) error
  2520. grpc.ServerStream
  2521. }
  2522. type volumeServerVolumeTailSenderServer struct {
  2523. grpc.ServerStream
  2524. }
  2525. func (x *volumeServerVolumeTailSenderServer) Send(m *VolumeTailSenderResponse) error {
  2526. return x.ServerStream.SendMsg(m)
  2527. }
  2528. func _VolumeServer_VolumeTailReceiver_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2529. in := new(VolumeTailReceiverRequest)
  2530. if err := dec(in); err != nil {
  2531. return nil, err
  2532. }
  2533. if interceptor == nil {
  2534. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, in)
  2535. }
  2536. info := &grpc.UnaryServerInfo{
  2537. Server: srv,
  2538. FullMethod: "/volume_server_pb.VolumeServer/VolumeTailReceiver",
  2539. }
  2540. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2541. return srv.(VolumeServerServer).VolumeTailReceiver(ctx, req.(*VolumeTailReceiverRequest))
  2542. }
  2543. return interceptor(ctx, in, info, handler)
  2544. }
  2545. func _VolumeServer_VolumeEcShardsGenerate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2546. in := new(VolumeEcShardsGenerateRequest)
  2547. if err := dec(in); err != nil {
  2548. return nil, err
  2549. }
  2550. if interceptor == nil {
  2551. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, in)
  2552. }
  2553. info := &grpc.UnaryServerInfo{
  2554. Server: srv,
  2555. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsGenerate",
  2556. }
  2557. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2558. return srv.(VolumeServerServer).VolumeEcShardsGenerate(ctx, req.(*VolumeEcShardsGenerateRequest))
  2559. }
  2560. return interceptor(ctx, in, info, handler)
  2561. }
  2562. func _VolumeServer_VolumeEcShardsRebuild_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2563. in := new(VolumeEcShardsRebuildRequest)
  2564. if err := dec(in); err != nil {
  2565. return nil, err
  2566. }
  2567. if interceptor == nil {
  2568. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, in)
  2569. }
  2570. info := &grpc.UnaryServerInfo{
  2571. Server: srv,
  2572. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsRebuild",
  2573. }
  2574. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2575. return srv.(VolumeServerServer).VolumeEcShardsRebuild(ctx, req.(*VolumeEcShardsRebuildRequest))
  2576. }
  2577. return interceptor(ctx, in, info, handler)
  2578. }
  2579. func _VolumeServer_VolumeEcShardsCopy_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2580. in := new(VolumeEcShardsCopyRequest)
  2581. if err := dec(in); err != nil {
  2582. return nil, err
  2583. }
  2584. if interceptor == nil {
  2585. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, in)
  2586. }
  2587. info := &grpc.UnaryServerInfo{
  2588. Server: srv,
  2589. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsCopy",
  2590. }
  2591. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2592. return srv.(VolumeServerServer).VolumeEcShardsCopy(ctx, req.(*VolumeEcShardsCopyRequest))
  2593. }
  2594. return interceptor(ctx, in, info, handler)
  2595. }
  2596. func _VolumeServer_VolumeEcShardsDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2597. in := new(VolumeEcShardsDeleteRequest)
  2598. if err := dec(in); err != nil {
  2599. return nil, err
  2600. }
  2601. if interceptor == nil {
  2602. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, in)
  2603. }
  2604. info := &grpc.UnaryServerInfo{
  2605. Server: srv,
  2606. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsDelete",
  2607. }
  2608. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2609. return srv.(VolumeServerServer).VolumeEcShardsDelete(ctx, req.(*VolumeEcShardsDeleteRequest))
  2610. }
  2611. return interceptor(ctx, in, info, handler)
  2612. }
  2613. func _VolumeServer_VolumeEcShardsMount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2614. in := new(VolumeEcShardsMountRequest)
  2615. if err := dec(in); err != nil {
  2616. return nil, err
  2617. }
  2618. if interceptor == nil {
  2619. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, in)
  2620. }
  2621. info := &grpc.UnaryServerInfo{
  2622. Server: srv,
  2623. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsMount",
  2624. }
  2625. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2626. return srv.(VolumeServerServer).VolumeEcShardsMount(ctx, req.(*VolumeEcShardsMountRequest))
  2627. }
  2628. return interceptor(ctx, in, info, handler)
  2629. }
  2630. func _VolumeServer_VolumeEcShardsUnmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2631. in := new(VolumeEcShardsUnmountRequest)
  2632. if err := dec(in); err != nil {
  2633. return nil, err
  2634. }
  2635. if interceptor == nil {
  2636. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, in)
  2637. }
  2638. info := &grpc.UnaryServerInfo{
  2639. Server: srv,
  2640. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsUnmount",
  2641. }
  2642. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2643. return srv.(VolumeServerServer).VolumeEcShardsUnmount(ctx, req.(*VolumeEcShardsUnmountRequest))
  2644. }
  2645. return interceptor(ctx, in, info, handler)
  2646. }
  2647. func _VolumeServer_VolumeEcShardRead_Handler(srv interface{}, stream grpc.ServerStream) error {
  2648. m := new(VolumeEcShardReadRequest)
  2649. if err := stream.RecvMsg(m); err != nil {
  2650. return err
  2651. }
  2652. return srv.(VolumeServerServer).VolumeEcShardRead(m, &volumeServerVolumeEcShardReadServer{stream})
  2653. }
  2654. type VolumeServer_VolumeEcShardReadServer interface {
  2655. Send(*VolumeEcShardReadResponse) error
  2656. grpc.ServerStream
  2657. }
  2658. type volumeServerVolumeEcShardReadServer struct {
  2659. grpc.ServerStream
  2660. }
  2661. func (x *volumeServerVolumeEcShardReadServer) Send(m *VolumeEcShardReadResponse) error {
  2662. return x.ServerStream.SendMsg(m)
  2663. }
  2664. func _VolumeServer_VolumeEcBlobDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2665. in := new(VolumeEcBlobDeleteRequest)
  2666. if err := dec(in); err != nil {
  2667. return nil, err
  2668. }
  2669. if interceptor == nil {
  2670. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, in)
  2671. }
  2672. info := &grpc.UnaryServerInfo{
  2673. Server: srv,
  2674. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcBlobDelete",
  2675. }
  2676. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2677. return srv.(VolumeServerServer).VolumeEcBlobDelete(ctx, req.(*VolumeEcBlobDeleteRequest))
  2678. }
  2679. return interceptor(ctx, in, info, handler)
  2680. }
  2681. func _VolumeServer_VolumeEcShardsToVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2682. in := new(VolumeEcShardsToVolumeRequest)
  2683. if err := dec(in); err != nil {
  2684. return nil, err
  2685. }
  2686. if interceptor == nil {
  2687. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, in)
  2688. }
  2689. info := &grpc.UnaryServerInfo{
  2690. Server: srv,
  2691. FullMethod: "/volume_server_pb.VolumeServer/VolumeEcShardsToVolume",
  2692. }
  2693. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2694. return srv.(VolumeServerServer).VolumeEcShardsToVolume(ctx, req.(*VolumeEcShardsToVolumeRequest))
  2695. }
  2696. return interceptor(ctx, in, info, handler)
  2697. }
  2698. func _VolumeServer_VolumeTierMoveDatToRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  2699. m := new(VolumeTierMoveDatToRemoteRequest)
  2700. if err := stream.RecvMsg(m); err != nil {
  2701. return err
  2702. }
  2703. return srv.(VolumeServerServer).VolumeTierMoveDatToRemote(m, &volumeServerVolumeTierMoveDatToRemoteServer{stream})
  2704. }
  2705. type VolumeServer_VolumeTierMoveDatToRemoteServer interface {
  2706. Send(*VolumeTierMoveDatToRemoteResponse) error
  2707. grpc.ServerStream
  2708. }
  2709. type volumeServerVolumeTierMoveDatToRemoteServer struct {
  2710. grpc.ServerStream
  2711. }
  2712. func (x *volumeServerVolumeTierMoveDatToRemoteServer) Send(m *VolumeTierMoveDatToRemoteResponse) error {
  2713. return x.ServerStream.SendMsg(m)
  2714. }
  2715. func _VolumeServer_VolumeTierMoveDatFromRemote_Handler(srv interface{}, stream grpc.ServerStream) error {
  2716. m := new(VolumeTierMoveDatFromRemoteRequest)
  2717. if err := stream.RecvMsg(m); err != nil {
  2718. return err
  2719. }
  2720. return srv.(VolumeServerServer).VolumeTierMoveDatFromRemote(m, &volumeServerVolumeTierMoveDatFromRemoteServer{stream})
  2721. }
  2722. type VolumeServer_VolumeTierMoveDatFromRemoteServer interface {
  2723. Send(*VolumeTierMoveDatFromRemoteResponse) error
  2724. grpc.ServerStream
  2725. }
  2726. type volumeServerVolumeTierMoveDatFromRemoteServer struct {
  2727. grpc.ServerStream
  2728. }
  2729. func (x *volumeServerVolumeTierMoveDatFromRemoteServer) Send(m *VolumeTierMoveDatFromRemoteResponse) error {
  2730. return x.ServerStream.SendMsg(m)
  2731. }
  2732. func _VolumeServer_Query_Handler(srv interface{}, stream grpc.ServerStream) error {
  2733. m := new(QueryRequest)
  2734. if err := stream.RecvMsg(m); err != nil {
  2735. return err
  2736. }
  2737. return srv.(VolumeServerServer).Query(m, &volumeServerQueryServer{stream})
  2738. }
  2739. type VolumeServer_QueryServer interface {
  2740. Send(*QueriedStripe) error
  2741. grpc.ServerStream
  2742. }
  2743. type volumeServerQueryServer struct {
  2744. grpc.ServerStream
  2745. }
  2746. func (x *volumeServerQueryServer) Send(m *QueriedStripe) error {
  2747. return x.ServerStream.SendMsg(m)
  2748. }
  2749. var _VolumeServer_serviceDesc = grpc.ServiceDesc{
  2750. ServiceName: "volume_server_pb.VolumeServer",
  2751. HandlerType: (*VolumeServerServer)(nil),
  2752. Methods: []grpc.MethodDesc{
  2753. {
  2754. MethodName: "BatchDelete",
  2755. Handler: _VolumeServer_BatchDelete_Handler,
  2756. },
  2757. {
  2758. MethodName: "VacuumVolumeCheck",
  2759. Handler: _VolumeServer_VacuumVolumeCheck_Handler,
  2760. },
  2761. {
  2762. MethodName: "VacuumVolumeCompact",
  2763. Handler: _VolumeServer_VacuumVolumeCompact_Handler,
  2764. },
  2765. {
  2766. MethodName: "VacuumVolumeCommit",
  2767. Handler: _VolumeServer_VacuumVolumeCommit_Handler,
  2768. },
  2769. {
  2770. MethodName: "VacuumVolumeCleanup",
  2771. Handler: _VolumeServer_VacuumVolumeCleanup_Handler,
  2772. },
  2773. {
  2774. MethodName: "DeleteCollection",
  2775. Handler: _VolumeServer_DeleteCollection_Handler,
  2776. },
  2777. {
  2778. MethodName: "AllocateVolume",
  2779. Handler: _VolumeServer_AllocateVolume_Handler,
  2780. },
  2781. {
  2782. MethodName: "VolumeSyncStatus",
  2783. Handler: _VolumeServer_VolumeSyncStatus_Handler,
  2784. },
  2785. {
  2786. MethodName: "VolumeMount",
  2787. Handler: _VolumeServer_VolumeMount_Handler,
  2788. },
  2789. {
  2790. MethodName: "VolumeUnmount",
  2791. Handler: _VolumeServer_VolumeUnmount_Handler,
  2792. },
  2793. {
  2794. MethodName: "VolumeDelete",
  2795. Handler: _VolumeServer_VolumeDelete_Handler,
  2796. },
  2797. {
  2798. MethodName: "VolumeMarkReadonly",
  2799. Handler: _VolumeServer_VolumeMarkReadonly_Handler,
  2800. },
  2801. {
  2802. MethodName: "VolumeCopy",
  2803. Handler: _VolumeServer_VolumeCopy_Handler,
  2804. },
  2805. {
  2806. MethodName: "ReadVolumeFileStatus",
  2807. Handler: _VolumeServer_ReadVolumeFileStatus_Handler,
  2808. },
  2809. {
  2810. MethodName: "VolumeTailReceiver",
  2811. Handler: _VolumeServer_VolumeTailReceiver_Handler,
  2812. },
  2813. {
  2814. MethodName: "VolumeEcShardsGenerate",
  2815. Handler: _VolumeServer_VolumeEcShardsGenerate_Handler,
  2816. },
  2817. {
  2818. MethodName: "VolumeEcShardsRebuild",
  2819. Handler: _VolumeServer_VolumeEcShardsRebuild_Handler,
  2820. },
  2821. {
  2822. MethodName: "VolumeEcShardsCopy",
  2823. Handler: _VolumeServer_VolumeEcShardsCopy_Handler,
  2824. },
  2825. {
  2826. MethodName: "VolumeEcShardsDelete",
  2827. Handler: _VolumeServer_VolumeEcShardsDelete_Handler,
  2828. },
  2829. {
  2830. MethodName: "VolumeEcShardsMount",
  2831. Handler: _VolumeServer_VolumeEcShardsMount_Handler,
  2832. },
  2833. {
  2834. MethodName: "VolumeEcShardsUnmount",
  2835. Handler: _VolumeServer_VolumeEcShardsUnmount_Handler,
  2836. },
  2837. {
  2838. MethodName: "VolumeEcBlobDelete",
  2839. Handler: _VolumeServer_VolumeEcBlobDelete_Handler,
  2840. },
  2841. {
  2842. MethodName: "VolumeEcShardsToVolume",
  2843. Handler: _VolumeServer_VolumeEcShardsToVolume_Handler,
  2844. },
  2845. },
  2846. Streams: []grpc.StreamDesc{
  2847. {
  2848. StreamName: "VolumeIncrementalCopy",
  2849. Handler: _VolumeServer_VolumeIncrementalCopy_Handler,
  2850. ServerStreams: true,
  2851. },
  2852. {
  2853. StreamName: "CopyFile",
  2854. Handler: _VolumeServer_CopyFile_Handler,
  2855. ServerStreams: true,
  2856. },
  2857. {
  2858. StreamName: "VolumeTailSender",
  2859. Handler: _VolumeServer_VolumeTailSender_Handler,
  2860. ServerStreams: true,
  2861. },
  2862. {
  2863. StreamName: "VolumeEcShardRead",
  2864. Handler: _VolumeServer_VolumeEcShardRead_Handler,
  2865. ServerStreams: true,
  2866. },
  2867. {
  2868. StreamName: "VolumeTierMoveDatToRemote",
  2869. Handler: _VolumeServer_VolumeTierMoveDatToRemote_Handler,
  2870. ServerStreams: true,
  2871. },
  2872. {
  2873. StreamName: "VolumeTierMoveDatFromRemote",
  2874. Handler: _VolumeServer_VolumeTierMoveDatFromRemote_Handler,
  2875. ServerStreams: true,
  2876. },
  2877. {
  2878. StreamName: "Query",
  2879. Handler: _VolumeServer_Query_Handler,
  2880. ServerStreams: true,
  2881. },
  2882. },
  2883. Metadata: "volume_server.proto",
  2884. }
  2885. func init() { proto.RegisterFile("volume_server.proto", fileDescriptor0) }
  2886. var fileDescriptor0 = []byte{
  2887. // 2886 bytes of a gzipped FileDescriptorProto
  2888. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x3a, 0x4b, 0x73, 0xdc, 0xc6,
  2889. 0xd1, 0x5c, 0x2e, 0x1f, 0xbb, 0xbd, 0x4b, 0x91, 0x1a, 0xd2, 0xd4, 0x1a, 0xa2, 0x24, 0x1a, 0xf2,
  2890. 0x43, 0x92, 0x2d, 0x4a, 0xa6, 0xed, 0xcf, 0xfe, 0xec, 0xcf, 0xfe, 0x22, 0x51, 0x52, 0xa2, 0xd8,
  2891. 0xa2, 0x6c, 0x50, 0x56, 0x9c, 0xd8, 0x15, 0xd4, 0x10, 0x18, 0x8a, 0x30, 0x01, 0x0c, 0x04, 0xcc,
  2892. 0xd2, 0x5a, 0x55, 0x72, 0x72, 0x0e, 0xb9, 0x24, 0x87, 0x54, 0x2e, 0x39, 0xe7, 0x9e, 0x6b, 0xfe,
  2893. 0x40, 0x0e, 0xfe, 0x03, 0xa9, 0xca, 0x29, 0x97, 0x1c, 0x72, 0xca, 0x21, 0xb7, 0x54, 0xe5, 0x92,
  2894. 0x9a, 0x17, 0x16, 0x4f, 0x2e, 0x68, 0x31, 0x95, 0xca, 0x6d, 0xd0, 0xd3, 0x8f, 0xe9, 0x9e, 0xee,
  2895. 0x9e, 0xe9, 0x69, 0xc0, 0xf2, 0x21, 0xf5, 0x87, 0x01, 0xb1, 0x13, 0x12, 0x1f, 0x92, 0x78, 0x23,
  2896. 0x8a, 0x29, 0xa3, 0x68, 0x29, 0x07, 0xb4, 0xa3, 0x5d, 0xf3, 0x1a, 0xa0, 0x9b, 0x98, 0x39, 0xfb,
  2897. 0xb7, 0x88, 0x4f, 0x18, 0xb1, 0xc8, 0xe3, 0x21, 0x49, 0x18, 0x7a, 0x1e, 0x3a, 0x7b, 0x9e, 0x4f,
  2898. 0x6c, 0xcf, 0x4d, 0x06, 0xad, 0xf5, 0xf6, 0xa5, 0xae, 0x35, 0xcf, 0xbf, 0xef, 0xba, 0x89, 0x79,
  2899. 0x1f, 0x96, 0x73, 0x04, 0x49, 0x44, 0xc3, 0x84, 0xa0, 0x77, 0x60, 0x3e, 0x26, 0xc9, 0xd0, 0x67,
  2900. 0x92, 0xa0, 0xb7, 0x79, 0x7e, 0xa3, 0x28, 0x6b, 0x23, 0x25, 0x19, 0xfa, 0xcc, 0xd2, 0xe8, 0xe6,
  2901. 0xd7, 0x2d, 0xe8, 0x67, 0x67, 0xd0, 0x19, 0x98, 0x57, 0xc2, 0x07, 0xad, 0xf5, 0xd6, 0xa5, 0xae,
  2902. 0x35, 0x27, 0x65, 0xa3, 0x55, 0x98, 0x4b, 0x18, 0x66, 0xc3, 0x64, 0x30, 0xbd, 0xde, 0xba, 0x34,
  2903. 0x6b, 0xa9, 0x2f, 0xb4, 0x02, 0xb3, 0x24, 0x8e, 0x69, 0x3c, 0x68, 0x0b, 0x74, 0xf9, 0x81, 0x10,
  2904. 0xcc, 0x24, 0xde, 0x53, 0x32, 0x98, 0x59, 0x6f, 0x5d, 0x5a, 0xb0, 0xc4, 0x18, 0x0d, 0x60, 0xfe,
  2905. 0x90, 0xc4, 0x89, 0x47, 0xc3, 0xc1, 0xac, 0x00, 0xeb, 0x4f, 0x73, 0x1e, 0x66, 0x6f, 0x07, 0x11,
  2906. 0x1b, 0x99, 0x6f, 0xc3, 0xe0, 0x21, 0x76, 0x86, 0xc3, 0xe0, 0xa1, 0x58, 0xfe, 0xd6, 0x3e, 0x71,
  2907. 0x0e, 0xb4, 0x59, 0xce, 0x42, 0x57, 0x29, 0xa5, 0xd6, 0xb6, 0x60, 0x75, 0x24, 0xe0, 0xae, 0x6b,
  2908. 0x7e, 0x07, 0x9e, 0xaf, 0x20, 0x54, 0xe6, 0xb9, 0x08, 0x0b, 0x8f, 0x70, 0xbc, 0x8b, 0x1f, 0x11,
  2909. 0x3b, 0xc6, 0xcc, 0xa3, 0x82, 0xba, 0x65, 0xf5, 0x15, 0xd0, 0xe2, 0x30, 0xf3, 0x73, 0x30, 0x72,
  2910. 0x1c, 0x68, 0x10, 0x61, 0x87, 0x35, 0x11, 0x8e, 0xd6, 0xa1, 0x17, 0xc5, 0x04, 0xfb, 0x3e, 0x75,
  2911. 0x30, 0x23, 0xc2, 0x3e, 0x6d, 0x2b, 0x0b, 0x32, 0xcf, 0xc1, 0xd9, 0x4a, 0xe6, 0x72, 0x81, 0xe6,
  2912. 0x3b, 0x85, 0xd5, 0xd3, 0x20, 0xf0, 0x1a, 0x89, 0x36, 0xd7, 0x4a, 0xab, 0x16, 0x94, 0x8a, 0xef,
  2913. 0xff, 0x16, 0x66, 0x7d, 0x82, 0xc3, 0x61, 0xd4, 0x88, 0x71, 0x71, 0xc5, 0x9a, 0x34, 0xe5, 0x7c,
  2914. 0x46, 0xba, 0xcd, 0x16, 0xf5, 0x7d, 0xe2, 0x30, 0x8f, 0x86, 0x9a, 0xed, 0x79, 0x00, 0x27, 0x05,
  2915. 0x2a, 0x27, 0xca, 0x40, 0x4c, 0x03, 0x06, 0x65, 0x52, 0xc5, 0xf6, 0xcf, 0x2d, 0x78, 0xee, 0x86,
  2916. 0x32, 0x9a, 0x14, 0xdc, 0x68, 0x03, 0xf2, 0x22, 0xa7, 0x8b, 0x22, 0x8b, 0x1b, 0xd4, 0x2e, 0x6d,
  2917. 0x10, 0xc7, 0x88, 0x49, 0xe4, 0x7b, 0x0e, 0x16, 0x2c, 0x66, 0x04, 0x8b, 0x2c, 0x08, 0x2d, 0x41,
  2918. 0x9b, 0x31, 0x5f, 0x78, 0x6e, 0xd7, 0xe2, 0x43, 0xb4, 0x09, 0xab, 0x01, 0x09, 0x68, 0x3c, 0xb2,
  2919. 0x03, 0x1c, 0xd9, 0x01, 0x7e, 0x62, 0x73, 0x37, 0xb7, 0x83, 0xdd, 0xc1, 0x9c, 0x58, 0x1f, 0x92,
  2920. 0xb3, 0xf7, 0x70, 0x74, 0x0f, 0x3f, 0xd9, 0xf1, 0x9e, 0x92, 0x7b, 0xbb, 0xe6, 0x00, 0x56, 0x8b,
  2921. 0xfa, 0x29, 0xd5, 0xff, 0x07, 0xce, 0x48, 0xc8, 0xce, 0x28, 0x74, 0x76, 0x44, 0x6c, 0x35, 0xda,
  2922. 0xa8, 0x7f, 0xb6, 0x60, 0x50, 0x26, 0x54, 0x9e, 0xff, 0xac, 0x56, 0x3b, 0xb6, 0x4d, 0x2e, 0x40,
  2923. 0x8f, 0x61, 0xcf, 0xb7, 0xe9, 0xde, 0x5e, 0x42, 0x98, 0x30, 0xc4, 0x8c, 0x05, 0x1c, 0x74, 0x5f,
  2924. 0x40, 0xd0, 0x65, 0x58, 0x72, 0xa4, 0xf7, 0xdb, 0x31, 0x39, 0xf4, 0x44, 0x36, 0x98, 0x17, 0x0b,
  2925. 0x5b, 0x74, 0x74, 0x54, 0x48, 0x30, 0x32, 0x61, 0xc1, 0x73, 0x9f, 0xd8, 0x22, 0x1d, 0x89, 0x64,
  2926. 0xd2, 0x11, 0xdc, 0x7a, 0x9e, 0xfb, 0xe4, 0x8e, 0xe7, 0x13, 0x6e, 0x51, 0xf3, 0x21, 0xac, 0x49,
  2927. 0xe5, 0xef, 0x86, 0x4e, 0x4c, 0x02, 0x12, 0x32, 0xec, 0x6f, 0xd1, 0x68, 0xd4, 0xc8, 0x6d, 0x9e,
  2928. 0x87, 0x4e, 0xe2, 0x85, 0x0e, 0xb1, 0x43, 0x99, 0xd4, 0x66, 0xac, 0x79, 0xf1, 0xbd, 0x9d, 0x98,
  2929. 0x37, 0xe1, 0x5c, 0x0d, 0x5f, 0x65, 0xd9, 0x17, 0xa0, 0x2f, 0x16, 0xe6, 0xd0, 0x90, 0x91, 0x90,
  2930. 0x09, 0xde, 0x7d, 0xab, 0xc7, 0x61, 0x5b, 0x12, 0x64, 0xbe, 0x0e, 0x48, 0xf2, 0xb8, 0x47, 0x87,
  2931. 0x61, 0xb3, 0x70, 0x7e, 0x0e, 0x96, 0x73, 0x24, 0xca, 0x37, 0xde, 0x80, 0x15, 0x09, 0xfe, 0x34,
  2932. 0x0c, 0x1a, 0xf3, 0x3a, 0x03, 0xcf, 0x15, 0x88, 0x14, 0xb7, 0x4d, 0x2d, 0x24, 0x7f, 0xec, 0x1c,
  2933. 0xc9, 0x6c, 0x55, 0xaf, 0x20, 0x7f, 0xf2, 0x88, 0xcc, 0x25, 0x17, 0x8c, 0xe3, 0x03, 0x8b, 0x60,
  2934. 0x97, 0x86, 0xfe, 0xa8, 0x71, 0xe6, 0xaa, 0xa0, 0x54, 0x7c, 0x7f, 0xd7, 0x82, 0xd3, 0x3a, 0xa5,
  2935. 0x35, 0xdc, 0xcd, 0x63, 0xba, 0x73, 0xbb, 0xd6, 0x9d, 0x67, 0xc6, 0xee, 0x7c, 0x09, 0x96, 0x12,
  2936. 0x3a, 0x8c, 0x1d, 0x62, 0xbb, 0x98, 0x61, 0x3b, 0xa4, 0x2e, 0x51, 0xde, 0x7e, 0x4a, 0xc2, 0x6f,
  2937. 0x61, 0x86, 0xb7, 0xa9, 0x4b, 0xcc, 0xff, 0xd7, 0x9b, 0x9d, 0xf3, 0x92, 0xcb, 0x70, 0xda, 0xc7,
  2938. 0x09, 0xb3, 0x71, 0x14, 0x91, 0xd0, 0xb5, 0x31, 0xe3, 0xae, 0xd6, 0x12, 0xae, 0x76, 0x8a, 0x4f,
  2939. 0xdc, 0x10, 0xf0, 0x1b, 0x6c, 0x3b, 0x31, 0x7f, 0x3d, 0x0d, 0x8b, 0x9c, 0x96, 0xbb, 0x76, 0x23,
  2940. 0x7d, 0x97, 0xa0, 0x4d, 0x9e, 0x30, 0xa5, 0x28, 0x1f, 0xa2, 0x6b, 0xb0, 0xac, 0x62, 0xc8, 0xa3,
  2941. 0xe1, 0x38, 0xbc, 0xda, 0x32, 0x1b, 0x8d, 0xa7, 0xd2, 0x08, 0xbb, 0x00, 0xbd, 0x84, 0xd1, 0x48,
  2942. 0x47, 0xeb, 0x8c, 0x8c, 0x56, 0x0e, 0x52, 0xd1, 0x9a, 0xb7, 0xe9, 0x6c, 0x85, 0x4d, 0xfb, 0x5e,
  2943. 0x62, 0x13, 0xc7, 0x96, 0xab, 0x12, 0xf1, 0xde, 0xb1, 0xc0, 0x4b, 0x6e, 0x3b, 0xd2, 0x1a, 0xe8,
  2944. 0x03, 0x58, 0xf3, 0x1e, 0x85, 0x34, 0x26, 0xb6, 0x32, 0xa4, 0x88, 0x9a, 0x90, 0x32, 0x7b, 0x8f,
  2945. 0x0e, 0x43, 0x57, 0xc4, 0x7e, 0xc7, 0x1a, 0x48, 0x9c, 0x1d, 0x81, 0xc2, 0x2d, 0xb0, 0x4d, 0xd9,
  2946. 0x1d, 0x3e, 0x6f, 0xbe, 0x05, 0x4b, 0x63, 0xab, 0x34, 0x8f, 0xbd, 0xaf, 0x5b, 0x3a, 0x9d, 0x3e,
  2947. 0xc0, 0x9e, 0xbf, 0x43, 0x42, 0x97, 0xc4, 0xcf, 0x98, 0x13, 0xd0, 0x75, 0x58, 0xf1, 0x5c, 0x9f,
  2948. 0xd8, 0xcc, 0x0b, 0x08, 0x1d, 0x32, 0x3b, 0x21, 0x0e, 0x0d, 0xdd, 0x44, 0xdb, 0x97, 0xcf, 0x3d,
  2949. 0x90, 0x53, 0x3b, 0x72, 0xc6, 0xfc, 0x59, 0x9a, 0x9b, 0xb3, 0xab, 0x18, 0xdf, 0x4a, 0x42, 0x42,
  2950. 0x38, 0xc3, 0x7d, 0x82, 0x5d, 0x12, 0x2b, 0x35, 0xfa, 0x12, 0xf8, 0x3d, 0x01, 0xe3, 0x3b, 0xa4,
  2951. 0x90, 0x76, 0xa9, 0x3b, 0x12, 0x2b, 0xea, 0x5b, 0x20, 0x41, 0x37, 0xa9, 0x3b, 0x12, 0x49, 0x32,
  2952. 0xb1, 0x85, 0x93, 0x39, 0xfb, 0xc3, 0xf0, 0x40, 0xac, 0xa6, 0x63, 0xf5, 0xbc, 0xe4, 0x23, 0x9c,
  2953. 0xb0, 0x2d, 0x0e, 0x32, 0x7f, 0xdf, 0xd2, 0x51, 0xca, 0x97, 0x61, 0x11, 0x87, 0x78, 0x87, 0xff,
  2954. 0x01, 0x73, 0x70, 0x0a, 0xe5, 0x04, 0xb9, 0xdb, 0xa9, 0x0a, 0x38, 0x24, 0xe7, 0xd4, 0x59, 0x26,
  2955. 0x66, 0xc6, 0x49, 0x22, 0xbf, 0x70, 0x95, 0x24, 0xbe, 0xd0, 0x49, 0xfa, 0xb6, 0xb3, 0xb3, 0x8f,
  2956. 0x63, 0x37, 0xf9, 0x2e, 0x09, 0x49, 0x8c, 0xd9, 0x89, 0x5c, 0x1a, 0xcc, 0x75, 0x38, 0x5f, 0xc7,
  2957. 0x5d, 0xc9, 0xff, 0x5c, 0x1f, 0x3e, 0x1a, 0xc3, 0x22, 0xbb, 0x43, 0xcf, 0x77, 0x4f, 0x44, 0xfc,
  2958. 0x87, 0x45, 0xe5, 0x52, 0xe6, 0xca, 0x7f, 0xae, 0xc0, 0xe9, 0x58, 0x80, 0x98, 0x9d, 0x70, 0x84,
  2959. 0xb4, 0x5e, 0x58, 0xb0, 0x16, 0xd5, 0x84, 0x20, 0xe4, 0x75, 0xc3, 0x5f, 0x53, 0x0f, 0xd0, 0xdc,
  2960. 0x4e, 0x2c, 0xad, 0x9e, 0x85, 0xee, 0x58, 0x7c, 0x5b, 0x88, 0xef, 0x24, 0x4a, 0x2e, 0xf7, 0x4e,
  2961. 0x87, 0x46, 0x23, 0x9b, 0x38, 0xf2, 0x1c, 0x17, 0x5b, 0xdd, 0xb1, 0x7a, 0x1c, 0x78, 0xdb, 0x11,
  2962. 0xc7, 0x78, 0xf3, 0x1c, 0x9b, 0xe1, 0xf6, 0xa5, 0xe4, 0x36, 0x97, 0xe5, 0xf6, 0x25, 0xe7, 0x36,
  2963. 0xf6, 0x98, 0xbc, 0xa2, 0x6a, 0xc7, 0xbe, 0x82, 0xb3, 0xf9, 0xd9, 0xe6, 0x47, 0xe0, 0x33, 0x19,
  2964. 0xc2, 0x3c, 0x5f, 0x74, 0x95, 0xc2, 0x39, 0x7a, 0x58, 0x5c, 0x76, 0xe3, 0x3b, 0xc3, 0xb3, 0xad,
  2965. 0xeb, 0x5c, 0xd1, 0x20, 0xf9, 0x8b, 0xc7, 0x67, 0xc5, 0x65, 0x1f, 0xe3, 0x02, 0x72, 0xb4, 0xe0,
  2966. 0x0b, 0x45, 0xf7, 0x2e, 0xde, 0x52, 0x7e, 0x93, 0xe6, 0x4e, 0x85, 0xc1, 0xef, 0x08, 0x8d, 0x73,
  2967. 0x96, 0x92, 0x2b, 0xcc, 0xb1, 0x60, 0xcd, 0x2b, 0xb1, 0xbc, 0x88, 0x55, 0x67, 0x9d, 0xac, 0x01,
  2968. 0xd4, 0x57, 0xae, 0x5c, 0x6d, 0xab, 0x72, 0x55, 0x97, 0xe1, 0x07, 0x64, 0x24, 0xfc, 0x71, 0x46,
  2969. 0x96, 0xe1, 0x1f, 0x92, 0x91, 0xb9, 0x5d, 0x88, 0x26, 0xb9, 0x34, 0x15, 0x97, 0x08, 0x66, 0xb8,
  2970. 0x23, 0xab, 0x74, 0x2e, 0xc6, 0xe8, 0x1c, 0x80, 0x97, 0xd8, 0xae, 0xd8, 0x73, 0xb9, 0xa8, 0x8e,
  2971. 0xd5, 0xf5, 0x94, 0x13, 0xb8, 0xe6, 0x2f, 0x32, 0xe1, 0x79, 0xd3, 0xa7, 0xbb, 0x27, 0xe8, 0x95,
  2972. 0x59, 0x2d, 0xda, 0x39, 0x2d, 0xb2, 0xf5, 0xf8, 0x4c, 0xbe, 0x1e, 0xcf, 0x04, 0x51, 0x76, 0x39,
  2973. 0x75, 0x69, 0xf7, 0x01, 0x3d, 0xb9, 0x5a, 0xad, 0x9c, 0x76, 0xc7, 0xdc, 0x95, 0xfc, 0x77, 0xe1,
  2974. 0x2c, 0x37, 0xb8, 0x84, 0x8a, 0x4a, 0xa0, 0x79, 0xb5, 0xf4, 0xb7, 0x69, 0x58, 0xab, 0x26, 0x6e,
  2975. 0x52, 0x31, 0xbd, 0x07, 0x46, 0x5a, 0x91, 0xf0, 0x63, 0x2f, 0x61, 0x38, 0x88, 0xd2, 0x83, 0x4f,
  2976. 0x9e, 0x8f, 0x67, 0x54, 0x79, 0xf2, 0x40, 0xcf, 0xeb, 0xd3, 0xaf, 0x54, 0xce, 0xb4, 0x4b, 0xe5,
  2977. 0x0c, 0x17, 0xe0, 0x62, 0x56, 0x27, 0x40, 0xde, 0xcf, 0xce, 0xb8, 0x98, 0xd5, 0x09, 0x48, 0x89,
  2978. 0x85, 0x00, 0xe9, 0xb5, 0x3d, 0x85, 0x2f, 0x04, 0x9c, 0x03, 0x50, 0x57, 0xa7, 0x61, 0xa8, 0xcb,
  2979. 0xb3, 0xae, 0xbc, 0x38, 0x0d, 0xc3, 0xda, 0x1b, 0xe4, 0x7c, 0xed, 0x0d, 0x32, 0xbf, 0x9b, 0x9d,
  2980. 0xd2, 0x6e, 0x7e, 0x06, 0x70, 0xcb, 0x4b, 0x0e, 0xa4, 0x91, 0xf9, 0x95, 0xd5, 0xf5, 0x62, 0xf5,
  2981. 0x26, 0xc0, 0x87, 0x1c, 0x82, 0x7d, 0x5f, 0x99, 0x8e, 0x0f, 0x79, 0xf8, 0x0c, 0x13, 0xe2, 0x2a,
  2982. 0xeb, 0x88, 0x31, 0x87, 0xed, 0xc5, 0x84, 0x28, 0x03, 0x88, 0xb1, 0xf9, 0xdb, 0x16, 0x74, 0xef,
  2983. 0x91, 0x40, 0x71, 0x3e, 0x0f, 0xf0, 0x88, 0xc6, 0x74, 0xc8, 0xbc, 0x90, 0xc8, 0x1b, 0xf6, 0xac,
  2984. 0x95, 0x81, 0x7c, 0x7b, 0x39, 0x22, 0x35, 0x10, 0x7f, 0x4f, 0x19, 0x53, 0x8c, 0x39, 0x6c, 0x9f,
  2985. 0xe0, 0x48, 0xd9, 0x4f, 0x8c, 0xd1, 0x0a, 0xcc, 0x26, 0x0c, 0x3b, 0x07, 0xc2, 0x58, 0x33, 0x96,
  2986. 0xfc, 0x30, 0xff, 0xd4, 0x02, 0xb0, 0x48, 0x40, 0x99, 0xf0, 0x35, 0x7e, 0x73, 0xdd, 0xc5, 0xce,
  2987. 0x01, 0xaf, 0x05, 0xd8, 0x28, 0x22, 0xca, 0x12, 0x3d, 0x05, 0x7b, 0x30, 0x8a, 0xc4, 0x0e, 0x69,
  2988. 0x14, 0x95, 0xbf, 0xba, 0x56, 0x57, 0x41, 0xe4, 0xad, 0x5f, 0x87, 0x72, 0xd7, 0xe2, 0xc3, 0x4c,
  2989. 0x4e, 0x93, 0xcb, 0xd6, 0x39, 0xed, 0x2c, 0x74, 0x8b, 0xae, 0x20, 0x52, 0x81, 0xf0, 0x83, 0x8b,
  2990. 0xb0, 0x10, 0x50, 0xd7, 0xdb, 0xf3, 0x88, 0x2b, 0x1c, 0x4d, 0xa9, 0xd2, 0xd7, 0x40, 0xee, 0x5c,
  2991. 0x68, 0x0d, 0xba, 0xe4, 0x09, 0x23, 0x61, 0xea, 0x03, 0x5d, 0x6b, 0x0c, 0x30, 0x6f, 0xc1, 0x29,
  2992. 0x75, 0x37, 0xf3, 0x48, 0x7c, 0x37, 0xdc, 0xa3, 0x68, 0x13, 0x66, 0xb9, 0x00, 0xfd, 0x08, 0xb9,
  2993. 0x56, 0x7e, 0x84, 0x1c, 0x9b, 0xc2, 0x92, 0xa8, 0xe6, 0x37, 0x2d, 0x58, 0x1f, 0xb3, 0xb9, 0x47,
  2994. 0x0f, 0xf9, 0x71, 0xff, 0x80, 0x4a, 0xc4, 0x13, 0xc9, 0x80, 0xef, 0xc0, 0xc0, 0x25, 0x09, 0xf3,
  2995. 0x42, 0x51, 0xe4, 0xd9, 0xda, 0xb8, 0x21, 0x0e, 0x88, 0x32, 0xe3, 0x6a, 0x66, 0xfe, 0xa6, 0x9c,
  2996. 0xde, 0xc6, 0x01, 0x41, 0x57, 0x61, 0xf9, 0x80, 0x90, 0xc8, 0xf6, 0xa9, 0x83, 0x7d, 0x5b, 0xc7,
  2997. 0x96, 0xba, 0xc3, 0x2c, 0xf1, 0xa9, 0x8f, 0xf8, 0xcc, 0x2d, 0x19, 0x5f, 0x66, 0x02, 0x2f, 0x1c,
  2998. 0xa1, 0x89, 0xca, 0x2f, 0x6b, 0xd0, 0x8d, 0x62, 0xea, 0x90, 0x84, 0xfb, 0x5e, 0x4b, 0x1c, 0x37,
  2999. 0x63, 0x00, 0xba, 0x0e, 0xcb, 0xe9, 0xc7, 0xc7, 0x24, 0x76, 0x48, 0xc8, 0xf0, 0x23, 0xf9, 0xa2,
  3000. 0x38, 0x6d, 0x55, 0x4d, 0x99, 0xbf, 0x6a, 0x81, 0x59, 0x92, 0x7a, 0x27, 0xa6, 0xc1, 0x09, 0x5a,
  3001. 0xf0, 0x1a, 0xac, 0x08, 0x3b, 0xc4, 0x82, 0xe5, 0xd8, 0x10, 0xb2, 0xd4, 0x38, 0xcd, 0xe7, 0xa4,
  3002. 0x34, 0x6d, 0x89, 0x21, 0x5c, 0x3c, 0x72, 0x4d, 0xff, 0x26, 0x5b, 0xfc, 0xa3, 0x0f, 0xfd, 0x4f,
  3003. 0x86, 0x24, 0x1e, 0x65, 0x9e, 0x22, 0x13, 0xa2, 0xb4, 0xd0, 0x6f, 0xe9, 0x19, 0x08, 0xcf, 0x98,
  3004. 0x7b, 0x31, 0x0d, 0xec, 0xf4, 0xb9, 0x7d, 0x5a, 0xa0, 0xf4, 0x38, 0xf0, 0x8e, 0x7c, 0x72, 0x47,
  3005. 0xef, 0xc3, 0xdc, 0x9e, 0xe7, 0x33, 0x22, 0x1f, 0xb8, 0x7b, 0x9b, 0x2f, 0x95, 0xbd, 0x3a, 0x2b,
  3006. 0x73, 0xe3, 0x8e, 0x40, 0xb6, 0x14, 0x11, 0xda, 0x85, 0x65, 0x2f, 0x8c, 0x44, 0x79, 0x14, 0x7b,
  3007. 0xd8, 0xf7, 0x9e, 0x8e, 0x1f, 0xd3, 0x7a, 0x9b, 0xaf, 0x4f, 0xe0, 0x75, 0x97, 0x53, 0xee, 0x64,
  3008. 0x09, 0x2d, 0xe4, 0x95, 0x60, 0x88, 0xc0, 0x0a, 0x1d, 0xb2, 0xb2, 0x90, 0x59, 0x21, 0x64, 0x73,
  3009. 0x82, 0x90, 0xfb, 0x82, 0x34, 0x2f, 0x65, 0x99, 0x96, 0x81, 0xc6, 0x36, 0xcc, 0x49, 0xe5, 0x78,
  3010. 0xae, 0xdb, 0xf3, 0x88, 0xaf, 0x5b, 0x04, 0xf2, 0x83, 0xdf, 0x27, 0x68, 0x44, 0x62, 0x1c, 0xea,
  3011. 0xb4, 0xa5, 0x3f, 0x39, 0xfe, 0x21, 0xf6, 0x87, 0x3a, 0xde, 0xe4, 0x87, 0xf1, 0xc7, 0x59, 0x40,
  3012. 0x65, 0x0d, 0xf5, 0x0b, 0x61, 0x4c, 0x12, 0x9e, 0x66, 0xb2, 0x79, 0x72, 0x31, 0x03, 0x17, 0xb9,
  3013. 0xf2, 0x07, 0xd0, 0x75, 0x92, 0x43, 0x5b, 0x98, 0x44, 0xc8, 0xec, 0x6d, 0xbe, 0x7b, 0x6c, 0x93,
  3014. 0x6e, 0x6c, 0xed, 0x3c, 0x14, 0x50, 0xab, 0xe3, 0x24, 0x87, 0x62, 0x84, 0x7e, 0x04, 0xf0, 0x65,
  3015. 0x42, 0x43, 0xc5, 0x59, 0x6e, 0xfc, 0x7b, 0xc7, 0xe7, 0xfc, 0xfd, 0x9d, 0xfb, 0xdb, 0x92, 0x75,
  3016. 0x97, 0xb3, 0x93, 0xbc, 0x1d, 0x58, 0x88, 0x70, 0xfc, 0x78, 0x48, 0x98, 0x62, 0x2f, 0x7d, 0xe1,
  3017. 0x83, 0xe3, 0xb3, 0xff, 0x58, 0xb2, 0x91, 0x12, 0xfa, 0x51, 0xe6, 0xcb, 0xf8, 0x66, 0x1a, 0x3a,
  3018. 0x5a, 0x2f, 0x5e, 0x61, 0x09, 0x0f, 0x97, 0xef, 0x0c, 0xb6, 0x17, 0xee, 0x51, 0x65, 0xd1, 0x53,
  3019. 0x1c, 0x2e, 0x9f, 0x1a, 0x44, 0x06, 0xbf, 0x0c, 0x4b, 0x31, 0x71, 0x68, 0xec, 0xf2, 0xbb, 0xaa,
  3020. 0x17, 0x78, 0xdc, 0xed, 0xe5, 0x5e, 0x2e, 0x4a, 0xf8, 0x2d, 0x0d, 0x46, 0xaf, 0xc0, 0xa2, 0xd8,
  3021. 0xf6, 0x0c, 0x66, 0x5b, 0xf3, 0x24, 0x7e, 0x06, 0xf1, 0x32, 0x2c, 0x3d, 0x1e, 0xf2, 0xbc, 0xe1,
  3022. 0xec, 0xe3, 0x18, 0x3b, 0x8c, 0xa6, 0x15, 0xff, 0xa2, 0x80, 0x6f, 0xa5, 0x60, 0xf4, 0x26, 0xac,
  3023. 0x4a, 0x54, 0x92, 0x38, 0x38, 0x4a, 0x29, 0x48, 0xac, 0x0a, 0xc2, 0x15, 0x31, 0x7b, 0x5b, 0x4c,
  3024. 0x6e, 0xe9, 0x39, 0x64, 0x40, 0xc7, 0xa1, 0x41, 0x40, 0x42, 0x96, 0x88, 0x63, 0xac, 0x6b, 0xa5,
  3025. 0xdf, 0xe8, 0x06, 0x9c, 0xc3, 0xbe, 0x4f, 0xbf, 0xb2, 0x05, 0xa5, 0x6b, 0x97, 0xb4, 0x93, 0xef,
  3026. 0x4f, 0x86, 0x40, 0xfa, 0x44, 0xe0, 0x58, 0x79, 0x45, 0x8d, 0x0b, 0xd0, 0x4d, 0xf7, 0x91, 0x9f,
  3027. 0xfc, 0x19, 0x87, 0x14, 0x63, 0xe3, 0x14, 0xf4, 0xb3, 0x3b, 0x61, 0xfc, 0xbd, 0x0d, 0xcb, 0x15,
  3028. 0x41, 0x85, 0x3e, 0x07, 0xe0, 0xde, 0x2a, 0x43, 0x4b, 0xb9, 0xeb, 0xff, 0x1d, 0x3f, 0x38, 0xb9,
  3029. 0xbf, 0x4a, 0xb0, 0xc5, 0xbd, 0x5f, 0x0e, 0xd1, 0x8f, 0xa1, 0x27, 0x3c, 0x56, 0x71, 0x97, 0x2e,
  3030. 0xfb, 0xfe, 0xb7, 0xe0, 0xce, 0x75, 0x55, 0xec, 0x45, 0x0c, 0xc8, 0xb1, 0xf1, 0x97, 0x16, 0x74,
  3031. 0x53, 0xc1, 0xfc, 0x1e, 0x23, 0x37, 0x4a, 0xec, 0x75, 0xa2, 0xef, 0x31, 0x02, 0x76, 0x47, 0x80,
  3032. 0xfe, 0x2b, 0x5d, 0xc9, 0x78, 0x1b, 0x60, 0xac, 0x7f, 0xa5, 0x0a, 0xad, 0x4a, 0x15, 0xcc, 0xcb,
  3033. 0xb0, 0xc0, 0x2d, 0xeb, 0x11, 0x77, 0x87, 0xc5, 0x5e, 0x24, 0x9a, 0x9d, 0x12, 0x27, 0x51, 0x85,
  3034. 0xa0, 0xfe, 0xdc, 0xfc, 0x83, 0x01, 0xfd, 0xec, 0x23, 0x17, 0xfa, 0x02, 0x7a, 0x99, 0xa6, 0x2e,
  3035. 0x7a, 0xb1, 0xbc, 0x69, 0xe5, 0x26, 0xb1, 0xf1, 0xd2, 0x04, 0x2c, 0x55, 0x2b, 0x4d, 0xa1, 0x10,
  3036. 0x4e, 0x97, 0x3a, 0xa3, 0xe8, 0x4a, 0x99, 0xba, 0xae, 0xef, 0x6a, 0xbc, 0xda, 0x08, 0x37, 0x95,
  3037. 0xc7, 0x60, 0xb9, 0xa2, 0xd5, 0x89, 0x5e, 0x9b, 0xc0, 0x25, 0xd7, 0x6e, 0x35, 0xae, 0x36, 0xc4,
  3038. 0x4e, 0xa5, 0x3e, 0x06, 0x54, 0xee, 0x83, 0xa2, 0x57, 0x27, 0xb2, 0x19, 0xf7, 0x59, 0x8d, 0xd7,
  3039. 0x9a, 0x21, 0xd7, 0x2a, 0x2a, 0x3b, 0xa4, 0x13, 0x15, 0xcd, 0xf5, 0x60, 0x27, 0x2a, 0x5a, 0x68,
  3040. 0xbb, 0x4e, 0xa1, 0x03, 0x58, 0x2a, 0x76, 0x4f, 0xd1, 0xe5, 0xba, 0x6e, 0x7f, 0xa9, 0x39, 0x6b,
  3041. 0x5c, 0x69, 0x82, 0x9a, 0x0a, 0x23, 0x70, 0x2a, 0xdf, 0xad, 0x44, 0xaf, 0x94, 0xe9, 0x2b, 0xfb,
  3042. 0xb5, 0xc6, 0xa5, 0xc9, 0x88, 0x59, 0x9d, 0x8a, 0x1d, 0xcc, 0x2a, 0x9d, 0x6a, 0xda, 0xa3, 0x55,
  3043. 0x3a, 0xd5, 0x35, 0x44, 0xcd, 0x29, 0xf4, 0x13, 0xdd, 0x16, 0x2b, 0x74, 0xf6, 0xd0, 0x46, 0x1d,
  3044. 0x9b, 0xea, 0xd6, 0xa2, 0x71, 0xad, 0x31, 0xbe, 0x96, 0x7d, 0xbd, 0xc5, 0x63, 0x3d, 0xd3, 0xe0,
  3045. 0xab, 0x8a, 0xf5, 0x72, 0xcb, 0xb0, 0x2a, 0xd6, 0xab, 0xba, 0x84, 0x53, 0x68, 0x17, 0x16, 0x72,
  3046. 0x2d, 0x3f, 0xf4, 0x72, 0x1d, 0x65, 0xfe, 0x1d, 0xcf, 0x78, 0x65, 0x22, 0x5e, 0x2a, 0xc3, 0xd6,
  3047. 0xd9, 0x4b, 0xa5, 0xab, 0xda, 0xc5, 0xe5, 0xf3, 0xd5, 0xcb, 0x93, 0xd0, 0x72, 0xa1, 0x5c, 0x6a,
  3048. 0x0c, 0x56, 0x86, 0x72, 0x5d, 0xe3, 0xb1, 0x32, 0x94, 0xeb, 0x7b, 0x8d, 0x53, 0xe8, 0x87, 0x00,
  3049. 0xe3, 0xe6, 0x1d, 0xba, 0x58, 0x47, 0x9d, 0xdd, 0xfd, 0x17, 0x8f, 0x46, 0x4a, 0x59, 0x7f, 0x05,
  3050. 0x2b, 0x55, 0xef, 0x4d, 0xe8, 0x6a, 0x55, 0x71, 0x5c, 0xfb, 0xa8, 0x65, 0x6c, 0x34, 0x45, 0x4f,
  3051. 0x05, 0x7f, 0x0a, 0x1d, 0xdd, 0x38, 0x43, 0x2f, 0x94, 0xa9, 0x0b, 0xad, 0x46, 0xc3, 0x3c, 0x0a,
  3052. 0x25, 0xe3, 0xc0, 0x81, 0x8e, 0xd5, 0x71, 0x47, 0xab, 0x3e, 0x56, 0x4b, 0xbd, 0xb7, 0xfa, 0x58,
  3053. 0x2d, 0x37, 0xc8, 0x84, 0xb8, 0xd4, 0x19, 0xb2, 0x0d, 0xa0, 0x7a, 0x67, 0xa8, 0xe8, 0x6f, 0xd5,
  3054. 0x3b, 0x43, 0x65, 0x4f, 0x69, 0x0a, 0xfd, 0x14, 0x56, 0xab, 0xfb, 0x3e, 0xa8, 0x36, 0xe2, 0x6b,
  3055. 0xfa, 0x4f, 0xc6, 0xf5, 0xe6, 0x04, 0xa9, 0xf8, 0xa7, 0x3a, 0x3f, 0x15, 0xfa, 0x3e, 0xf5, 0xf9,
  3056. 0xa9, 0xba, 0xfb, 0x64, 0x5c, 0x6b, 0x8c, 0x5f, 0x0e, 0xbd, 0x6c, 0xf3, 0xa4, 0xde, 0xda, 0x15,
  3057. 0xbd, 0xa4, 0x7a, 0x6b, 0x57, 0xf6, 0x63, 0x44, 0x7c, 0x54, 0x35, 0x46, 0xaa, 0xe2, 0xe3, 0x88,
  3058. 0xce, 0x8d, 0xb1, 0xd1, 0x14, 0x3d, 0x77, 0x7c, 0x97, 0x3b, 0x1f, 0x68, 0xe2, 0xfa, 0x73, 0x99,
  3059. 0xf9, 0x6a, 0x43, 0xec, 0xfa, 0xdd, 0xd5, 0x99, 0x7a, 0xa2, 0x02, 0x85, 0x8c, 0x7d, 0xad, 0x31,
  3060. 0x7e, 0x2a, 0x3b, 0xd2, 0xbf, 0x54, 0x64, 0xba, 0x16, 0xe8, 0xca, 0x04, 0x3e, 0x99, 0xae, 0x8b,
  3061. 0xf1, 0x6a, 0x23, 0xdc, 0xaa, 0xe8, 0xcd, 0xf6, 0x11, 0x8e, 0xf2, 0xa7, 0x52, 0xf3, 0xe3, 0x28,
  3062. 0x7f, 0xaa, 0x68, 0x4d, 0x54, 0x44, 0xaf, 0x6e, 0x1f, 0x4c, 0x8e, 0xde, 0x42, 0x1b, 0x63, 0x72,
  3063. 0xf4, 0x96, 0x3a, 0x13, 0x53, 0xe8, 0xe7, 0xe3, 0x56, 0x7b, 0xf9, 0x11, 0x10, 0x6d, 0xd6, 0xa6,
  3064. 0xa2, 0xda, 0xb7, 0x4f, 0xe3, 0x8d, 0x63, 0xd1, 0x64, 0x8c, 0xff, 0xcb, 0x96, 0xee, 0xed, 0x55,
  3065. 0xbe, 0xc2, 0xa1, 0x37, 0x1b, 0x30, 0x2e, 0x3d, 0x24, 0x1a, 0x6f, 0x1d, 0x93, 0x2a, 0xb3, 0xa0,
  3066. 0x8f, 0x60, 0x56, 0x54, 0x9f, 0xe8, 0xfc, 0xd1, 0x65, 0xa9, 0x71, 0xa1, 0x7a, 0x3e, 0x2d, 0xae,
  3067. 0x38, 0xb7, 0xdd, 0x39, 0xf1, 0x53, 0xed, 0x1b, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x45, 0x99,
  3068. 0xc4, 0xf9, 0x6b, 0x2b, 0x00, 0x00,
  3069. }