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.

1924 lines
69 KiB

6 years ago
6 years ago
6 years ago
6 years ago
  1. // Code generated by protoc-gen-go.
  2. // source: master.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package master_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. master.proto
  8. It has these top-level messages:
  9. Heartbeat
  10. HeartbeatResponse
  11. VolumeInformationMessage
  12. VolumeShortInformationMessage
  13. VolumeEcShardInformationMessage
  14. Empty
  15. SuperBlockExtra
  16. KeepConnectedRequest
  17. VolumeLocation
  18. LookupVolumeRequest
  19. LookupVolumeResponse
  20. Location
  21. AssignRequest
  22. AssignResponse
  23. StatisticsRequest
  24. StatisticsResponse
  25. StorageType
  26. Collection
  27. CollectionListRequest
  28. CollectionListResponse
  29. CollectionDeleteRequest
  30. CollectionDeleteResponse
  31. DataNodeInfo
  32. RackInfo
  33. DataCenterInfo
  34. TopologyInfo
  35. VolumeListRequest
  36. VolumeListResponse
  37. LookupEcVolumeRequest
  38. LookupEcVolumeResponse
  39. GetMasterConfigurationRequest
  40. GetMasterConfigurationResponse
  41. */
  42. package master_pb
  43. import proto "github.com/golang/protobuf/proto"
  44. import fmt "fmt"
  45. import math "math"
  46. import (
  47. context "golang.org/x/net/context"
  48. grpc "google.golang.org/grpc"
  49. )
  50. // Reference imports to suppress errors if they are not otherwise used.
  51. var _ = proto.Marshal
  52. var _ = fmt.Errorf
  53. var _ = math.Inf
  54. // This is a compile-time assertion to ensure that this generated file
  55. // is compatible with the proto package it is being compiled against.
  56. // A compilation error at this line likely means your copy of the
  57. // proto package needs to be updated.
  58. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  59. type Heartbeat struct {
  60. Ip string `protobuf:"bytes,1,opt,name=ip" json:"ip,omitempty"`
  61. Port uint32 `protobuf:"varint,2,opt,name=port" json:"port,omitempty"`
  62. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  63. MaxVolumeCount uint32 `protobuf:"varint,4,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  64. MaxFileKey uint64 `protobuf:"varint,5,opt,name=max_file_key,json=maxFileKey" json:"max_file_key,omitempty"`
  65. DataCenter string `protobuf:"bytes,6,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  66. Rack string `protobuf:"bytes,7,opt,name=rack" json:"rack,omitempty"`
  67. AdminPort uint32 `protobuf:"varint,8,opt,name=admin_port,json=adminPort" json:"admin_port,omitempty"`
  68. Volumes []*VolumeInformationMessage `protobuf:"bytes,9,rep,name=volumes" json:"volumes,omitempty"`
  69. // delta volumes
  70. NewVolumes []*VolumeShortInformationMessage `protobuf:"bytes,10,rep,name=new_volumes,json=newVolumes" json:"new_volumes,omitempty"`
  71. DeletedVolumes []*VolumeShortInformationMessage `protobuf:"bytes,11,rep,name=deleted_volumes,json=deletedVolumes" json:"deleted_volumes,omitempty"`
  72. HasNoVolumes bool `protobuf:"varint,12,opt,name=has_no_volumes,json=hasNoVolumes" json:"has_no_volumes,omitempty"`
  73. // erasure coding
  74. EcShards []*VolumeEcShardInformationMessage `protobuf:"bytes,16,rep,name=ec_shards,json=ecShards" json:"ec_shards,omitempty"`
  75. // delta erasure coding shards
  76. NewEcShards []*VolumeEcShardInformationMessage `protobuf:"bytes,17,rep,name=new_ec_shards,json=newEcShards" json:"new_ec_shards,omitempty"`
  77. DeletedEcShards []*VolumeEcShardInformationMessage `protobuf:"bytes,18,rep,name=deleted_ec_shards,json=deletedEcShards" json:"deleted_ec_shards,omitempty"`
  78. HasNoEcShards bool `protobuf:"varint,19,opt,name=has_no_ec_shards,json=hasNoEcShards" json:"has_no_ec_shards,omitempty"`
  79. }
  80. func (m *Heartbeat) Reset() { *m = Heartbeat{} }
  81. func (m *Heartbeat) String() string { return proto.CompactTextString(m) }
  82. func (*Heartbeat) ProtoMessage() {}
  83. func (*Heartbeat) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  84. func (m *Heartbeat) GetIp() string {
  85. if m != nil {
  86. return m.Ip
  87. }
  88. return ""
  89. }
  90. func (m *Heartbeat) GetPort() uint32 {
  91. if m != nil {
  92. return m.Port
  93. }
  94. return 0
  95. }
  96. func (m *Heartbeat) GetPublicUrl() string {
  97. if m != nil {
  98. return m.PublicUrl
  99. }
  100. return ""
  101. }
  102. func (m *Heartbeat) GetMaxVolumeCount() uint32 {
  103. if m != nil {
  104. return m.MaxVolumeCount
  105. }
  106. return 0
  107. }
  108. func (m *Heartbeat) GetMaxFileKey() uint64 {
  109. if m != nil {
  110. return m.MaxFileKey
  111. }
  112. return 0
  113. }
  114. func (m *Heartbeat) GetDataCenter() string {
  115. if m != nil {
  116. return m.DataCenter
  117. }
  118. return ""
  119. }
  120. func (m *Heartbeat) GetRack() string {
  121. if m != nil {
  122. return m.Rack
  123. }
  124. return ""
  125. }
  126. func (m *Heartbeat) GetAdminPort() uint32 {
  127. if m != nil {
  128. return m.AdminPort
  129. }
  130. return 0
  131. }
  132. func (m *Heartbeat) GetVolumes() []*VolumeInformationMessage {
  133. if m != nil {
  134. return m.Volumes
  135. }
  136. return nil
  137. }
  138. func (m *Heartbeat) GetNewVolumes() []*VolumeShortInformationMessage {
  139. if m != nil {
  140. return m.NewVolumes
  141. }
  142. return nil
  143. }
  144. func (m *Heartbeat) GetDeletedVolumes() []*VolumeShortInformationMessage {
  145. if m != nil {
  146. return m.DeletedVolumes
  147. }
  148. return nil
  149. }
  150. func (m *Heartbeat) GetHasNoVolumes() bool {
  151. if m != nil {
  152. return m.HasNoVolumes
  153. }
  154. return false
  155. }
  156. func (m *Heartbeat) GetEcShards() []*VolumeEcShardInformationMessage {
  157. if m != nil {
  158. return m.EcShards
  159. }
  160. return nil
  161. }
  162. func (m *Heartbeat) GetNewEcShards() []*VolumeEcShardInformationMessage {
  163. if m != nil {
  164. return m.NewEcShards
  165. }
  166. return nil
  167. }
  168. func (m *Heartbeat) GetDeletedEcShards() []*VolumeEcShardInformationMessage {
  169. if m != nil {
  170. return m.DeletedEcShards
  171. }
  172. return nil
  173. }
  174. func (m *Heartbeat) GetHasNoEcShards() bool {
  175. if m != nil {
  176. return m.HasNoEcShards
  177. }
  178. return false
  179. }
  180. type HeartbeatResponse struct {
  181. VolumeSizeLimit uint64 `protobuf:"varint,1,opt,name=volume_size_limit,json=volumeSizeLimit" json:"volume_size_limit,omitempty"`
  182. Leader string `protobuf:"bytes,2,opt,name=leader" json:"leader,omitempty"`
  183. MetricsAddress string `protobuf:"bytes,3,opt,name=metrics_address,json=metricsAddress" json:"metrics_address,omitempty"`
  184. MetricsIntervalSeconds uint32 `protobuf:"varint,4,opt,name=metrics_interval_seconds,json=metricsIntervalSeconds" json:"metrics_interval_seconds,omitempty"`
  185. }
  186. func (m *HeartbeatResponse) Reset() { *m = HeartbeatResponse{} }
  187. func (m *HeartbeatResponse) String() string { return proto.CompactTextString(m) }
  188. func (*HeartbeatResponse) ProtoMessage() {}
  189. func (*HeartbeatResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  190. func (m *HeartbeatResponse) GetVolumeSizeLimit() uint64 {
  191. if m != nil {
  192. return m.VolumeSizeLimit
  193. }
  194. return 0
  195. }
  196. func (m *HeartbeatResponse) GetLeader() string {
  197. if m != nil {
  198. return m.Leader
  199. }
  200. return ""
  201. }
  202. func (m *HeartbeatResponse) GetMetricsAddress() string {
  203. if m != nil {
  204. return m.MetricsAddress
  205. }
  206. return ""
  207. }
  208. func (m *HeartbeatResponse) GetMetricsIntervalSeconds() uint32 {
  209. if m != nil {
  210. return m.MetricsIntervalSeconds
  211. }
  212. return 0
  213. }
  214. type VolumeInformationMessage struct {
  215. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  216. Size uint64 `protobuf:"varint,2,opt,name=size" json:"size,omitempty"`
  217. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  218. FileCount uint64 `protobuf:"varint,4,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  219. DeleteCount uint64 `protobuf:"varint,5,opt,name=delete_count,json=deleteCount" json:"delete_count,omitempty"`
  220. DeletedByteCount uint64 `protobuf:"varint,6,opt,name=deleted_byte_count,json=deletedByteCount" json:"deleted_byte_count,omitempty"`
  221. ReadOnly bool `protobuf:"varint,7,opt,name=read_only,json=readOnly" json:"read_only,omitempty"`
  222. ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
  223. Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
  224. Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
  225. CompactRevision uint32 `protobuf:"varint,11,opt,name=compact_revision,json=compactRevision" json:"compact_revision,omitempty"`
  226. ModifiedAtSecond int64 `protobuf:"varint,12,opt,name=modified_at_second,json=modifiedAtSecond" json:"modified_at_second,omitempty"`
  227. }
  228. func (m *VolumeInformationMessage) Reset() { *m = VolumeInformationMessage{} }
  229. func (m *VolumeInformationMessage) String() string { return proto.CompactTextString(m) }
  230. func (*VolumeInformationMessage) ProtoMessage() {}
  231. func (*VolumeInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  232. func (m *VolumeInformationMessage) GetId() uint32 {
  233. if m != nil {
  234. return m.Id
  235. }
  236. return 0
  237. }
  238. func (m *VolumeInformationMessage) GetSize() uint64 {
  239. if m != nil {
  240. return m.Size
  241. }
  242. return 0
  243. }
  244. func (m *VolumeInformationMessage) GetCollection() string {
  245. if m != nil {
  246. return m.Collection
  247. }
  248. return ""
  249. }
  250. func (m *VolumeInformationMessage) GetFileCount() uint64 {
  251. if m != nil {
  252. return m.FileCount
  253. }
  254. return 0
  255. }
  256. func (m *VolumeInformationMessage) GetDeleteCount() uint64 {
  257. if m != nil {
  258. return m.DeleteCount
  259. }
  260. return 0
  261. }
  262. func (m *VolumeInformationMessage) GetDeletedByteCount() uint64 {
  263. if m != nil {
  264. return m.DeletedByteCount
  265. }
  266. return 0
  267. }
  268. func (m *VolumeInformationMessage) GetReadOnly() bool {
  269. if m != nil {
  270. return m.ReadOnly
  271. }
  272. return false
  273. }
  274. func (m *VolumeInformationMessage) GetReplicaPlacement() uint32 {
  275. if m != nil {
  276. return m.ReplicaPlacement
  277. }
  278. return 0
  279. }
  280. func (m *VolumeInformationMessage) GetVersion() uint32 {
  281. if m != nil {
  282. return m.Version
  283. }
  284. return 0
  285. }
  286. func (m *VolumeInformationMessage) GetTtl() uint32 {
  287. if m != nil {
  288. return m.Ttl
  289. }
  290. return 0
  291. }
  292. func (m *VolumeInformationMessage) GetCompactRevision() uint32 {
  293. if m != nil {
  294. return m.CompactRevision
  295. }
  296. return 0
  297. }
  298. func (m *VolumeInformationMessage) GetModifiedAtSecond() int64 {
  299. if m != nil {
  300. return m.ModifiedAtSecond
  301. }
  302. return 0
  303. }
  304. type VolumeShortInformationMessage struct {
  305. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  306. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  307. ReplicaPlacement uint32 `protobuf:"varint,8,opt,name=replica_placement,json=replicaPlacement" json:"replica_placement,omitempty"`
  308. Version uint32 `protobuf:"varint,9,opt,name=version" json:"version,omitempty"`
  309. Ttl uint32 `protobuf:"varint,10,opt,name=ttl" json:"ttl,omitempty"`
  310. }
  311. func (m *VolumeShortInformationMessage) Reset() { *m = VolumeShortInformationMessage{} }
  312. func (m *VolumeShortInformationMessage) String() string { return proto.CompactTextString(m) }
  313. func (*VolumeShortInformationMessage) ProtoMessage() {}
  314. func (*VolumeShortInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  315. func (m *VolumeShortInformationMessage) GetId() uint32 {
  316. if m != nil {
  317. return m.Id
  318. }
  319. return 0
  320. }
  321. func (m *VolumeShortInformationMessage) GetCollection() string {
  322. if m != nil {
  323. return m.Collection
  324. }
  325. return ""
  326. }
  327. func (m *VolumeShortInformationMessage) GetReplicaPlacement() uint32 {
  328. if m != nil {
  329. return m.ReplicaPlacement
  330. }
  331. return 0
  332. }
  333. func (m *VolumeShortInformationMessage) GetVersion() uint32 {
  334. if m != nil {
  335. return m.Version
  336. }
  337. return 0
  338. }
  339. func (m *VolumeShortInformationMessage) GetTtl() uint32 {
  340. if m != nil {
  341. return m.Ttl
  342. }
  343. return 0
  344. }
  345. type VolumeEcShardInformationMessage struct {
  346. Id uint32 `protobuf:"varint,1,opt,name=id" json:"id,omitempty"`
  347. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  348. EcIndexBits uint32 `protobuf:"varint,3,opt,name=ec_index_bits,json=ecIndexBits" json:"ec_index_bits,omitempty"`
  349. }
  350. func (m *VolumeEcShardInformationMessage) Reset() { *m = VolumeEcShardInformationMessage{} }
  351. func (m *VolumeEcShardInformationMessage) String() string { return proto.CompactTextString(m) }
  352. func (*VolumeEcShardInformationMessage) ProtoMessage() {}
  353. func (*VolumeEcShardInformationMessage) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  354. func (m *VolumeEcShardInformationMessage) GetId() uint32 {
  355. if m != nil {
  356. return m.Id
  357. }
  358. return 0
  359. }
  360. func (m *VolumeEcShardInformationMessage) GetCollection() string {
  361. if m != nil {
  362. return m.Collection
  363. }
  364. return ""
  365. }
  366. func (m *VolumeEcShardInformationMessage) GetEcIndexBits() uint32 {
  367. if m != nil {
  368. return m.EcIndexBits
  369. }
  370. return 0
  371. }
  372. type Empty struct {
  373. }
  374. func (m *Empty) Reset() { *m = Empty{} }
  375. func (m *Empty) String() string { return proto.CompactTextString(m) }
  376. func (*Empty) ProtoMessage() {}
  377. func (*Empty) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  378. type SuperBlockExtra struct {
  379. ErasureCoding *SuperBlockExtra_ErasureCoding `protobuf:"bytes,1,opt,name=erasure_coding,json=erasureCoding" json:"erasure_coding,omitempty"`
  380. }
  381. func (m *SuperBlockExtra) Reset() { *m = SuperBlockExtra{} }
  382. func (m *SuperBlockExtra) String() string { return proto.CompactTextString(m) }
  383. func (*SuperBlockExtra) ProtoMessage() {}
  384. func (*SuperBlockExtra) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  385. func (m *SuperBlockExtra) GetErasureCoding() *SuperBlockExtra_ErasureCoding {
  386. if m != nil {
  387. return m.ErasureCoding
  388. }
  389. return nil
  390. }
  391. type SuperBlockExtra_ErasureCoding struct {
  392. Data uint32 `protobuf:"varint,1,opt,name=data" json:"data,omitempty"`
  393. Parity uint32 `protobuf:"varint,2,opt,name=parity" json:"parity,omitempty"`
  394. VolumeIds []uint32 `protobuf:"varint,3,rep,packed,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  395. }
  396. func (m *SuperBlockExtra_ErasureCoding) Reset() { *m = SuperBlockExtra_ErasureCoding{} }
  397. func (m *SuperBlockExtra_ErasureCoding) String() string { return proto.CompactTextString(m) }
  398. func (*SuperBlockExtra_ErasureCoding) ProtoMessage() {}
  399. func (*SuperBlockExtra_ErasureCoding) Descriptor() ([]byte, []int) {
  400. return fileDescriptor0, []int{6, 0}
  401. }
  402. func (m *SuperBlockExtra_ErasureCoding) GetData() uint32 {
  403. if m != nil {
  404. return m.Data
  405. }
  406. return 0
  407. }
  408. func (m *SuperBlockExtra_ErasureCoding) GetParity() uint32 {
  409. if m != nil {
  410. return m.Parity
  411. }
  412. return 0
  413. }
  414. func (m *SuperBlockExtra_ErasureCoding) GetVolumeIds() []uint32 {
  415. if m != nil {
  416. return m.VolumeIds
  417. }
  418. return nil
  419. }
  420. type KeepConnectedRequest struct {
  421. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  422. }
  423. func (m *KeepConnectedRequest) Reset() { *m = KeepConnectedRequest{} }
  424. func (m *KeepConnectedRequest) String() string { return proto.CompactTextString(m) }
  425. func (*KeepConnectedRequest) ProtoMessage() {}
  426. func (*KeepConnectedRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  427. func (m *KeepConnectedRequest) GetName() string {
  428. if m != nil {
  429. return m.Name
  430. }
  431. return ""
  432. }
  433. type VolumeLocation struct {
  434. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  435. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  436. NewVids []uint32 `protobuf:"varint,3,rep,packed,name=new_vids,json=newVids" json:"new_vids,omitempty"`
  437. DeletedVids []uint32 `protobuf:"varint,4,rep,packed,name=deleted_vids,json=deletedVids" json:"deleted_vids,omitempty"`
  438. Leader string `protobuf:"bytes,5,opt,name=leader" json:"leader,omitempty"`
  439. }
  440. func (m *VolumeLocation) Reset() { *m = VolumeLocation{} }
  441. func (m *VolumeLocation) String() string { return proto.CompactTextString(m) }
  442. func (*VolumeLocation) ProtoMessage() {}
  443. func (*VolumeLocation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  444. func (m *VolumeLocation) GetUrl() string {
  445. if m != nil {
  446. return m.Url
  447. }
  448. return ""
  449. }
  450. func (m *VolumeLocation) GetPublicUrl() string {
  451. if m != nil {
  452. return m.PublicUrl
  453. }
  454. return ""
  455. }
  456. func (m *VolumeLocation) GetNewVids() []uint32 {
  457. if m != nil {
  458. return m.NewVids
  459. }
  460. return nil
  461. }
  462. func (m *VolumeLocation) GetDeletedVids() []uint32 {
  463. if m != nil {
  464. return m.DeletedVids
  465. }
  466. return nil
  467. }
  468. func (m *VolumeLocation) GetLeader() string {
  469. if m != nil {
  470. return m.Leader
  471. }
  472. return ""
  473. }
  474. type LookupVolumeRequest struct {
  475. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  476. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  477. }
  478. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  479. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  480. func (*LookupVolumeRequest) ProtoMessage() {}
  481. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  482. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  483. if m != nil {
  484. return m.VolumeIds
  485. }
  486. return nil
  487. }
  488. func (m *LookupVolumeRequest) GetCollection() string {
  489. if m != nil {
  490. return m.Collection
  491. }
  492. return ""
  493. }
  494. type LookupVolumeResponse struct {
  495. VolumeIdLocations []*LookupVolumeResponse_VolumeIdLocation `protobuf:"bytes,1,rep,name=volume_id_locations,json=volumeIdLocations" json:"volume_id_locations,omitempty"`
  496. }
  497. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  498. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  499. func (*LookupVolumeResponse) ProtoMessage() {}
  500. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  501. func (m *LookupVolumeResponse) GetVolumeIdLocations() []*LookupVolumeResponse_VolumeIdLocation {
  502. if m != nil {
  503. return m.VolumeIdLocations
  504. }
  505. return nil
  506. }
  507. type LookupVolumeResponse_VolumeIdLocation struct {
  508. VolumeId string `protobuf:"bytes,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  509. Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
  510. Error string `protobuf:"bytes,3,opt,name=error" json:"error,omitempty"`
  511. }
  512. func (m *LookupVolumeResponse_VolumeIdLocation) Reset() { *m = LookupVolumeResponse_VolumeIdLocation{} }
  513. func (m *LookupVolumeResponse_VolumeIdLocation) String() string { return proto.CompactTextString(m) }
  514. func (*LookupVolumeResponse_VolumeIdLocation) ProtoMessage() {}
  515. func (*LookupVolumeResponse_VolumeIdLocation) Descriptor() ([]byte, []int) {
  516. return fileDescriptor0, []int{10, 0}
  517. }
  518. func (m *LookupVolumeResponse_VolumeIdLocation) GetVolumeId() string {
  519. if m != nil {
  520. return m.VolumeId
  521. }
  522. return ""
  523. }
  524. func (m *LookupVolumeResponse_VolumeIdLocation) GetLocations() []*Location {
  525. if m != nil {
  526. return m.Locations
  527. }
  528. return nil
  529. }
  530. func (m *LookupVolumeResponse_VolumeIdLocation) GetError() string {
  531. if m != nil {
  532. return m.Error
  533. }
  534. return ""
  535. }
  536. type Location struct {
  537. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  538. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  539. }
  540. func (m *Location) Reset() { *m = Location{} }
  541. func (m *Location) String() string { return proto.CompactTextString(m) }
  542. func (*Location) ProtoMessage() {}
  543. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  544. func (m *Location) GetUrl() string {
  545. if m != nil {
  546. return m.Url
  547. }
  548. return ""
  549. }
  550. func (m *Location) GetPublicUrl() string {
  551. if m != nil {
  552. return m.PublicUrl
  553. }
  554. return ""
  555. }
  556. type AssignRequest struct {
  557. Count uint64 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  558. Replication string `protobuf:"bytes,2,opt,name=replication" json:"replication,omitempty"`
  559. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  560. Ttl string `protobuf:"bytes,4,opt,name=ttl" json:"ttl,omitempty"`
  561. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  562. Rack string `protobuf:"bytes,6,opt,name=rack" json:"rack,omitempty"`
  563. DataNode string `protobuf:"bytes,7,opt,name=data_node,json=dataNode" json:"data_node,omitempty"`
  564. }
  565. func (m *AssignRequest) Reset() { *m = AssignRequest{} }
  566. func (m *AssignRequest) String() string { return proto.CompactTextString(m) }
  567. func (*AssignRequest) ProtoMessage() {}
  568. func (*AssignRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  569. func (m *AssignRequest) GetCount() uint64 {
  570. if m != nil {
  571. return m.Count
  572. }
  573. return 0
  574. }
  575. func (m *AssignRequest) GetReplication() string {
  576. if m != nil {
  577. return m.Replication
  578. }
  579. return ""
  580. }
  581. func (m *AssignRequest) GetCollection() string {
  582. if m != nil {
  583. return m.Collection
  584. }
  585. return ""
  586. }
  587. func (m *AssignRequest) GetTtl() string {
  588. if m != nil {
  589. return m.Ttl
  590. }
  591. return ""
  592. }
  593. func (m *AssignRequest) GetDataCenter() string {
  594. if m != nil {
  595. return m.DataCenter
  596. }
  597. return ""
  598. }
  599. func (m *AssignRequest) GetRack() string {
  600. if m != nil {
  601. return m.Rack
  602. }
  603. return ""
  604. }
  605. func (m *AssignRequest) GetDataNode() string {
  606. if m != nil {
  607. return m.DataNode
  608. }
  609. return ""
  610. }
  611. type AssignResponse struct {
  612. Fid string `protobuf:"bytes,1,opt,name=fid" json:"fid,omitempty"`
  613. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  614. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  615. Count uint64 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  616. Error string `protobuf:"bytes,5,opt,name=error" json:"error,omitempty"`
  617. Auth string `protobuf:"bytes,6,opt,name=auth" json:"auth,omitempty"`
  618. }
  619. func (m *AssignResponse) Reset() { *m = AssignResponse{} }
  620. func (m *AssignResponse) String() string { return proto.CompactTextString(m) }
  621. func (*AssignResponse) ProtoMessage() {}
  622. func (*AssignResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  623. func (m *AssignResponse) GetFid() string {
  624. if m != nil {
  625. return m.Fid
  626. }
  627. return ""
  628. }
  629. func (m *AssignResponse) GetUrl() string {
  630. if m != nil {
  631. return m.Url
  632. }
  633. return ""
  634. }
  635. func (m *AssignResponse) GetPublicUrl() string {
  636. if m != nil {
  637. return m.PublicUrl
  638. }
  639. return ""
  640. }
  641. func (m *AssignResponse) GetCount() uint64 {
  642. if m != nil {
  643. return m.Count
  644. }
  645. return 0
  646. }
  647. func (m *AssignResponse) GetError() string {
  648. if m != nil {
  649. return m.Error
  650. }
  651. return ""
  652. }
  653. func (m *AssignResponse) GetAuth() string {
  654. if m != nil {
  655. return m.Auth
  656. }
  657. return ""
  658. }
  659. type StatisticsRequest struct {
  660. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  661. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  662. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  663. }
  664. func (m *StatisticsRequest) Reset() { *m = StatisticsRequest{} }
  665. func (m *StatisticsRequest) String() string { return proto.CompactTextString(m) }
  666. func (*StatisticsRequest) ProtoMessage() {}
  667. func (*StatisticsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  668. func (m *StatisticsRequest) GetReplication() string {
  669. if m != nil {
  670. return m.Replication
  671. }
  672. return ""
  673. }
  674. func (m *StatisticsRequest) GetCollection() string {
  675. if m != nil {
  676. return m.Collection
  677. }
  678. return ""
  679. }
  680. func (m *StatisticsRequest) GetTtl() string {
  681. if m != nil {
  682. return m.Ttl
  683. }
  684. return ""
  685. }
  686. type StatisticsResponse struct {
  687. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  688. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  689. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  690. TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
  691. UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize" json:"used_size,omitempty"`
  692. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  693. }
  694. func (m *StatisticsResponse) Reset() { *m = StatisticsResponse{} }
  695. func (m *StatisticsResponse) String() string { return proto.CompactTextString(m) }
  696. func (*StatisticsResponse) ProtoMessage() {}
  697. func (*StatisticsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  698. func (m *StatisticsResponse) GetReplication() string {
  699. if m != nil {
  700. return m.Replication
  701. }
  702. return ""
  703. }
  704. func (m *StatisticsResponse) GetCollection() string {
  705. if m != nil {
  706. return m.Collection
  707. }
  708. return ""
  709. }
  710. func (m *StatisticsResponse) GetTtl() string {
  711. if m != nil {
  712. return m.Ttl
  713. }
  714. return ""
  715. }
  716. func (m *StatisticsResponse) GetTotalSize() uint64 {
  717. if m != nil {
  718. return m.TotalSize
  719. }
  720. return 0
  721. }
  722. func (m *StatisticsResponse) GetUsedSize() uint64 {
  723. if m != nil {
  724. return m.UsedSize
  725. }
  726. return 0
  727. }
  728. func (m *StatisticsResponse) GetFileCount() uint64 {
  729. if m != nil {
  730. return m.FileCount
  731. }
  732. return 0
  733. }
  734. type StorageType struct {
  735. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  736. Ttl string `protobuf:"bytes,2,opt,name=ttl" json:"ttl,omitempty"`
  737. }
  738. func (m *StorageType) Reset() { *m = StorageType{} }
  739. func (m *StorageType) String() string { return proto.CompactTextString(m) }
  740. func (*StorageType) ProtoMessage() {}
  741. func (*StorageType) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  742. func (m *StorageType) GetReplication() string {
  743. if m != nil {
  744. return m.Replication
  745. }
  746. return ""
  747. }
  748. func (m *StorageType) GetTtl() string {
  749. if m != nil {
  750. return m.Ttl
  751. }
  752. return ""
  753. }
  754. type Collection struct {
  755. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  756. }
  757. func (m *Collection) Reset() { *m = Collection{} }
  758. func (m *Collection) String() string { return proto.CompactTextString(m) }
  759. func (*Collection) ProtoMessage() {}
  760. func (*Collection) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  761. func (m *Collection) GetName() string {
  762. if m != nil {
  763. return m.Name
  764. }
  765. return ""
  766. }
  767. type CollectionListRequest struct {
  768. IncludeNormalVolumes bool `protobuf:"varint,1,opt,name=include_normal_volumes,json=includeNormalVolumes" json:"include_normal_volumes,omitempty"`
  769. IncludeEcVolumes bool `protobuf:"varint,2,opt,name=include_ec_volumes,json=includeEcVolumes" json:"include_ec_volumes,omitempty"`
  770. }
  771. func (m *CollectionListRequest) Reset() { *m = CollectionListRequest{} }
  772. func (m *CollectionListRequest) String() string { return proto.CompactTextString(m) }
  773. func (*CollectionListRequest) ProtoMessage() {}
  774. func (*CollectionListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  775. func (m *CollectionListRequest) GetIncludeNormalVolumes() bool {
  776. if m != nil {
  777. return m.IncludeNormalVolumes
  778. }
  779. return false
  780. }
  781. func (m *CollectionListRequest) GetIncludeEcVolumes() bool {
  782. if m != nil {
  783. return m.IncludeEcVolumes
  784. }
  785. return false
  786. }
  787. type CollectionListResponse struct {
  788. Collections []*Collection `protobuf:"bytes,1,rep,name=collections" json:"collections,omitempty"`
  789. }
  790. func (m *CollectionListResponse) Reset() { *m = CollectionListResponse{} }
  791. func (m *CollectionListResponse) String() string { return proto.CompactTextString(m) }
  792. func (*CollectionListResponse) ProtoMessage() {}
  793. func (*CollectionListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  794. func (m *CollectionListResponse) GetCollections() []*Collection {
  795. if m != nil {
  796. return m.Collections
  797. }
  798. return nil
  799. }
  800. type CollectionDeleteRequest struct {
  801. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  802. }
  803. func (m *CollectionDeleteRequest) Reset() { *m = CollectionDeleteRequest{} }
  804. func (m *CollectionDeleteRequest) String() string { return proto.CompactTextString(m) }
  805. func (*CollectionDeleteRequest) ProtoMessage() {}
  806. func (*CollectionDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  807. func (m *CollectionDeleteRequest) GetName() string {
  808. if m != nil {
  809. return m.Name
  810. }
  811. return ""
  812. }
  813. type CollectionDeleteResponse struct {
  814. }
  815. func (m *CollectionDeleteResponse) Reset() { *m = CollectionDeleteResponse{} }
  816. func (m *CollectionDeleteResponse) String() string { return proto.CompactTextString(m) }
  817. func (*CollectionDeleteResponse) ProtoMessage() {}
  818. func (*CollectionDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  819. //
  820. // volume related
  821. //
  822. type DataNodeInfo struct {
  823. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  824. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  825. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  826. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  827. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  828. VolumeInfos []*VolumeInformationMessage `protobuf:"bytes,6,rep,name=volume_infos,json=volumeInfos" json:"volume_infos,omitempty"`
  829. EcShardInfos []*VolumeEcShardInformationMessage `protobuf:"bytes,7,rep,name=ec_shard_infos,json=ecShardInfos" json:"ec_shard_infos,omitempty"`
  830. }
  831. func (m *DataNodeInfo) Reset() { *m = DataNodeInfo{} }
  832. func (m *DataNodeInfo) String() string { return proto.CompactTextString(m) }
  833. func (*DataNodeInfo) ProtoMessage() {}
  834. func (*DataNodeInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  835. func (m *DataNodeInfo) GetId() string {
  836. if m != nil {
  837. return m.Id
  838. }
  839. return ""
  840. }
  841. func (m *DataNodeInfo) GetVolumeCount() uint64 {
  842. if m != nil {
  843. return m.VolumeCount
  844. }
  845. return 0
  846. }
  847. func (m *DataNodeInfo) GetMaxVolumeCount() uint64 {
  848. if m != nil {
  849. return m.MaxVolumeCount
  850. }
  851. return 0
  852. }
  853. func (m *DataNodeInfo) GetFreeVolumeCount() uint64 {
  854. if m != nil {
  855. return m.FreeVolumeCount
  856. }
  857. return 0
  858. }
  859. func (m *DataNodeInfo) GetActiveVolumeCount() uint64 {
  860. if m != nil {
  861. return m.ActiveVolumeCount
  862. }
  863. return 0
  864. }
  865. func (m *DataNodeInfo) GetVolumeInfos() []*VolumeInformationMessage {
  866. if m != nil {
  867. return m.VolumeInfos
  868. }
  869. return nil
  870. }
  871. func (m *DataNodeInfo) GetEcShardInfos() []*VolumeEcShardInformationMessage {
  872. if m != nil {
  873. return m.EcShardInfos
  874. }
  875. return nil
  876. }
  877. type RackInfo struct {
  878. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  879. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  880. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  881. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  882. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  883. DataNodeInfos []*DataNodeInfo `protobuf:"bytes,6,rep,name=data_node_infos,json=dataNodeInfos" json:"data_node_infos,omitempty"`
  884. }
  885. func (m *RackInfo) Reset() { *m = RackInfo{} }
  886. func (m *RackInfo) String() string { return proto.CompactTextString(m) }
  887. func (*RackInfo) ProtoMessage() {}
  888. func (*RackInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  889. func (m *RackInfo) GetId() string {
  890. if m != nil {
  891. return m.Id
  892. }
  893. return ""
  894. }
  895. func (m *RackInfo) GetVolumeCount() uint64 {
  896. if m != nil {
  897. return m.VolumeCount
  898. }
  899. return 0
  900. }
  901. func (m *RackInfo) GetMaxVolumeCount() uint64 {
  902. if m != nil {
  903. return m.MaxVolumeCount
  904. }
  905. return 0
  906. }
  907. func (m *RackInfo) GetFreeVolumeCount() uint64 {
  908. if m != nil {
  909. return m.FreeVolumeCount
  910. }
  911. return 0
  912. }
  913. func (m *RackInfo) GetActiveVolumeCount() uint64 {
  914. if m != nil {
  915. return m.ActiveVolumeCount
  916. }
  917. return 0
  918. }
  919. func (m *RackInfo) GetDataNodeInfos() []*DataNodeInfo {
  920. if m != nil {
  921. return m.DataNodeInfos
  922. }
  923. return nil
  924. }
  925. type DataCenterInfo struct {
  926. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  927. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  928. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  929. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  930. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  931. RackInfos []*RackInfo `protobuf:"bytes,6,rep,name=rack_infos,json=rackInfos" json:"rack_infos,omitempty"`
  932. }
  933. func (m *DataCenterInfo) Reset() { *m = DataCenterInfo{} }
  934. func (m *DataCenterInfo) String() string { return proto.CompactTextString(m) }
  935. func (*DataCenterInfo) ProtoMessage() {}
  936. func (*DataCenterInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  937. func (m *DataCenterInfo) GetId() string {
  938. if m != nil {
  939. return m.Id
  940. }
  941. return ""
  942. }
  943. func (m *DataCenterInfo) GetVolumeCount() uint64 {
  944. if m != nil {
  945. return m.VolumeCount
  946. }
  947. return 0
  948. }
  949. func (m *DataCenterInfo) GetMaxVolumeCount() uint64 {
  950. if m != nil {
  951. return m.MaxVolumeCount
  952. }
  953. return 0
  954. }
  955. func (m *DataCenterInfo) GetFreeVolumeCount() uint64 {
  956. if m != nil {
  957. return m.FreeVolumeCount
  958. }
  959. return 0
  960. }
  961. func (m *DataCenterInfo) GetActiveVolumeCount() uint64 {
  962. if m != nil {
  963. return m.ActiveVolumeCount
  964. }
  965. return 0
  966. }
  967. func (m *DataCenterInfo) GetRackInfos() []*RackInfo {
  968. if m != nil {
  969. return m.RackInfos
  970. }
  971. return nil
  972. }
  973. type TopologyInfo struct {
  974. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  975. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  976. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  977. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  978. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  979. DataCenterInfos []*DataCenterInfo `protobuf:"bytes,6,rep,name=data_center_infos,json=dataCenterInfos" json:"data_center_infos,omitempty"`
  980. }
  981. func (m *TopologyInfo) Reset() { *m = TopologyInfo{} }
  982. func (m *TopologyInfo) String() string { return proto.CompactTextString(m) }
  983. func (*TopologyInfo) ProtoMessage() {}
  984. func (*TopologyInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  985. func (m *TopologyInfo) GetId() string {
  986. if m != nil {
  987. return m.Id
  988. }
  989. return ""
  990. }
  991. func (m *TopologyInfo) GetVolumeCount() uint64 {
  992. if m != nil {
  993. return m.VolumeCount
  994. }
  995. return 0
  996. }
  997. func (m *TopologyInfo) GetMaxVolumeCount() uint64 {
  998. if m != nil {
  999. return m.MaxVolumeCount
  1000. }
  1001. return 0
  1002. }
  1003. func (m *TopologyInfo) GetFreeVolumeCount() uint64 {
  1004. if m != nil {
  1005. return m.FreeVolumeCount
  1006. }
  1007. return 0
  1008. }
  1009. func (m *TopologyInfo) GetActiveVolumeCount() uint64 {
  1010. if m != nil {
  1011. return m.ActiveVolumeCount
  1012. }
  1013. return 0
  1014. }
  1015. func (m *TopologyInfo) GetDataCenterInfos() []*DataCenterInfo {
  1016. if m != nil {
  1017. return m.DataCenterInfos
  1018. }
  1019. return nil
  1020. }
  1021. type VolumeListRequest struct {
  1022. }
  1023. func (m *VolumeListRequest) Reset() { *m = VolumeListRequest{} }
  1024. func (m *VolumeListRequest) String() string { return proto.CompactTextString(m) }
  1025. func (*VolumeListRequest) ProtoMessage() {}
  1026. func (*VolumeListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
  1027. type VolumeListResponse struct {
  1028. TopologyInfo *TopologyInfo `protobuf:"bytes,1,opt,name=topology_info,json=topologyInfo" json:"topology_info,omitempty"`
  1029. VolumeSizeLimitMb uint64 `protobuf:"varint,2,opt,name=volume_size_limit_mb,json=volumeSizeLimitMb" json:"volume_size_limit_mb,omitempty"`
  1030. }
  1031. func (m *VolumeListResponse) Reset() { *m = VolumeListResponse{} }
  1032. func (m *VolumeListResponse) String() string { return proto.CompactTextString(m) }
  1033. func (*VolumeListResponse) ProtoMessage() {}
  1034. func (*VolumeListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
  1035. func (m *VolumeListResponse) GetTopologyInfo() *TopologyInfo {
  1036. if m != nil {
  1037. return m.TopologyInfo
  1038. }
  1039. return nil
  1040. }
  1041. func (m *VolumeListResponse) GetVolumeSizeLimitMb() uint64 {
  1042. if m != nil {
  1043. return m.VolumeSizeLimitMb
  1044. }
  1045. return 0
  1046. }
  1047. type LookupEcVolumeRequest struct {
  1048. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1049. }
  1050. func (m *LookupEcVolumeRequest) Reset() { *m = LookupEcVolumeRequest{} }
  1051. func (m *LookupEcVolumeRequest) String() string { return proto.CompactTextString(m) }
  1052. func (*LookupEcVolumeRequest) ProtoMessage() {}
  1053. func (*LookupEcVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
  1054. func (m *LookupEcVolumeRequest) GetVolumeId() uint32 {
  1055. if m != nil {
  1056. return m.VolumeId
  1057. }
  1058. return 0
  1059. }
  1060. type LookupEcVolumeResponse struct {
  1061. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1062. ShardIdLocations []*LookupEcVolumeResponse_EcShardIdLocation `protobuf:"bytes,2,rep,name=shard_id_locations,json=shardIdLocations" json:"shard_id_locations,omitempty"`
  1063. }
  1064. func (m *LookupEcVolumeResponse) Reset() { *m = LookupEcVolumeResponse{} }
  1065. func (m *LookupEcVolumeResponse) String() string { return proto.CompactTextString(m) }
  1066. func (*LookupEcVolumeResponse) ProtoMessage() {}
  1067. func (*LookupEcVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
  1068. func (m *LookupEcVolumeResponse) GetVolumeId() uint32 {
  1069. if m != nil {
  1070. return m.VolumeId
  1071. }
  1072. return 0
  1073. }
  1074. func (m *LookupEcVolumeResponse) GetShardIdLocations() []*LookupEcVolumeResponse_EcShardIdLocation {
  1075. if m != nil {
  1076. return m.ShardIdLocations
  1077. }
  1078. return nil
  1079. }
  1080. type LookupEcVolumeResponse_EcShardIdLocation struct {
  1081. ShardId uint32 `protobuf:"varint,1,opt,name=shard_id,json=shardId" json:"shard_id,omitempty"`
  1082. Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
  1083. }
  1084. func (m *LookupEcVolumeResponse_EcShardIdLocation) Reset() {
  1085. *m = LookupEcVolumeResponse_EcShardIdLocation{}
  1086. }
  1087. func (m *LookupEcVolumeResponse_EcShardIdLocation) String() string { return proto.CompactTextString(m) }
  1088. func (*LookupEcVolumeResponse_EcShardIdLocation) ProtoMessage() {}
  1089. func (*LookupEcVolumeResponse_EcShardIdLocation) Descriptor() ([]byte, []int) {
  1090. return fileDescriptor0, []int{29, 0}
  1091. }
  1092. func (m *LookupEcVolumeResponse_EcShardIdLocation) GetShardId() uint32 {
  1093. if m != nil {
  1094. return m.ShardId
  1095. }
  1096. return 0
  1097. }
  1098. func (m *LookupEcVolumeResponse_EcShardIdLocation) GetLocations() []*Location {
  1099. if m != nil {
  1100. return m.Locations
  1101. }
  1102. return nil
  1103. }
  1104. type GetMasterConfigurationRequest struct {
  1105. }
  1106. func (m *GetMasterConfigurationRequest) Reset() { *m = GetMasterConfigurationRequest{} }
  1107. func (m *GetMasterConfigurationRequest) String() string { return proto.CompactTextString(m) }
  1108. func (*GetMasterConfigurationRequest) ProtoMessage() {}
  1109. func (*GetMasterConfigurationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} }
  1110. type GetMasterConfigurationResponse struct {
  1111. MetricsAddress string `protobuf:"bytes,1,opt,name=metrics_address,json=metricsAddress" json:"metrics_address,omitempty"`
  1112. MetricsIntervalSeconds uint32 `protobuf:"varint,2,opt,name=metrics_interval_seconds,json=metricsIntervalSeconds" json:"metrics_interval_seconds,omitempty"`
  1113. }
  1114. func (m *GetMasterConfigurationResponse) Reset() { *m = GetMasterConfigurationResponse{} }
  1115. func (m *GetMasterConfigurationResponse) String() string { return proto.CompactTextString(m) }
  1116. func (*GetMasterConfigurationResponse) ProtoMessage() {}
  1117. func (*GetMasterConfigurationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} }
  1118. func (m *GetMasterConfigurationResponse) GetMetricsAddress() string {
  1119. if m != nil {
  1120. return m.MetricsAddress
  1121. }
  1122. return ""
  1123. }
  1124. func (m *GetMasterConfigurationResponse) GetMetricsIntervalSeconds() uint32 {
  1125. if m != nil {
  1126. return m.MetricsIntervalSeconds
  1127. }
  1128. return 0
  1129. }
  1130. func init() {
  1131. proto.RegisterType((*Heartbeat)(nil), "master_pb.Heartbeat")
  1132. proto.RegisterType((*HeartbeatResponse)(nil), "master_pb.HeartbeatResponse")
  1133. proto.RegisterType((*VolumeInformationMessage)(nil), "master_pb.VolumeInformationMessage")
  1134. proto.RegisterType((*VolumeShortInformationMessage)(nil), "master_pb.VolumeShortInformationMessage")
  1135. proto.RegisterType((*VolumeEcShardInformationMessage)(nil), "master_pb.VolumeEcShardInformationMessage")
  1136. proto.RegisterType((*Empty)(nil), "master_pb.Empty")
  1137. proto.RegisterType((*SuperBlockExtra)(nil), "master_pb.SuperBlockExtra")
  1138. proto.RegisterType((*SuperBlockExtra_ErasureCoding)(nil), "master_pb.SuperBlockExtra.ErasureCoding")
  1139. proto.RegisterType((*KeepConnectedRequest)(nil), "master_pb.KeepConnectedRequest")
  1140. proto.RegisterType((*VolumeLocation)(nil), "master_pb.VolumeLocation")
  1141. proto.RegisterType((*LookupVolumeRequest)(nil), "master_pb.LookupVolumeRequest")
  1142. proto.RegisterType((*LookupVolumeResponse)(nil), "master_pb.LookupVolumeResponse")
  1143. proto.RegisterType((*LookupVolumeResponse_VolumeIdLocation)(nil), "master_pb.LookupVolumeResponse.VolumeIdLocation")
  1144. proto.RegisterType((*Location)(nil), "master_pb.Location")
  1145. proto.RegisterType((*AssignRequest)(nil), "master_pb.AssignRequest")
  1146. proto.RegisterType((*AssignResponse)(nil), "master_pb.AssignResponse")
  1147. proto.RegisterType((*StatisticsRequest)(nil), "master_pb.StatisticsRequest")
  1148. proto.RegisterType((*StatisticsResponse)(nil), "master_pb.StatisticsResponse")
  1149. proto.RegisterType((*StorageType)(nil), "master_pb.StorageType")
  1150. proto.RegisterType((*Collection)(nil), "master_pb.Collection")
  1151. proto.RegisterType((*CollectionListRequest)(nil), "master_pb.CollectionListRequest")
  1152. proto.RegisterType((*CollectionListResponse)(nil), "master_pb.CollectionListResponse")
  1153. proto.RegisterType((*CollectionDeleteRequest)(nil), "master_pb.CollectionDeleteRequest")
  1154. proto.RegisterType((*CollectionDeleteResponse)(nil), "master_pb.CollectionDeleteResponse")
  1155. proto.RegisterType((*DataNodeInfo)(nil), "master_pb.DataNodeInfo")
  1156. proto.RegisterType((*RackInfo)(nil), "master_pb.RackInfo")
  1157. proto.RegisterType((*DataCenterInfo)(nil), "master_pb.DataCenterInfo")
  1158. proto.RegisterType((*TopologyInfo)(nil), "master_pb.TopologyInfo")
  1159. proto.RegisterType((*VolumeListRequest)(nil), "master_pb.VolumeListRequest")
  1160. proto.RegisterType((*VolumeListResponse)(nil), "master_pb.VolumeListResponse")
  1161. proto.RegisterType((*LookupEcVolumeRequest)(nil), "master_pb.LookupEcVolumeRequest")
  1162. proto.RegisterType((*LookupEcVolumeResponse)(nil), "master_pb.LookupEcVolumeResponse")
  1163. proto.RegisterType((*LookupEcVolumeResponse_EcShardIdLocation)(nil), "master_pb.LookupEcVolumeResponse.EcShardIdLocation")
  1164. proto.RegisterType((*GetMasterConfigurationRequest)(nil), "master_pb.GetMasterConfigurationRequest")
  1165. proto.RegisterType((*GetMasterConfigurationResponse)(nil), "master_pb.GetMasterConfigurationResponse")
  1166. }
  1167. // Reference imports to suppress errors if they are not otherwise used.
  1168. var _ context.Context
  1169. var _ grpc.ClientConn
  1170. // This is a compile-time assertion to ensure that this generated file
  1171. // is compatible with the grpc package it is being compiled against.
  1172. const _ = grpc.SupportPackageIsVersion4
  1173. // Client API for Seaweed service
  1174. type SeaweedClient interface {
  1175. SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error)
  1176. KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error)
  1177. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  1178. Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error)
  1179. Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
  1180. CollectionList(ctx context.Context, in *CollectionListRequest, opts ...grpc.CallOption) (*CollectionListResponse, error)
  1181. CollectionDelete(ctx context.Context, in *CollectionDeleteRequest, opts ...grpc.CallOption) (*CollectionDeleteResponse, error)
  1182. VolumeList(ctx context.Context, in *VolumeListRequest, opts ...grpc.CallOption) (*VolumeListResponse, error)
  1183. LookupEcVolume(ctx context.Context, in *LookupEcVolumeRequest, opts ...grpc.CallOption) (*LookupEcVolumeResponse, error)
  1184. GetMasterConfiguration(ctx context.Context, in *GetMasterConfigurationRequest, opts ...grpc.CallOption) (*GetMasterConfigurationResponse, error)
  1185. }
  1186. type seaweedClient struct {
  1187. cc *grpc.ClientConn
  1188. }
  1189. func NewSeaweedClient(cc *grpc.ClientConn) SeaweedClient {
  1190. return &seaweedClient{cc}
  1191. }
  1192. func (c *seaweedClient) SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error) {
  1193. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[0], c.cc, "/master_pb.Seaweed/SendHeartbeat", opts...)
  1194. if err != nil {
  1195. return nil, err
  1196. }
  1197. x := &seaweedSendHeartbeatClient{stream}
  1198. return x, nil
  1199. }
  1200. type Seaweed_SendHeartbeatClient interface {
  1201. Send(*Heartbeat) error
  1202. Recv() (*HeartbeatResponse, error)
  1203. grpc.ClientStream
  1204. }
  1205. type seaweedSendHeartbeatClient struct {
  1206. grpc.ClientStream
  1207. }
  1208. func (x *seaweedSendHeartbeatClient) Send(m *Heartbeat) error {
  1209. return x.ClientStream.SendMsg(m)
  1210. }
  1211. func (x *seaweedSendHeartbeatClient) Recv() (*HeartbeatResponse, error) {
  1212. m := new(HeartbeatResponse)
  1213. if err := x.ClientStream.RecvMsg(m); err != nil {
  1214. return nil, err
  1215. }
  1216. return m, nil
  1217. }
  1218. func (c *seaweedClient) KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error) {
  1219. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[1], c.cc, "/master_pb.Seaweed/KeepConnected", opts...)
  1220. if err != nil {
  1221. return nil, err
  1222. }
  1223. x := &seaweedKeepConnectedClient{stream}
  1224. return x, nil
  1225. }
  1226. type Seaweed_KeepConnectedClient interface {
  1227. Send(*KeepConnectedRequest) error
  1228. Recv() (*VolumeLocation, error)
  1229. grpc.ClientStream
  1230. }
  1231. type seaweedKeepConnectedClient struct {
  1232. grpc.ClientStream
  1233. }
  1234. func (x *seaweedKeepConnectedClient) Send(m *KeepConnectedRequest) error {
  1235. return x.ClientStream.SendMsg(m)
  1236. }
  1237. func (x *seaweedKeepConnectedClient) Recv() (*VolumeLocation, error) {
  1238. m := new(VolumeLocation)
  1239. if err := x.ClientStream.RecvMsg(m); err != nil {
  1240. return nil, err
  1241. }
  1242. return m, nil
  1243. }
  1244. func (c *seaweedClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  1245. out := new(LookupVolumeResponse)
  1246. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupVolume", in, out, c.cc, opts...)
  1247. if err != nil {
  1248. return nil, err
  1249. }
  1250. return out, nil
  1251. }
  1252. func (c *seaweedClient) Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error) {
  1253. out := new(AssignResponse)
  1254. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Assign", in, out, c.cc, opts...)
  1255. if err != nil {
  1256. return nil, err
  1257. }
  1258. return out, nil
  1259. }
  1260. func (c *seaweedClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
  1261. out := new(StatisticsResponse)
  1262. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Statistics", in, out, c.cc, opts...)
  1263. if err != nil {
  1264. return nil, err
  1265. }
  1266. return out, nil
  1267. }
  1268. func (c *seaweedClient) CollectionList(ctx context.Context, in *CollectionListRequest, opts ...grpc.CallOption) (*CollectionListResponse, error) {
  1269. out := new(CollectionListResponse)
  1270. err := grpc.Invoke(ctx, "/master_pb.Seaweed/CollectionList", in, out, c.cc, opts...)
  1271. if err != nil {
  1272. return nil, err
  1273. }
  1274. return out, nil
  1275. }
  1276. func (c *seaweedClient) CollectionDelete(ctx context.Context, in *CollectionDeleteRequest, opts ...grpc.CallOption) (*CollectionDeleteResponse, error) {
  1277. out := new(CollectionDeleteResponse)
  1278. err := grpc.Invoke(ctx, "/master_pb.Seaweed/CollectionDelete", in, out, c.cc, opts...)
  1279. if err != nil {
  1280. return nil, err
  1281. }
  1282. return out, nil
  1283. }
  1284. func (c *seaweedClient) VolumeList(ctx context.Context, in *VolumeListRequest, opts ...grpc.CallOption) (*VolumeListResponse, error) {
  1285. out := new(VolumeListResponse)
  1286. err := grpc.Invoke(ctx, "/master_pb.Seaweed/VolumeList", in, out, c.cc, opts...)
  1287. if err != nil {
  1288. return nil, err
  1289. }
  1290. return out, nil
  1291. }
  1292. func (c *seaweedClient) LookupEcVolume(ctx context.Context, in *LookupEcVolumeRequest, opts ...grpc.CallOption) (*LookupEcVolumeResponse, error) {
  1293. out := new(LookupEcVolumeResponse)
  1294. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupEcVolume", in, out, c.cc, opts...)
  1295. if err != nil {
  1296. return nil, err
  1297. }
  1298. return out, nil
  1299. }
  1300. func (c *seaweedClient) GetMasterConfiguration(ctx context.Context, in *GetMasterConfigurationRequest, opts ...grpc.CallOption) (*GetMasterConfigurationResponse, error) {
  1301. out := new(GetMasterConfigurationResponse)
  1302. err := grpc.Invoke(ctx, "/master_pb.Seaweed/GetMasterConfiguration", in, out, c.cc, opts...)
  1303. if err != nil {
  1304. return nil, err
  1305. }
  1306. return out, nil
  1307. }
  1308. // Server API for Seaweed service
  1309. type SeaweedServer interface {
  1310. SendHeartbeat(Seaweed_SendHeartbeatServer) error
  1311. KeepConnected(Seaweed_KeepConnectedServer) error
  1312. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  1313. Assign(context.Context, *AssignRequest) (*AssignResponse, error)
  1314. Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
  1315. CollectionList(context.Context, *CollectionListRequest) (*CollectionListResponse, error)
  1316. CollectionDelete(context.Context, *CollectionDeleteRequest) (*CollectionDeleteResponse, error)
  1317. VolumeList(context.Context, *VolumeListRequest) (*VolumeListResponse, error)
  1318. LookupEcVolume(context.Context, *LookupEcVolumeRequest) (*LookupEcVolumeResponse, error)
  1319. GetMasterConfiguration(context.Context, *GetMasterConfigurationRequest) (*GetMasterConfigurationResponse, error)
  1320. }
  1321. func RegisterSeaweedServer(s *grpc.Server, srv SeaweedServer) {
  1322. s.RegisterService(&_Seaweed_serviceDesc, srv)
  1323. }
  1324. func _Seaweed_SendHeartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
  1325. return srv.(SeaweedServer).SendHeartbeat(&seaweedSendHeartbeatServer{stream})
  1326. }
  1327. type Seaweed_SendHeartbeatServer interface {
  1328. Send(*HeartbeatResponse) error
  1329. Recv() (*Heartbeat, error)
  1330. grpc.ServerStream
  1331. }
  1332. type seaweedSendHeartbeatServer struct {
  1333. grpc.ServerStream
  1334. }
  1335. func (x *seaweedSendHeartbeatServer) Send(m *HeartbeatResponse) error {
  1336. return x.ServerStream.SendMsg(m)
  1337. }
  1338. func (x *seaweedSendHeartbeatServer) Recv() (*Heartbeat, error) {
  1339. m := new(Heartbeat)
  1340. if err := x.ServerStream.RecvMsg(m); err != nil {
  1341. return nil, err
  1342. }
  1343. return m, nil
  1344. }
  1345. func _Seaweed_KeepConnected_Handler(srv interface{}, stream grpc.ServerStream) error {
  1346. return srv.(SeaweedServer).KeepConnected(&seaweedKeepConnectedServer{stream})
  1347. }
  1348. type Seaweed_KeepConnectedServer interface {
  1349. Send(*VolumeLocation) error
  1350. Recv() (*KeepConnectedRequest, error)
  1351. grpc.ServerStream
  1352. }
  1353. type seaweedKeepConnectedServer struct {
  1354. grpc.ServerStream
  1355. }
  1356. func (x *seaweedKeepConnectedServer) Send(m *VolumeLocation) error {
  1357. return x.ServerStream.SendMsg(m)
  1358. }
  1359. func (x *seaweedKeepConnectedServer) Recv() (*KeepConnectedRequest, error) {
  1360. m := new(KeepConnectedRequest)
  1361. if err := x.ServerStream.RecvMsg(m); err != nil {
  1362. return nil, err
  1363. }
  1364. return m, nil
  1365. }
  1366. func _Seaweed_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1367. in := new(LookupVolumeRequest)
  1368. if err := dec(in); err != nil {
  1369. return nil, err
  1370. }
  1371. if interceptor == nil {
  1372. return srv.(SeaweedServer).LookupVolume(ctx, in)
  1373. }
  1374. info := &grpc.UnaryServerInfo{
  1375. Server: srv,
  1376. FullMethod: "/master_pb.Seaweed/LookupVolume",
  1377. }
  1378. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1379. return srv.(SeaweedServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  1380. }
  1381. return interceptor(ctx, in, info, handler)
  1382. }
  1383. func _Seaweed_Assign_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1384. in := new(AssignRequest)
  1385. if err := dec(in); err != nil {
  1386. return nil, err
  1387. }
  1388. if interceptor == nil {
  1389. return srv.(SeaweedServer).Assign(ctx, in)
  1390. }
  1391. info := &grpc.UnaryServerInfo{
  1392. Server: srv,
  1393. FullMethod: "/master_pb.Seaweed/Assign",
  1394. }
  1395. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1396. return srv.(SeaweedServer).Assign(ctx, req.(*AssignRequest))
  1397. }
  1398. return interceptor(ctx, in, info, handler)
  1399. }
  1400. func _Seaweed_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1401. in := new(StatisticsRequest)
  1402. if err := dec(in); err != nil {
  1403. return nil, err
  1404. }
  1405. if interceptor == nil {
  1406. return srv.(SeaweedServer).Statistics(ctx, in)
  1407. }
  1408. info := &grpc.UnaryServerInfo{
  1409. Server: srv,
  1410. FullMethod: "/master_pb.Seaweed/Statistics",
  1411. }
  1412. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1413. return srv.(SeaweedServer).Statistics(ctx, req.(*StatisticsRequest))
  1414. }
  1415. return interceptor(ctx, in, info, handler)
  1416. }
  1417. func _Seaweed_CollectionList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1418. in := new(CollectionListRequest)
  1419. if err := dec(in); err != nil {
  1420. return nil, err
  1421. }
  1422. if interceptor == nil {
  1423. return srv.(SeaweedServer).CollectionList(ctx, in)
  1424. }
  1425. info := &grpc.UnaryServerInfo{
  1426. Server: srv,
  1427. FullMethod: "/master_pb.Seaweed/CollectionList",
  1428. }
  1429. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1430. return srv.(SeaweedServer).CollectionList(ctx, req.(*CollectionListRequest))
  1431. }
  1432. return interceptor(ctx, in, info, handler)
  1433. }
  1434. func _Seaweed_CollectionDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1435. in := new(CollectionDeleteRequest)
  1436. if err := dec(in); err != nil {
  1437. return nil, err
  1438. }
  1439. if interceptor == nil {
  1440. return srv.(SeaweedServer).CollectionDelete(ctx, in)
  1441. }
  1442. info := &grpc.UnaryServerInfo{
  1443. Server: srv,
  1444. FullMethod: "/master_pb.Seaweed/CollectionDelete",
  1445. }
  1446. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1447. return srv.(SeaweedServer).CollectionDelete(ctx, req.(*CollectionDeleteRequest))
  1448. }
  1449. return interceptor(ctx, in, info, handler)
  1450. }
  1451. func _Seaweed_VolumeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1452. in := new(VolumeListRequest)
  1453. if err := dec(in); err != nil {
  1454. return nil, err
  1455. }
  1456. if interceptor == nil {
  1457. return srv.(SeaweedServer).VolumeList(ctx, in)
  1458. }
  1459. info := &grpc.UnaryServerInfo{
  1460. Server: srv,
  1461. FullMethod: "/master_pb.Seaweed/VolumeList",
  1462. }
  1463. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1464. return srv.(SeaweedServer).VolumeList(ctx, req.(*VolumeListRequest))
  1465. }
  1466. return interceptor(ctx, in, info, handler)
  1467. }
  1468. func _Seaweed_LookupEcVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1469. in := new(LookupEcVolumeRequest)
  1470. if err := dec(in); err != nil {
  1471. return nil, err
  1472. }
  1473. if interceptor == nil {
  1474. return srv.(SeaweedServer).LookupEcVolume(ctx, in)
  1475. }
  1476. info := &grpc.UnaryServerInfo{
  1477. Server: srv,
  1478. FullMethod: "/master_pb.Seaweed/LookupEcVolume",
  1479. }
  1480. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1481. return srv.(SeaweedServer).LookupEcVolume(ctx, req.(*LookupEcVolumeRequest))
  1482. }
  1483. return interceptor(ctx, in, info, handler)
  1484. }
  1485. func _Seaweed_GetMasterConfiguration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1486. in := new(GetMasterConfigurationRequest)
  1487. if err := dec(in); err != nil {
  1488. return nil, err
  1489. }
  1490. if interceptor == nil {
  1491. return srv.(SeaweedServer).GetMasterConfiguration(ctx, in)
  1492. }
  1493. info := &grpc.UnaryServerInfo{
  1494. Server: srv,
  1495. FullMethod: "/master_pb.Seaweed/GetMasterConfiguration",
  1496. }
  1497. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1498. return srv.(SeaweedServer).GetMasterConfiguration(ctx, req.(*GetMasterConfigurationRequest))
  1499. }
  1500. return interceptor(ctx, in, info, handler)
  1501. }
  1502. var _Seaweed_serviceDesc = grpc.ServiceDesc{
  1503. ServiceName: "master_pb.Seaweed",
  1504. HandlerType: (*SeaweedServer)(nil),
  1505. Methods: []grpc.MethodDesc{
  1506. {
  1507. MethodName: "LookupVolume",
  1508. Handler: _Seaweed_LookupVolume_Handler,
  1509. },
  1510. {
  1511. MethodName: "Assign",
  1512. Handler: _Seaweed_Assign_Handler,
  1513. },
  1514. {
  1515. MethodName: "Statistics",
  1516. Handler: _Seaweed_Statistics_Handler,
  1517. },
  1518. {
  1519. MethodName: "CollectionList",
  1520. Handler: _Seaweed_CollectionList_Handler,
  1521. },
  1522. {
  1523. MethodName: "CollectionDelete",
  1524. Handler: _Seaweed_CollectionDelete_Handler,
  1525. },
  1526. {
  1527. MethodName: "VolumeList",
  1528. Handler: _Seaweed_VolumeList_Handler,
  1529. },
  1530. {
  1531. MethodName: "LookupEcVolume",
  1532. Handler: _Seaweed_LookupEcVolume_Handler,
  1533. },
  1534. {
  1535. MethodName: "GetMasterConfiguration",
  1536. Handler: _Seaweed_GetMasterConfiguration_Handler,
  1537. },
  1538. },
  1539. Streams: []grpc.StreamDesc{
  1540. {
  1541. StreamName: "SendHeartbeat",
  1542. Handler: _Seaweed_SendHeartbeat_Handler,
  1543. ServerStreams: true,
  1544. ClientStreams: true,
  1545. },
  1546. {
  1547. StreamName: "KeepConnected",
  1548. Handler: _Seaweed_KeepConnected_Handler,
  1549. ServerStreams: true,
  1550. ClientStreams: true,
  1551. },
  1552. },
  1553. Metadata: "master.proto",
  1554. }
  1555. func init() { proto.RegisterFile("master.proto", fileDescriptor0) }
  1556. var fileDescriptor0 = []byte{
  1557. // 1889 bytes of a gzipped FileDescriptorProto
  1558. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x59, 0xcb, 0x6f, 0x23, 0x49,
  1559. 0x19, 0x9f, 0xb6, 0x1d, 0xc7, 0xfe, 0xfc, 0x88, 0x5d, 0xc9, 0x64, 0x3d, 0x5e, 0x66, 0xe2, 0xe9,
  1560. 0x45, 0xda, 0xec, 0xb0, 0x84, 0x65, 0x76, 0x25, 0x90, 0x00, 0xad, 0x66, 0x32, 0xd9, 0x25, 0x9a,
  1561. 0xc7, 0xce, 0xb4, 0x87, 0x41, 0x42, 0x42, 0x4d, 0xb9, 0xbb, 0x92, 0x94, 0xd2, 0xee, 0x6e, 0xba,
  1562. 0xca, 0x99, 0x78, 0x39, 0xc2, 0x0d, 0x89, 0x0b, 0x07, 0x4e, 0xdc, 0xf9, 0x1b, 0x38, 0x70, 0xe1,
  1563. 0xc8, 0x1f, 0xc0, 0x99, 0x7f, 0x81, 0x2b, 0x42, 0x5a, 0xd5, 0xab, 0xbb, 0xda, 0x76, 0x92, 0xc9,
  1564. 0x4a, 0x73, 0x98, 0x5b, 0xf5, 0xf7, 0xaa, 0xaf, 0x7e, 0x5f, 0x7d, 0x8f, 0xb2, 0xa1, 0x3d, 0xc5,
  1565. 0x8c, 0x93, 0x6c, 0x2f, 0xcd, 0x12, 0x9e, 0xa0, 0xa6, 0xfa, 0xf2, 0xd3, 0x89, 0xfb, 0xc7, 0x3a,
  1566. 0x34, 0x7f, 0x4e, 0x70, 0xc6, 0x27, 0x04, 0x73, 0xd4, 0x85, 0x0a, 0x4d, 0x07, 0xce, 0xc8, 0xd9,
  1567. 0x6d, 0x7a, 0x15, 0x9a, 0x22, 0x04, 0xb5, 0x34, 0xc9, 0xf8, 0xa0, 0x32, 0x72, 0x76, 0x3b, 0x9e,
  1568. 0x5c, 0xa3, 0xdb, 0x00, 0xe9, 0x6c, 0x12, 0xd1, 0xc0, 0x9f, 0x65, 0xd1, 0xa0, 0x2a, 0x65, 0x9b,
  1569. 0x8a, 0xf2, 0x8b, 0x2c, 0x42, 0xbb, 0xd0, 0x9b, 0xe2, 0x73, 0xff, 0x2c, 0x89, 0x66, 0x53, 0xe2,
  1570. 0x07, 0xc9, 0x2c, 0xe6, 0x83, 0x9a, 0x54, 0xef, 0x4e, 0xf1, 0xf9, 0x2b, 0x49, 0xde, 0x17, 0x54,
  1571. 0x34, 0x12, 0x5e, 0x9d, 0xfb, 0x47, 0x34, 0x22, 0xfe, 0x29, 0x99, 0x0f, 0xd6, 0x46, 0xce, 0x6e,
  1572. 0xcd, 0x83, 0x29, 0x3e, 0xff, 0x82, 0x46, 0xe4, 0x31, 0x99, 0xa3, 0x1d, 0x68, 0x85, 0x98, 0x63,
  1573. 0x3f, 0x20, 0x31, 0x27, 0xd9, 0xa0, 0x2e, 0xf7, 0x02, 0x41, 0xda, 0x97, 0x14, 0xe1, 0x5f, 0x86,
  1574. 0x83, 0xd3, 0xc1, 0xba, 0xe4, 0xc8, 0xb5, 0xf0, 0x0f, 0x87, 0x53, 0x1a, 0xfb, 0xd2, 0xf3, 0x86,
  1575. 0xdc, 0xba, 0x29, 0x29, 0xcf, 0x85, 0xfb, 0x3f, 0x83, 0x75, 0xe5, 0x1b, 0x1b, 0x34, 0x47, 0xd5,
  1576. 0xdd, 0xd6, 0xfd, 0x0f, 0xf6, 0x72, 0x34, 0xf6, 0x94, 0x7b, 0x87, 0xf1, 0x51, 0x92, 0x4d, 0x31,
  1577. 0xa7, 0x49, 0xfc, 0x94, 0x30, 0x86, 0x8f, 0x89, 0x67, 0x74, 0xd0, 0x21, 0xb4, 0x62, 0xf2, 0xda,
  1578. 0x37, 0x26, 0x40, 0x9a, 0xd8, 0x5d, 0x32, 0x31, 0x3e, 0x49, 0x32, 0xbe, 0xc2, 0x0e, 0xc4, 0xe4,
  1579. 0xf5, 0x2b, 0x6d, 0xea, 0x05, 0x6c, 0x84, 0x24, 0x22, 0x9c, 0x84, 0xb9, 0xb9, 0xd6, 0x35, 0xcd,
  1580. 0x75, 0xb5, 0x01, 0x63, 0xf2, 0xbb, 0xd0, 0x3d, 0xc1, 0xcc, 0x8f, 0x93, 0xdc, 0x62, 0x7b, 0xe4,
  1581. 0xec, 0x36, 0xbc, 0xf6, 0x09, 0x66, 0xcf, 0x12, 0x23, 0xf5, 0x25, 0x34, 0x49, 0xe0, 0xb3, 0x13,
  1582. 0x9c, 0x85, 0x6c, 0xd0, 0x93, 0x5b, 0xde, 0x5b, 0xda, 0xf2, 0x20, 0x18, 0x0b, 0x81, 0x15, 0x9b,
  1583. 0x36, 0x88, 0x62, 0x31, 0xf4, 0x0c, 0x3a, 0x02, 0x8c, 0xc2, 0x58, 0xff, 0xda, 0xc6, 0x04, 0x9a,
  1584. 0x07, 0xc6, 0xde, 0x2b, 0xe8, 0x1b, 0x44, 0x0a, 0x9b, 0xe8, 0xda, 0x36, 0x0d, 0xac, 0xb9, 0xdd,
  1585. 0x0f, 0xa1, 0xa7, 0x61, 0x29, 0xcc, 0x6e, 0x4a, 0x60, 0x3a, 0x12, 0x18, 0x23, 0xe8, 0xfe, 0xdd,
  1586. 0x81, 0x7e, 0x9e, 0x0d, 0x1e, 0x61, 0x69, 0x12, 0x33, 0x82, 0xee, 0x41, 0x5f, 0x5f, 0x67, 0x46,
  1587. 0xbf, 0x26, 0x7e, 0x44, 0xa7, 0x94, 0xcb, 0x24, 0xa9, 0x79, 0x1b, 0x8a, 0x31, 0xa6, 0x5f, 0x93,
  1588. 0x27, 0x82, 0x8c, 0xb6, 0xa1, 0x1e, 0x11, 0x1c, 0x92, 0x4c, 0xe6, 0x4c, 0xd3, 0xd3, 0x5f, 0xe8,
  1589. 0x43, 0xd8, 0x98, 0x12, 0x9e, 0xd1, 0x80, 0xf9, 0x38, 0x0c, 0x33, 0xc2, 0x98, 0x4e, 0x9d, 0xae,
  1590. 0x26, 0x3f, 0x50, 0x54, 0xf4, 0x63, 0x18, 0x18, 0x41, 0x2a, 0xee, 0xf8, 0x19, 0x8e, 0x7c, 0x46,
  1591. 0x82, 0x24, 0x0e, 0x99, 0xce, 0xa3, 0x6d, 0xcd, 0x3f, 0xd4, 0xec, 0xb1, 0xe2, 0xba, 0x7f, 0xad,
  1592. 0xc2, 0xe0, 0xa2, 0x0b, 0x2c, 0x33, 0x3b, 0x94, 0x4e, 0x77, 0xbc, 0x0a, 0x0d, 0x45, 0xe6, 0x88,
  1593. 0xc3, 0x48, 0x2f, 0x6b, 0x9e, 0x5c, 0xa3, 0x3b, 0x00, 0x41, 0x12, 0x45, 0x24, 0x10, 0x8a, 0xda,
  1594. 0x3d, 0x8b, 0x22, 0x32, 0x4b, 0x26, 0x6b, 0x91, 0xd4, 0x35, 0xaf, 0x29, 0x28, 0x2a, 0x9f, 0xef,
  1595. 0x42, 0x5b, 0x01, 0xaf, 0x05, 0x54, 0x3e, 0xb7, 0x14, 0x4d, 0x89, 0x7c, 0x0c, 0xc8, 0x04, 0x78,
  1596. 0x32, 0xcf, 0x05, 0xeb, 0x52, 0xb0, 0xa7, 0x39, 0x0f, 0xe7, 0x46, 0xfa, 0x7d, 0x68, 0x66, 0x04,
  1597. 0x87, 0x7e, 0x12, 0x47, 0x73, 0x99, 0xe2, 0x0d, 0xaf, 0x21, 0x08, 0x5f, 0xc5, 0xd1, 0x1c, 0x7d,
  1598. 0x0f, 0xfa, 0x19, 0x49, 0x23, 0x1a, 0x60, 0x3f, 0x8d, 0x70, 0x40, 0xa6, 0x24, 0x36, 0xd9, 0xde,
  1599. 0xd3, 0x8c, 0xe7, 0x86, 0x8e, 0x06, 0xb0, 0x7e, 0x46, 0x32, 0x26, 0x8e, 0xd5, 0x94, 0x22, 0xe6,
  1600. 0x13, 0xf5, 0xa0, 0xca, 0x79, 0x34, 0x00, 0x49, 0x15, 0x4b, 0xf4, 0x11, 0xf4, 0x82, 0x64, 0x9a,
  1601. 0xe2, 0x80, 0xfb, 0x19, 0x39, 0xa3, 0x52, 0xa9, 0x25, 0xd9, 0x1b, 0x9a, 0xee, 0x69, 0xb2, 0x38,
  1602. 0xce, 0x34, 0x09, 0xe9, 0x11, 0x25, 0xa1, 0x8f, 0xb9, 0x0e, 0x93, 0x4c, 0xb9, 0xaa, 0xd7, 0x33,
  1603. 0x9c, 0x07, 0x5c, 0x05, 0xc8, 0xfd, 0x9b, 0x03, 0xb7, 0x2f, 0x4d, 0xe7, 0xa5, 0x20, 0x5d, 0x15,
  1604. 0x90, 0xb7, 0x85, 0x81, 0x3b, 0x83, 0x9d, 0x2b, 0x92, 0xec, 0x0a, 0x5f, 0x2b, 0x4b, 0xbe, 0xba,
  1605. 0xd0, 0x21, 0x81, 0x4f, 0xe3, 0x90, 0x9c, 0xfb, 0x13, 0xca, 0xd5, 0xf5, 0xef, 0x78, 0x2d, 0x12,
  1606. 0x1c, 0x0a, 0xda, 0x43, 0xca, 0x99, 0xbb, 0x0e, 0x6b, 0x07, 0xd3, 0x94, 0xcf, 0xdd, 0x7f, 0x38,
  1607. 0xb0, 0x31, 0x9e, 0xa5, 0x24, 0x7b, 0x18, 0x25, 0xc1, 0xe9, 0xc1, 0x39, 0xcf, 0x30, 0xfa, 0x0a,
  1608. 0xba, 0x24, 0xc3, 0x6c, 0x96, 0x89, 0x6b, 0x13, 0xd2, 0xf8, 0x58, 0x6e, 0x5e, 0xae, 0x96, 0x0b,
  1609. 0x3a, 0x7b, 0x07, 0x4a, 0x61, 0x5f, 0xca, 0x7b, 0x1d, 0x62, 0x7f, 0x0e, 0x7f, 0x05, 0x9d, 0x12,
  1610. 0x5f, 0xe4, 0x84, 0xe8, 0x2d, 0xfa, 0x50, 0x72, 0x2d, 0xf2, 0x39, 0xc5, 0x19, 0xe5, 0x73, 0xdd,
  1611. 0x03, 0xf5, 0x97, 0xc8, 0x05, 0x5d, 0x13, 0x68, 0x28, 0xce, 0x52, 0x15, 0x5d, 0x46, 0x51, 0x0e,
  1612. 0x43, 0xe6, 0xde, 0x83, 0xad, 0xc7, 0x84, 0xa4, 0xfb, 0x49, 0x1c, 0x93, 0x80, 0x93, 0xd0, 0x23,
  1613. 0xbf, 0x9d, 0x11, 0xc6, 0xc5, 0x16, 0x31, 0x9e, 0x12, 0xdd, 0x62, 0xe5, 0xda, 0xfd, 0x8b, 0x03,
  1614. 0x5d, 0x85, 0xf6, 0x93, 0x24, 0x90, 0x18, 0x8b, 0x88, 0x88, 0xe6, 0xaa, 0xa4, 0xc4, 0x72, 0xa1,
  1615. 0xeb, 0x56, 0x16, 0xbb, 0xee, 0x2d, 0x68, 0xc8, 0xb6, 0x54, 0x38, 0xb3, 0x2e, 0x3a, 0x0d, 0x0d,
  1616. 0x59, 0x91, 0x96, 0xa1, 0x62, 0xd7, 0x24, 0xbb, 0x65, 0x3a, 0x87, 0x10, 0x29, 0x8a, 0xd6, 0x9a,
  1617. 0x5d, 0xb4, 0xdc, 0x97, 0xb0, 0xf9, 0x24, 0x49, 0x4e, 0x67, 0xa9, 0x72, 0xcf, 0x1c, 0xa2, 0x7c,
  1618. 0x76, 0x67, 0x54, 0x15, 0xbe, 0xe4, 0x67, 0xbf, 0xea, 0x26, 0xb8, 0xff, 0x75, 0x60, 0xab, 0x6c,
  1619. 0x56, 0xd7, 0xd9, 0xdf, 0xc0, 0x66, 0x6e, 0xd7, 0x8f, 0x34, 0x16, 0x6a, 0x83, 0xd6, 0xfd, 0x4f,
  1620. 0xac, 0x30, 0xaf, 0xd2, 0x36, 0xbd, 0x3b, 0x34, 0x20, 0x7a, 0xfd, 0xb3, 0x05, 0x0a, 0x1b, 0x9e,
  1621. 0x43, 0x6f, 0x51, 0x4c, 0x54, 0x99, 0x7c, 0x57, 0x8d, 0x78, 0xc3, 0x68, 0xa2, 0x1f, 0x42, 0xb3,
  1622. 0x70, 0xa4, 0x22, 0x1d, 0xd9, 0x2c, 0x39, 0xa2, 0xf7, 0x2a, 0xa4, 0xd0, 0x16, 0xac, 0x91, 0x2c,
  1623. 0x4b, 0x32, 0x9d, 0xaf, 0xea, 0xc3, 0xfd, 0x09, 0x34, 0xbe, 0x75, 0x74, 0xdd, 0x7f, 0x39, 0xd0,
  1624. 0x79, 0xc0, 0x18, 0x3d, 0x8e, 0x4d, 0x08, 0xb6, 0x60, 0x4d, 0xd5, 0x4e, 0xd5, 0x86, 0xd4, 0x07,
  1625. 0x1a, 0x41, 0x4b, 0xa7, 0xbd, 0x05, 0xbd, 0x4d, 0xba, 0xb2, 0xa2, 0xe8, 0x52, 0x50, 0x53, 0xae,
  1626. 0x89, 0x72, 0xb8, 0x30, 0x83, 0xad, 0x5d, 0x38, 0x83, 0xd5, 0xad, 0x19, 0xec, 0x7d, 0x68, 0x4a,
  1627. 0xa5, 0x38, 0x09, 0x89, 0x1e, 0xce, 0x1a, 0x82, 0xf0, 0x2c, 0x09, 0x89, 0xfb, 0x67, 0x07, 0xba,
  1628. 0xe6, 0x34, 0x3a, 0xf2, 0x3d, 0xa8, 0x1e, 0xe5, 0xe8, 0x8b, 0xa5, 0xc1, 0xa8, 0x72, 0x11, 0x46,
  1629. 0x4b, 0x73, 0x67, 0x8e, 0x48, 0xcd, 0x46, 0x24, 0x0f, 0xc6, 0x9a, 0x15, 0x0c, 0xe1, 0x32, 0x9e,
  1630. 0xf1, 0x13, 0xe3, 0xb2, 0x58, 0xbb, 0xc7, 0xd0, 0x1f, 0x73, 0xcc, 0x29, 0xe3, 0x34, 0x60, 0x06,
  1631. 0xe6, 0x05, 0x40, 0x9d, 0xab, 0x00, 0xad, 0x5c, 0x04, 0x68, 0x35, 0x07, 0xd4, 0xfd, 0xa7, 0x03,
  1632. 0xc8, 0xde, 0x49, 0x43, 0xf0, 0x16, 0xb6, 0x12, 0x90, 0xf1, 0x84, 0x8b, 0x01, 0x42, 0xb4, 0x7a,
  1633. 0xdd, 0xb0, 0x25, 0x45, 0x0c, 0x2c, 0x22, 0x4a, 0x33, 0x46, 0x42, 0xc5, 0x55, 0xdd, 0xba, 0x21,
  1634. 0x08, 0x92, 0x59, 0x6e, 0xf6, 0xf5, 0x85, 0x66, 0xef, 0x3e, 0x80, 0xd6, 0x98, 0x27, 0x19, 0x3e,
  1635. 0x26, 0x2f, 0xe7, 0xe9, 0x9b, 0x78, 0xaf, 0xbd, 0xab, 0x14, 0x40, 0x8c, 0x00, 0xf6, 0x0b, 0xef,
  1636. 0x57, 0x55, 0xc6, 0xdf, 0xc1, 0xcd, 0x42, 0xe2, 0x09, 0x65, 0xdc, 0xc4, 0xe5, 0x33, 0xd8, 0xa6,
  1637. 0x71, 0x10, 0xcd, 0x42, 0xe2, 0xc7, 0xa2, 0x31, 0x45, 0xf9, 0xbc, 0xeb, 0xc8, 0x31, 0x61, 0x4b,
  1638. 0x73, 0x9f, 0x49, 0xa6, 0x99, 0x7b, 0x3f, 0x06, 0x64, 0xb4, 0x48, 0x90, 0x6b, 0x54, 0xa4, 0x46,
  1639. 0x4f, 0x73, 0x0e, 0x02, 0x2d, 0xed, 0xbe, 0x80, 0xed, 0xc5, 0xcd, 0x75, 0xa8, 0x7e, 0x04, 0xad,
  1640. 0x02, 0x76, 0x53, 0x9f, 0x6e, 0x5a, 0x65, 0xa1, 0xd0, 0xf3, 0x6c, 0x49, 0xf7, 0xfb, 0xf0, 0x5e,
  1641. 0xc1, 0x7a, 0x24, 0x0b, 0xf0, 0x65, 0x8d, 0x61, 0x08, 0x83, 0x65, 0x71, 0xe5, 0x83, 0xfb, 0x9f,
  1642. 0x0a, 0xb4, 0x1f, 0xe9, 0x8c, 0x12, 0xdd, 0xd9, 0xea, 0xc7, 0x4d, 0xd9, 0x8f, 0xef, 0x42, 0xbb,
  1643. 0xf4, 0x06, 0x53, 0x83, 0x5e, 0xeb, 0xcc, 0x7a, 0x80, 0xad, 0x7a, 0xaa, 0x55, 0xa5, 0xd8, 0xe2,
  1644. 0x53, 0xed, 0x1e, 0xf4, 0x8f, 0x32, 0x42, 0x96, 0x5f, 0x75, 0x35, 0x6f, 0x43, 0x30, 0x6c, 0xd9,
  1645. 0x3d, 0xd8, 0xc4, 0x01, 0xa7, 0x67, 0x0b, 0xd2, 0xea, 0x7e, 0xf5, 0x15, 0xcb, 0x96, 0xff, 0x22,
  1646. 0x77, 0x94, 0xc6, 0x47, 0x09, 0x1b, 0xd4, 0xdf, 0xfc, 0x55, 0xa6, 0x4f, 0x23, 0x38, 0x0c, 0x3d,
  1647. 0x87, 0xae, 0x99, 0xee, 0xb5, 0xa5, 0xf5, 0x6b, 0xbf, 0x1c, 0xda, 0xa4, 0x60, 0x31, 0xf7, 0x0f,
  1648. 0x15, 0x68, 0x78, 0x38, 0x38, 0x7d, 0xb7, 0xf1, 0xfd, 0x1c, 0x36, 0xf2, 0x5a, 0x5c, 0x82, 0xf8,
  1649. 0x3d, 0x0b, 0x18, 0xfb, 0x2a, 0x79, 0x9d, 0xd0, 0xfa, 0x62, 0xee, 0xff, 0x1d, 0xe8, 0x3e, 0xca,
  1650. 0xeb, 0xfd, 0xbb, 0x0d, 0xc6, 0x7d, 0x00, 0xd1, 0xa0, 0x4a, 0x38, 0xd8, 0x0d, 0xdd, 0x84, 0xdb,
  1651. 0x6b, 0x66, 0x7a, 0xc5, 0xdc, 0x3f, 0x55, 0xa0, 0xfd, 0x32, 0x49, 0x93, 0x28, 0x39, 0x9e, 0xbf,
  1652. 0xdb, 0xa7, 0x3f, 0x80, 0xbe, 0xd5, 0xcb, 0x4b, 0x20, 0xdc, 0x5a, 0xb8, 0x0c, 0x45, 0xb0, 0xbd,
  1653. 0x8d, 0xb0, 0xf4, 0xcd, 0xdc, 0x4d, 0xe8, 0xeb, 0x79, 0xb5, 0x28, 0xc9, 0xee, 0xef, 0x1d, 0x40,
  1654. 0x36, 0x55, 0xd7, 0xca, 0x9f, 0x42, 0x87, 0x6b, 0xec, 0xe4, 0x7e, 0x7a, 0x68, 0xb7, 0xef, 0x9e,
  1655. 0x8d, 0xad, 0xd7, 0xe6, 0x36, 0xd2, 0x3f, 0x80, 0xad, 0xa5, 0x97, 0xb7, 0x3f, 0x9d, 0x68, 0x84,
  1656. 0xfb, 0x0b, 0x8f, 0xef, 0xa7, 0x13, 0xf7, 0x33, 0xb8, 0xa9, 0x86, 0x43, 0x53, 0xc7, 0x4d, 0x7d,
  1657. 0x5d, 0x9a, 0xf2, 0x3a, 0xc5, 0x94, 0xe7, 0xfe, 0xcf, 0x81, 0xed, 0x45, 0x35, 0xed, 0xff, 0x65,
  1658. 0x7a, 0x08, 0x03, 0xd2, 0xf5, 0xc6, 0x9e, 0x57, 0xd5, 0x98, 0xf8, 0xe9, 0xd2, 0xbc, 0xba, 0x68,
  1659. 0x7b, 0xcf, 0xd4, 0xa1, 0x62, 0x64, 0xed, 0xb1, 0x32, 0x81, 0x0d, 0x31, 0xf4, 0x97, 0xc4, 0xc4,
  1660. 0xb4, 0x6f, 0xf6, 0xd5, 0x3e, 0xad, 0x6b, 0xc5, 0x6f, 0x31, 0xb0, 0xba, 0x3b, 0x70, 0xfb, 0x4b,
  1661. 0xc2, 0x9f, 0x4a, 0x99, 0xfd, 0x24, 0x3e, 0xa2, 0xc7, 0xb3, 0x4c, 0x09, 0x15, 0xa1, 0xbd, 0x73,
  1662. 0x91, 0x84, 0x86, 0x69, 0xc5, 0xcf, 0x1b, 0xce, 0xb5, 0x7f, 0xde, 0xa8, 0x5c, 0xf6, 0xf3, 0xc6,
  1663. 0xfd, 0x7f, 0xd7, 0x61, 0x7d, 0x4c, 0xf0, 0x6b, 0x42, 0x42, 0x74, 0x08, 0x9d, 0x31, 0x89, 0xc3,
  1664. 0xe2, 0x87, 0xcb, 0x2d, 0xeb, 0x8c, 0x39, 0x75, 0xf8, 0x9d, 0x55, 0xd4, 0xbc, 0x85, 0xde, 0xd8,
  1665. 0x75, 0x3e, 0x71, 0xd0, 0x0b, 0xe8, 0x94, 0x5e, 0x6a, 0x68, 0xc7, 0x52, 0x5a, 0xf5, 0x86, 0x1b,
  1666. 0xde, 0x5a, 0x6a, 0x28, 0x06, 0xd5, 0xdc, 0x64, 0xdb, 0x7e, 0xa1, 0xa0, 0x3b, 0x17, 0x3e, 0x5d,
  1667. 0x94, 0xc1, 0x9d, 0x2b, 0x9e, 0x36, 0xee, 0x0d, 0xf4, 0x39, 0xd4, 0xd5, 0xc8, 0x8c, 0x06, 0x96,
  1668. 0x70, 0xe9, 0x4d, 0x50, 0xf2, 0xab, 0x3c, 0x5f, 0xbb, 0x37, 0xd0, 0x63, 0x80, 0x62, 0xe8, 0x44,
  1669. 0x36, 0x30, 0x4b, 0x53, 0xef, 0xf0, 0xf6, 0x05, 0xdc, 0xdc, 0xd8, 0x2f, 0xa1, 0x5b, 0x1e, 0x8d,
  1670. 0xd0, 0x68, 0xe5, 0xf4, 0x63, 0xd5, 0x87, 0xe1, 0xdd, 0x4b, 0x24, 0x72, 0xc3, 0xbf, 0x86, 0xde,
  1671. 0xe2, 0xc4, 0x83, 0xdc, 0x95, 0x8a, 0xa5, 0xe9, 0x69, 0xf8, 0xc1, 0xa5, 0x32, 0x36, 0x08, 0x45,
  1672. 0x89, 0x2a, 0x81, 0xb0, 0x54, 0xcf, 0x4a, 0x20, 0x2c, 0xd7, 0x35, 0x05, 0x42, 0x39, 0xaf, 0x4b,
  1673. 0x20, 0xac, 0xac, 0x42, 0x25, 0x10, 0x56, 0x17, 0x05, 0xf7, 0x06, 0x4a, 0x60, 0x7b, 0x75, 0xb6,
  1674. 0x21, 0xfb, 0xa7, 0x8e, 0x4b, 0x53, 0x76, 0xf8, 0xd1, 0x1b, 0x48, 0x9a, 0x0d, 0x27, 0x75, 0xf9,
  1675. 0xaf, 0xc0, 0xa7, 0xdf, 0x04, 0x00, 0x00, 0xff, 0xff, 0xe6, 0xab, 0xab, 0x3b, 0x25, 0x18, 0x00,
  1676. 0x00,
  1677. }