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.

1571 lines
57 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. FullEntry
  15. EventNotification
  16. FileChunk
  17. FileId
  18. FuseAttributes
  19. CreateEntryRequest
  20. CreateEntryResponse
  21. UpdateEntryRequest
  22. UpdateEntryResponse
  23. DeleteEntryRequest
  24. DeleteEntryResponse
  25. AtomicRenameEntryRequest
  26. AtomicRenameEntryResponse
  27. AssignVolumeRequest
  28. AssignVolumeResponse
  29. LookupVolumeRequest
  30. Locations
  31. Location
  32. LookupVolumeResponse
  33. DeleteCollectionRequest
  34. DeleteCollectionResponse
  35. StatisticsRequest
  36. StatisticsResponse
  37. GetFilerConfigurationRequest
  38. GetFilerConfigurationResponse
  39. */
  40. package filer_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 LookupDirectoryEntryRequest struct {
  58. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  59. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  60. }
  61. func (m *LookupDirectoryEntryRequest) Reset() { *m = LookupDirectoryEntryRequest{} }
  62. func (m *LookupDirectoryEntryRequest) String() string { return proto.CompactTextString(m) }
  63. func (*LookupDirectoryEntryRequest) ProtoMessage() {}
  64. func (*LookupDirectoryEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  65. func (m *LookupDirectoryEntryRequest) GetDirectory() string {
  66. if m != nil {
  67. return m.Directory
  68. }
  69. return ""
  70. }
  71. func (m *LookupDirectoryEntryRequest) GetName() string {
  72. if m != nil {
  73. return m.Name
  74. }
  75. return ""
  76. }
  77. type LookupDirectoryEntryResponse struct {
  78. Entry *Entry `protobuf:"bytes,1,opt,name=entry" json:"entry,omitempty"`
  79. }
  80. func (m *LookupDirectoryEntryResponse) Reset() { *m = LookupDirectoryEntryResponse{} }
  81. func (m *LookupDirectoryEntryResponse) String() string { return proto.CompactTextString(m) }
  82. func (*LookupDirectoryEntryResponse) ProtoMessage() {}
  83. func (*LookupDirectoryEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  84. func (m *LookupDirectoryEntryResponse) GetEntry() *Entry {
  85. if m != nil {
  86. return m.Entry
  87. }
  88. return nil
  89. }
  90. type ListEntriesRequest struct {
  91. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  92. Prefix string `protobuf:"bytes,2,opt,name=prefix" json:"prefix,omitempty"`
  93. StartFromFileName string `protobuf:"bytes,3,opt,name=startFromFileName" json:"startFromFileName,omitempty"`
  94. InclusiveStartFrom bool `protobuf:"varint,4,opt,name=inclusiveStartFrom" json:"inclusiveStartFrom,omitempty"`
  95. Limit uint32 `protobuf:"varint,5,opt,name=limit" json:"limit,omitempty"`
  96. }
  97. func (m *ListEntriesRequest) Reset() { *m = ListEntriesRequest{} }
  98. func (m *ListEntriesRequest) String() string { return proto.CompactTextString(m) }
  99. func (*ListEntriesRequest) ProtoMessage() {}
  100. func (*ListEntriesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  101. func (m *ListEntriesRequest) GetDirectory() string {
  102. if m != nil {
  103. return m.Directory
  104. }
  105. return ""
  106. }
  107. func (m *ListEntriesRequest) GetPrefix() string {
  108. if m != nil {
  109. return m.Prefix
  110. }
  111. return ""
  112. }
  113. func (m *ListEntriesRequest) GetStartFromFileName() string {
  114. if m != nil {
  115. return m.StartFromFileName
  116. }
  117. return ""
  118. }
  119. func (m *ListEntriesRequest) GetInclusiveStartFrom() bool {
  120. if m != nil {
  121. return m.InclusiveStartFrom
  122. }
  123. return false
  124. }
  125. func (m *ListEntriesRequest) GetLimit() uint32 {
  126. if m != nil {
  127. return m.Limit
  128. }
  129. return 0
  130. }
  131. type ListEntriesResponse struct {
  132. Entry *Entry `protobuf:"bytes,1,opt,name=entry" json:"entry,omitempty"`
  133. }
  134. func (m *ListEntriesResponse) Reset() { *m = ListEntriesResponse{} }
  135. func (m *ListEntriesResponse) String() string { return proto.CompactTextString(m) }
  136. func (*ListEntriesResponse) ProtoMessage() {}
  137. func (*ListEntriesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  138. func (m *ListEntriesResponse) GetEntry() *Entry {
  139. if m != nil {
  140. return m.Entry
  141. }
  142. return nil
  143. }
  144. type Entry struct {
  145. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  146. IsDirectory bool `protobuf:"varint,2,opt,name=is_directory,json=isDirectory" json:"is_directory,omitempty"`
  147. Chunks []*FileChunk `protobuf:"bytes,3,rep,name=chunks" json:"chunks,omitempty"`
  148. Attributes *FuseAttributes `protobuf:"bytes,4,opt,name=attributes" json:"attributes,omitempty"`
  149. Extended map[string][]byte `protobuf:"bytes,5,rep,name=extended" json:"extended,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value,proto3"`
  150. }
  151. func (m *Entry) Reset() { *m = Entry{} }
  152. func (m *Entry) String() string { return proto.CompactTextString(m) }
  153. func (*Entry) ProtoMessage() {}
  154. func (*Entry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  155. func (m *Entry) GetName() string {
  156. if m != nil {
  157. return m.Name
  158. }
  159. return ""
  160. }
  161. func (m *Entry) GetIsDirectory() bool {
  162. if m != nil {
  163. return m.IsDirectory
  164. }
  165. return false
  166. }
  167. func (m *Entry) GetChunks() []*FileChunk {
  168. if m != nil {
  169. return m.Chunks
  170. }
  171. return nil
  172. }
  173. func (m *Entry) GetAttributes() *FuseAttributes {
  174. if m != nil {
  175. return m.Attributes
  176. }
  177. return nil
  178. }
  179. func (m *Entry) GetExtended() map[string][]byte {
  180. if m != nil {
  181. return m.Extended
  182. }
  183. return nil
  184. }
  185. type FullEntry struct {
  186. Dir string `protobuf:"bytes,1,opt,name=dir" json:"dir,omitempty"`
  187. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  188. }
  189. func (m *FullEntry) Reset() { *m = FullEntry{} }
  190. func (m *FullEntry) String() string { return proto.CompactTextString(m) }
  191. func (*FullEntry) ProtoMessage() {}
  192. func (*FullEntry) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  193. func (m *FullEntry) GetDir() string {
  194. if m != nil {
  195. return m.Dir
  196. }
  197. return ""
  198. }
  199. func (m *FullEntry) GetEntry() *Entry {
  200. if m != nil {
  201. return m.Entry
  202. }
  203. return nil
  204. }
  205. type EventNotification struct {
  206. OldEntry *Entry `protobuf:"bytes,1,opt,name=old_entry,json=oldEntry" json:"old_entry,omitempty"`
  207. NewEntry *Entry `protobuf:"bytes,2,opt,name=new_entry,json=newEntry" json:"new_entry,omitempty"`
  208. DeleteChunks bool `protobuf:"varint,3,opt,name=delete_chunks,json=deleteChunks" json:"delete_chunks,omitempty"`
  209. NewParentPath string `protobuf:"bytes,4,opt,name=new_parent_path,json=newParentPath" json:"new_parent_path,omitempty"`
  210. }
  211. func (m *EventNotification) Reset() { *m = EventNotification{} }
  212. func (m *EventNotification) String() string { return proto.CompactTextString(m) }
  213. func (*EventNotification) ProtoMessage() {}
  214. func (*EventNotification) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
  215. func (m *EventNotification) GetOldEntry() *Entry {
  216. if m != nil {
  217. return m.OldEntry
  218. }
  219. return nil
  220. }
  221. func (m *EventNotification) GetNewEntry() *Entry {
  222. if m != nil {
  223. return m.NewEntry
  224. }
  225. return nil
  226. }
  227. func (m *EventNotification) GetDeleteChunks() bool {
  228. if m != nil {
  229. return m.DeleteChunks
  230. }
  231. return false
  232. }
  233. func (m *EventNotification) GetNewParentPath() string {
  234. if m != nil {
  235. return m.NewParentPath
  236. }
  237. return ""
  238. }
  239. type FileChunk struct {
  240. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  241. Offset int64 `protobuf:"varint,2,opt,name=offset" json:"offset,omitempty"`
  242. Size uint64 `protobuf:"varint,3,opt,name=size" json:"size,omitempty"`
  243. Mtime int64 `protobuf:"varint,4,opt,name=mtime" json:"mtime,omitempty"`
  244. ETag string `protobuf:"bytes,5,opt,name=e_tag,json=eTag" json:"e_tag,omitempty"`
  245. SourceFileId string `protobuf:"bytes,6,opt,name=source_file_id,json=sourceFileId" json:"source_file_id,omitempty"`
  246. Fid *FileId `protobuf:"bytes,7,opt,name=fid" json:"fid,omitempty"`
  247. SourceFid *FileId `protobuf:"bytes,8,opt,name=source_fid,json=sourceFid" json:"source_fid,omitempty"`
  248. }
  249. func (m *FileChunk) Reset() { *m = FileChunk{} }
  250. func (m *FileChunk) String() string { return proto.CompactTextString(m) }
  251. func (*FileChunk) ProtoMessage() {}
  252. func (*FileChunk) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
  253. func (m *FileChunk) GetFileId() string {
  254. if m != nil {
  255. return m.FileId
  256. }
  257. return ""
  258. }
  259. func (m *FileChunk) GetOffset() int64 {
  260. if m != nil {
  261. return m.Offset
  262. }
  263. return 0
  264. }
  265. func (m *FileChunk) GetSize() uint64 {
  266. if m != nil {
  267. return m.Size
  268. }
  269. return 0
  270. }
  271. func (m *FileChunk) GetMtime() int64 {
  272. if m != nil {
  273. return m.Mtime
  274. }
  275. return 0
  276. }
  277. func (m *FileChunk) GetETag() string {
  278. if m != nil {
  279. return m.ETag
  280. }
  281. return ""
  282. }
  283. func (m *FileChunk) GetSourceFileId() string {
  284. if m != nil {
  285. return m.SourceFileId
  286. }
  287. return ""
  288. }
  289. func (m *FileChunk) GetFid() *FileId {
  290. if m != nil {
  291. return m.Fid
  292. }
  293. return nil
  294. }
  295. func (m *FileChunk) GetSourceFid() *FileId {
  296. if m != nil {
  297. return m.SourceFid
  298. }
  299. return nil
  300. }
  301. type FileId struct {
  302. VolumeId uint32 `protobuf:"varint,1,opt,name=volume_id,json=volumeId" json:"volume_id,omitempty"`
  303. FileKey uint64 `protobuf:"varint,2,opt,name=file_key,json=fileKey" json:"file_key,omitempty"`
  304. Cookie uint32 `protobuf:"fixed32,3,opt,name=cookie" json:"cookie,omitempty"`
  305. }
  306. func (m *FileId) Reset() { *m = FileId{} }
  307. func (m *FileId) String() string { return proto.CompactTextString(m) }
  308. func (*FileId) ProtoMessage() {}
  309. func (*FileId) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
  310. func (m *FileId) GetVolumeId() uint32 {
  311. if m != nil {
  312. return m.VolumeId
  313. }
  314. return 0
  315. }
  316. func (m *FileId) GetFileKey() uint64 {
  317. if m != nil {
  318. return m.FileKey
  319. }
  320. return 0
  321. }
  322. func (m *FileId) GetCookie() uint32 {
  323. if m != nil {
  324. return m.Cookie
  325. }
  326. return 0
  327. }
  328. type FuseAttributes struct {
  329. FileSize uint64 `protobuf:"varint,1,opt,name=file_size,json=fileSize" json:"file_size,omitempty"`
  330. Mtime int64 `protobuf:"varint,2,opt,name=mtime" json:"mtime,omitempty"`
  331. FileMode uint32 `protobuf:"varint,3,opt,name=file_mode,json=fileMode" json:"file_mode,omitempty"`
  332. Uid uint32 `protobuf:"varint,4,opt,name=uid" json:"uid,omitempty"`
  333. Gid uint32 `protobuf:"varint,5,opt,name=gid" json:"gid,omitempty"`
  334. Crtime int64 `protobuf:"varint,6,opt,name=crtime" json:"crtime,omitempty"`
  335. Mime string `protobuf:"bytes,7,opt,name=mime" json:"mime,omitempty"`
  336. Replication string `protobuf:"bytes,8,opt,name=replication" json:"replication,omitempty"`
  337. Collection string `protobuf:"bytes,9,opt,name=collection" json:"collection,omitempty"`
  338. TtlSec int32 `protobuf:"varint,10,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  339. UserName string `protobuf:"bytes,11,opt,name=user_name,json=userName" json:"user_name,omitempty"`
  340. GroupName []string `protobuf:"bytes,12,rep,name=group_name,json=groupName" json:"group_name,omitempty"`
  341. SymlinkTarget string `protobuf:"bytes,13,opt,name=symlink_target,json=symlinkTarget" json:"symlink_target,omitempty"`
  342. }
  343. func (m *FuseAttributes) Reset() { *m = FuseAttributes{} }
  344. func (m *FuseAttributes) String() string { return proto.CompactTextString(m) }
  345. func (*FuseAttributes) ProtoMessage() {}
  346. func (*FuseAttributes) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
  347. func (m *FuseAttributes) GetFileSize() uint64 {
  348. if m != nil {
  349. return m.FileSize
  350. }
  351. return 0
  352. }
  353. func (m *FuseAttributes) GetMtime() int64 {
  354. if m != nil {
  355. return m.Mtime
  356. }
  357. return 0
  358. }
  359. func (m *FuseAttributes) GetFileMode() uint32 {
  360. if m != nil {
  361. return m.FileMode
  362. }
  363. return 0
  364. }
  365. func (m *FuseAttributes) GetUid() uint32 {
  366. if m != nil {
  367. return m.Uid
  368. }
  369. return 0
  370. }
  371. func (m *FuseAttributes) GetGid() uint32 {
  372. if m != nil {
  373. return m.Gid
  374. }
  375. return 0
  376. }
  377. func (m *FuseAttributes) GetCrtime() int64 {
  378. if m != nil {
  379. return m.Crtime
  380. }
  381. return 0
  382. }
  383. func (m *FuseAttributes) GetMime() string {
  384. if m != nil {
  385. return m.Mime
  386. }
  387. return ""
  388. }
  389. func (m *FuseAttributes) GetReplication() string {
  390. if m != nil {
  391. return m.Replication
  392. }
  393. return ""
  394. }
  395. func (m *FuseAttributes) GetCollection() string {
  396. if m != nil {
  397. return m.Collection
  398. }
  399. return ""
  400. }
  401. func (m *FuseAttributes) GetTtlSec() int32 {
  402. if m != nil {
  403. return m.TtlSec
  404. }
  405. return 0
  406. }
  407. func (m *FuseAttributes) GetUserName() string {
  408. if m != nil {
  409. return m.UserName
  410. }
  411. return ""
  412. }
  413. func (m *FuseAttributes) GetGroupName() []string {
  414. if m != nil {
  415. return m.GroupName
  416. }
  417. return nil
  418. }
  419. func (m *FuseAttributes) GetSymlinkTarget() string {
  420. if m != nil {
  421. return m.SymlinkTarget
  422. }
  423. return ""
  424. }
  425. type CreateEntryRequest struct {
  426. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  427. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  428. OExcl bool `protobuf:"varint,3,opt,name=o_excl,json=oExcl" json:"o_excl,omitempty"`
  429. }
  430. func (m *CreateEntryRequest) Reset() { *m = CreateEntryRequest{} }
  431. func (m *CreateEntryRequest) String() string { return proto.CompactTextString(m) }
  432. func (*CreateEntryRequest) ProtoMessage() {}
  433. func (*CreateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
  434. func (m *CreateEntryRequest) GetDirectory() string {
  435. if m != nil {
  436. return m.Directory
  437. }
  438. return ""
  439. }
  440. func (m *CreateEntryRequest) GetEntry() *Entry {
  441. if m != nil {
  442. return m.Entry
  443. }
  444. return nil
  445. }
  446. func (m *CreateEntryRequest) GetOExcl() bool {
  447. if m != nil {
  448. return m.OExcl
  449. }
  450. return false
  451. }
  452. type CreateEntryResponse struct {
  453. }
  454. func (m *CreateEntryResponse) Reset() { *m = CreateEntryResponse{} }
  455. func (m *CreateEntryResponse) String() string { return proto.CompactTextString(m) }
  456. func (*CreateEntryResponse) ProtoMessage() {}
  457. func (*CreateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  458. type UpdateEntryRequest struct {
  459. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  460. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  461. }
  462. func (m *UpdateEntryRequest) Reset() { *m = UpdateEntryRequest{} }
  463. func (m *UpdateEntryRequest) String() string { return proto.CompactTextString(m) }
  464. func (*UpdateEntryRequest) ProtoMessage() {}
  465. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  466. func (m *UpdateEntryRequest) GetDirectory() string {
  467. if m != nil {
  468. return m.Directory
  469. }
  470. return ""
  471. }
  472. func (m *UpdateEntryRequest) GetEntry() *Entry {
  473. if m != nil {
  474. return m.Entry
  475. }
  476. return nil
  477. }
  478. type UpdateEntryResponse struct {
  479. }
  480. func (m *UpdateEntryResponse) Reset() { *m = UpdateEntryResponse{} }
  481. func (m *UpdateEntryResponse) String() string { return proto.CompactTextString(m) }
  482. func (*UpdateEntryResponse) ProtoMessage() {}
  483. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  484. type DeleteEntryRequest struct {
  485. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  486. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  487. // bool is_directory = 3;
  488. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData" json:"is_delete_data,omitempty"`
  489. IsRecursive bool `protobuf:"varint,5,opt,name=is_recursive,json=isRecursive" json:"is_recursive,omitempty"`
  490. IgnoreRecursiveError bool `protobuf:"varint,6,opt,name=ignore_recursive_error,json=ignoreRecursiveError" json:"ignore_recursive_error,omitempty"`
  491. }
  492. func (m *DeleteEntryRequest) Reset() { *m = DeleteEntryRequest{} }
  493. func (m *DeleteEntryRequest) String() string { return proto.CompactTextString(m) }
  494. func (*DeleteEntryRequest) ProtoMessage() {}
  495. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  496. func (m *DeleteEntryRequest) GetDirectory() string {
  497. if m != nil {
  498. return m.Directory
  499. }
  500. return ""
  501. }
  502. func (m *DeleteEntryRequest) GetName() string {
  503. if m != nil {
  504. return m.Name
  505. }
  506. return ""
  507. }
  508. func (m *DeleteEntryRequest) GetIsDeleteData() bool {
  509. if m != nil {
  510. return m.IsDeleteData
  511. }
  512. return false
  513. }
  514. func (m *DeleteEntryRequest) GetIsRecursive() bool {
  515. if m != nil {
  516. return m.IsRecursive
  517. }
  518. return false
  519. }
  520. func (m *DeleteEntryRequest) GetIgnoreRecursiveError() bool {
  521. if m != nil {
  522. return m.IgnoreRecursiveError
  523. }
  524. return false
  525. }
  526. type DeleteEntryResponse struct {
  527. }
  528. func (m *DeleteEntryResponse) Reset() { *m = DeleteEntryResponse{} }
  529. func (m *DeleteEntryResponse) String() string { return proto.CompactTextString(m) }
  530. func (*DeleteEntryResponse) ProtoMessage() {}
  531. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  532. type AtomicRenameEntryRequest struct {
  533. OldDirectory string `protobuf:"bytes,1,opt,name=old_directory,json=oldDirectory" json:"old_directory,omitempty"`
  534. OldName string `protobuf:"bytes,2,opt,name=old_name,json=oldName" json:"old_name,omitempty"`
  535. NewDirectory string `protobuf:"bytes,3,opt,name=new_directory,json=newDirectory" json:"new_directory,omitempty"`
  536. NewName string `protobuf:"bytes,4,opt,name=new_name,json=newName" json:"new_name,omitempty"`
  537. }
  538. func (m *AtomicRenameEntryRequest) Reset() { *m = AtomicRenameEntryRequest{} }
  539. func (m *AtomicRenameEntryRequest) String() string { return proto.CompactTextString(m) }
  540. func (*AtomicRenameEntryRequest) ProtoMessage() {}
  541. func (*AtomicRenameEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  542. func (m *AtomicRenameEntryRequest) GetOldDirectory() string {
  543. if m != nil {
  544. return m.OldDirectory
  545. }
  546. return ""
  547. }
  548. func (m *AtomicRenameEntryRequest) GetOldName() string {
  549. if m != nil {
  550. return m.OldName
  551. }
  552. return ""
  553. }
  554. func (m *AtomicRenameEntryRequest) GetNewDirectory() string {
  555. if m != nil {
  556. return m.NewDirectory
  557. }
  558. return ""
  559. }
  560. func (m *AtomicRenameEntryRequest) GetNewName() string {
  561. if m != nil {
  562. return m.NewName
  563. }
  564. return ""
  565. }
  566. type AtomicRenameEntryResponse struct {
  567. }
  568. func (m *AtomicRenameEntryResponse) Reset() { *m = AtomicRenameEntryResponse{} }
  569. func (m *AtomicRenameEntryResponse) String() string { return proto.CompactTextString(m) }
  570. func (*AtomicRenameEntryResponse) ProtoMessage() {}
  571. func (*AtomicRenameEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  572. type AssignVolumeRequest struct {
  573. Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  574. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  575. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  576. TtlSec int32 `protobuf:"varint,4,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  577. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  578. }
  579. func (m *AssignVolumeRequest) Reset() { *m = AssignVolumeRequest{} }
  580. func (m *AssignVolumeRequest) String() string { return proto.CompactTextString(m) }
  581. func (*AssignVolumeRequest) ProtoMessage() {}
  582. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  583. func (m *AssignVolumeRequest) GetCount() int32 {
  584. if m != nil {
  585. return m.Count
  586. }
  587. return 0
  588. }
  589. func (m *AssignVolumeRequest) GetCollection() string {
  590. if m != nil {
  591. return m.Collection
  592. }
  593. return ""
  594. }
  595. func (m *AssignVolumeRequest) GetReplication() string {
  596. if m != nil {
  597. return m.Replication
  598. }
  599. return ""
  600. }
  601. func (m *AssignVolumeRequest) GetTtlSec() int32 {
  602. if m != nil {
  603. return m.TtlSec
  604. }
  605. return 0
  606. }
  607. func (m *AssignVolumeRequest) GetDataCenter() string {
  608. if m != nil {
  609. return m.DataCenter
  610. }
  611. return ""
  612. }
  613. type AssignVolumeResponse struct {
  614. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  615. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  616. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  617. Count int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  618. Auth string `protobuf:"bytes,5,opt,name=auth" json:"auth,omitempty"`
  619. }
  620. func (m *AssignVolumeResponse) Reset() { *m = AssignVolumeResponse{} }
  621. func (m *AssignVolumeResponse) String() string { return proto.CompactTextString(m) }
  622. func (*AssignVolumeResponse) ProtoMessage() {}
  623. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  624. func (m *AssignVolumeResponse) GetFileId() string {
  625. if m != nil {
  626. return m.FileId
  627. }
  628. return ""
  629. }
  630. func (m *AssignVolumeResponse) GetUrl() string {
  631. if m != nil {
  632. return m.Url
  633. }
  634. return ""
  635. }
  636. func (m *AssignVolumeResponse) GetPublicUrl() string {
  637. if m != nil {
  638. return m.PublicUrl
  639. }
  640. return ""
  641. }
  642. func (m *AssignVolumeResponse) GetCount() int32 {
  643. if m != nil {
  644. return m.Count
  645. }
  646. return 0
  647. }
  648. func (m *AssignVolumeResponse) GetAuth() string {
  649. if m != nil {
  650. return m.Auth
  651. }
  652. return ""
  653. }
  654. type LookupVolumeRequest struct {
  655. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  656. }
  657. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  658. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  659. func (*LookupVolumeRequest) ProtoMessage() {}
  660. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  661. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  662. if m != nil {
  663. return m.VolumeIds
  664. }
  665. return nil
  666. }
  667. type Locations struct {
  668. Locations []*Location `protobuf:"bytes,1,rep,name=locations" json:"locations,omitempty"`
  669. }
  670. func (m *Locations) Reset() { *m = Locations{} }
  671. func (m *Locations) String() string { return proto.CompactTextString(m) }
  672. func (*Locations) ProtoMessage() {}
  673. func (*Locations) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  674. func (m *Locations) GetLocations() []*Location {
  675. if m != nil {
  676. return m.Locations
  677. }
  678. return nil
  679. }
  680. type Location struct {
  681. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  682. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  683. }
  684. func (m *Location) Reset() { *m = Location{} }
  685. func (m *Location) String() string { return proto.CompactTextString(m) }
  686. func (*Location) ProtoMessage() {}
  687. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  688. func (m *Location) GetUrl() string {
  689. if m != nil {
  690. return m.Url
  691. }
  692. return ""
  693. }
  694. func (m *Location) GetPublicUrl() string {
  695. if m != nil {
  696. return m.PublicUrl
  697. }
  698. return ""
  699. }
  700. type LookupVolumeResponse struct {
  701. 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"`
  702. }
  703. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  704. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  705. func (*LookupVolumeResponse) ProtoMessage() {}
  706. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  707. func (m *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  708. if m != nil {
  709. return m.LocationsMap
  710. }
  711. return nil
  712. }
  713. type DeleteCollectionRequest struct {
  714. Collection string `protobuf:"bytes,1,opt,name=collection" json:"collection,omitempty"`
  715. }
  716. func (m *DeleteCollectionRequest) Reset() { *m = DeleteCollectionRequest{} }
  717. func (m *DeleteCollectionRequest) String() string { return proto.CompactTextString(m) }
  718. func (*DeleteCollectionRequest) ProtoMessage() {}
  719. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  720. func (m *DeleteCollectionRequest) GetCollection() string {
  721. if m != nil {
  722. return m.Collection
  723. }
  724. return ""
  725. }
  726. type DeleteCollectionResponse struct {
  727. }
  728. func (m *DeleteCollectionResponse) Reset() { *m = DeleteCollectionResponse{} }
  729. func (m *DeleteCollectionResponse) String() string { return proto.CompactTextString(m) }
  730. func (*DeleteCollectionResponse) ProtoMessage() {}
  731. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  732. type StatisticsRequest struct {
  733. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  734. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  735. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  736. }
  737. func (m *StatisticsRequest) Reset() { *m = StatisticsRequest{} }
  738. func (m *StatisticsRequest) String() string { return proto.CompactTextString(m) }
  739. func (*StatisticsRequest) ProtoMessage() {}
  740. func (*StatisticsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
  741. func (m *StatisticsRequest) GetReplication() string {
  742. if m != nil {
  743. return m.Replication
  744. }
  745. return ""
  746. }
  747. func (m *StatisticsRequest) GetCollection() string {
  748. if m != nil {
  749. return m.Collection
  750. }
  751. return ""
  752. }
  753. func (m *StatisticsRequest) GetTtl() string {
  754. if m != nil {
  755. return m.Ttl
  756. }
  757. return ""
  758. }
  759. type StatisticsResponse struct {
  760. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  761. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  762. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  763. TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
  764. UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize" json:"used_size,omitempty"`
  765. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  766. }
  767. func (m *StatisticsResponse) Reset() { *m = StatisticsResponse{} }
  768. func (m *StatisticsResponse) String() string { return proto.CompactTextString(m) }
  769. func (*StatisticsResponse) ProtoMessage() {}
  770. func (*StatisticsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
  771. func (m *StatisticsResponse) GetReplication() string {
  772. if m != nil {
  773. return m.Replication
  774. }
  775. return ""
  776. }
  777. func (m *StatisticsResponse) GetCollection() string {
  778. if m != nil {
  779. return m.Collection
  780. }
  781. return ""
  782. }
  783. func (m *StatisticsResponse) GetTtl() string {
  784. if m != nil {
  785. return m.Ttl
  786. }
  787. return ""
  788. }
  789. func (m *StatisticsResponse) GetTotalSize() uint64 {
  790. if m != nil {
  791. return m.TotalSize
  792. }
  793. return 0
  794. }
  795. func (m *StatisticsResponse) GetUsedSize() uint64 {
  796. if m != nil {
  797. return m.UsedSize
  798. }
  799. return 0
  800. }
  801. func (m *StatisticsResponse) GetFileCount() uint64 {
  802. if m != nil {
  803. return m.FileCount
  804. }
  805. return 0
  806. }
  807. type GetFilerConfigurationRequest struct {
  808. }
  809. func (m *GetFilerConfigurationRequest) Reset() { *m = GetFilerConfigurationRequest{} }
  810. func (m *GetFilerConfigurationRequest) String() string { return proto.CompactTextString(m) }
  811. func (*GetFilerConfigurationRequest) ProtoMessage() {}
  812. func (*GetFilerConfigurationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
  813. type GetFilerConfigurationResponse struct {
  814. Masters []string `protobuf:"bytes,1,rep,name=masters" json:"masters,omitempty"`
  815. Replication string `protobuf:"bytes,2,opt,name=replication" json:"replication,omitempty"`
  816. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  817. MaxMb uint32 `protobuf:"varint,4,opt,name=max_mb,json=maxMb" json:"max_mb,omitempty"`
  818. }
  819. func (m *GetFilerConfigurationResponse) Reset() { *m = GetFilerConfigurationResponse{} }
  820. func (m *GetFilerConfigurationResponse) String() string { return proto.CompactTextString(m) }
  821. func (*GetFilerConfigurationResponse) ProtoMessage() {}
  822. func (*GetFilerConfigurationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
  823. func (m *GetFilerConfigurationResponse) GetMasters() []string {
  824. if m != nil {
  825. return m.Masters
  826. }
  827. return nil
  828. }
  829. func (m *GetFilerConfigurationResponse) GetReplication() string {
  830. if m != nil {
  831. return m.Replication
  832. }
  833. return ""
  834. }
  835. func (m *GetFilerConfigurationResponse) GetCollection() string {
  836. if m != nil {
  837. return m.Collection
  838. }
  839. return ""
  840. }
  841. func (m *GetFilerConfigurationResponse) GetMaxMb() uint32 {
  842. if m != nil {
  843. return m.MaxMb
  844. }
  845. return 0
  846. }
  847. func init() {
  848. proto.RegisterType((*LookupDirectoryEntryRequest)(nil), "filer_pb.LookupDirectoryEntryRequest")
  849. proto.RegisterType((*LookupDirectoryEntryResponse)(nil), "filer_pb.LookupDirectoryEntryResponse")
  850. proto.RegisterType((*ListEntriesRequest)(nil), "filer_pb.ListEntriesRequest")
  851. proto.RegisterType((*ListEntriesResponse)(nil), "filer_pb.ListEntriesResponse")
  852. proto.RegisterType((*Entry)(nil), "filer_pb.Entry")
  853. proto.RegisterType((*FullEntry)(nil), "filer_pb.FullEntry")
  854. proto.RegisterType((*EventNotification)(nil), "filer_pb.EventNotification")
  855. proto.RegisterType((*FileChunk)(nil), "filer_pb.FileChunk")
  856. proto.RegisterType((*FileId)(nil), "filer_pb.FileId")
  857. proto.RegisterType((*FuseAttributes)(nil), "filer_pb.FuseAttributes")
  858. proto.RegisterType((*CreateEntryRequest)(nil), "filer_pb.CreateEntryRequest")
  859. proto.RegisterType((*CreateEntryResponse)(nil), "filer_pb.CreateEntryResponse")
  860. proto.RegisterType((*UpdateEntryRequest)(nil), "filer_pb.UpdateEntryRequest")
  861. proto.RegisterType((*UpdateEntryResponse)(nil), "filer_pb.UpdateEntryResponse")
  862. proto.RegisterType((*DeleteEntryRequest)(nil), "filer_pb.DeleteEntryRequest")
  863. proto.RegisterType((*DeleteEntryResponse)(nil), "filer_pb.DeleteEntryResponse")
  864. proto.RegisterType((*AtomicRenameEntryRequest)(nil), "filer_pb.AtomicRenameEntryRequest")
  865. proto.RegisterType((*AtomicRenameEntryResponse)(nil), "filer_pb.AtomicRenameEntryResponse")
  866. proto.RegisterType((*AssignVolumeRequest)(nil), "filer_pb.AssignVolumeRequest")
  867. proto.RegisterType((*AssignVolumeResponse)(nil), "filer_pb.AssignVolumeResponse")
  868. proto.RegisterType((*LookupVolumeRequest)(nil), "filer_pb.LookupVolumeRequest")
  869. proto.RegisterType((*Locations)(nil), "filer_pb.Locations")
  870. proto.RegisterType((*Location)(nil), "filer_pb.Location")
  871. proto.RegisterType((*LookupVolumeResponse)(nil), "filer_pb.LookupVolumeResponse")
  872. proto.RegisterType((*DeleteCollectionRequest)(nil), "filer_pb.DeleteCollectionRequest")
  873. proto.RegisterType((*DeleteCollectionResponse)(nil), "filer_pb.DeleteCollectionResponse")
  874. proto.RegisterType((*StatisticsRequest)(nil), "filer_pb.StatisticsRequest")
  875. proto.RegisterType((*StatisticsResponse)(nil), "filer_pb.StatisticsResponse")
  876. proto.RegisterType((*GetFilerConfigurationRequest)(nil), "filer_pb.GetFilerConfigurationRequest")
  877. proto.RegisterType((*GetFilerConfigurationResponse)(nil), "filer_pb.GetFilerConfigurationResponse")
  878. }
  879. // Reference imports to suppress errors if they are not otherwise used.
  880. var _ context.Context
  881. var _ grpc.ClientConn
  882. // This is a compile-time assertion to ensure that this generated file
  883. // is compatible with the grpc package it is being compiled against.
  884. const _ = grpc.SupportPackageIsVersion4
  885. // Client API for SeaweedFiler service
  886. type SeaweedFilerClient interface {
  887. LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error)
  888. ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (SeaweedFiler_ListEntriesClient, error)
  889. CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error)
  890. UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error)
  891. DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error)
  892. AtomicRenameEntry(ctx context.Context, in *AtomicRenameEntryRequest, opts ...grpc.CallOption) (*AtomicRenameEntryResponse, error)
  893. AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error)
  894. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  895. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  896. Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
  897. GetFilerConfiguration(ctx context.Context, in *GetFilerConfigurationRequest, opts ...grpc.CallOption) (*GetFilerConfigurationResponse, error)
  898. }
  899. type seaweedFilerClient struct {
  900. cc *grpc.ClientConn
  901. }
  902. func NewSeaweedFilerClient(cc *grpc.ClientConn) SeaweedFilerClient {
  903. return &seaweedFilerClient{cc}
  904. }
  905. func (c *seaweedFilerClient) LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error) {
  906. out := new(LookupDirectoryEntryResponse)
  907. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupDirectoryEntry", in, out, c.cc, opts...)
  908. if err != nil {
  909. return nil, err
  910. }
  911. return out, nil
  912. }
  913. func (c *seaweedFilerClient) ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (SeaweedFiler_ListEntriesClient, error) {
  914. stream, err := grpc.NewClientStream(ctx, &_SeaweedFiler_serviceDesc.Streams[0], c.cc, "/filer_pb.SeaweedFiler/ListEntries", opts...)
  915. if err != nil {
  916. return nil, err
  917. }
  918. x := &seaweedFilerListEntriesClient{stream}
  919. if err := x.ClientStream.SendMsg(in); err != nil {
  920. return nil, err
  921. }
  922. if err := x.ClientStream.CloseSend(); err != nil {
  923. return nil, err
  924. }
  925. return x, nil
  926. }
  927. type SeaweedFiler_ListEntriesClient interface {
  928. Recv() (*ListEntriesResponse, error)
  929. grpc.ClientStream
  930. }
  931. type seaweedFilerListEntriesClient struct {
  932. grpc.ClientStream
  933. }
  934. func (x *seaweedFilerListEntriesClient) Recv() (*ListEntriesResponse, error) {
  935. m := new(ListEntriesResponse)
  936. if err := x.ClientStream.RecvMsg(m); err != nil {
  937. return nil, err
  938. }
  939. return m, nil
  940. }
  941. func (c *seaweedFilerClient) CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error) {
  942. out := new(CreateEntryResponse)
  943. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/CreateEntry", in, out, c.cc, opts...)
  944. if err != nil {
  945. return nil, err
  946. }
  947. return out, nil
  948. }
  949. func (c *seaweedFilerClient) UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error) {
  950. out := new(UpdateEntryResponse)
  951. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/UpdateEntry", in, out, c.cc, opts...)
  952. if err != nil {
  953. return nil, err
  954. }
  955. return out, nil
  956. }
  957. func (c *seaweedFilerClient) DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error) {
  958. out := new(DeleteEntryResponse)
  959. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteEntry", in, out, c.cc, opts...)
  960. if err != nil {
  961. return nil, err
  962. }
  963. return out, nil
  964. }
  965. func (c *seaweedFilerClient) AtomicRenameEntry(ctx context.Context, in *AtomicRenameEntryRequest, opts ...grpc.CallOption) (*AtomicRenameEntryResponse, error) {
  966. out := new(AtomicRenameEntryResponse)
  967. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AtomicRenameEntry", in, out, c.cc, opts...)
  968. if err != nil {
  969. return nil, err
  970. }
  971. return out, nil
  972. }
  973. func (c *seaweedFilerClient) AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error) {
  974. out := new(AssignVolumeResponse)
  975. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AssignVolume", in, out, c.cc, opts...)
  976. if err != nil {
  977. return nil, err
  978. }
  979. return out, nil
  980. }
  981. func (c *seaweedFilerClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  982. out := new(LookupVolumeResponse)
  983. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupVolume", in, out, c.cc, opts...)
  984. if err != nil {
  985. return nil, err
  986. }
  987. return out, nil
  988. }
  989. func (c *seaweedFilerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  990. out := new(DeleteCollectionResponse)
  991. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteCollection", in, out, c.cc, opts...)
  992. if err != nil {
  993. return nil, err
  994. }
  995. return out, nil
  996. }
  997. func (c *seaweedFilerClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
  998. out := new(StatisticsResponse)
  999. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/Statistics", in, out, c.cc, opts...)
  1000. if err != nil {
  1001. return nil, err
  1002. }
  1003. return out, nil
  1004. }
  1005. func (c *seaweedFilerClient) GetFilerConfiguration(ctx context.Context, in *GetFilerConfigurationRequest, opts ...grpc.CallOption) (*GetFilerConfigurationResponse, error) {
  1006. out := new(GetFilerConfigurationResponse)
  1007. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/GetFilerConfiguration", in, out, c.cc, opts...)
  1008. if err != nil {
  1009. return nil, err
  1010. }
  1011. return out, nil
  1012. }
  1013. // Server API for SeaweedFiler service
  1014. type SeaweedFilerServer interface {
  1015. LookupDirectoryEntry(context.Context, *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error)
  1016. ListEntries(*ListEntriesRequest, SeaweedFiler_ListEntriesServer) error
  1017. CreateEntry(context.Context, *CreateEntryRequest) (*CreateEntryResponse, error)
  1018. UpdateEntry(context.Context, *UpdateEntryRequest) (*UpdateEntryResponse, error)
  1019. DeleteEntry(context.Context, *DeleteEntryRequest) (*DeleteEntryResponse, error)
  1020. AtomicRenameEntry(context.Context, *AtomicRenameEntryRequest) (*AtomicRenameEntryResponse, error)
  1021. AssignVolume(context.Context, *AssignVolumeRequest) (*AssignVolumeResponse, error)
  1022. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  1023. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  1024. Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
  1025. GetFilerConfiguration(context.Context, *GetFilerConfigurationRequest) (*GetFilerConfigurationResponse, error)
  1026. }
  1027. func RegisterSeaweedFilerServer(s *grpc.Server, srv SeaweedFilerServer) {
  1028. s.RegisterService(&_SeaweedFiler_serviceDesc, srv)
  1029. }
  1030. func _SeaweedFiler_LookupDirectoryEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1031. in := new(LookupDirectoryEntryRequest)
  1032. if err := dec(in); err != nil {
  1033. return nil, err
  1034. }
  1035. if interceptor == nil {
  1036. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, in)
  1037. }
  1038. info := &grpc.UnaryServerInfo{
  1039. Server: srv,
  1040. FullMethod: "/filer_pb.SeaweedFiler/LookupDirectoryEntry",
  1041. }
  1042. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1043. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, req.(*LookupDirectoryEntryRequest))
  1044. }
  1045. return interceptor(ctx, in, info, handler)
  1046. }
  1047. func _SeaweedFiler_ListEntries_Handler(srv interface{}, stream grpc.ServerStream) error {
  1048. m := new(ListEntriesRequest)
  1049. if err := stream.RecvMsg(m); err != nil {
  1050. return err
  1051. }
  1052. return srv.(SeaweedFilerServer).ListEntries(m, &seaweedFilerListEntriesServer{stream})
  1053. }
  1054. type SeaweedFiler_ListEntriesServer interface {
  1055. Send(*ListEntriesResponse) error
  1056. grpc.ServerStream
  1057. }
  1058. type seaweedFilerListEntriesServer struct {
  1059. grpc.ServerStream
  1060. }
  1061. func (x *seaweedFilerListEntriesServer) Send(m *ListEntriesResponse) error {
  1062. return x.ServerStream.SendMsg(m)
  1063. }
  1064. func _SeaweedFiler_CreateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1065. in := new(CreateEntryRequest)
  1066. if err := dec(in); err != nil {
  1067. return nil, err
  1068. }
  1069. if interceptor == nil {
  1070. return srv.(SeaweedFilerServer).CreateEntry(ctx, in)
  1071. }
  1072. info := &grpc.UnaryServerInfo{
  1073. Server: srv,
  1074. FullMethod: "/filer_pb.SeaweedFiler/CreateEntry",
  1075. }
  1076. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1077. return srv.(SeaweedFilerServer).CreateEntry(ctx, req.(*CreateEntryRequest))
  1078. }
  1079. return interceptor(ctx, in, info, handler)
  1080. }
  1081. func _SeaweedFiler_UpdateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1082. in := new(UpdateEntryRequest)
  1083. if err := dec(in); err != nil {
  1084. return nil, err
  1085. }
  1086. if interceptor == nil {
  1087. return srv.(SeaweedFilerServer).UpdateEntry(ctx, in)
  1088. }
  1089. info := &grpc.UnaryServerInfo{
  1090. Server: srv,
  1091. FullMethod: "/filer_pb.SeaweedFiler/UpdateEntry",
  1092. }
  1093. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1094. return srv.(SeaweedFilerServer).UpdateEntry(ctx, req.(*UpdateEntryRequest))
  1095. }
  1096. return interceptor(ctx, in, info, handler)
  1097. }
  1098. func _SeaweedFiler_DeleteEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1099. in := new(DeleteEntryRequest)
  1100. if err := dec(in); err != nil {
  1101. return nil, err
  1102. }
  1103. if interceptor == nil {
  1104. return srv.(SeaweedFilerServer).DeleteEntry(ctx, in)
  1105. }
  1106. info := &grpc.UnaryServerInfo{
  1107. Server: srv,
  1108. FullMethod: "/filer_pb.SeaweedFiler/DeleteEntry",
  1109. }
  1110. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1111. return srv.(SeaweedFilerServer).DeleteEntry(ctx, req.(*DeleteEntryRequest))
  1112. }
  1113. return interceptor(ctx, in, info, handler)
  1114. }
  1115. func _SeaweedFiler_AtomicRenameEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1116. in := new(AtomicRenameEntryRequest)
  1117. if err := dec(in); err != nil {
  1118. return nil, err
  1119. }
  1120. if interceptor == nil {
  1121. return srv.(SeaweedFilerServer).AtomicRenameEntry(ctx, in)
  1122. }
  1123. info := &grpc.UnaryServerInfo{
  1124. Server: srv,
  1125. FullMethod: "/filer_pb.SeaweedFiler/AtomicRenameEntry",
  1126. }
  1127. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1128. return srv.(SeaweedFilerServer).AtomicRenameEntry(ctx, req.(*AtomicRenameEntryRequest))
  1129. }
  1130. return interceptor(ctx, in, info, handler)
  1131. }
  1132. func _SeaweedFiler_AssignVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1133. in := new(AssignVolumeRequest)
  1134. if err := dec(in); err != nil {
  1135. return nil, err
  1136. }
  1137. if interceptor == nil {
  1138. return srv.(SeaweedFilerServer).AssignVolume(ctx, in)
  1139. }
  1140. info := &grpc.UnaryServerInfo{
  1141. Server: srv,
  1142. FullMethod: "/filer_pb.SeaweedFiler/AssignVolume",
  1143. }
  1144. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1145. return srv.(SeaweedFilerServer).AssignVolume(ctx, req.(*AssignVolumeRequest))
  1146. }
  1147. return interceptor(ctx, in, info, handler)
  1148. }
  1149. func _SeaweedFiler_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1150. in := new(LookupVolumeRequest)
  1151. if err := dec(in); err != nil {
  1152. return nil, err
  1153. }
  1154. if interceptor == nil {
  1155. return srv.(SeaweedFilerServer).LookupVolume(ctx, in)
  1156. }
  1157. info := &grpc.UnaryServerInfo{
  1158. Server: srv,
  1159. FullMethod: "/filer_pb.SeaweedFiler/LookupVolume",
  1160. }
  1161. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1162. return srv.(SeaweedFilerServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  1163. }
  1164. return interceptor(ctx, in, info, handler)
  1165. }
  1166. func _SeaweedFiler_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1167. in := new(DeleteCollectionRequest)
  1168. if err := dec(in); err != nil {
  1169. return nil, err
  1170. }
  1171. if interceptor == nil {
  1172. return srv.(SeaweedFilerServer).DeleteCollection(ctx, in)
  1173. }
  1174. info := &grpc.UnaryServerInfo{
  1175. Server: srv,
  1176. FullMethod: "/filer_pb.SeaweedFiler/DeleteCollection",
  1177. }
  1178. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1179. return srv.(SeaweedFilerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  1180. }
  1181. return interceptor(ctx, in, info, handler)
  1182. }
  1183. func _SeaweedFiler_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1184. in := new(StatisticsRequest)
  1185. if err := dec(in); err != nil {
  1186. return nil, err
  1187. }
  1188. if interceptor == nil {
  1189. return srv.(SeaweedFilerServer).Statistics(ctx, in)
  1190. }
  1191. info := &grpc.UnaryServerInfo{
  1192. Server: srv,
  1193. FullMethod: "/filer_pb.SeaweedFiler/Statistics",
  1194. }
  1195. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1196. return srv.(SeaweedFilerServer).Statistics(ctx, req.(*StatisticsRequest))
  1197. }
  1198. return interceptor(ctx, in, info, handler)
  1199. }
  1200. func _SeaweedFiler_GetFilerConfiguration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1201. in := new(GetFilerConfigurationRequest)
  1202. if err := dec(in); err != nil {
  1203. return nil, err
  1204. }
  1205. if interceptor == nil {
  1206. return srv.(SeaweedFilerServer).GetFilerConfiguration(ctx, in)
  1207. }
  1208. info := &grpc.UnaryServerInfo{
  1209. Server: srv,
  1210. FullMethod: "/filer_pb.SeaweedFiler/GetFilerConfiguration",
  1211. }
  1212. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1213. return srv.(SeaweedFilerServer).GetFilerConfiguration(ctx, req.(*GetFilerConfigurationRequest))
  1214. }
  1215. return interceptor(ctx, in, info, handler)
  1216. }
  1217. var _SeaweedFiler_serviceDesc = grpc.ServiceDesc{
  1218. ServiceName: "filer_pb.SeaweedFiler",
  1219. HandlerType: (*SeaweedFilerServer)(nil),
  1220. Methods: []grpc.MethodDesc{
  1221. {
  1222. MethodName: "LookupDirectoryEntry",
  1223. Handler: _SeaweedFiler_LookupDirectoryEntry_Handler,
  1224. },
  1225. {
  1226. MethodName: "CreateEntry",
  1227. Handler: _SeaweedFiler_CreateEntry_Handler,
  1228. },
  1229. {
  1230. MethodName: "UpdateEntry",
  1231. Handler: _SeaweedFiler_UpdateEntry_Handler,
  1232. },
  1233. {
  1234. MethodName: "DeleteEntry",
  1235. Handler: _SeaweedFiler_DeleteEntry_Handler,
  1236. },
  1237. {
  1238. MethodName: "AtomicRenameEntry",
  1239. Handler: _SeaweedFiler_AtomicRenameEntry_Handler,
  1240. },
  1241. {
  1242. MethodName: "AssignVolume",
  1243. Handler: _SeaweedFiler_AssignVolume_Handler,
  1244. },
  1245. {
  1246. MethodName: "LookupVolume",
  1247. Handler: _SeaweedFiler_LookupVolume_Handler,
  1248. },
  1249. {
  1250. MethodName: "DeleteCollection",
  1251. Handler: _SeaweedFiler_DeleteCollection_Handler,
  1252. },
  1253. {
  1254. MethodName: "Statistics",
  1255. Handler: _SeaweedFiler_Statistics_Handler,
  1256. },
  1257. {
  1258. MethodName: "GetFilerConfiguration",
  1259. Handler: _SeaweedFiler_GetFilerConfiguration_Handler,
  1260. },
  1261. },
  1262. Streams: []grpc.StreamDesc{
  1263. {
  1264. StreamName: "ListEntries",
  1265. Handler: _SeaweedFiler_ListEntries_Handler,
  1266. ServerStreams: true,
  1267. },
  1268. },
  1269. Metadata: "filer.proto",
  1270. }
  1271. func init() { proto.RegisterFile("filer.proto", fileDescriptor0) }
  1272. var fileDescriptor0 = []byte{
  1273. // 1624 bytes of a gzipped FileDescriptorProto
  1274. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x58, 0x4b, 0x6f, 0xdb, 0xc6,
  1275. 0x16, 0x36, 0xf5, 0xe6, 0x91, 0x94, 0xd8, 0x63, 0x3b, 0x51, 0xe4, 0xc7, 0x75, 0xe8, 0x9b, 0x5c,
  1276. 0x5f, 0x34, 0x70, 0x03, 0x37, 0x8b, 0xa4, 0x69, 0x17, 0x89, 0x1f, 0x85, 0x51, 0xe7, 0x01, 0x3a,
  1277. 0x29, 0x5a, 0x14, 0x28, 0x41, 0x93, 0x23, 0x79, 0x6a, 0x92, 0xa3, 0x0e, 0x87, 0xb6, 0xd3, 0x9f,
  1278. 0xd0, 0x65, 0x97, 0x05, 0xba, 0xee, 0x9f, 0x28, 0xba, 0x29, 0x8a, 0xfe, 0x9b, 0x2e, 0xbb, 0x2e,
  1279. 0x66, 0x86, 0xa4, 0x86, 0xa2, 0x6c, 0x27, 0x28, 0xb2, 0xe3, 0x9c, 0xf7, 0x39, 0x73, 0xce, 0xf9,
  1280. 0x46, 0x82, 0xf6, 0x80, 0x04, 0x98, 0x6d, 0x8e, 0x18, 0xe5, 0x14, 0xb5, 0xe4, 0xc1, 0x19, 0x1d,
  1281. 0x59, 0x2f, 0x60, 0xe9, 0x80, 0xd2, 0x93, 0x64, 0xb4, 0x43, 0x18, 0xf6, 0x38, 0x65, 0x6f, 0x76,
  1282. 0x23, 0xce, 0xde, 0xd8, 0xf8, 0xbb, 0x04, 0xc7, 0x1c, 0x2d, 0x83, 0xe9, 0x67, 0x8c, 0x9e, 0xb1,
  1283. 0x66, 0x6c, 0x98, 0xf6, 0x98, 0x80, 0x10, 0xd4, 0x22, 0x37, 0xc4, 0xbd, 0x8a, 0x64, 0xc8, 0x6f,
  1284. 0x6b, 0x17, 0x96, 0xa7, 0x1b, 0x8c, 0x47, 0x34, 0x8a, 0x31, 0xba, 0x03, 0x75, 0x2c, 0x08, 0xd2,
  1285. 0x5a, 0x7b, 0xeb, 0xfa, 0x66, 0x16, 0xca, 0xa6, 0x92, 0x53, 0x5c, 0xeb, 0x37, 0x03, 0xd0, 0x01,
  1286. 0x89, 0xb9, 0x20, 0x12, 0x1c, 0xbf, 0x5d, 0x3c, 0x37, 0xa0, 0x31, 0x62, 0x78, 0x40, 0xce, 0xd3,
  1287. 0x88, 0xd2, 0x13, 0xba, 0x07, 0x73, 0x31, 0x77, 0x19, 0xdf, 0x63, 0x34, 0xdc, 0x23, 0x01, 0x7e,
  1288. 0x2e, 0x82, 0xae, 0x4a, 0x91, 0x32, 0x03, 0x6d, 0x02, 0x22, 0x91, 0x17, 0x24, 0x31, 0x39, 0xc5,
  1289. 0x87, 0x19, 0xb7, 0x57, 0x5b, 0x33, 0x36, 0x5a, 0xf6, 0x14, 0x0e, 0x5a, 0x80, 0x7a, 0x40, 0x42,
  1290. 0xc2, 0x7b, 0xf5, 0x35, 0x63, 0xa3, 0x6b, 0xab, 0x83, 0xf5, 0x09, 0xcc, 0x17, 0xe2, 0x7f, 0xb7,
  1291. 0xf4, 0x7f, 0xae, 0x40, 0x5d, 0x12, 0xf2, 0x1a, 0x1b, 0xe3, 0x1a, 0xa3, 0xdb, 0xd0, 0x21, 0xb1,
  1292. 0x33, 0x2e, 0x44, 0x45, 0xc6, 0xd6, 0x26, 0x71, 0x5e, 0x73, 0xf4, 0x01, 0x34, 0xbc, 0xe3, 0x24,
  1293. 0x3a, 0x89, 0x7b, 0xd5, 0xb5, 0xea, 0x46, 0x7b, 0x6b, 0x7e, 0xec, 0x48, 0x24, 0xba, 0x2d, 0x78,
  1294. 0x76, 0x2a, 0x82, 0x1e, 0x02, 0xb8, 0x9c, 0x33, 0x72, 0x94, 0x70, 0x1c, 0xcb, 0x4c, 0xdb, 0x5b,
  1295. 0x3d, 0x4d, 0x21, 0x89, 0xf1, 0x93, 0x9c, 0x6f, 0x6b, 0xb2, 0xe8, 0x11, 0xb4, 0xf0, 0x39, 0xc7,
  1296. 0x91, 0x8f, 0xfd, 0x5e, 0x5d, 0x3a, 0x5a, 0x99, 0xc8, 0x68, 0x73, 0x37, 0xe5, 0xab, 0xfc, 0x72,
  1297. 0xf1, 0xfe, 0x63, 0xe8, 0x16, 0x58, 0x68, 0x16, 0xaa, 0x27, 0x38, 0xbb, 0x55, 0xf1, 0x29, 0x2a,
  1298. 0x7b, 0xea, 0x06, 0x89, 0x6a, 0xb0, 0x8e, 0xad, 0x0e, 0x1f, 0x57, 0x1e, 0x1a, 0xd6, 0x0e, 0x98,
  1299. 0x7b, 0x49, 0x10, 0xe4, 0x8a, 0x3e, 0x61, 0x99, 0xa2, 0x4f, 0xd8, 0xb8, 0xca, 0x95, 0x4b, 0xab,
  1300. 0xfc, 0xab, 0x01, 0x73, 0xbb, 0xa7, 0x38, 0xe2, 0xcf, 0x29, 0x27, 0x03, 0xe2, 0xb9, 0x9c, 0xd0,
  1301. 0x08, 0xdd, 0x03, 0x93, 0x06, 0xbe, 0x73, 0xe9, 0x35, 0xb5, 0x68, 0x90, 0x46, 0x7d, 0x0f, 0xcc,
  1302. 0x08, 0x9f, 0x39, 0x97, 0xba, 0x6b, 0x45, 0xf8, 0x4c, 0x49, 0xaf, 0x43, 0xd7, 0xc7, 0x01, 0xe6,
  1303. 0xd8, 0xc9, 0x6f, 0x47, 0x5c, 0x5d, 0x47, 0x11, 0xb7, 0xd5, 0x75, 0xdc, 0x85, 0xeb, 0xc2, 0xe4,
  1304. 0xc8, 0x65, 0x38, 0xe2, 0xce, 0xc8, 0xe5, 0xc7, 0xf2, 0x4e, 0x4c, 0xbb, 0x1b, 0xe1, 0xb3, 0x97,
  1305. 0x92, 0xfa, 0xd2, 0xe5, 0xc7, 0xd6, 0xdf, 0x06, 0x98, 0xf9, 0x65, 0xa2, 0x9b, 0xd0, 0x14, 0x6e,
  1306. 0x1d, 0xe2, 0xa7, 0x95, 0x68, 0x88, 0xe3, 0xbe, 0x2f, 0xa6, 0x82, 0x0e, 0x06, 0x31, 0xe6, 0x32,
  1307. 0xbc, 0xaa, 0x9d, 0x9e, 0x44, 0x67, 0xc5, 0xe4, 0x7b, 0x35, 0x08, 0x35, 0x5b, 0x7e, 0x8b, 0x8a,
  1308. 0x87, 0x9c, 0x84, 0x58, 0x3a, 0xac, 0xda, 0xea, 0x80, 0xe6, 0xa1, 0x8e, 0x1d, 0xee, 0x0e, 0x65,
  1309. 0x87, 0x9b, 0x76, 0x0d, 0xbf, 0x72, 0x87, 0xe8, 0xbf, 0x70, 0x2d, 0xa6, 0x09, 0xf3, 0xb0, 0x93,
  1310. 0xb9, 0x6d, 0x48, 0x6e, 0x47, 0x51, 0xf7, 0x94, 0x73, 0x0b, 0xaa, 0x03, 0xe2, 0xf7, 0x9a, 0xb2,
  1311. 0x30, 0xb3, 0xc5, 0x26, 0xdc, 0xf7, 0x6d, 0xc1, 0x44, 0x1f, 0x02, 0xe4, 0x96, 0xfc, 0x5e, 0xeb,
  1312. 0x02, 0x51, 0x33, 0xb3, 0xeb, 0x5b, 0x5f, 0x42, 0x23, 0x35, 0xbf, 0x04, 0xe6, 0x29, 0x0d, 0x92,
  1313. 0x30, 0x4f, 0xbb, 0x6b, 0xb7, 0x14, 0x61, 0xdf, 0x47, 0xb7, 0x40, 0xee, 0x39, 0x47, 0x74, 0x55,
  1314. 0x45, 0x26, 0x29, 0x2b, 0xf4, 0x39, 0x96, 0x9b, 0xc2, 0xa3, 0xf4, 0x84, 0xa8, 0xec, 0x9b, 0x76,
  1315. 0x7a, 0xb2, 0xfe, 0xaa, 0xc0, 0xb5, 0x62, 0xbb, 0x0b, 0x17, 0xd2, 0x8a, 0xac, 0x95, 0x21, 0xcd,
  1316. 0x48, 0xb3, 0x87, 0x85, 0x7a, 0x55, 0xf4, 0x7a, 0x65, 0x2a, 0x21, 0xf5, 0x95, 0x83, 0xae, 0x52,
  1317. 0x79, 0x46, 0x7d, 0x2c, 0xba, 0x35, 0x21, 0xbe, 0x2c, 0x70, 0xd7, 0x16, 0x9f, 0x82, 0x32, 0x24,
  1318. 0x7e, 0xba, 0x3e, 0xc4, 0xa7, 0x0c, 0x8f, 0x49, 0xbb, 0x0d, 0x75, 0x65, 0xea, 0x24, 0xae, 0x2c,
  1319. 0x14, 0xd4, 0xa6, 0xba, 0x07, 0xf1, 0x8d, 0xd6, 0xa0, 0xcd, 0xf0, 0x28, 0x48, 0xbb, 0x57, 0x96,
  1320. 0xcf, 0xb4, 0x75, 0x12, 0x5a, 0x05, 0xf0, 0x68, 0x10, 0x60, 0x4f, 0x0a, 0x98, 0x52, 0x40, 0xa3,
  1321. 0x88, 0xce, 0xe1, 0x3c, 0x70, 0x62, 0xec, 0xf5, 0x60, 0xcd, 0xd8, 0xa8, 0xdb, 0x0d, 0xce, 0x83,
  1322. 0x43, 0xec, 0x89, 0x3c, 0x92, 0x18, 0x33, 0x47, 0x2e, 0xa0, 0xb6, 0xd4, 0x6b, 0x09, 0x82, 0x5c,
  1323. 0x93, 0x2b, 0x00, 0x43, 0x46, 0x93, 0x91, 0xe2, 0x76, 0xd6, 0xaa, 0x62, 0x17, 0x4b, 0x8a, 0x64,
  1324. 0xdf, 0x81, 0x6b, 0xf1, 0x9b, 0x30, 0x20, 0xd1, 0x89, 0xc3, 0x5d, 0x36, 0xc4, 0xbc, 0xd7, 0x55,
  1325. 0x3d, 0x9c, 0x52, 0x5f, 0x49, 0xa2, 0x35, 0x02, 0xb4, 0xcd, 0xb0, 0xcb, 0xf1, 0x3b, 0xc0, 0xce,
  1326. 0xdb, 0x4d, 0x37, 0x5a, 0x84, 0x06, 0x75, 0xf0, 0xb9, 0x17, 0xa4, 0x43, 0x56, 0xa7, 0xbb, 0xe7,
  1327. 0x5e, 0x60, 0x2d, 0xc2, 0x7c, 0xc1, 0xa3, 0x5a, 0xcc, 0xd6, 0x57, 0x80, 0x5e, 0x8f, 0xfc, 0xf7,
  1328. 0x11, 0x88, 0xf0, 0x58, 0x30, 0x9d, 0x7a, 0xfc, 0xc3, 0x00, 0xb4, 0x23, 0xe7, 0xfe, 0xdf, 0x41,
  1329. 0xae, 0x98, 0x44, 0x01, 0x07, 0x6a, 0xaf, 0xf8, 0x2e, 0x77, 0x53, 0xb0, 0xea, 0x90, 0x58, 0xd9,
  1330. 0xdf, 0x71, 0xb9, 0x9b, 0x82, 0x06, 0xc3, 0x5e, 0xc2, 0x04, 0x7e, 0xc9, 0x76, 0x93, 0xa0, 0x61,
  1331. 0x67, 0x24, 0xf4, 0x00, 0x6e, 0x90, 0x61, 0x44, 0x19, 0x1e, 0x8b, 0x39, 0x98, 0x31, 0xca, 0x64,
  1332. 0x1b, 0xb6, 0xec, 0x05, 0xc5, 0xcd, 0x15, 0x76, 0x05, 0x4f, 0xa4, 0x57, 0x48, 0x23, 0x4d, 0xef,
  1333. 0x27, 0x03, 0x7a, 0x4f, 0x38, 0x0d, 0x89, 0x67, 0x63, 0x11, 0x66, 0x21, 0xc9, 0x75, 0xe8, 0x8a,
  1334. 0x1d, 0x3b, 0x99, 0x68, 0x87, 0x06, 0xfe, 0x18, 0xc3, 0x6e, 0x81, 0x58, 0xb3, 0x8e, 0x96, 0x6f,
  1335. 0x93, 0x06, 0xbe, 0xec, 0xae, 0x75, 0x10, 0xbb, 0x50, 0xd3, 0x57, 0x68, 0xde, 0x89, 0xf0, 0x59,
  1336. 0x41, 0x5f, 0x08, 0x49, 0x7d, 0xb5, 0x40, 0x9b, 0x11, 0x3e, 0x13, 0xfa, 0xd6, 0x12, 0xdc, 0x9a,
  1337. 0x12, 0x5b, 0x1a, 0xf9, 0x2f, 0x06, 0xcc, 0x3f, 0x89, 0x63, 0x32, 0x8c, 0xbe, 0x90, 0xab, 0x24,
  1338. 0x0b, 0x7a, 0x01, 0xea, 0x1e, 0x4d, 0x22, 0x2e, 0x83, 0xad, 0xdb, 0xea, 0x30, 0x31, 0x5d, 0x95,
  1339. 0xd2, 0x74, 0x4d, 0xcc, 0x67, 0xb5, 0x3c, 0x9f, 0xda, 0xfc, 0xd5, 0x0a, 0xf3, 0xf7, 0x1f, 0x68,
  1340. 0x8b, 0xeb, 0x74, 0x3c, 0x1c, 0x71, 0xcc, 0xd2, 0xed, 0x0b, 0x82, 0xb4, 0x2d, 0x29, 0xd6, 0x0f,
  1341. 0x06, 0x2c, 0x14, 0x23, 0x4d, 0x9f, 0x19, 0x17, 0x82, 0x81, 0xd8, 0x3e, 0x2c, 0x48, 0xc3, 0x14,
  1342. 0x9f, 0x62, 0x8e, 0x47, 0xc9, 0x51, 0x40, 0x3c, 0x47, 0x30, 0x54, 0x78, 0xa6, 0xa2, 0xbc, 0x66,
  1343. 0xc1, 0x38, 0xe9, 0x9a, 0x9e, 0x34, 0x82, 0x9a, 0x9b, 0xf0, 0xe3, 0x0c, 0x10, 0xc4, 0xb7, 0xf5,
  1344. 0x00, 0xe6, 0xd5, 0xcb, 0xaf, 0x58, 0xb5, 0x15, 0x80, 0x7c, 0x45, 0xc7, 0x3d, 0x43, 0xed, 0x89,
  1345. 0x6c, 0x47, 0xc7, 0xd6, 0xa7, 0x60, 0x1e, 0x50, 0x55, 0x88, 0x18, 0xdd, 0x07, 0x33, 0xc8, 0x0e,
  1346. 0x52, 0xb4, 0xbd, 0x85, 0xc6, 0x43, 0x95, 0xc9, 0xd9, 0x63, 0x21, 0xeb, 0x31, 0xb4, 0x32, 0x72,
  1347. 0x96, 0x9b, 0x71, 0x51, 0x6e, 0x95, 0x89, 0xdc, 0xac, 0xdf, 0x0d, 0x58, 0x28, 0x86, 0x9c, 0x96,
  1348. 0xef, 0x35, 0x74, 0x73, 0x17, 0x4e, 0xe8, 0x8e, 0xd2, 0x58, 0xee, 0xeb, 0xb1, 0x94, 0xd5, 0xf2,
  1349. 0x00, 0xe3, 0x67, 0xee, 0x48, 0xb5, 0x54, 0x27, 0xd0, 0x48, 0xfd, 0x57, 0x30, 0x57, 0x12, 0x99,
  1350. 0xf2, 0xec, 0xf9, 0xbf, 0xfe, 0xec, 0x29, 0x3c, 0xdd, 0x72, 0x6d, 0xfd, 0x2d, 0xf4, 0x08, 0x6e,
  1351. 0xaa, 0xf9, 0xdb, 0xce, 0x9b, 0x2e, 0xab, 0x7d, 0xb1, 0x37, 0x8d, 0xc9, 0xde, 0xb4, 0xfa, 0xd0,
  1352. 0x2b, 0xab, 0xa6, 0x53, 0x30, 0x84, 0xb9, 0x43, 0xee, 0x72, 0x12, 0x73, 0xe2, 0xe5, 0xef, 0xef,
  1353. 0x89, 0x66, 0x36, 0xae, 0x02, 0x9b, 0xf2, 0x38, 0xcc, 0x42, 0x95, 0xf3, 0xac, 0xcf, 0xc4, 0xa7,
  1354. 0xb8, 0x05, 0xa4, 0x7b, 0x4a, 0xef, 0xe0, 0x3d, 0xb8, 0x12, 0xfd, 0xc0, 0x29, 0x77, 0x03, 0x05,
  1355. 0xe6, 0x35, 0x09, 0xe6, 0xa6, 0xa4, 0x48, 0x34, 0x57, 0x78, 0xe7, 0x2b, 0x6e, 0x5d, 0x41, 0xbd,
  1356. 0x20, 0x48, 0xe6, 0x0a, 0x80, 0x1c, 0x29, 0x35, 0x0d, 0x0d, 0xa5, 0x2b, 0x28, 0xdb, 0x82, 0x60,
  1357. 0xad, 0xc2, 0xf2, 0x67, 0x98, 0x8b, 0x67, 0x09, 0xdb, 0xa6, 0xd1, 0x80, 0x0c, 0x13, 0xe6, 0x6a,
  1358. 0x57, 0x61, 0xfd, 0x68, 0xc0, 0xca, 0x05, 0x02, 0x69, 0xc2, 0x3d, 0x68, 0x86, 0x6e, 0xcc, 0x31,
  1359. 0xcb, 0xa6, 0x24, 0x3b, 0x4e, 0x96, 0xa2, 0x72, 0x55, 0x29, 0xaa, 0xa5, 0x52, 0x2c, 0x42, 0x23,
  1360. 0x74, 0xcf, 0x9d, 0xf0, 0x28, 0x7d, 0x77, 0xd4, 0x43, 0xf7, 0xfc, 0xd9, 0xd1, 0xd6, 0x9f, 0x4d,
  1361. 0xe8, 0x1c, 0x62, 0xf7, 0x0c, 0x63, 0x5f, 0x06, 0x86, 0x86, 0xd9, 0x40, 0x14, 0x7f, 0xbd, 0xa1,
  1362. 0x3b, 0x93, 0x9d, 0x3f, 0xf5, 0xe7, 0x62, 0xff, 0xee, 0x55, 0x62, 0x69, 0x6f, 0xcd, 0xa0, 0xe7,
  1363. 0xd0, 0xd6, 0x7e, 0x1e, 0xa1, 0x65, 0x4d, 0xb1, 0xf4, 0xab, 0xaf, 0xbf, 0x72, 0x01, 0x37, 0xb3,
  1364. 0x76, 0xdf, 0x40, 0x07, 0xd0, 0xd6, 0x50, 0x5d, 0xb7, 0x57, 0x7e, 0x5e, 0xe8, 0xf6, 0xa6, 0x3d,
  1365. 0x05, 0x66, 0x84, 0x35, 0x0d, 0xb1, 0x75, 0x6b, 0xe5, 0x37, 0x82, 0x6e, 0x6d, 0x1a, 0xcc, 0x4b,
  1366. 0x6b, 0x1a, 0x40, 0xea, 0xd6, 0xca, 0xf0, 0xaf, 0x5b, 0x9b, 0x86, 0xaa, 0x33, 0xe8, 0x1b, 0x98,
  1367. 0x2b, 0x41, 0x17, 0xb2, 0xc6, 0x5a, 0x17, 0x61, 0x6e, 0x7f, 0xfd, 0x52, 0x99, 0xdc, 0xfe, 0x0b,
  1368. 0xe8, 0xe8, 0x90, 0x82, 0xb4, 0x80, 0xa6, 0x80, 0x62, 0x7f, 0xf5, 0x22, 0xb6, 0x6e, 0x50, 0xdf,
  1369. 0x96, 0xba, 0xc1, 0x29, 0x78, 0xa1, 0x1b, 0x9c, 0xb6, 0x64, 0xad, 0x19, 0xf4, 0x35, 0xcc, 0x4e,
  1370. 0x6e, 0x2d, 0x74, 0x7b, 0xb2, 0x6c, 0xa5, 0x65, 0xd8, 0xb7, 0x2e, 0x13, 0xc9, 0x8d, 0xef, 0x03,
  1371. 0x8c, 0x97, 0x11, 0x5a, 0x1a, 0xeb, 0x94, 0x96, 0x61, 0x7f, 0x79, 0x3a, 0x33, 0x37, 0xf5, 0x2d,
  1372. 0x2c, 0x4e, 0x9d, 0x78, 0xa4, 0x8d, 0xc9, 0x65, 0x3b, 0xa3, 0xff, 0xbf, 0x2b, 0xe5, 0x32, 0x5f,
  1373. 0x4f, 0x57, 0x61, 0x36, 0x56, 0x83, 0x3c, 0x88, 0x37, 0xbd, 0x80, 0xe0, 0x88, 0x3f, 0x05, 0xa9,
  1374. 0xf1, 0x92, 0x51, 0x4e, 0x8f, 0x1a, 0xf2, 0x8f, 0x9f, 0x8f, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff,
  1375. 0x32, 0x00, 0xf8, 0x2b, 0x07, 0x12, 0x00, 0x00,
  1376. }