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.

1044 lines
38 KiB

  1. // Code generated by protoc-gen-go.
  2. // source: filer.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package filer_pb is a generated protocol buffer package.
  6. It is generated from these files:
  7. filer.proto
  8. It has these top-level messages:
  9. LookupDirectoryEntryRequest
  10. LookupDirectoryEntryResponse
  11. ListEntriesRequest
  12. ListEntriesResponse
  13. Entry
  14. FileChunk
  15. FuseAttributes
  16. GetEntryAttributesRequest
  17. GetEntryAttributesResponse
  18. GetFileContentRequest
  19. GetFileContentResponse
  20. CreateEntryRequest
  21. CreateEntryResponse
  22. UpdateEntryRequest
  23. UpdateEntryResponse
  24. DeleteEntryRequest
  25. DeleteEntryResponse
  26. AssignVolumeRequest
  27. AssignVolumeResponse
  28. LookupVolumeRequest
  29. Locations
  30. Location
  31. LookupVolumeResponse
  32. */
  33. package filer_pb
  34. import proto "github.com/golang/protobuf/proto"
  35. import fmt "fmt"
  36. import math "math"
  37. import (
  38. context "golang.org/x/net/context"
  39. grpc "google.golang.org/grpc"
  40. )
  41. // Reference imports to suppress errors if they are not otherwise used.
  42. var _ = proto.Marshal
  43. var _ = fmt.Errorf
  44. var _ = math.Inf
  45. // This is a compile-time assertion to ensure that this generated file
  46. // is compatible with the proto package it is being compiled against.
  47. // A compilation error at this line likely means your copy of the
  48. // proto package needs to be updated.
  49. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  50. type LookupDirectoryEntryRequest struct {
  51. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  52. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  53. }
  54. func (m *LookupDirectoryEntryRequest) Reset() { *m = LookupDirectoryEntryRequest{} }
  55. func (m *LookupDirectoryEntryRequest) String() string { return proto.CompactTextString(m) }
  56. func (*LookupDirectoryEntryRequest) ProtoMessage() {}
  57. func (*LookupDirectoryEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  58. func (m *LookupDirectoryEntryRequest) GetDirectory() string {
  59. if m != nil {
  60. return m.Directory
  61. }
  62. return ""
  63. }
  64. func (m *LookupDirectoryEntryRequest) GetName() string {
  65. if m != nil {
  66. return m.Name
  67. }
  68. return ""
  69. }
  70. type LookupDirectoryEntryResponse struct {
  71. Entry *Entry `protobuf:"bytes,1,opt,name=entry" json:"entry,omitempty"`
  72. }
  73. func (m *LookupDirectoryEntryResponse) Reset() { *m = LookupDirectoryEntryResponse{} }
  74. func (m *LookupDirectoryEntryResponse) String() string { return proto.CompactTextString(m) }
  75. func (*LookupDirectoryEntryResponse) ProtoMessage() {}
  76. func (*LookupDirectoryEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  77. func (m *LookupDirectoryEntryResponse) GetEntry() *Entry {
  78. if m != nil {
  79. return m.Entry
  80. }
  81. return nil
  82. }
  83. type ListEntriesRequest struct {
  84. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  85. }
  86. func (m *ListEntriesRequest) Reset() { *m = ListEntriesRequest{} }
  87. func (m *ListEntriesRequest) String() string { return proto.CompactTextString(m) }
  88. func (*ListEntriesRequest) ProtoMessage() {}
  89. func (*ListEntriesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  90. func (m *ListEntriesRequest) GetDirectory() string {
  91. if m != nil {
  92. return m.Directory
  93. }
  94. return ""
  95. }
  96. type ListEntriesResponse struct {
  97. Entries []*Entry `protobuf:"bytes,1,rep,name=entries" json:"entries,omitempty"`
  98. }
  99. func (m *ListEntriesResponse) Reset() { *m = ListEntriesResponse{} }
  100. func (m *ListEntriesResponse) String() string { return proto.CompactTextString(m) }
  101. func (*ListEntriesResponse) ProtoMessage() {}
  102. func (*ListEntriesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  103. func (m *ListEntriesResponse) GetEntries() []*Entry {
  104. if m != nil {
  105. return m.Entries
  106. }
  107. return nil
  108. }
  109. type Entry struct {
  110. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  111. IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  112. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks" json:"chunks,omitempty"`
  113. Attributes *FuseAttributes `protobuf:"bytes,4,opt,name=attributes" json:"attributes,omitempty"`
  114. }
  115. func (m *Entry) Reset() { *m = Entry{} }
  116. func (m *Entry) String() string { return proto.CompactTextString(m) }
  117. func (*Entry) ProtoMessage() {}
  118. func (*Entry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  119. func (m *Entry) GetName() string {
  120. if m != nil {
  121. return m.Name
  122. }
  123. return ""
  124. }
  125. func (m *Entry) GetIsDirectory() bool {
  126. if m != nil {
  127. return m.IsDirectory
  128. }
  129. return false
  130. }
  131. func (m *Entry) GetChunks() []*FileChunk {
  132. if m != nil {
  133. return m.Chunks
  134. }
  135. return nil
  136. }
  137. func (m *Entry) GetAttributes() *FuseAttributes {
  138. if m != nil {
  139. return m.Attributes
  140. }
  141. return nil
  142. }
  143. type FileChunk struct {
  144. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  145. Offset int64 `protobuf:"varint,2,opt,name=offset" json:"offset,omitempty"`
  146. Size uint64 `protobuf:"varint,3,opt,name=size" json:"size,omitempty"`
  147. Mtime int64 `protobuf:"varint,4,opt,name=mtime" json:"mtime,omitempty"`
  148. }
  149. func (m *FileChunk) Reset() { *m = FileChunk{} }
  150. func (m *FileChunk) String() string { return proto.CompactTextString(m) }
  151. func (*FileChunk) ProtoMessage() {}
  152. func (*FileChunk) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  153. func (m *FileChunk) GetFileId() string {
  154. if m != nil {
  155. return m.FileId
  156. }
  157. return ""
  158. }
  159. func (m *FileChunk) GetOffset() int64 {
  160. if m != nil {
  161. return m.Offset
  162. }
  163. return 0
  164. }
  165. func (m *FileChunk) GetSize() uint64 {
  166. if m != nil {
  167. return m.Size
  168. }
  169. return 0
  170. }
  171. func (m *FileChunk) GetMtime() int64 {
  172. if m != nil {
  173. return m.Mtime
  174. }
  175. return 0
  176. }
  177. type FuseAttributes struct {
  178. FileSize uint64 `protobuf:"varint,1,opt,name=file_size,json=fileSize" json:"file_size,omitempty"`
  179. Mtime int64 `protobuf:"varint,2,opt,name=mtime" json:"mtime,omitempty"`
  180. FileMode uint32 `protobuf:"varint,3,opt,name=file_mode,json=fileMode" json:"file_mode,omitempty"`
  181. Uid uint32 `protobuf:"varint,4,opt,name=uid" json:"uid,omitempty"`
  182. Gid uint32 `protobuf:"varint,5,opt,name=gid" json:"gid,omitempty"`
  183. Crtime int64 `protobuf:"varint,6,opt,name=crtime" json:"crtime,omitempty"`
  184. Mime string `protobuf:"bytes,7,opt,name=mime" json:"mime,omitempty"`
  185. Replication string `protobuf:"bytes,8,opt,name=replication" json:"replication,omitempty"`
  186. Collection string `protobuf:"bytes,9,opt,name=collection" json:"collection,omitempty"`
  187. TtlSec int32 `protobuf:"varint,10,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  188. }
  189. func (m *FuseAttributes) Reset() { *m = FuseAttributes{} }
  190. func (m *FuseAttributes) String() string { return proto.CompactTextString(m) }
  191. func (*FuseAttributes) ProtoMessage() {}
  192. func (*FuseAttributes) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  193. func (m *FuseAttributes) GetFileSize() uint64 {
  194. if m != nil {
  195. return m.FileSize
  196. }
  197. return 0
  198. }
  199. func (m *FuseAttributes) GetMtime() int64 {
  200. if m != nil {
  201. return m.Mtime
  202. }
  203. return 0
  204. }
  205. func (m *FuseAttributes) GetFileMode() uint32 {
  206. if m != nil {
  207. return m.FileMode
  208. }
  209. return 0
  210. }
  211. func (m *FuseAttributes) GetUid() uint32 {
  212. if m != nil {
  213. return m.Uid
  214. }
  215. return 0
  216. }
  217. func (m *FuseAttributes) GetGid() uint32 {
  218. if m != nil {
  219. return m.Gid
  220. }
  221. return 0
  222. }
  223. func (m *FuseAttributes) GetCrtime() int64 {
  224. if m != nil {
  225. return m.Crtime
  226. }
  227. return 0
  228. }
  229. func (m *FuseAttributes) GetMime() string {
  230. if m != nil {
  231. return m.Mime
  232. }
  233. return ""
  234. }
  235. func (m *FuseAttributes) GetReplication() string {
  236. if m != nil {
  237. return m.Replication
  238. }
  239. return ""
  240. }
  241. func (m *FuseAttributes) GetCollection() string {
  242. if m != nil {
  243. return m.Collection
  244. }
  245. return ""
  246. }
  247. func (m *FuseAttributes) GetTtlSec() int32 {
  248. if m != nil {
  249. return m.TtlSec
  250. }
  251. return 0
  252. }
  253. type GetEntryAttributesRequest struct {
  254. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  255. ParentDir string `protobuf:"bytes,2,opt,name=parent_dir,json=parentDir" json:"parent_dir,omitempty"`
  256. FileId string `protobuf:"bytes,3,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  257. }
  258. func (m *GetEntryAttributesRequest) Reset() { *m = GetEntryAttributesRequest{} }
  259. func (m *GetEntryAttributesRequest) String() string { return proto.CompactTextString(m) }
  260. func (*GetEntryAttributesRequest) ProtoMessage() {}
  261. func (*GetEntryAttributesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  262. func (m *GetEntryAttributesRequest) GetName() string {
  263. if m != nil {
  264. return m.Name
  265. }
  266. return ""
  267. }
  268. func (m *GetEntryAttributesRequest) GetParentDir() string {
  269. if m != nil {
  270. return m.ParentDir
  271. }
  272. return ""
  273. }
  274. func (m *GetEntryAttributesRequest) GetFileId() string {
  275. if m != nil {
  276. return m.FileId
  277. }
  278. return ""
  279. }
  280. type GetEntryAttributesResponse struct {
  281. Attributes *FuseAttributes `protobuf:"bytes,1,opt,name=attributes" json:"attributes,omitempty"`
  282. Chunks []*FileChunk `protobuf:"bytes,2,rep,name=chunks" json:"chunks,omitempty"`
  283. }
  284. func (m *GetEntryAttributesResponse) Reset() { *m = GetEntryAttributesResponse{} }
  285. func (m *GetEntryAttributesResponse) String() string { return proto.CompactTextString(m) }
  286. func (*GetEntryAttributesResponse) ProtoMessage() {}
  287. func (*GetEntryAttributesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  288. func (m *GetEntryAttributesResponse) GetAttributes() *FuseAttributes {
  289. if m != nil {
  290. return m.Attributes
  291. }
  292. return nil
  293. }
  294. func (m *GetEntryAttributesResponse) GetChunks() []*FileChunk {
  295. if m != nil {
  296. return m.Chunks
  297. }
  298. return nil
  299. }
  300. type GetFileContentRequest struct {
  301. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  302. }
  303. func (m *GetFileContentRequest) Reset() { *m = GetFileContentRequest{} }
  304. func (m *GetFileContentRequest) String() string { return proto.CompactTextString(m) }
  305. func (*GetFileContentRequest) ProtoMessage() {}
  306. func (*GetFileContentRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  307. func (m *GetFileContentRequest) GetFileId() string {
  308. if m != nil {
  309. return m.FileId
  310. }
  311. return ""
  312. }
  313. type GetFileContentResponse struct {
  314. Content []byte `protobuf:"bytes,1,opt,name=content,proto3" json:"content,omitempty"`
  315. }
  316. func (m *GetFileContentResponse) Reset() { *m = GetFileContentResponse{} }
  317. func (m *GetFileContentResponse) String() string { return proto.CompactTextString(m) }
  318. func (*GetFileContentResponse) ProtoMessage() {}
  319. func (*GetFileContentResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  320. func (m *GetFileContentResponse) GetContent() []byte {
  321. if m != nil {
  322. return m.Content
  323. }
  324. return nil
  325. }
  326. type CreateEntryRequest struct {
  327. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  328. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  329. }
  330. func (m *CreateEntryRequest) Reset() { *m = CreateEntryRequest{} }
  331. func (m *CreateEntryRequest) String() string { return proto.CompactTextString(m) }
  332. func (*CreateEntryRequest) ProtoMessage() {}
  333. func (*CreateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  334. func (m *CreateEntryRequest) GetDirectory() string {
  335. if m != nil {
  336. return m.Directory
  337. }
  338. return ""
  339. }
  340. func (m *CreateEntryRequest) GetEntry() *Entry {
  341. if m != nil {
  342. return m.Entry
  343. }
  344. return nil
  345. }
  346. type CreateEntryResponse struct {
  347. }
  348. func (m *CreateEntryResponse) Reset() { *m = CreateEntryResponse{} }
  349. func (m *CreateEntryResponse) String() string { return proto.CompactTextString(m) }
  350. func (*CreateEntryResponse) ProtoMessage() {}
  351. func (*CreateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  352. type UpdateEntryRequest struct {
  353. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  354. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  355. }
  356. func (m *UpdateEntryRequest) Reset() { *m = UpdateEntryRequest{} }
  357. func (m *UpdateEntryRequest) String() string { return proto.CompactTextString(m) }
  358. func (*UpdateEntryRequest) ProtoMessage() {}
  359. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  360. func (m *UpdateEntryRequest) GetDirectory() string {
  361. if m != nil {
  362. return m.Directory
  363. }
  364. return ""
  365. }
  366. func (m *UpdateEntryRequest) GetEntry() *Entry {
  367. if m != nil {
  368. return m.Entry
  369. }
  370. return nil
  371. }
  372. type UpdateEntryResponse struct {
  373. }
  374. func (m *UpdateEntryResponse) Reset() { *m = UpdateEntryResponse{} }
  375. func (m *UpdateEntryResponse) String() string { return proto.CompactTextString(m) }
  376. func (*UpdateEntryResponse) ProtoMessage() {}
  377. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  378. type DeleteEntryRequest struct {
  379. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  380. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  381. IsDirectory bool `protobuf:"varint,3,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  382. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData" json:"is_delete_data,omitempty"`
  383. }
  384. func (m *DeleteEntryRequest) Reset() { *m = DeleteEntryRequest{} }
  385. func (m *DeleteEntryRequest) String() string { return proto.CompactTextString(m) }
  386. func (*DeleteEntryRequest) ProtoMessage() {}
  387. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  388. func (m *DeleteEntryRequest) GetDirectory() string {
  389. if m != nil {
  390. return m.Directory
  391. }
  392. return ""
  393. }
  394. func (m *DeleteEntryRequest) GetName() string {
  395. if m != nil {
  396. return m.Name
  397. }
  398. return ""
  399. }
  400. func (m *DeleteEntryRequest) GetIsDirectory() bool {
  401. if m != nil {
  402. return m.IsDirectory
  403. }
  404. return false
  405. }
  406. func (m *DeleteEntryRequest) GetIsDeleteData() bool {
  407. if m != nil {
  408. return m.IsDeleteData
  409. }
  410. return false
  411. }
  412. type DeleteEntryResponse struct {
  413. }
  414. func (m *DeleteEntryResponse) Reset() { *m = DeleteEntryResponse{} }
  415. func (m *DeleteEntryResponse) String() string { return proto.CompactTextString(m) }
  416. func (*DeleteEntryResponse) ProtoMessage() {}
  417. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  418. type AssignVolumeRequest struct {
  419. Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  420. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  421. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  422. TtlSec int32 `protobuf:"varint,4,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  423. }
  424. func (m *AssignVolumeRequest) Reset() { *m = AssignVolumeRequest{} }
  425. func (m *AssignVolumeRequest) String() string { return proto.CompactTextString(m) }
  426. func (*AssignVolumeRequest) ProtoMessage() {}
  427. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  428. func (m *AssignVolumeRequest) GetCount() int32 {
  429. if m != nil {
  430. return m.Count
  431. }
  432. return 0
  433. }
  434. func (m *AssignVolumeRequest) GetCollection() string {
  435. if m != nil {
  436. return m.Collection
  437. }
  438. return ""
  439. }
  440. func (m *AssignVolumeRequest) GetReplication() string {
  441. if m != nil {
  442. return m.Replication
  443. }
  444. return ""
  445. }
  446. func (m *AssignVolumeRequest) GetTtlSec() int32 {
  447. if m != nil {
  448. return m.TtlSec
  449. }
  450. return 0
  451. }
  452. type AssignVolumeResponse struct {
  453. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  454. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  455. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  456. Count int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  457. }
  458. func (m *AssignVolumeResponse) Reset() { *m = AssignVolumeResponse{} }
  459. func (m *AssignVolumeResponse) String() string { return proto.CompactTextString(m) }
  460. func (*AssignVolumeResponse) ProtoMessage() {}
  461. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  462. func (m *AssignVolumeResponse) GetFileId() string {
  463. if m != nil {
  464. return m.FileId
  465. }
  466. return ""
  467. }
  468. func (m *AssignVolumeResponse) GetUrl() string {
  469. if m != nil {
  470. return m.Url
  471. }
  472. return ""
  473. }
  474. func (m *AssignVolumeResponse) GetPublicUrl() string {
  475. if m != nil {
  476. return m.PublicUrl
  477. }
  478. return ""
  479. }
  480. func (m *AssignVolumeResponse) GetCount() int32 {
  481. if m != nil {
  482. return m.Count
  483. }
  484. return 0
  485. }
  486. type LookupVolumeRequest struct {
  487. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  488. }
  489. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  490. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  491. func (*LookupVolumeRequest) ProtoMessage() {}
  492. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  493. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  494. if m != nil {
  495. return m.VolumeIds
  496. }
  497. return nil
  498. }
  499. type Locations struct {
  500. Locations []*Location `protobuf:"bytes,1,rep,name=locations" json:"locations,omitempty"`
  501. }
  502. func (m *Locations) Reset() { *m = Locations{} }
  503. func (m *Locations) String() string { return proto.CompactTextString(m) }
  504. func (*Locations) ProtoMessage() {}
  505. func (*Locations) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  506. func (m *Locations) GetLocations() []*Location {
  507. if m != nil {
  508. return m.Locations
  509. }
  510. return nil
  511. }
  512. type Location struct {
  513. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  514. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  515. }
  516. func (m *Location) Reset() { *m = Location{} }
  517. func (m *Location) String() string { return proto.CompactTextString(m) }
  518. func (*Location) ProtoMessage() {}
  519. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  520. func (m *Location) GetUrl() string {
  521. if m != nil {
  522. return m.Url
  523. }
  524. return ""
  525. }
  526. func (m *Location) GetPublicUrl() string {
  527. if m != nil {
  528. return m.PublicUrl
  529. }
  530. return ""
  531. }
  532. type LookupVolumeResponse struct {
  533. LocationsMap map[string]*Locations `protobuf:"bytes,1,rep,name=locations_map,json=locationsMap" json:"locations_map,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  534. }
  535. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  536. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  537. func (*LookupVolumeResponse) ProtoMessage() {}
  538. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  539. func (m *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  540. if m != nil {
  541. return m.LocationsMap
  542. }
  543. return nil
  544. }
  545. func init() {
  546. proto.RegisterType((*LookupDirectoryEntryRequest)(nil), "filer_pb.LookupDirectoryEntryRequest")
  547. proto.RegisterType((*LookupDirectoryEntryResponse)(nil), "filer_pb.LookupDirectoryEntryResponse")
  548. proto.RegisterType((*ListEntriesRequest)(nil), "filer_pb.ListEntriesRequest")
  549. proto.RegisterType((*ListEntriesResponse)(nil), "filer_pb.ListEntriesResponse")
  550. proto.RegisterType((*Entry)(nil), "filer_pb.Entry")
  551. proto.RegisterType((*FileChunk)(nil), "filer_pb.FileChunk")
  552. proto.RegisterType((*FuseAttributes)(nil), "filer_pb.FuseAttributes")
  553. proto.RegisterType((*GetEntryAttributesRequest)(nil), "filer_pb.GetEntryAttributesRequest")
  554. proto.RegisterType((*GetEntryAttributesResponse)(nil), "filer_pb.GetEntryAttributesResponse")
  555. proto.RegisterType((*GetFileContentRequest)(nil), "filer_pb.GetFileContentRequest")
  556. proto.RegisterType((*GetFileContentResponse)(nil), "filer_pb.GetFileContentResponse")
  557. proto.RegisterType((*CreateEntryRequest)(nil), "filer_pb.CreateEntryRequest")
  558. proto.RegisterType((*CreateEntryResponse)(nil), "filer_pb.CreateEntryResponse")
  559. proto.RegisterType((*UpdateEntryRequest)(nil), "filer_pb.UpdateEntryRequest")
  560. proto.RegisterType((*UpdateEntryResponse)(nil), "filer_pb.UpdateEntryResponse")
  561. proto.RegisterType((*DeleteEntryRequest)(nil), "filer_pb.DeleteEntryRequest")
  562. proto.RegisterType((*DeleteEntryResponse)(nil), "filer_pb.DeleteEntryResponse")
  563. proto.RegisterType((*AssignVolumeRequest)(nil), "filer_pb.AssignVolumeRequest")
  564. proto.RegisterType((*AssignVolumeResponse)(nil), "filer_pb.AssignVolumeResponse")
  565. proto.RegisterType((*LookupVolumeRequest)(nil), "filer_pb.LookupVolumeRequest")
  566. proto.RegisterType((*Locations)(nil), "filer_pb.Locations")
  567. proto.RegisterType((*Location)(nil), "filer_pb.Location")
  568. proto.RegisterType((*LookupVolumeResponse)(nil), "filer_pb.LookupVolumeResponse")
  569. }
  570. // Reference imports to suppress errors if they are not otherwise used.
  571. var _ context.Context
  572. var _ grpc.ClientConn
  573. // This is a compile-time assertion to ensure that this generated file
  574. // is compatible with the grpc package it is being compiled against.
  575. const _ = grpc.SupportPackageIsVersion4
  576. // Client API for SeaweedFiler service
  577. type SeaweedFilerClient interface {
  578. LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error)
  579. ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error)
  580. GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error)
  581. CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error)
  582. UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error)
  583. DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error)
  584. AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error)
  585. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  586. }
  587. type seaweedFilerClient struct {
  588. cc *grpc.ClientConn
  589. }
  590. func NewSeaweedFilerClient(cc *grpc.ClientConn) SeaweedFilerClient {
  591. return &seaweedFilerClient{cc}
  592. }
  593. func (c *seaweedFilerClient) LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error) {
  594. out := new(LookupDirectoryEntryResponse)
  595. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupDirectoryEntry", in, out, c.cc, opts...)
  596. if err != nil {
  597. return nil, err
  598. }
  599. return out, nil
  600. }
  601. func (c *seaweedFilerClient) ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (*ListEntriesResponse, error) {
  602. out := new(ListEntriesResponse)
  603. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/ListEntries", in, out, c.cc, opts...)
  604. if err != nil {
  605. return nil, err
  606. }
  607. return out, nil
  608. }
  609. func (c *seaweedFilerClient) GetEntryAttributes(ctx context.Context, in *GetEntryAttributesRequest, opts ...grpc.CallOption) (*GetEntryAttributesResponse, error) {
  610. out := new(GetEntryAttributesResponse)
  611. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/GetEntryAttributes", in, out, c.cc, opts...)
  612. if err != nil {
  613. return nil, err
  614. }
  615. return out, nil
  616. }
  617. func (c *seaweedFilerClient) CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error) {
  618. out := new(CreateEntryResponse)
  619. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/CreateEntry", in, out, c.cc, opts...)
  620. if err != nil {
  621. return nil, err
  622. }
  623. return out, nil
  624. }
  625. func (c *seaweedFilerClient) UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error) {
  626. out := new(UpdateEntryResponse)
  627. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/UpdateEntry", in, out, c.cc, opts...)
  628. if err != nil {
  629. return nil, err
  630. }
  631. return out, nil
  632. }
  633. func (c *seaweedFilerClient) DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error) {
  634. out := new(DeleteEntryResponse)
  635. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteEntry", in, out, c.cc, opts...)
  636. if err != nil {
  637. return nil, err
  638. }
  639. return out, nil
  640. }
  641. func (c *seaweedFilerClient) AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error) {
  642. out := new(AssignVolumeResponse)
  643. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AssignVolume", in, out, c.cc, opts...)
  644. if err != nil {
  645. return nil, err
  646. }
  647. return out, nil
  648. }
  649. func (c *seaweedFilerClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  650. out := new(LookupVolumeResponse)
  651. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupVolume", in, out, c.cc, opts...)
  652. if err != nil {
  653. return nil, err
  654. }
  655. return out, nil
  656. }
  657. // Server API for SeaweedFiler service
  658. type SeaweedFilerServer interface {
  659. LookupDirectoryEntry(context.Context, *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error)
  660. ListEntries(context.Context, *ListEntriesRequest) (*ListEntriesResponse, error)
  661. GetEntryAttributes(context.Context, *GetEntryAttributesRequest) (*GetEntryAttributesResponse, error)
  662. CreateEntry(context.Context, *CreateEntryRequest) (*CreateEntryResponse, error)
  663. UpdateEntry(context.Context, *UpdateEntryRequest) (*UpdateEntryResponse, error)
  664. DeleteEntry(context.Context, *DeleteEntryRequest) (*DeleteEntryResponse, error)
  665. AssignVolume(context.Context, *AssignVolumeRequest) (*AssignVolumeResponse, error)
  666. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  667. }
  668. func RegisterSeaweedFilerServer(s *grpc.Server, srv SeaweedFilerServer) {
  669. s.RegisterService(&_SeaweedFiler_serviceDesc, srv)
  670. }
  671. func _SeaweedFiler_LookupDirectoryEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  672. in := new(LookupDirectoryEntryRequest)
  673. if err := dec(in); err != nil {
  674. return nil, err
  675. }
  676. if interceptor == nil {
  677. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, in)
  678. }
  679. info := &grpc.UnaryServerInfo{
  680. Server: srv,
  681. FullMethod: "/filer_pb.SeaweedFiler/LookupDirectoryEntry",
  682. }
  683. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  684. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, req.(*LookupDirectoryEntryRequest))
  685. }
  686. return interceptor(ctx, in, info, handler)
  687. }
  688. func _SeaweedFiler_ListEntries_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  689. in := new(ListEntriesRequest)
  690. if err := dec(in); err != nil {
  691. return nil, err
  692. }
  693. if interceptor == nil {
  694. return srv.(SeaweedFilerServer).ListEntries(ctx, in)
  695. }
  696. info := &grpc.UnaryServerInfo{
  697. Server: srv,
  698. FullMethod: "/filer_pb.SeaweedFiler/ListEntries",
  699. }
  700. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  701. return srv.(SeaweedFilerServer).ListEntries(ctx, req.(*ListEntriesRequest))
  702. }
  703. return interceptor(ctx, in, info, handler)
  704. }
  705. func _SeaweedFiler_GetEntryAttributes_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  706. in := new(GetEntryAttributesRequest)
  707. if err := dec(in); err != nil {
  708. return nil, err
  709. }
  710. if interceptor == nil {
  711. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, in)
  712. }
  713. info := &grpc.UnaryServerInfo{
  714. Server: srv,
  715. FullMethod: "/filer_pb.SeaweedFiler/GetEntryAttributes",
  716. }
  717. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  718. return srv.(SeaweedFilerServer).GetEntryAttributes(ctx, req.(*GetEntryAttributesRequest))
  719. }
  720. return interceptor(ctx, in, info, handler)
  721. }
  722. func _SeaweedFiler_CreateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  723. in := new(CreateEntryRequest)
  724. if err := dec(in); err != nil {
  725. return nil, err
  726. }
  727. if interceptor == nil {
  728. return srv.(SeaweedFilerServer).CreateEntry(ctx, in)
  729. }
  730. info := &grpc.UnaryServerInfo{
  731. Server: srv,
  732. FullMethod: "/filer_pb.SeaweedFiler/CreateEntry",
  733. }
  734. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  735. return srv.(SeaweedFilerServer).CreateEntry(ctx, req.(*CreateEntryRequest))
  736. }
  737. return interceptor(ctx, in, info, handler)
  738. }
  739. func _SeaweedFiler_UpdateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  740. in := new(UpdateEntryRequest)
  741. if err := dec(in); err != nil {
  742. return nil, err
  743. }
  744. if interceptor == nil {
  745. return srv.(SeaweedFilerServer).UpdateEntry(ctx, in)
  746. }
  747. info := &grpc.UnaryServerInfo{
  748. Server: srv,
  749. FullMethod: "/filer_pb.SeaweedFiler/UpdateEntry",
  750. }
  751. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  752. return srv.(SeaweedFilerServer).UpdateEntry(ctx, req.(*UpdateEntryRequest))
  753. }
  754. return interceptor(ctx, in, info, handler)
  755. }
  756. func _SeaweedFiler_DeleteEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  757. in := new(DeleteEntryRequest)
  758. if err := dec(in); err != nil {
  759. return nil, err
  760. }
  761. if interceptor == nil {
  762. return srv.(SeaweedFilerServer).DeleteEntry(ctx, in)
  763. }
  764. info := &grpc.UnaryServerInfo{
  765. Server: srv,
  766. FullMethod: "/filer_pb.SeaweedFiler/DeleteEntry",
  767. }
  768. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  769. return srv.(SeaweedFilerServer).DeleteEntry(ctx, req.(*DeleteEntryRequest))
  770. }
  771. return interceptor(ctx, in, info, handler)
  772. }
  773. func _SeaweedFiler_AssignVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  774. in := new(AssignVolumeRequest)
  775. if err := dec(in); err != nil {
  776. return nil, err
  777. }
  778. if interceptor == nil {
  779. return srv.(SeaweedFilerServer).AssignVolume(ctx, in)
  780. }
  781. info := &grpc.UnaryServerInfo{
  782. Server: srv,
  783. FullMethod: "/filer_pb.SeaweedFiler/AssignVolume",
  784. }
  785. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  786. return srv.(SeaweedFilerServer).AssignVolume(ctx, req.(*AssignVolumeRequest))
  787. }
  788. return interceptor(ctx, in, info, handler)
  789. }
  790. func _SeaweedFiler_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  791. in := new(LookupVolumeRequest)
  792. if err := dec(in); err != nil {
  793. return nil, err
  794. }
  795. if interceptor == nil {
  796. return srv.(SeaweedFilerServer).LookupVolume(ctx, in)
  797. }
  798. info := &grpc.UnaryServerInfo{
  799. Server: srv,
  800. FullMethod: "/filer_pb.SeaweedFiler/LookupVolume",
  801. }
  802. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  803. return srv.(SeaweedFilerServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  804. }
  805. return interceptor(ctx, in, info, handler)
  806. }
  807. var _SeaweedFiler_serviceDesc = grpc.ServiceDesc{
  808. ServiceName: "filer_pb.SeaweedFiler",
  809. HandlerType: (*SeaweedFilerServer)(nil),
  810. Methods: []grpc.MethodDesc{
  811. {
  812. MethodName: "LookupDirectoryEntry",
  813. Handler: _SeaweedFiler_LookupDirectoryEntry_Handler,
  814. },
  815. {
  816. MethodName: "ListEntries",
  817. Handler: _SeaweedFiler_ListEntries_Handler,
  818. },
  819. {
  820. MethodName: "GetEntryAttributes",
  821. Handler: _SeaweedFiler_GetEntryAttributes_Handler,
  822. },
  823. {
  824. MethodName: "CreateEntry",
  825. Handler: _SeaweedFiler_CreateEntry_Handler,
  826. },
  827. {
  828. MethodName: "UpdateEntry",
  829. Handler: _SeaweedFiler_UpdateEntry_Handler,
  830. },
  831. {
  832. MethodName: "DeleteEntry",
  833. Handler: _SeaweedFiler_DeleteEntry_Handler,
  834. },
  835. {
  836. MethodName: "AssignVolume",
  837. Handler: _SeaweedFiler_AssignVolume_Handler,
  838. },
  839. {
  840. MethodName: "LookupVolume",
  841. Handler: _SeaweedFiler_LookupVolume_Handler,
  842. },
  843. },
  844. Streams: []grpc.StreamDesc{},
  845. Metadata: "filer.proto",
  846. }
  847. func init() { proto.RegisterFile("filer.proto", fileDescriptor0) }
  848. var fileDescriptor0 = []byte{
  849. // 971 bytes of a gzipped FileDescriptorProto
  850. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x56, 0xdd, 0x6e, 0xdc, 0x44,
  851. 0x14, 0x8e, 0xd7, 0xeb, 0xcd, 0xfa, 0xec, 0xa6, 0xc0, 0x6c, 0x5a, 0xcc, 0x36, 0xa9, 0x16, 0xd3,
  852. 0xa2, 0x54, 0x48, 0x51, 0x14, 0xb8, 0xa8, 0x40, 0x48, 0x54, 0x4d, 0xa9, 0x2a, 0xa5, 0xaa, 0xe4,
  853. 0x10, 0x24, 0xae, 0x56, 0x8e, 0x7d, 0x76, 0x19, 0xc5, 0x6b, 0x1b, 0xcf, 0x38, 0x28, 0xdc, 0x22,
  854. 0x71, 0xc3, 0x05, 0x4f, 0xc1, 0x1b, 0xf0, 0x06, 0xbc, 0x18, 0x9a, 0x1f, 0x7b, 0xc7, 0x6b, 0x6f,
  855. 0x7f, 0x2e, 0xb8, 0x9b, 0x39, 0x3f, 0xdf, 0xf9, 0x8e, 0x7d, 0xce, 0x67, 0xc3, 0x68, 0x41, 0x13,
  856. 0x2c, 0x8e, 0xf3, 0x22, 0xe3, 0x19, 0x19, 0xca, 0xcb, 0x3c, 0xbf, 0xf2, 0x5f, 0xc3, 0xfd, 0xf3,
  857. 0x2c, 0xbb, 0x2e, 0xf3, 0x33, 0x5a, 0x60, 0xc4, 0xb3, 0xe2, 0xf6, 0x79, 0xca, 0x8b, 0xdb, 0x00,
  858. 0x7f, 0x29, 0x91, 0x71, 0x72, 0x00, 0x6e, 0x5c, 0x39, 0x3c, 0x6b, 0x66, 0x1d, 0xb9, 0xc1, 0xda,
  859. 0x40, 0x08, 0xf4, 0xd3, 0x70, 0x85, 0x5e, 0x4f, 0x3a, 0xe4, 0xd9, 0x7f, 0x0e, 0x07, 0xdd, 0x80,
  860. 0x2c, 0xcf, 0x52, 0x86, 0xe4, 0x11, 0x38, 0x28, 0x0c, 0x12, 0x6d, 0x74, 0xfa, 0xc1, 0x71, 0x45,
  861. 0xe5, 0x58, 0xc5, 0x29, 0xaf, 0x7f, 0x0a, 0xe4, 0x9c, 0x32, 0x2e, 0x6c, 0x14, 0xd9, 0x3b, 0xd1,
  862. 0xf1, 0xbf, 0x83, 0x49, 0x23, 0x47, 0x57, 0x7c, 0x0c, 0xbb, 0xa8, 0x4c, 0x9e, 0x35, 0xb3, 0xbb,
  863. 0x6a, 0x56, 0x7e, 0xff, 0x6f, 0x0b, 0x1c, 0x69, 0xaa, 0x5b, 0xb3, 0xd6, 0xad, 0x91, 0x4f, 0x61,
  864. 0x4c, 0xd9, 0x7c, 0x4d, 0x40, 0xb4, 0x3d, 0x0c, 0x46, 0x94, 0xd5, 0xad, 0x92, 0x2f, 0x60, 0x10,
  865. 0xfd, 0x5c, 0xa6, 0xd7, 0xcc, 0xb3, 0x65, 0xa9, 0xc9, 0xba, 0xd4, 0xf7, 0x34, 0xc1, 0x67, 0xc2,
  866. 0x17, 0xe8, 0x10, 0xf2, 0x04, 0x20, 0xe4, 0xbc, 0xa0, 0x57, 0x25, 0x47, 0xe6, 0xf5, 0xe5, 0xf3,
  867. 0xf0, 0x8c, 0x84, 0x92, 0xe1, 0xd3, 0xda, 0x1f, 0x18, 0xb1, 0xfe, 0x02, 0xdc, 0x1a, 0x8e, 0x7c,
  868. 0x0c, 0xbb, 0x22, 0x67, 0x4e, 0x63, 0xcd, 0x76, 0x20, 0xae, 0x2f, 0x63, 0x72, 0x0f, 0x06, 0xd9,
  869. 0x62, 0xc1, 0x90, 0x4b, 0xa6, 0x76, 0xa0, 0x6f, 0xa2, 0x37, 0x46, 0x7f, 0x43, 0xcf, 0x9e, 0x59,
  870. 0x47, 0xfd, 0x40, 0x9e, 0xc9, 0x3e, 0x38, 0x2b, 0x4e, 0x57, 0x28, 0x69, 0xd8, 0x81, 0xba, 0xf8,
  871. 0x7f, 0xf6, 0xe0, 0x4e, 0x93, 0x06, 0xb9, 0x0f, 0xae, 0xac, 0x26, 0x11, 0x2c, 0x89, 0x20, 0xa7,
  872. 0xe9, 0xa2, 0x81, 0xd2, 0x33, 0x50, 0xea, 0x94, 0x55, 0x16, 0xab, 0xa2, 0x7b, 0x2a, 0xe5, 0x55,
  873. 0x16, 0x23, 0xf9, 0x10, 0xec, 0x92, 0xc6, 0xb2, 0xec, 0x5e, 0x20, 0x8e, 0xc2, 0xb2, 0xa4, 0xb1,
  874. 0xe7, 0x28, 0xcb, 0x92, 0xca, 0x46, 0xa2, 0x42, 0xe2, 0x0e, 0x54, 0x23, 0xea, 0x26, 0x1a, 0x59,
  875. 0x09, 0xeb, 0xae, 0x7a, 0x49, 0xe2, 0x4c, 0x66, 0x30, 0x2a, 0x30, 0x4f, 0x68, 0x14, 0x72, 0x9a,
  876. 0xa5, 0xde, 0x50, 0xba, 0x4c, 0x13, 0x79, 0x00, 0x10, 0x65, 0x49, 0x82, 0x91, 0x0c, 0x70, 0x65,
  877. 0x80, 0x61, 0x11, 0xcf, 0x93, 0xf3, 0x64, 0xce, 0x30, 0xf2, 0x60, 0x66, 0x1d, 0x39, 0xc1, 0x80,
  878. 0xf3, 0xe4, 0x02, 0x23, 0x7f, 0x09, 0x9f, 0xbc, 0x40, 0x39, 0x5e, 0xb7, 0xc6, 0x7b, 0xd1, 0xa3,
  879. 0xd9, 0x35, 0x30, 0x87, 0x00, 0x79, 0x58, 0x60, 0xca, 0xc5, 0xd0, 0xe8, 0x2d, 0x71, 0x95, 0xe5,
  880. 0x8c, 0x16, 0xe6, 0x8b, 0xb3, 0xcd, 0x17, 0xe7, 0xff, 0x6e, 0xc1, 0xb4, 0xab, 0x92, 0x1e, 0xe8,
  881. 0xe6, 0xdc, 0x58, 0xef, 0x3e, 0x37, 0xc6, 0x78, 0xf6, 0xde, 0x3a, 0x9e, 0xfe, 0x09, 0xdc, 0x7d,
  882. 0x81, 0x5c, 0xda, 0xb3, 0x94, 0x63, 0xca, 0xab, 0x56, 0xb7, 0x0d, 0x9c, 0x7f, 0x0a, 0xf7, 0x36,
  883. 0x33, 0x34, 0x65, 0x0f, 0x76, 0x23, 0x65, 0x92, 0x29, 0xe3, 0xa0, 0xba, 0xfa, 0x3f, 0x01, 0x79,
  884. 0x56, 0x60, 0xc8, 0xf1, 0x3d, 0x74, 0xa7, 0xd6, 0x90, 0xde, 0x1b, 0x35, 0xe4, 0x2e, 0x4c, 0x1a,
  885. 0xd0, 0x8a, 0x8b, 0xa8, 0x78, 0x99, 0xc7, 0xff, 0x57, 0xc5, 0x06, 0xb4, 0xae, 0xf8, 0x97, 0x05,
  886. 0xe4, 0x0c, 0x13, 0x7c, 0xaf, 0x92, 0x1d, 0xe2, 0xda, 0x52, 0x20, 0xbb, 0xad, 0x40, 0x0f, 0xe1,
  887. 0x8e, 0x08, 0x91, 0xd5, 0xe6, 0x71, 0xc8, 0x43, 0xb9, 0x5a, 0xc3, 0x60, 0x4c, 0x99, 0xa2, 0x70,
  888. 0x16, 0xf2, 0x50, 0x10, 0x6d, 0x10, 0xd2, 0x44, 0xff, 0xb0, 0x60, 0xf2, 0x94, 0x31, 0xba, 0x4c,
  889. 0x7f, 0xcc, 0x92, 0x72, 0x85, 0x15, 0xd3, 0x7d, 0x70, 0xa2, 0xac, 0xd4, 0x2f, 0xcf, 0x09, 0xd4,
  890. 0x65, 0x63, 0x91, 0x7a, 0xad, 0x45, 0xda, 0x58, 0x45, 0xbb, 0xbd, 0x8a, 0xc6, 0xaa, 0xf5, 0x1b,
  891. 0xab, 0x76, 0x03, 0xfb, 0x4d, 0x1e, 0x7a, 0x8e, 0xb6, 0x6a, 0x9d, 0x90, 0x91, 0x22, 0xd1, 0x24,
  892. 0xc4, 0x51, 0x2e, 0x5f, 0x79, 0x95, 0xd0, 0x68, 0x2e, 0x1c, 0xb6, 0x5e, 0x3e, 0x69, 0xb9, 0x2c,
  893. 0x92, 0x75, 0x4b, 0x7d, 0xa3, 0x25, 0xff, 0x2b, 0x98, 0xa8, 0xaf, 0x57, 0xb3, 0xff, 0x43, 0x80,
  894. 0x1b, 0x69, 0x98, 0xd3, 0x58, 0x7d, 0x45, 0xdc, 0xc0, 0x55, 0x96, 0x97, 0x31, 0xf3, 0xbf, 0x05,
  895. 0xf7, 0x3c, 0x53, 0x2d, 0x31, 0x72, 0x02, 0x6e, 0x52, 0x5d, 0xf4, 0x07, 0x87, 0xac, 0xc7, 0xa5,
  896. 0x8a, 0x0b, 0xd6, 0x41, 0xfe, 0x37, 0x30, 0xac, 0xcc, 0x55, 0x1f, 0xd6, 0xb6, 0x3e, 0x7a, 0x1b,
  897. 0x7d, 0xf8, 0xff, 0x5a, 0xb0, 0xdf, 0xa4, 0xac, 0x1f, 0xd5, 0x25, 0xec, 0xd5, 0x25, 0xe6, 0xab,
  898. 0x30, 0xd7, 0x5c, 0x4e, 0x4c, 0x2e, 0xed, 0xb4, 0x9a, 0x20, 0x7b, 0x15, 0xe6, 0x6a, 0x38, 0xc6,
  899. 0x89, 0x61, 0x9a, 0xfe, 0x00, 0x1f, 0xb5, 0x42, 0x04, 0xeb, 0x6b, 0xac, 0x66, 0x58, 0x1c, 0xc9,
  900. 0x63, 0x70, 0x6e, 0xc2, 0xa4, 0x44, 0xbd, 0x30, 0x93, 0xf6, 0x13, 0x60, 0x81, 0x8a, 0xf8, 0xba,
  901. 0xf7, 0xc4, 0x3a, 0xfd, 0xc7, 0x81, 0xf1, 0x05, 0x86, 0xbf, 0x22, 0xc6, 0x42, 0x3e, 0x0a, 0xb2,
  902. 0xac, 0xba, 0x6a, 0xfe, 0x46, 0x90, 0x47, 0x9b, 0xf4, 0x3b, 0xff, 0x5b, 0xa6, 0x9f, 0xbf, 0x2d,
  903. 0x4c, 0x0f, 0xfc, 0x0e, 0x39, 0x87, 0x91, 0xf1, 0xd3, 0x40, 0x0e, 0x8c, 0xc4, 0xd6, 0xff, 0xc7,
  904. 0xf4, 0x70, 0x8b, 0xb7, 0x46, 0x0b, 0x81, 0xb4, 0x85, 0x9b, 0x7c, 0xb6, 0x4e, 0xdb, 0xfa, 0x01,
  905. 0x99, 0x3e, 0x7c, 0x73, 0x90, 0x49, 0xd8, 0x50, 0x35, 0x93, 0x70, 0x5b, 0x47, 0x4d, 0xc2, 0x5d,
  906. 0x52, 0x28, 0xd1, 0x0c, 0xc5, 0x32, 0xd1, 0xda, 0x1a, 0x69, 0xa2, 0x75, 0xc9, 0x9c, 0x44, 0x33,
  907. 0x64, 0xc5, 0x44, 0x6b, 0xcb, 0x9f, 0x89, 0xd6, 0xa5, 0x45, 0x3b, 0xe4, 0x35, 0x8c, 0x4d, 0x11,
  908. 0x20, 0x46, 0x42, 0x87, 0x48, 0x4d, 0x1f, 0x6c, 0x73, 0x9b, 0x80, 0xe6, 0xcc, 0x9b, 0x80, 0x1d,
  909. 0x5b, 0x6f, 0x02, 0x76, 0xad, 0x8a, 0xbf, 0x73, 0x35, 0x90, 0xbf, 0xd3, 0x5f, 0xfe, 0x17, 0x00,
  910. 0x00, 0xff, 0xff, 0x00, 0xdc, 0x65, 0x5f, 0x5d, 0x0b, 0x00, 0x00,
  911. }