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.

1777 lines
62 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. }
  725. func (m *CollectionListRequest) Reset() { *m = CollectionListRequest{} }
  726. func (m *CollectionListRequest) String() string { return proto.CompactTextString(m) }
  727. func (*CollectionListRequest) ProtoMessage() {}
  728. func (*CollectionListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  729. type CollectionListResponse struct {
  730. Collections []*Collection `protobuf:"bytes,1,rep,name=collections" json:"collections,omitempty"`
  731. }
  732. func (m *CollectionListResponse) Reset() { *m = CollectionListResponse{} }
  733. func (m *CollectionListResponse) String() string { return proto.CompactTextString(m) }
  734. func (*CollectionListResponse) ProtoMessage() {}
  735. func (*CollectionListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  736. func (m *CollectionListResponse) GetCollections() []*Collection {
  737. if m != nil {
  738. return m.Collections
  739. }
  740. return nil
  741. }
  742. type CollectionDeleteRequest struct {
  743. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  744. }
  745. func (m *CollectionDeleteRequest) Reset() { *m = CollectionDeleteRequest{} }
  746. func (m *CollectionDeleteRequest) String() string { return proto.CompactTextString(m) }
  747. func (*CollectionDeleteRequest) ProtoMessage() {}
  748. func (*CollectionDeleteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  749. func (m *CollectionDeleteRequest) GetName() string {
  750. if m != nil {
  751. return m.Name
  752. }
  753. return ""
  754. }
  755. type CollectionDeleteResponse struct {
  756. }
  757. func (m *CollectionDeleteResponse) Reset() { *m = CollectionDeleteResponse{} }
  758. func (m *CollectionDeleteResponse) String() string { return proto.CompactTextString(m) }
  759. func (*CollectionDeleteResponse) ProtoMessage() {}
  760. func (*CollectionDeleteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  761. //
  762. // volume related
  763. //
  764. type DataNodeInfo struct {
  765. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  766. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  767. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  768. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  769. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  770. VolumeInfos []*VolumeInformationMessage `protobuf:"bytes,6,rep,name=volume_infos,json=volumeInfos" json:"volume_infos,omitempty"`
  771. EcShardInfos []*VolumeEcShardInformationMessage `protobuf:"bytes,7,rep,name=ec_shard_infos,json=ecShardInfos" json:"ec_shard_infos,omitempty"`
  772. }
  773. func (m *DataNodeInfo) Reset() { *m = DataNodeInfo{} }
  774. func (m *DataNodeInfo) String() string { return proto.CompactTextString(m) }
  775. func (*DataNodeInfo) ProtoMessage() {}
  776. func (*DataNodeInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  777. func (m *DataNodeInfo) GetId() string {
  778. if m != nil {
  779. return m.Id
  780. }
  781. return ""
  782. }
  783. func (m *DataNodeInfo) GetVolumeCount() uint64 {
  784. if m != nil {
  785. return m.VolumeCount
  786. }
  787. return 0
  788. }
  789. func (m *DataNodeInfo) GetMaxVolumeCount() uint64 {
  790. if m != nil {
  791. return m.MaxVolumeCount
  792. }
  793. return 0
  794. }
  795. func (m *DataNodeInfo) GetFreeVolumeCount() uint64 {
  796. if m != nil {
  797. return m.FreeVolumeCount
  798. }
  799. return 0
  800. }
  801. func (m *DataNodeInfo) GetActiveVolumeCount() uint64 {
  802. if m != nil {
  803. return m.ActiveVolumeCount
  804. }
  805. return 0
  806. }
  807. func (m *DataNodeInfo) GetVolumeInfos() []*VolumeInformationMessage {
  808. if m != nil {
  809. return m.VolumeInfos
  810. }
  811. return nil
  812. }
  813. func (m *DataNodeInfo) GetEcShardInfos() []*VolumeEcShardInformationMessage {
  814. if m != nil {
  815. return m.EcShardInfos
  816. }
  817. return nil
  818. }
  819. type RackInfo struct {
  820. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  821. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  822. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  823. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  824. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  825. DataNodeInfos []*DataNodeInfo `protobuf:"bytes,6,rep,name=data_node_infos,json=dataNodeInfos" json:"data_node_infos,omitempty"`
  826. }
  827. func (m *RackInfo) Reset() { *m = RackInfo{} }
  828. func (m *RackInfo) String() string { return proto.CompactTextString(m) }
  829. func (*RackInfo) ProtoMessage() {}
  830. func (*RackInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  831. func (m *RackInfo) GetId() string {
  832. if m != nil {
  833. return m.Id
  834. }
  835. return ""
  836. }
  837. func (m *RackInfo) GetVolumeCount() uint64 {
  838. if m != nil {
  839. return m.VolumeCount
  840. }
  841. return 0
  842. }
  843. func (m *RackInfo) GetMaxVolumeCount() uint64 {
  844. if m != nil {
  845. return m.MaxVolumeCount
  846. }
  847. return 0
  848. }
  849. func (m *RackInfo) GetFreeVolumeCount() uint64 {
  850. if m != nil {
  851. return m.FreeVolumeCount
  852. }
  853. return 0
  854. }
  855. func (m *RackInfo) GetActiveVolumeCount() uint64 {
  856. if m != nil {
  857. return m.ActiveVolumeCount
  858. }
  859. return 0
  860. }
  861. func (m *RackInfo) GetDataNodeInfos() []*DataNodeInfo {
  862. if m != nil {
  863. return m.DataNodeInfos
  864. }
  865. return nil
  866. }
  867. type DataCenterInfo struct {
  868. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  869. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  870. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  871. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  872. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  873. RackInfos []*RackInfo `protobuf:"bytes,6,rep,name=rack_infos,json=rackInfos" json:"rack_infos,omitempty"`
  874. }
  875. func (m *DataCenterInfo) Reset() { *m = DataCenterInfo{} }
  876. func (m *DataCenterInfo) String() string { return proto.CompactTextString(m) }
  877. func (*DataCenterInfo) ProtoMessage() {}
  878. func (*DataCenterInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  879. func (m *DataCenterInfo) GetId() string {
  880. if m != nil {
  881. return m.Id
  882. }
  883. return ""
  884. }
  885. func (m *DataCenterInfo) GetVolumeCount() uint64 {
  886. if m != nil {
  887. return m.VolumeCount
  888. }
  889. return 0
  890. }
  891. func (m *DataCenterInfo) GetMaxVolumeCount() uint64 {
  892. if m != nil {
  893. return m.MaxVolumeCount
  894. }
  895. return 0
  896. }
  897. func (m *DataCenterInfo) GetFreeVolumeCount() uint64 {
  898. if m != nil {
  899. return m.FreeVolumeCount
  900. }
  901. return 0
  902. }
  903. func (m *DataCenterInfo) GetActiveVolumeCount() uint64 {
  904. if m != nil {
  905. return m.ActiveVolumeCount
  906. }
  907. return 0
  908. }
  909. func (m *DataCenterInfo) GetRackInfos() []*RackInfo {
  910. if m != nil {
  911. return m.RackInfos
  912. }
  913. return nil
  914. }
  915. type TopologyInfo struct {
  916. Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"`
  917. VolumeCount uint64 `protobuf:"varint,2,opt,name=volume_count,json=volumeCount" json:"volume_count,omitempty"`
  918. MaxVolumeCount uint64 `protobuf:"varint,3,opt,name=max_volume_count,json=maxVolumeCount" json:"max_volume_count,omitempty"`
  919. FreeVolumeCount uint64 `protobuf:"varint,4,opt,name=free_volume_count,json=freeVolumeCount" json:"free_volume_count,omitempty"`
  920. ActiveVolumeCount uint64 `protobuf:"varint,5,opt,name=active_volume_count,json=activeVolumeCount" json:"active_volume_count,omitempty"`
  921. DataCenterInfos []*DataCenterInfo `protobuf:"bytes,6,rep,name=data_center_infos,json=dataCenterInfos" json:"data_center_infos,omitempty"`
  922. }
  923. func (m *TopologyInfo) Reset() { *m = TopologyInfo{} }
  924. func (m *TopologyInfo) String() string { return proto.CompactTextString(m) }
  925. func (*TopologyInfo) ProtoMessage() {}
  926. func (*TopologyInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  927. func (m *TopologyInfo) GetId() string {
  928. if m != nil {
  929. return m.Id
  930. }
  931. return ""
  932. }
  933. func (m *TopologyInfo) GetVolumeCount() uint64 {
  934. if m != nil {
  935. return m.VolumeCount
  936. }
  937. return 0
  938. }
  939. func (m *TopologyInfo) GetMaxVolumeCount() uint64 {
  940. if m != nil {
  941. return m.MaxVolumeCount
  942. }
  943. return 0
  944. }
  945. func (m *TopologyInfo) GetFreeVolumeCount() uint64 {
  946. if m != nil {
  947. return m.FreeVolumeCount
  948. }
  949. return 0
  950. }
  951. func (m *TopologyInfo) GetActiveVolumeCount() uint64 {
  952. if m != nil {
  953. return m.ActiveVolumeCount
  954. }
  955. return 0
  956. }
  957. func (m *TopologyInfo) GetDataCenterInfos() []*DataCenterInfo {
  958. if m != nil {
  959. return m.DataCenterInfos
  960. }
  961. return nil
  962. }
  963. type VolumeListRequest struct {
  964. }
  965. func (m *VolumeListRequest) Reset() { *m = VolumeListRequest{} }
  966. func (m *VolumeListRequest) String() string { return proto.CompactTextString(m) }
  967. func (*VolumeListRequest) ProtoMessage() {}
  968. func (*VolumeListRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
  969. type VolumeListResponse struct {
  970. TopologyInfo *TopologyInfo `protobuf:"bytes,1,opt,name=topology_info,json=topologyInfo" json:"topology_info,omitempty"`
  971. VolumeSizeLimitMb uint64 `protobuf:"varint,2,opt,name=volume_size_limit_mb,json=volumeSizeLimitMb" json:"volume_size_limit_mb,omitempty"`
  972. }
  973. func (m *VolumeListResponse) Reset() { *m = VolumeListResponse{} }
  974. func (m *VolumeListResponse) String() string { return proto.CompactTextString(m) }
  975. func (*VolumeListResponse) ProtoMessage() {}
  976. func (*VolumeListResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
  977. func (m *VolumeListResponse) GetTopologyInfo() *TopologyInfo {
  978. if m != nil {
  979. return m.TopologyInfo
  980. }
  981. return nil
  982. }
  983. func (m *VolumeListResponse) GetVolumeSizeLimitMb() uint64 {
  984. if m != nil {
  985. return m.VolumeSizeLimitMb
  986. }
  987. return 0
  988. }
  989. type LookupEcVolumeRequest struct {
  990. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  991. }
  992. func (m *LookupEcVolumeRequest) Reset() { *m = LookupEcVolumeRequest{} }
  993. func (m *LookupEcVolumeRequest) String() string { return proto.CompactTextString(m) }
  994. func (*LookupEcVolumeRequest) ProtoMessage() {}
  995. func (*LookupEcVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
  996. func (m *LookupEcVolumeRequest) GetVolumeId() uint32 {
  997. if m != nil {
  998. return m.VolumeId
  999. }
  1000. return 0
  1001. }
  1002. type LookupEcVolumeResponse struct {
  1003. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  1004. ShardIdLocations []*LookupEcVolumeResponse_EcShardIdLocation `protobuf:"bytes,2,rep,name=shard_id_locations,json=shardIdLocations" json:"shard_id_locations,omitempty"`
  1005. }
  1006. func (m *LookupEcVolumeResponse) Reset() { *m = LookupEcVolumeResponse{} }
  1007. func (m *LookupEcVolumeResponse) String() string { return proto.CompactTextString(m) }
  1008. func (*LookupEcVolumeResponse) ProtoMessage() {}
  1009. func (*LookupEcVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
  1010. func (m *LookupEcVolumeResponse) GetVolumeId() uint32 {
  1011. if m != nil {
  1012. return m.VolumeId
  1013. }
  1014. return 0
  1015. }
  1016. func (m *LookupEcVolumeResponse) GetShardIdLocations() []*LookupEcVolumeResponse_EcShardIdLocation {
  1017. if m != nil {
  1018. return m.ShardIdLocations
  1019. }
  1020. return nil
  1021. }
  1022. type LookupEcVolumeResponse_EcShardIdLocation struct {
  1023. ShardId uint32 `protobuf:"varint,1,opt,name=shard_id,json=shardId" json:"shard_id,omitempty"`
  1024. Locations []*Location `protobuf:"bytes,2,rep,name=locations" json:"locations,omitempty"`
  1025. }
  1026. func (m *LookupEcVolumeResponse_EcShardIdLocation) Reset() {
  1027. *m = LookupEcVolumeResponse_EcShardIdLocation{}
  1028. }
  1029. func (m *LookupEcVolumeResponse_EcShardIdLocation) String() string { return proto.CompactTextString(m) }
  1030. func (*LookupEcVolumeResponse_EcShardIdLocation) ProtoMessage() {}
  1031. func (*LookupEcVolumeResponse_EcShardIdLocation) Descriptor() ([]byte, []int) {
  1032. return fileDescriptor0, []int{29, 0}
  1033. }
  1034. func (m *LookupEcVolumeResponse_EcShardIdLocation) GetShardId() uint32 {
  1035. if m != nil {
  1036. return m.ShardId
  1037. }
  1038. return 0
  1039. }
  1040. func (m *LookupEcVolumeResponse_EcShardIdLocation) GetLocations() []*Location {
  1041. if m != nil {
  1042. return m.Locations
  1043. }
  1044. return nil
  1045. }
  1046. func init() {
  1047. proto.RegisterType((*Heartbeat)(nil), "master_pb.Heartbeat")
  1048. proto.RegisterType((*HeartbeatResponse)(nil), "master_pb.HeartbeatResponse")
  1049. proto.RegisterType((*VolumeInformationMessage)(nil), "master_pb.VolumeInformationMessage")
  1050. proto.RegisterType((*VolumeShortInformationMessage)(nil), "master_pb.VolumeShortInformationMessage")
  1051. proto.RegisterType((*VolumeEcShardInformationMessage)(nil), "master_pb.VolumeEcShardInformationMessage")
  1052. proto.RegisterType((*Empty)(nil), "master_pb.Empty")
  1053. proto.RegisterType((*SuperBlockExtra)(nil), "master_pb.SuperBlockExtra")
  1054. proto.RegisterType((*SuperBlockExtra_ErasureCoding)(nil), "master_pb.SuperBlockExtra.ErasureCoding")
  1055. proto.RegisterType((*ClientListenRequest)(nil), "master_pb.ClientListenRequest")
  1056. proto.RegisterType((*VolumeLocation)(nil), "master_pb.VolumeLocation")
  1057. proto.RegisterType((*LookupVolumeRequest)(nil), "master_pb.LookupVolumeRequest")
  1058. proto.RegisterType((*LookupVolumeResponse)(nil), "master_pb.LookupVolumeResponse")
  1059. proto.RegisterType((*LookupVolumeResponse_VolumeIdLocation)(nil), "master_pb.LookupVolumeResponse.VolumeIdLocation")
  1060. proto.RegisterType((*Location)(nil), "master_pb.Location")
  1061. proto.RegisterType((*AssignRequest)(nil), "master_pb.AssignRequest")
  1062. proto.RegisterType((*AssignResponse)(nil), "master_pb.AssignResponse")
  1063. proto.RegisterType((*StatisticsRequest)(nil), "master_pb.StatisticsRequest")
  1064. proto.RegisterType((*StatisticsResponse)(nil), "master_pb.StatisticsResponse")
  1065. proto.RegisterType((*StorageType)(nil), "master_pb.StorageType")
  1066. proto.RegisterType((*Collection)(nil), "master_pb.Collection")
  1067. proto.RegisterType((*CollectionListRequest)(nil), "master_pb.CollectionListRequest")
  1068. proto.RegisterType((*CollectionListResponse)(nil), "master_pb.CollectionListResponse")
  1069. proto.RegisterType((*CollectionDeleteRequest)(nil), "master_pb.CollectionDeleteRequest")
  1070. proto.RegisterType((*CollectionDeleteResponse)(nil), "master_pb.CollectionDeleteResponse")
  1071. proto.RegisterType((*DataNodeInfo)(nil), "master_pb.DataNodeInfo")
  1072. proto.RegisterType((*RackInfo)(nil), "master_pb.RackInfo")
  1073. proto.RegisterType((*DataCenterInfo)(nil), "master_pb.DataCenterInfo")
  1074. proto.RegisterType((*TopologyInfo)(nil), "master_pb.TopologyInfo")
  1075. proto.RegisterType((*VolumeListRequest)(nil), "master_pb.VolumeListRequest")
  1076. proto.RegisterType((*VolumeListResponse)(nil), "master_pb.VolumeListResponse")
  1077. proto.RegisterType((*LookupEcVolumeRequest)(nil), "master_pb.LookupEcVolumeRequest")
  1078. proto.RegisterType((*LookupEcVolumeResponse)(nil), "master_pb.LookupEcVolumeResponse")
  1079. proto.RegisterType((*LookupEcVolumeResponse_EcShardIdLocation)(nil), "master_pb.LookupEcVolumeResponse.EcShardIdLocation")
  1080. }
  1081. // Reference imports to suppress errors if they are not otherwise used.
  1082. var _ context.Context
  1083. var _ grpc.ClientConn
  1084. // This is a compile-time assertion to ensure that this generated file
  1085. // is compatible with the grpc package it is being compiled against.
  1086. const _ = grpc.SupportPackageIsVersion4
  1087. // Client API for Seaweed service
  1088. type SeaweedClient interface {
  1089. SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error)
  1090. KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error)
  1091. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  1092. Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error)
  1093. Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
  1094. CollectionList(ctx context.Context, in *CollectionListRequest, opts ...grpc.CallOption) (*CollectionListResponse, error)
  1095. CollectionDelete(ctx context.Context, in *CollectionDeleteRequest, opts ...grpc.CallOption) (*CollectionDeleteResponse, error)
  1096. VolumeList(ctx context.Context, in *VolumeListRequest, opts ...grpc.CallOption) (*VolumeListResponse, error)
  1097. LookupEcVolume(ctx context.Context, in *LookupEcVolumeRequest, opts ...grpc.CallOption) (*LookupEcVolumeResponse, error)
  1098. }
  1099. type seaweedClient struct {
  1100. cc *grpc.ClientConn
  1101. }
  1102. func NewSeaweedClient(cc *grpc.ClientConn) SeaweedClient {
  1103. return &seaweedClient{cc}
  1104. }
  1105. func (c *seaweedClient) SendHeartbeat(ctx context.Context, opts ...grpc.CallOption) (Seaweed_SendHeartbeatClient, error) {
  1106. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[0], c.cc, "/master_pb.Seaweed/SendHeartbeat", opts...)
  1107. if err != nil {
  1108. return nil, err
  1109. }
  1110. x := &seaweedSendHeartbeatClient{stream}
  1111. return x, nil
  1112. }
  1113. type Seaweed_SendHeartbeatClient interface {
  1114. Send(*Heartbeat) error
  1115. Recv() (*HeartbeatResponse, error)
  1116. grpc.ClientStream
  1117. }
  1118. type seaweedSendHeartbeatClient struct {
  1119. grpc.ClientStream
  1120. }
  1121. func (x *seaweedSendHeartbeatClient) Send(m *Heartbeat) error {
  1122. return x.ClientStream.SendMsg(m)
  1123. }
  1124. func (x *seaweedSendHeartbeatClient) Recv() (*HeartbeatResponse, error) {
  1125. m := new(HeartbeatResponse)
  1126. if err := x.ClientStream.RecvMsg(m); err != nil {
  1127. return nil, err
  1128. }
  1129. return m, nil
  1130. }
  1131. func (c *seaweedClient) KeepConnected(ctx context.Context, opts ...grpc.CallOption) (Seaweed_KeepConnectedClient, error) {
  1132. stream, err := grpc.NewClientStream(ctx, &_Seaweed_serviceDesc.Streams[1], c.cc, "/master_pb.Seaweed/KeepConnected", opts...)
  1133. if err != nil {
  1134. return nil, err
  1135. }
  1136. x := &seaweedKeepConnectedClient{stream}
  1137. return x, nil
  1138. }
  1139. type Seaweed_KeepConnectedClient interface {
  1140. Send(*ClientListenRequest) error
  1141. Recv() (*VolumeLocation, error)
  1142. grpc.ClientStream
  1143. }
  1144. type seaweedKeepConnectedClient struct {
  1145. grpc.ClientStream
  1146. }
  1147. func (x *seaweedKeepConnectedClient) Send(m *ClientListenRequest) error {
  1148. return x.ClientStream.SendMsg(m)
  1149. }
  1150. func (x *seaweedKeepConnectedClient) Recv() (*VolumeLocation, error) {
  1151. m := new(VolumeLocation)
  1152. if err := x.ClientStream.RecvMsg(m); err != nil {
  1153. return nil, err
  1154. }
  1155. return m, nil
  1156. }
  1157. func (c *seaweedClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  1158. out := new(LookupVolumeResponse)
  1159. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupVolume", in, out, c.cc, opts...)
  1160. if err != nil {
  1161. return nil, err
  1162. }
  1163. return out, nil
  1164. }
  1165. func (c *seaweedClient) Assign(ctx context.Context, in *AssignRequest, opts ...grpc.CallOption) (*AssignResponse, error) {
  1166. out := new(AssignResponse)
  1167. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Assign", in, out, c.cc, opts...)
  1168. if err != nil {
  1169. return nil, err
  1170. }
  1171. return out, nil
  1172. }
  1173. func (c *seaweedClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
  1174. out := new(StatisticsResponse)
  1175. err := grpc.Invoke(ctx, "/master_pb.Seaweed/Statistics", in, out, c.cc, opts...)
  1176. if err != nil {
  1177. return nil, err
  1178. }
  1179. return out, nil
  1180. }
  1181. func (c *seaweedClient) CollectionList(ctx context.Context, in *CollectionListRequest, opts ...grpc.CallOption) (*CollectionListResponse, error) {
  1182. out := new(CollectionListResponse)
  1183. err := grpc.Invoke(ctx, "/master_pb.Seaweed/CollectionList", in, out, c.cc, opts...)
  1184. if err != nil {
  1185. return nil, err
  1186. }
  1187. return out, nil
  1188. }
  1189. func (c *seaweedClient) CollectionDelete(ctx context.Context, in *CollectionDeleteRequest, opts ...grpc.CallOption) (*CollectionDeleteResponse, error) {
  1190. out := new(CollectionDeleteResponse)
  1191. err := grpc.Invoke(ctx, "/master_pb.Seaweed/CollectionDelete", in, out, c.cc, opts...)
  1192. if err != nil {
  1193. return nil, err
  1194. }
  1195. return out, nil
  1196. }
  1197. func (c *seaweedClient) VolumeList(ctx context.Context, in *VolumeListRequest, opts ...grpc.CallOption) (*VolumeListResponse, error) {
  1198. out := new(VolumeListResponse)
  1199. err := grpc.Invoke(ctx, "/master_pb.Seaweed/VolumeList", in, out, c.cc, opts...)
  1200. if err != nil {
  1201. return nil, err
  1202. }
  1203. return out, nil
  1204. }
  1205. func (c *seaweedClient) LookupEcVolume(ctx context.Context, in *LookupEcVolumeRequest, opts ...grpc.CallOption) (*LookupEcVolumeResponse, error) {
  1206. out := new(LookupEcVolumeResponse)
  1207. err := grpc.Invoke(ctx, "/master_pb.Seaweed/LookupEcVolume", in, out, c.cc, opts...)
  1208. if err != nil {
  1209. return nil, err
  1210. }
  1211. return out, nil
  1212. }
  1213. // Server API for Seaweed service
  1214. type SeaweedServer interface {
  1215. SendHeartbeat(Seaweed_SendHeartbeatServer) error
  1216. KeepConnected(Seaweed_KeepConnectedServer) error
  1217. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  1218. Assign(context.Context, *AssignRequest) (*AssignResponse, error)
  1219. Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
  1220. CollectionList(context.Context, *CollectionListRequest) (*CollectionListResponse, error)
  1221. CollectionDelete(context.Context, *CollectionDeleteRequest) (*CollectionDeleteResponse, error)
  1222. VolumeList(context.Context, *VolumeListRequest) (*VolumeListResponse, error)
  1223. LookupEcVolume(context.Context, *LookupEcVolumeRequest) (*LookupEcVolumeResponse, error)
  1224. }
  1225. func RegisterSeaweedServer(s *grpc.Server, srv SeaweedServer) {
  1226. s.RegisterService(&_Seaweed_serviceDesc, srv)
  1227. }
  1228. func _Seaweed_SendHeartbeat_Handler(srv interface{}, stream grpc.ServerStream) error {
  1229. return srv.(SeaweedServer).SendHeartbeat(&seaweedSendHeartbeatServer{stream})
  1230. }
  1231. type Seaweed_SendHeartbeatServer interface {
  1232. Send(*HeartbeatResponse) error
  1233. Recv() (*Heartbeat, error)
  1234. grpc.ServerStream
  1235. }
  1236. type seaweedSendHeartbeatServer struct {
  1237. grpc.ServerStream
  1238. }
  1239. func (x *seaweedSendHeartbeatServer) Send(m *HeartbeatResponse) error {
  1240. return x.ServerStream.SendMsg(m)
  1241. }
  1242. func (x *seaweedSendHeartbeatServer) Recv() (*Heartbeat, error) {
  1243. m := new(Heartbeat)
  1244. if err := x.ServerStream.RecvMsg(m); err != nil {
  1245. return nil, err
  1246. }
  1247. return m, nil
  1248. }
  1249. func _Seaweed_KeepConnected_Handler(srv interface{}, stream grpc.ServerStream) error {
  1250. return srv.(SeaweedServer).KeepConnected(&seaweedKeepConnectedServer{stream})
  1251. }
  1252. type Seaweed_KeepConnectedServer interface {
  1253. Send(*VolumeLocation) error
  1254. Recv() (*ClientListenRequest, error)
  1255. grpc.ServerStream
  1256. }
  1257. type seaweedKeepConnectedServer struct {
  1258. grpc.ServerStream
  1259. }
  1260. func (x *seaweedKeepConnectedServer) Send(m *VolumeLocation) error {
  1261. return x.ServerStream.SendMsg(m)
  1262. }
  1263. func (x *seaweedKeepConnectedServer) Recv() (*ClientListenRequest, error) {
  1264. m := new(ClientListenRequest)
  1265. if err := x.ServerStream.RecvMsg(m); err != nil {
  1266. return nil, err
  1267. }
  1268. return m, nil
  1269. }
  1270. func _Seaweed_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1271. in := new(LookupVolumeRequest)
  1272. if err := dec(in); err != nil {
  1273. return nil, err
  1274. }
  1275. if interceptor == nil {
  1276. return srv.(SeaweedServer).LookupVolume(ctx, in)
  1277. }
  1278. info := &grpc.UnaryServerInfo{
  1279. Server: srv,
  1280. FullMethod: "/master_pb.Seaweed/LookupVolume",
  1281. }
  1282. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1283. return srv.(SeaweedServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  1284. }
  1285. return interceptor(ctx, in, info, handler)
  1286. }
  1287. func _Seaweed_Assign_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1288. in := new(AssignRequest)
  1289. if err := dec(in); err != nil {
  1290. return nil, err
  1291. }
  1292. if interceptor == nil {
  1293. return srv.(SeaweedServer).Assign(ctx, in)
  1294. }
  1295. info := &grpc.UnaryServerInfo{
  1296. Server: srv,
  1297. FullMethod: "/master_pb.Seaweed/Assign",
  1298. }
  1299. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1300. return srv.(SeaweedServer).Assign(ctx, req.(*AssignRequest))
  1301. }
  1302. return interceptor(ctx, in, info, handler)
  1303. }
  1304. func _Seaweed_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1305. in := new(StatisticsRequest)
  1306. if err := dec(in); err != nil {
  1307. return nil, err
  1308. }
  1309. if interceptor == nil {
  1310. return srv.(SeaweedServer).Statistics(ctx, in)
  1311. }
  1312. info := &grpc.UnaryServerInfo{
  1313. Server: srv,
  1314. FullMethod: "/master_pb.Seaweed/Statistics",
  1315. }
  1316. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1317. return srv.(SeaweedServer).Statistics(ctx, req.(*StatisticsRequest))
  1318. }
  1319. return interceptor(ctx, in, info, handler)
  1320. }
  1321. func _Seaweed_CollectionList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1322. in := new(CollectionListRequest)
  1323. if err := dec(in); err != nil {
  1324. return nil, err
  1325. }
  1326. if interceptor == nil {
  1327. return srv.(SeaweedServer).CollectionList(ctx, in)
  1328. }
  1329. info := &grpc.UnaryServerInfo{
  1330. Server: srv,
  1331. FullMethod: "/master_pb.Seaweed/CollectionList",
  1332. }
  1333. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1334. return srv.(SeaweedServer).CollectionList(ctx, req.(*CollectionListRequest))
  1335. }
  1336. return interceptor(ctx, in, info, handler)
  1337. }
  1338. func _Seaweed_CollectionDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1339. in := new(CollectionDeleteRequest)
  1340. if err := dec(in); err != nil {
  1341. return nil, err
  1342. }
  1343. if interceptor == nil {
  1344. return srv.(SeaweedServer).CollectionDelete(ctx, in)
  1345. }
  1346. info := &grpc.UnaryServerInfo{
  1347. Server: srv,
  1348. FullMethod: "/master_pb.Seaweed/CollectionDelete",
  1349. }
  1350. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1351. return srv.(SeaweedServer).CollectionDelete(ctx, req.(*CollectionDeleteRequest))
  1352. }
  1353. return interceptor(ctx, in, info, handler)
  1354. }
  1355. func _Seaweed_VolumeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1356. in := new(VolumeListRequest)
  1357. if err := dec(in); err != nil {
  1358. return nil, err
  1359. }
  1360. if interceptor == nil {
  1361. return srv.(SeaweedServer).VolumeList(ctx, in)
  1362. }
  1363. info := &grpc.UnaryServerInfo{
  1364. Server: srv,
  1365. FullMethod: "/master_pb.Seaweed/VolumeList",
  1366. }
  1367. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1368. return srv.(SeaweedServer).VolumeList(ctx, req.(*VolumeListRequest))
  1369. }
  1370. return interceptor(ctx, in, info, handler)
  1371. }
  1372. func _Seaweed_LookupEcVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1373. in := new(LookupEcVolumeRequest)
  1374. if err := dec(in); err != nil {
  1375. return nil, err
  1376. }
  1377. if interceptor == nil {
  1378. return srv.(SeaweedServer).LookupEcVolume(ctx, in)
  1379. }
  1380. info := &grpc.UnaryServerInfo{
  1381. Server: srv,
  1382. FullMethod: "/master_pb.Seaweed/LookupEcVolume",
  1383. }
  1384. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1385. return srv.(SeaweedServer).LookupEcVolume(ctx, req.(*LookupEcVolumeRequest))
  1386. }
  1387. return interceptor(ctx, in, info, handler)
  1388. }
  1389. var _Seaweed_serviceDesc = grpc.ServiceDesc{
  1390. ServiceName: "master_pb.Seaweed",
  1391. HandlerType: (*SeaweedServer)(nil),
  1392. Methods: []grpc.MethodDesc{
  1393. {
  1394. MethodName: "LookupVolume",
  1395. Handler: _Seaweed_LookupVolume_Handler,
  1396. },
  1397. {
  1398. MethodName: "Assign",
  1399. Handler: _Seaweed_Assign_Handler,
  1400. },
  1401. {
  1402. MethodName: "Statistics",
  1403. Handler: _Seaweed_Statistics_Handler,
  1404. },
  1405. {
  1406. MethodName: "CollectionList",
  1407. Handler: _Seaweed_CollectionList_Handler,
  1408. },
  1409. {
  1410. MethodName: "CollectionDelete",
  1411. Handler: _Seaweed_CollectionDelete_Handler,
  1412. },
  1413. {
  1414. MethodName: "VolumeList",
  1415. Handler: _Seaweed_VolumeList_Handler,
  1416. },
  1417. {
  1418. MethodName: "LookupEcVolume",
  1419. Handler: _Seaweed_LookupEcVolume_Handler,
  1420. },
  1421. },
  1422. Streams: []grpc.StreamDesc{
  1423. {
  1424. StreamName: "SendHeartbeat",
  1425. Handler: _Seaweed_SendHeartbeat_Handler,
  1426. ServerStreams: true,
  1427. ClientStreams: true,
  1428. },
  1429. {
  1430. StreamName: "KeepConnected",
  1431. Handler: _Seaweed_KeepConnected_Handler,
  1432. ServerStreams: true,
  1433. ClientStreams: true,
  1434. },
  1435. },
  1436. Metadata: "master.proto",
  1437. }
  1438. func init() { proto.RegisterFile("master.proto", fileDescriptor0) }
  1439. var fileDescriptor0 = []byte{
  1440. // 1677 bytes of a gzipped FileDescriptorProto
  1441. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xd4, 0x58, 0x4b, 0x6f, 0xdb, 0xca,
  1442. 0x15, 0x36, 0xf5, 0xd6, 0xd1, 0xc3, 0xd2, 0xd8, 0x49, 0x14, 0xa5, 0x49, 0x14, 0x66, 0xa3, 0xa4,
  1443. 0xad, 0x9b, 0x3a, 0x05, 0xba, 0x68, 0x8b, 0x20, 0x71, 0x9c, 0xd6, 0x88, 0x93, 0x38, 0x54, 0x92,
  1444. 0x02, 0x05, 0x0a, 0x76, 0x44, 0x8e, 0x1d, 0xc2, 0x14, 0xc9, 0x72, 0x46, 0x8e, 0x95, 0x4d, 0x17,
  1445. 0xed, 0xba, 0x9b, 0xfe, 0x89, 0xfe, 0x88, 0xa2, 0x9b, 0x2e, 0xfb, 0x2b, 0xba, 0xe8, 0xfa, 0x02,
  1446. 0x77, 0x7b, 0x71, 0x81, 0x8b, 0x79, 0x90, 0x1c, 0x52, 0xb2, 0x1d, 0x07, 0xc8, 0x22, 0xbb, 0xe1,
  1447. 0x99, 0x33, 0x67, 0xce, 0x7c, 0x73, 0x1e, 0xdf, 0x10, 0xda, 0x33, 0x4c, 0x19, 0x89, 0xb7, 0xa2,
  1448. 0x38, 0x64, 0x21, 0x6a, 0xca, 0x2f, 0x3b, 0x9a, 0x9a, 0xff, 0xaa, 0x42, 0xf3, 0x77, 0x04, 0xc7,
  1449. 0x6c, 0x4a, 0x30, 0x43, 0x5d, 0x28, 0x79, 0xd1, 0xc0, 0x18, 0x19, 0xe3, 0xa6, 0x55, 0xf2, 0x22,
  1450. 0x84, 0xa0, 0x12, 0x85, 0x31, 0x1b, 0x94, 0x46, 0xc6, 0xb8, 0x63, 0x89, 0x31, 0xba, 0x09, 0x10,
  1451. 0xcd, 0xa7, 0xbe, 0xe7, 0xd8, 0xf3, 0xd8, 0x1f, 0x94, 0x85, 0x6e, 0x53, 0x4a, 0xde, 0xc6, 0x3e,
  1452. 0x1a, 0x43, 0x6f, 0x86, 0x4f, 0xed, 0x93, 0xd0, 0x9f, 0xcf, 0x88, 0xed, 0x84, 0xf3, 0x80, 0x0d,
  1453. 0x2a, 0x62, 0x79, 0x77, 0x86, 0x4f, 0xdf, 0x09, 0xf1, 0x0e, 0x97, 0xa2, 0x11, 0xf7, 0xea, 0xd4,
  1454. 0x3e, 0xf4, 0x7c, 0x62, 0x1f, 0x93, 0xc5, 0xa0, 0x3a, 0x32, 0xc6, 0x15, 0x0b, 0x66, 0xf8, 0xf4,
  1455. 0x99, 0xe7, 0x93, 0xe7, 0x64, 0x81, 0x6e, 0x43, 0xcb, 0xc5, 0x0c, 0xdb, 0x0e, 0x09, 0x18, 0x89,
  1456. 0x07, 0x35, 0xb1, 0x17, 0x70, 0xd1, 0x8e, 0x90, 0x70, 0xff, 0x62, 0xec, 0x1c, 0x0f, 0xea, 0x62,
  1457. 0x46, 0x8c, 0xb9, 0x7f, 0xd8, 0x9d, 0x79, 0x81, 0x2d, 0x3c, 0x6f, 0x88, 0xad, 0x9b, 0x42, 0x72,
  1458. 0xc0, 0xdd, 0xff, 0x0d, 0xd4, 0xa5, 0x6f, 0x74, 0xd0, 0x1c, 0x95, 0xc7, 0xad, 0xed, 0xbb, 0x5b,
  1459. 0x29, 0x1a, 0x5b, 0xd2, 0xbd, 0xbd, 0xe0, 0x30, 0x8c, 0x67, 0x98, 0x79, 0x61, 0xf0, 0x82, 0x50,
  1460. 0x8a, 0x8f, 0x88, 0x95, 0xac, 0x41, 0x7b, 0xd0, 0x0a, 0xc8, 0x07, 0x3b, 0x31, 0x01, 0xc2, 0xc4,
  1461. 0x78, 0xc9, 0xc4, 0xe4, 0x7d, 0x18, 0xb3, 0x15, 0x76, 0x20, 0x20, 0x1f, 0xde, 0x29, 0x53, 0xaf,
  1462. 0x61, 0xdd, 0x25, 0x3e, 0x61, 0xc4, 0x4d, 0xcd, 0xb5, 0x2e, 0x69, 0xae, 0xab, 0x0c, 0x24, 0x26,
  1463. 0x7f, 0x0b, 0x4d, 0xe2, 0xd8, 0xf4, 0x3d, 0x8e, 0x5d, 0x3a, 0xe8, 0x09, 0x63, 0xf7, 0x97, 0x8c,
  1464. 0xed, 0x3a, 0x13, 0xae, 0xb0, 0xc2, 0x5c, 0x83, 0xc8, 0x29, 0x8a, 0x5e, 0x42, 0x87, 0x1f, 0x33,
  1465. 0x33, 0xd6, 0xbf, 0xb4, 0x31, 0x8e, 0xd3, 0x6e, 0x62, 0xef, 0x1d, 0xf4, 0x93, 0xb3, 0x66, 0x36,
  1466. 0xd1, 0xa5, 0x6d, 0x26, 0x80, 0x25, 0x76, 0xcd, 0xb7, 0xd0, 0x4f, 0xa3, 0xd7, 0x22, 0x34, 0x0a,
  1467. 0x03, 0x4a, 0xd0, 0x18, 0xd6, 0x25, 0xa0, 0x13, 0xef, 0x23, 0xd9, 0xf7, 0x66, 0x1e, 0x13, 0x21,
  1468. 0x5d, 0xb1, 0x8a, 0x62, 0x74, 0x15, 0x6a, 0x3e, 0xc1, 0x2e, 0x89, 0x55, 0x1c, 0xab, 0x2f, 0xf3,
  1469. 0x9b, 0x12, 0x0c, 0xce, 0x8a, 0x05, 0x91, 0x24, 0xae, 0xb0, 0xd8, 0xb1, 0x4a, 0x9e, 0xcb, 0x83,
  1470. 0x90, 0x7a, 0x1f, 0x89, 0x48, 0x92, 0x8a, 0x25, 0xc6, 0xe8, 0x16, 0x80, 0x13, 0xfa, 0x3e, 0x71,
  1471. 0xf8, 0x42, 0x65, 0x5c, 0x93, 0xf0, 0x20, 0x15, 0x71, 0x9f, 0xe5, 0x47, 0xc5, 0x6a, 0x72, 0x89,
  1472. 0x4c, 0x8d, 0x3b, 0xd0, 0x96, 0x27, 0x55, 0x0a, 0x32, 0x35, 0x5a, 0x52, 0x26, 0x55, 0x7e, 0x02,
  1473. 0x28, 0x41, 0x74, 0xba, 0x48, 0x15, 0x6b, 0x42, 0xb1, 0xa7, 0x66, 0x9e, 0x2c, 0x12, 0xed, 0x1b,
  1474. 0xd0, 0x8c, 0x09, 0x76, 0xed, 0x30, 0xf0, 0x17, 0x22, 0x5b, 0x1a, 0x56, 0x83, 0x0b, 0x5e, 0x05,
  1475. 0xfe, 0x02, 0xfd, 0x18, 0xfa, 0x31, 0x89, 0x7c, 0xcf, 0xc1, 0x76, 0xe4, 0x63, 0x87, 0xcc, 0x48,
  1476. 0x90, 0x24, 0x4e, 0x4f, 0x4d, 0x1c, 0x24, 0x72, 0x34, 0x80, 0xfa, 0x09, 0x89, 0x29, 0x3f, 0x56,
  1477. 0x53, 0xa8, 0x24, 0x9f, 0xa8, 0x07, 0x65, 0xc6, 0xfc, 0x01, 0x08, 0x29, 0x1f, 0xa2, 0x7b, 0xd0,
  1478. 0x73, 0xc2, 0x59, 0x84, 0x1d, 0x66, 0xc7, 0xe4, 0xc4, 0x13, 0x8b, 0x5a, 0x62, 0x7a, 0x5d, 0xc9,
  1479. 0x2d, 0x25, 0x36, 0xff, 0x69, 0xc0, 0xcd, 0x73, 0x63, 0x7d, 0x09, 0xf6, 0x8b, 0x20, 0xfe, 0x52,
  1480. 0xa7, 0x32, 0xe7, 0x70, 0xfb, 0x82, 0x38, 0xbd, 0xc0, 0xd7, 0xd2, 0x92, 0xaf, 0x26, 0x74, 0x88,
  1481. 0x63, 0x7b, 0x81, 0x4b, 0x4e, 0xed, 0xa9, 0xc7, 0xa8, 0x38, 0x4e, 0xc7, 0x6a, 0x11, 0x67, 0x8f,
  1482. 0xcb, 0x9e, 0x78, 0x8c, 0x9a, 0x75, 0xa8, 0xee, 0xce, 0x22, 0xb6, 0x30, 0xff, 0x6d, 0xc0, 0xfa,
  1483. 0x64, 0x1e, 0x91, 0xf8, 0x89, 0x1f, 0x3a, 0xc7, 0xbb, 0xa7, 0x2c, 0xc6, 0xe8, 0x15, 0x74, 0x49,
  1484. 0x8c, 0xe9, 0x3c, 0xe6, 0x81, 0xe0, 0x7a, 0xc1, 0x91, 0xd8, 0x3c, 0x5f, 0x4a, 0x0a, 0x6b, 0xb6,
  1485. 0x76, 0xe5, 0x82, 0x1d, 0xa1, 0x6f, 0x75, 0x88, 0xfe, 0x39, 0xfc, 0x03, 0x74, 0x72, 0xf3, 0x3c,
  1486. 0xca, 0x79, 0xe1, 0x55, 0x87, 0x12, 0x63, 0x9e, 0x3e, 0x11, 0x8e, 0x3d, 0xb6, 0x50, 0x0d, 0x42,
  1487. 0x7d, 0xf1, 0xe8, 0x56, 0xf5, 0xdf, 0x73, 0xf9, 0x59, 0xca, 0xbc, 0x04, 0x4b, 0xc9, 0x9e, 0x4b,
  1488. 0xcd, 0x7b, 0xb0, 0xb1, 0xe3, 0x7b, 0x24, 0x60, 0xfb, 0x1e, 0x65, 0x24, 0xb0, 0xc8, 0x9f, 0xe7,
  1489. 0x84, 0x32, 0xbe, 0x43, 0x80, 0x67, 0x44, 0xb5, 0x1f, 0x31, 0x36, 0xff, 0x02, 0x5d, 0x89, 0xf5,
  1490. 0x7e, 0xe8, 0x08, 0x84, 0xf9, 0x7d, 0xf0, 0xbe, 0x23, 0x95, 0xf8, 0xb0, 0xd0, 0x90, 0x4a, 0xc5,
  1491. 0x86, 0x74, 0x1d, 0x1a, 0xa2, 0x62, 0x67, 0xae, 0xd4, 0x79, 0x11, 0xf6, 0x5c, 0x9a, 0xa5, 0x99,
  1492. 0x2b, 0xa7, 0x2b, 0x62, 0xba, 0x95, 0x14, 0x55, 0xcf, 0xa5, 0xe6, 0x1b, 0xd8, 0xd8, 0x0f, 0xc3,
  1493. 0xe3, 0x79, 0x24, 0xdd, 0x48, 0x7c, 0xcd, 0x9f, 0xd0, 0x18, 0x95, 0xf9, 0x9e, 0xe9, 0x09, 0x2f,
  1494. 0xba, 0x6f, 0xf3, 0x5b, 0x03, 0x36, 0xf3, 0x66, 0x55, 0xe9, 0xfa, 0x13, 0x6c, 0xa4, 0x76, 0x6d,
  1495. 0x5f, 0x9d, 0x59, 0x6e, 0xd0, 0xda, 0x7e, 0xa0, 0x5d, 0xe6, 0xaa, 0xd5, 0x49, 0xfb, 0x72, 0x13,
  1496. 0xb0, 0xac, 0xfe, 0x49, 0x41, 0x42, 0x87, 0xa7, 0xd0, 0x2b, 0xaa, 0xf1, 0xea, 0x90, 0xee, 0xaa,
  1497. 0x90, 0x6d, 0x24, 0x2b, 0xd1, 0xcf, 0xa1, 0x99, 0x39, 0x52, 0x12, 0x8e, 0x6c, 0xe4, 0x1c, 0x51,
  1498. 0x7b, 0x65, 0x5a, 0x68, 0x13, 0xaa, 0x24, 0x8e, 0xc3, 0xa4, 0xaa, 0xca, 0x0f, 0xf3, 0x57, 0xd0,
  1499. 0xf8, 0xec, 0x5b, 0x34, 0xff, 0x6b, 0x40, 0xe7, 0x31, 0xa5, 0xde, 0x51, 0x1a, 0x2e, 0x9b, 0x50,
  1500. 0x95, 0x35, 0x4f, 0xd6, 0x76, 0xf9, 0x81, 0x46, 0xd0, 0x52, 0xc9, 0xad, 0x41, 0xaf, 0x8b, 0x2e,
  1501. 0xac, 0x1b, 0x2a, 0xe1, 0x2b, 0xd2, 0x35, 0x5e, 0xc6, 0x0a, 0x34, 0xa4, 0x7a, 0x26, 0x0d, 0xa9,
  1502. 0x69, 0x34, 0xe4, 0x06, 0x34, 0xc5, 0xa2, 0x20, 0x74, 0x89, 0xe2, 0x27, 0x0d, 0x2e, 0x78, 0x19,
  1503. 0xba, 0xc4, 0xfc, 0x87, 0x01, 0xdd, 0xe4, 0x34, 0xea, 0xe6, 0x7b, 0x50, 0x3e, 0x4c, 0xd1, 0xe7,
  1504. 0xc3, 0x04, 0xa3, 0xd2, 0x59, 0x18, 0x2d, 0x51, 0xaf, 0x14, 0x91, 0x8a, 0x8e, 0x48, 0x7a, 0x19,
  1505. 0x55, 0xed, 0x32, 0xb8, 0xcb, 0x78, 0xce, 0xde, 0x27, 0x2e, 0xf3, 0xb1, 0x79, 0x04, 0xfd, 0x09,
  1506. 0xc3, 0xcc, 0xa3, 0xcc, 0x73, 0x68, 0x02, 0x73, 0x01, 0x50, 0xe3, 0x22, 0x40, 0x4b, 0x67, 0x01,
  1507. 0x5a, 0x4e, 0x01, 0x35, 0xff, 0x63, 0x00, 0xd2, 0x77, 0x52, 0x10, 0x7c, 0x81, 0xad, 0x38, 0x64,
  1508. 0x2c, 0x64, 0xd8, 0xb7, 0x45, 0x8b, 0x56, 0x8d, 0x56, 0x48, 0x38, 0x0b, 0xe0, 0xb7, 0x34, 0xa7,
  1509. 0xc4, 0x95, 0xb3, 0xb2, 0xcb, 0x36, 0xb8, 0x40, 0x4c, 0xe6, 0x9b, 0x74, 0xad, 0xd0, 0xa4, 0xcd,
  1510. 0xc7, 0xd0, 0x9a, 0xb0, 0x30, 0xc6, 0x47, 0xe4, 0xcd, 0x22, 0xfa, 0x14, 0xef, 0x95, 0x77, 0xa5,
  1511. 0x0c, 0x88, 0x11, 0xc0, 0x4e, 0xe6, 0xfd, 0xaa, 0x02, 0x78, 0x0d, 0xae, 0x64, 0x1a, 0xbc, 0x5e,
  1512. 0xaa, 0x7b, 0x31, 0x5f, 0xc3, 0xd5, 0xe2, 0x84, 0x82, 0xf1, 0x97, 0xd0, 0xca, 0x20, 0x49, 0x6a,
  1513. 0xc7, 0x15, 0x2d, 0x65, 0xb3, 0x75, 0x96, 0xae, 0x69, 0xfe, 0x14, 0xae, 0x65, 0x53, 0x4f, 0x45,
  1514. 0x11, 0x3c, 0xaf, 0x36, 0x0f, 0x61, 0xb0, 0xac, 0x2e, 0x7d, 0x30, 0xff, 0x57, 0x82, 0xf6, 0x53,
  1515. 0x15, 0xed, 0xbc, 0x3f, 0x6a, 0x1d, 0xb1, 0x29, 0x3a, 0xe2, 0x1d, 0x68, 0xe7, 0x9e, 0x08, 0x92,
  1516. 0x3c, 0xb5, 0x4e, 0xb4, 0xf7, 0xc1, 0xaa, 0x97, 0x44, 0x59, 0xa8, 0x15, 0x5f, 0x12, 0xf7, 0xa1,
  1517. 0x7f, 0x18, 0x13, 0xb2, 0xfc, 0xe8, 0xa8, 0x58, 0xeb, 0x7c, 0x42, 0xd7, 0xdd, 0x82, 0x0d, 0xec,
  1518. 0x30, 0xef, 0xa4, 0xa0, 0x2d, 0xef, 0xbe, 0x2f, 0xa7, 0x74, 0xfd, 0x67, 0xa9, 0xa3, 0x5e, 0x70,
  1519. 0x18, 0xd2, 0x41, 0xed, 0xd3, 0x1f, 0x0d, 0xea, 0x34, 0x7c, 0x86, 0xa2, 0x03, 0xe8, 0x26, 0xcc,
  1520. 0x57, 0x59, 0xaa, 0x5f, 0x9a, 0xfe, 0xb6, 0x49, 0x36, 0x45, 0xcd, 0xbf, 0x95, 0xa0, 0x61, 0x61,
  1521. 0xe7, 0xf8, 0xeb, 0xc6, 0xf7, 0x11, 0xac, 0xa7, 0x75, 0x32, 0x07, 0xf1, 0x35, 0x0d, 0x18, 0x3d,
  1522. 0x94, 0xac, 0x8e, 0xab, 0x7d, 0x51, 0xf3, 0x7b, 0x03, 0xba, 0x4f, 0xd3, 0x5a, 0xfc, 0x75, 0x83,
  1523. 0xb1, 0x0d, 0xc0, 0x9b, 0x47, 0x0e, 0x07, 0xbd, 0xd9, 0x26, 0xd7, 0x6d, 0x35, 0x63, 0x35, 0xa2,
  1524. 0xe6, 0xdf, 0x4b, 0xd0, 0x7e, 0x13, 0x46, 0xa1, 0x1f, 0x1e, 0x2d, 0xbe, 0xee, 0xd3, 0xef, 0x42,
  1525. 0x5f, 0xeb, 0xb3, 0x39, 0x10, 0xae, 0x17, 0x82, 0x21, 0xbb, 0x6c, 0x6b, 0xdd, 0xcd, 0x7d, 0x53,
  1526. 0x73, 0x03, 0xfa, 0x8a, 0x33, 0x6a, 0xe5, 0xf2, 0xaf, 0x06, 0x20, 0x5d, 0xaa, 0x6a, 0xe5, 0xaf,
  1527. 0xa1, 0xc3, 0x14, 0x76, 0x62, 0x3f, 0x45, 0x9b, 0xf5, 0xd8, 0xd3, 0xb1, 0xb5, 0xda, 0x4c, 0x47,
  1528. 0xfa, 0x67, 0xb0, 0xa9, 0x4e, 0xc6, 0xfb, 0x87, 0xed, 0xf3, 0x37, 0xa5, 0x3d, 0x9b, 0x2a, 0x84,
  1529. 0xfb, 0x85, 0xd7, 0xe6, 0x8b, 0xa9, 0xf9, 0x0b, 0xb8, 0x22, 0x89, 0xdb, 0xae, 0x93, 0xe7, 0x93,
  1530. 0x4b, 0x0c, 0xac, 0x93, 0x31, 0x30, 0xf3, 0x3b, 0x03, 0xae, 0x16, 0x97, 0x29, 0xff, 0xcf, 0x5b,
  1531. 0x87, 0x30, 0x20, 0x55, 0x6f, 0x74, 0x2e, 0x29, 0x29, 0xdc, 0xc3, 0x25, 0x2e, 0x59, 0xb4, 0xbd,
  1532. 0x95, 0xd4, 0xa1, 0x8c, 0x4e, 0xf6, 0x68, 0x5e, 0x40, 0x87, 0x18, 0xfa, 0x4b, 0x6a, 0x9c, 0x71,
  1533. 0x27, 0xfb, 0x2a, 0x9f, 0xea, 0x6a, 0xe1, 0x67, 0x90, 0xc9, 0xed, 0xff, 0x57, 0xa1, 0x3e, 0x21,
  1534. 0xf8, 0x03, 0x21, 0x2e, 0xda, 0x83, 0xce, 0x84, 0x04, 0x6e, 0xf6, 0xc3, 0x6a, 0x53, 0x5b, 0x9c,
  1535. 0x4a, 0x87, 0x3f, 0x5a, 0x25, 0x4d, 0x7b, 0xd3, 0xda, 0xd8, 0x78, 0x60, 0xa0, 0x03, 0xe8, 0x3c,
  1536. 0x27, 0x24, 0xda, 0x09, 0x83, 0x80, 0x38, 0x8c, 0xb8, 0xe8, 0x96, 0xde, 0x21, 0x97, 0x9f, 0x27,
  1537. 0xc3, 0xeb, 0x4b, 0x85, 0x3a, 0xf1, 0x56, 0x59, 0x7c, 0x0d, 0x6d, 0x9d, 0x95, 0xe7, 0x0c, 0xae,
  1538. 0x78, 0x43, 0x0c, 0x6f, 0x5f, 0x40, 0xe7, 0xcd, 0x35, 0xf4, 0x08, 0x6a, 0x92, 0x26, 0xa2, 0x81,
  1539. 0xa6, 0x9c, 0xe3, 0xc1, 0x39, 0xbf, 0xf2, 0x9c, 0xd2, 0x5c, 0x43, 0xcf, 0x01, 0x32, 0xa2, 0x85,
  1540. 0x74, 0x5c, 0x96, 0x98, 0xde, 0xf0, 0xe6, 0x19, 0xb3, 0xa9, 0xb1, 0xdf, 0x43, 0x37, 0x4f, 0x39,
  1541. 0xd0, 0x68, 0x25, 0xab, 0xd0, 0xf2, 0x6e, 0x78, 0xe7, 0x1c, 0x8d, 0xd4, 0xf0, 0x1f, 0xa1, 0x57,
  1542. 0x64, 0x12, 0xc8, 0x5c, 0xb9, 0x30, 0xc7, 0x4a, 0x86, 0x77, 0xcf, 0xd5, 0xd1, 0x41, 0xc8, 0x52,
  1543. 0x3f, 0x07, 0xc2, 0x52, 0x9d, 0xc8, 0x81, 0xb0, 0x5c, 0x2f, 0x24, 0x08, 0xf9, 0x7c, 0xc9, 0x81,
  1544. 0xb0, 0x32, 0xbb, 0x73, 0x20, 0xac, 0x4e, 0x36, 0x73, 0x6d, 0x5a, 0x13, 0xff, 0x66, 0x1f, 0xfe,
  1545. 0x10, 0x00, 0x00, 0xff, 0xff, 0xac, 0x38, 0x8b, 0x89, 0xab, 0x15, 0x00, 0x00,
  1546. }