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.

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