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.

1614 lines
58 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. Error string `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"`
  454. }
  455. func (m *CreateEntryResponse) Reset() { *m = CreateEntryResponse{} }
  456. func (m *CreateEntryResponse) String() string { return proto.CompactTextString(m) }
  457. func (*CreateEntryResponse) ProtoMessage() {}
  458. func (*CreateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
  459. func (m *CreateEntryResponse) GetError() string {
  460. if m != nil {
  461. return m.Error
  462. }
  463. return ""
  464. }
  465. type UpdateEntryRequest struct {
  466. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  467. Entry *Entry `protobuf:"bytes,2,opt,name=entry" json:"entry,omitempty"`
  468. }
  469. func (m *UpdateEntryRequest) Reset() { *m = UpdateEntryRequest{} }
  470. func (m *UpdateEntryRequest) String() string { return proto.CompactTextString(m) }
  471. func (*UpdateEntryRequest) ProtoMessage() {}
  472. func (*UpdateEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} }
  473. func (m *UpdateEntryRequest) GetDirectory() string {
  474. if m != nil {
  475. return m.Directory
  476. }
  477. return ""
  478. }
  479. func (m *UpdateEntryRequest) GetEntry() *Entry {
  480. if m != nil {
  481. return m.Entry
  482. }
  483. return nil
  484. }
  485. type UpdateEntryResponse struct {
  486. }
  487. func (m *UpdateEntryResponse) Reset() { *m = UpdateEntryResponse{} }
  488. func (m *UpdateEntryResponse) String() string { return proto.CompactTextString(m) }
  489. func (*UpdateEntryResponse) ProtoMessage() {}
  490. func (*UpdateEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} }
  491. type DeleteEntryRequest struct {
  492. Directory string `protobuf:"bytes,1,opt,name=directory" json:"directory,omitempty"`
  493. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
  494. // bool is_directory = 3;
  495. IsDeleteData bool `protobuf:"varint,4,opt,name=is_delete_data,json=isDeleteData" json:"is_delete_data,omitempty"`
  496. IsRecursive bool `protobuf:"varint,5,opt,name=is_recursive,json=isRecursive" json:"is_recursive,omitempty"`
  497. IgnoreRecursiveError bool `protobuf:"varint,6,opt,name=ignore_recursive_error,json=ignoreRecursiveError" json:"ignore_recursive_error,omitempty"`
  498. }
  499. func (m *DeleteEntryRequest) Reset() { *m = DeleteEntryRequest{} }
  500. func (m *DeleteEntryRequest) String() string { return proto.CompactTextString(m) }
  501. func (*DeleteEntryRequest) ProtoMessage() {}
  502. func (*DeleteEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} }
  503. func (m *DeleteEntryRequest) GetDirectory() string {
  504. if m != nil {
  505. return m.Directory
  506. }
  507. return ""
  508. }
  509. func (m *DeleteEntryRequest) GetName() string {
  510. if m != nil {
  511. return m.Name
  512. }
  513. return ""
  514. }
  515. func (m *DeleteEntryRequest) GetIsDeleteData() bool {
  516. if m != nil {
  517. return m.IsDeleteData
  518. }
  519. return false
  520. }
  521. func (m *DeleteEntryRequest) GetIsRecursive() bool {
  522. if m != nil {
  523. return m.IsRecursive
  524. }
  525. return false
  526. }
  527. func (m *DeleteEntryRequest) GetIgnoreRecursiveError() bool {
  528. if m != nil {
  529. return m.IgnoreRecursiveError
  530. }
  531. return false
  532. }
  533. type DeleteEntryResponse struct {
  534. }
  535. func (m *DeleteEntryResponse) Reset() { *m = DeleteEntryResponse{} }
  536. func (m *DeleteEntryResponse) String() string { return proto.CompactTextString(m) }
  537. func (*DeleteEntryResponse) ProtoMessage() {}
  538. func (*DeleteEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} }
  539. type AtomicRenameEntryRequest struct {
  540. OldDirectory string `protobuf:"bytes,1,opt,name=old_directory,json=oldDirectory" json:"old_directory,omitempty"`
  541. OldName string `protobuf:"bytes,2,opt,name=old_name,json=oldName" json:"old_name,omitempty"`
  542. NewDirectory string `protobuf:"bytes,3,opt,name=new_directory,json=newDirectory" json:"new_directory,omitempty"`
  543. NewName string `protobuf:"bytes,4,opt,name=new_name,json=newName" json:"new_name,omitempty"`
  544. }
  545. func (m *AtomicRenameEntryRequest) Reset() { *m = AtomicRenameEntryRequest{} }
  546. func (m *AtomicRenameEntryRequest) String() string { return proto.CompactTextString(m) }
  547. func (*AtomicRenameEntryRequest) ProtoMessage() {}
  548. func (*AtomicRenameEntryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} }
  549. func (m *AtomicRenameEntryRequest) GetOldDirectory() string {
  550. if m != nil {
  551. return m.OldDirectory
  552. }
  553. return ""
  554. }
  555. func (m *AtomicRenameEntryRequest) GetOldName() string {
  556. if m != nil {
  557. return m.OldName
  558. }
  559. return ""
  560. }
  561. func (m *AtomicRenameEntryRequest) GetNewDirectory() string {
  562. if m != nil {
  563. return m.NewDirectory
  564. }
  565. return ""
  566. }
  567. func (m *AtomicRenameEntryRequest) GetNewName() string {
  568. if m != nil {
  569. return m.NewName
  570. }
  571. return ""
  572. }
  573. type AtomicRenameEntryResponse struct {
  574. }
  575. func (m *AtomicRenameEntryResponse) Reset() { *m = AtomicRenameEntryResponse{} }
  576. func (m *AtomicRenameEntryResponse) String() string { return proto.CompactTextString(m) }
  577. func (*AtomicRenameEntryResponse) ProtoMessage() {}
  578. func (*AtomicRenameEntryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} }
  579. type AssignVolumeRequest struct {
  580. Count int32 `protobuf:"varint,1,opt,name=count" json:"count,omitempty"`
  581. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  582. Replication string `protobuf:"bytes,3,opt,name=replication" json:"replication,omitempty"`
  583. TtlSec int32 `protobuf:"varint,4,opt,name=ttl_sec,json=ttlSec" json:"ttl_sec,omitempty"`
  584. DataCenter string `protobuf:"bytes,5,opt,name=data_center,json=dataCenter" json:"data_center,omitempty"`
  585. ParentPath string `protobuf:"bytes,6,opt,name=parent_path,json=parentPath" json:"parent_path,omitempty"`
  586. }
  587. func (m *AssignVolumeRequest) Reset() { *m = AssignVolumeRequest{} }
  588. func (m *AssignVolumeRequest) String() string { return proto.CompactTextString(m) }
  589. func (*AssignVolumeRequest) ProtoMessage() {}
  590. func (*AssignVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} }
  591. func (m *AssignVolumeRequest) GetCount() int32 {
  592. if m != nil {
  593. return m.Count
  594. }
  595. return 0
  596. }
  597. func (m *AssignVolumeRequest) GetCollection() string {
  598. if m != nil {
  599. return m.Collection
  600. }
  601. return ""
  602. }
  603. func (m *AssignVolumeRequest) GetReplication() string {
  604. if m != nil {
  605. return m.Replication
  606. }
  607. return ""
  608. }
  609. func (m *AssignVolumeRequest) GetTtlSec() int32 {
  610. if m != nil {
  611. return m.TtlSec
  612. }
  613. return 0
  614. }
  615. func (m *AssignVolumeRequest) GetDataCenter() string {
  616. if m != nil {
  617. return m.DataCenter
  618. }
  619. return ""
  620. }
  621. func (m *AssignVolumeRequest) GetParentPath() string {
  622. if m != nil {
  623. return m.ParentPath
  624. }
  625. return ""
  626. }
  627. type AssignVolumeResponse struct {
  628. FileId string `protobuf:"bytes,1,opt,name=file_id,json=fileId" json:"file_id,omitempty"`
  629. Url string `protobuf:"bytes,2,opt,name=url" json:"url,omitempty"`
  630. PublicUrl string `protobuf:"bytes,3,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  631. Count int32 `protobuf:"varint,4,opt,name=count" json:"count,omitempty"`
  632. Auth string `protobuf:"bytes,5,opt,name=auth" json:"auth,omitempty"`
  633. Collection string `protobuf:"bytes,6,opt,name=collection" json:"collection,omitempty"`
  634. Replication string `protobuf:"bytes,7,opt,name=replication" json:"replication,omitempty"`
  635. }
  636. func (m *AssignVolumeResponse) Reset() { *m = AssignVolumeResponse{} }
  637. func (m *AssignVolumeResponse) String() string { return proto.CompactTextString(m) }
  638. func (*AssignVolumeResponse) ProtoMessage() {}
  639. func (*AssignVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} }
  640. func (m *AssignVolumeResponse) GetFileId() string {
  641. if m != nil {
  642. return m.FileId
  643. }
  644. return ""
  645. }
  646. func (m *AssignVolumeResponse) GetUrl() string {
  647. if m != nil {
  648. return m.Url
  649. }
  650. return ""
  651. }
  652. func (m *AssignVolumeResponse) GetPublicUrl() string {
  653. if m != nil {
  654. return m.PublicUrl
  655. }
  656. return ""
  657. }
  658. func (m *AssignVolumeResponse) GetCount() int32 {
  659. if m != nil {
  660. return m.Count
  661. }
  662. return 0
  663. }
  664. func (m *AssignVolumeResponse) GetAuth() string {
  665. if m != nil {
  666. return m.Auth
  667. }
  668. return ""
  669. }
  670. func (m *AssignVolumeResponse) GetCollection() string {
  671. if m != nil {
  672. return m.Collection
  673. }
  674. return ""
  675. }
  676. func (m *AssignVolumeResponse) GetReplication() string {
  677. if m != nil {
  678. return m.Replication
  679. }
  680. return ""
  681. }
  682. type LookupVolumeRequest struct {
  683. VolumeIds []string `protobuf:"bytes,1,rep,name=volume_ids,json=volumeIds" json:"volume_ids,omitempty"`
  684. }
  685. func (m *LookupVolumeRequest) Reset() { *m = LookupVolumeRequest{} }
  686. func (m *LookupVolumeRequest) String() string { return proto.CompactTextString(m) }
  687. func (*LookupVolumeRequest) ProtoMessage() {}
  688. func (*LookupVolumeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} }
  689. func (m *LookupVolumeRequest) GetVolumeIds() []string {
  690. if m != nil {
  691. return m.VolumeIds
  692. }
  693. return nil
  694. }
  695. type Locations struct {
  696. Locations []*Location `protobuf:"bytes,1,rep,name=locations" json:"locations,omitempty"`
  697. }
  698. func (m *Locations) Reset() { *m = Locations{} }
  699. func (m *Locations) String() string { return proto.CompactTextString(m) }
  700. func (*Locations) ProtoMessage() {}
  701. func (*Locations) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} }
  702. func (m *Locations) GetLocations() []*Location {
  703. if m != nil {
  704. return m.Locations
  705. }
  706. return nil
  707. }
  708. type Location struct {
  709. Url string `protobuf:"bytes,1,opt,name=url" json:"url,omitempty"`
  710. PublicUrl string `protobuf:"bytes,2,opt,name=public_url,json=publicUrl" json:"public_url,omitempty"`
  711. }
  712. func (m *Location) Reset() { *m = Location{} }
  713. func (m *Location) String() string { return proto.CompactTextString(m) }
  714. func (*Location) ProtoMessage() {}
  715. func (*Location) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} }
  716. func (m *Location) GetUrl() string {
  717. if m != nil {
  718. return m.Url
  719. }
  720. return ""
  721. }
  722. func (m *Location) GetPublicUrl() string {
  723. if m != nil {
  724. return m.PublicUrl
  725. }
  726. return ""
  727. }
  728. type LookupVolumeResponse struct {
  729. 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"`
  730. }
  731. func (m *LookupVolumeResponse) Reset() { *m = LookupVolumeResponse{} }
  732. func (m *LookupVolumeResponse) String() string { return proto.CompactTextString(m) }
  733. func (*LookupVolumeResponse) ProtoMessage() {}
  734. func (*LookupVolumeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} }
  735. func (m *LookupVolumeResponse) GetLocationsMap() map[string]*Locations {
  736. if m != nil {
  737. return m.LocationsMap
  738. }
  739. return nil
  740. }
  741. type DeleteCollectionRequest struct {
  742. Collection string `protobuf:"bytes,1,opt,name=collection" json:"collection,omitempty"`
  743. }
  744. func (m *DeleteCollectionRequest) Reset() { *m = DeleteCollectionRequest{} }
  745. func (m *DeleteCollectionRequest) String() string { return proto.CompactTextString(m) }
  746. func (*DeleteCollectionRequest) ProtoMessage() {}
  747. func (*DeleteCollectionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} }
  748. func (m *DeleteCollectionRequest) GetCollection() string {
  749. if m != nil {
  750. return m.Collection
  751. }
  752. return ""
  753. }
  754. type DeleteCollectionResponse struct {
  755. }
  756. func (m *DeleteCollectionResponse) Reset() { *m = DeleteCollectionResponse{} }
  757. func (m *DeleteCollectionResponse) String() string { return proto.CompactTextString(m) }
  758. func (*DeleteCollectionResponse) ProtoMessage() {}
  759. func (*DeleteCollectionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} }
  760. type StatisticsRequest struct {
  761. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  762. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  763. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  764. }
  765. func (m *StatisticsRequest) Reset() { *m = StatisticsRequest{} }
  766. func (m *StatisticsRequest) String() string { return proto.CompactTextString(m) }
  767. func (*StatisticsRequest) ProtoMessage() {}
  768. func (*StatisticsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} }
  769. func (m *StatisticsRequest) GetReplication() string {
  770. if m != nil {
  771. return m.Replication
  772. }
  773. return ""
  774. }
  775. func (m *StatisticsRequest) GetCollection() string {
  776. if m != nil {
  777. return m.Collection
  778. }
  779. return ""
  780. }
  781. func (m *StatisticsRequest) GetTtl() string {
  782. if m != nil {
  783. return m.Ttl
  784. }
  785. return ""
  786. }
  787. type StatisticsResponse struct {
  788. Replication string `protobuf:"bytes,1,opt,name=replication" json:"replication,omitempty"`
  789. Collection string `protobuf:"bytes,2,opt,name=collection" json:"collection,omitempty"`
  790. Ttl string `protobuf:"bytes,3,opt,name=ttl" json:"ttl,omitempty"`
  791. TotalSize uint64 `protobuf:"varint,4,opt,name=total_size,json=totalSize" json:"total_size,omitempty"`
  792. UsedSize uint64 `protobuf:"varint,5,opt,name=used_size,json=usedSize" json:"used_size,omitempty"`
  793. FileCount uint64 `protobuf:"varint,6,opt,name=file_count,json=fileCount" json:"file_count,omitempty"`
  794. }
  795. func (m *StatisticsResponse) Reset() { *m = StatisticsResponse{} }
  796. func (m *StatisticsResponse) String() string { return proto.CompactTextString(m) }
  797. func (*StatisticsResponse) ProtoMessage() {}
  798. func (*StatisticsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} }
  799. func (m *StatisticsResponse) GetReplication() string {
  800. if m != nil {
  801. return m.Replication
  802. }
  803. return ""
  804. }
  805. func (m *StatisticsResponse) GetCollection() string {
  806. if m != nil {
  807. return m.Collection
  808. }
  809. return ""
  810. }
  811. func (m *StatisticsResponse) GetTtl() string {
  812. if m != nil {
  813. return m.Ttl
  814. }
  815. return ""
  816. }
  817. func (m *StatisticsResponse) GetTotalSize() uint64 {
  818. if m != nil {
  819. return m.TotalSize
  820. }
  821. return 0
  822. }
  823. func (m *StatisticsResponse) GetUsedSize() uint64 {
  824. if m != nil {
  825. return m.UsedSize
  826. }
  827. return 0
  828. }
  829. func (m *StatisticsResponse) GetFileCount() uint64 {
  830. if m != nil {
  831. return m.FileCount
  832. }
  833. return 0
  834. }
  835. type GetFilerConfigurationRequest struct {
  836. }
  837. func (m *GetFilerConfigurationRequest) Reset() { *m = GetFilerConfigurationRequest{} }
  838. func (m *GetFilerConfigurationRequest) String() string { return proto.CompactTextString(m) }
  839. func (*GetFilerConfigurationRequest) ProtoMessage() {}
  840. func (*GetFilerConfigurationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} }
  841. type GetFilerConfigurationResponse struct {
  842. Masters []string `protobuf:"bytes,1,rep,name=masters" json:"masters,omitempty"`
  843. Replication string `protobuf:"bytes,2,opt,name=replication" json:"replication,omitempty"`
  844. Collection string `protobuf:"bytes,3,opt,name=collection" json:"collection,omitempty"`
  845. MaxMb uint32 `protobuf:"varint,4,opt,name=max_mb,json=maxMb" json:"max_mb,omitempty"`
  846. DirBuckets string `protobuf:"bytes,5,opt,name=dir_buckets,json=dirBuckets" json:"dir_buckets,omitempty"`
  847. }
  848. func (m *GetFilerConfigurationResponse) Reset() { *m = GetFilerConfigurationResponse{} }
  849. func (m *GetFilerConfigurationResponse) String() string { return proto.CompactTextString(m) }
  850. func (*GetFilerConfigurationResponse) ProtoMessage() {}
  851. func (*GetFilerConfigurationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} }
  852. func (m *GetFilerConfigurationResponse) GetMasters() []string {
  853. if m != nil {
  854. return m.Masters
  855. }
  856. return nil
  857. }
  858. func (m *GetFilerConfigurationResponse) GetReplication() string {
  859. if m != nil {
  860. return m.Replication
  861. }
  862. return ""
  863. }
  864. func (m *GetFilerConfigurationResponse) GetCollection() string {
  865. if m != nil {
  866. return m.Collection
  867. }
  868. return ""
  869. }
  870. func (m *GetFilerConfigurationResponse) GetMaxMb() uint32 {
  871. if m != nil {
  872. return m.MaxMb
  873. }
  874. return 0
  875. }
  876. func (m *GetFilerConfigurationResponse) GetDirBuckets() string {
  877. if m != nil {
  878. return m.DirBuckets
  879. }
  880. return ""
  881. }
  882. func init() {
  883. proto.RegisterType((*LookupDirectoryEntryRequest)(nil), "filer_pb.LookupDirectoryEntryRequest")
  884. proto.RegisterType((*LookupDirectoryEntryResponse)(nil), "filer_pb.LookupDirectoryEntryResponse")
  885. proto.RegisterType((*ListEntriesRequest)(nil), "filer_pb.ListEntriesRequest")
  886. proto.RegisterType((*ListEntriesResponse)(nil), "filer_pb.ListEntriesResponse")
  887. proto.RegisterType((*Entry)(nil), "filer_pb.Entry")
  888. proto.RegisterType((*FullEntry)(nil), "filer_pb.FullEntry")
  889. proto.RegisterType((*EventNotification)(nil), "filer_pb.EventNotification")
  890. proto.RegisterType((*FileChunk)(nil), "filer_pb.FileChunk")
  891. proto.RegisterType((*FileId)(nil), "filer_pb.FileId")
  892. proto.RegisterType((*FuseAttributes)(nil), "filer_pb.FuseAttributes")
  893. proto.RegisterType((*CreateEntryRequest)(nil), "filer_pb.CreateEntryRequest")
  894. proto.RegisterType((*CreateEntryResponse)(nil), "filer_pb.CreateEntryResponse")
  895. proto.RegisterType((*UpdateEntryRequest)(nil), "filer_pb.UpdateEntryRequest")
  896. proto.RegisterType((*UpdateEntryResponse)(nil), "filer_pb.UpdateEntryResponse")
  897. proto.RegisterType((*DeleteEntryRequest)(nil), "filer_pb.DeleteEntryRequest")
  898. proto.RegisterType((*DeleteEntryResponse)(nil), "filer_pb.DeleteEntryResponse")
  899. proto.RegisterType((*AtomicRenameEntryRequest)(nil), "filer_pb.AtomicRenameEntryRequest")
  900. proto.RegisterType((*AtomicRenameEntryResponse)(nil), "filer_pb.AtomicRenameEntryResponse")
  901. proto.RegisterType((*AssignVolumeRequest)(nil), "filer_pb.AssignVolumeRequest")
  902. proto.RegisterType((*AssignVolumeResponse)(nil), "filer_pb.AssignVolumeResponse")
  903. proto.RegisterType((*LookupVolumeRequest)(nil), "filer_pb.LookupVolumeRequest")
  904. proto.RegisterType((*Locations)(nil), "filer_pb.Locations")
  905. proto.RegisterType((*Location)(nil), "filer_pb.Location")
  906. proto.RegisterType((*LookupVolumeResponse)(nil), "filer_pb.LookupVolumeResponse")
  907. proto.RegisterType((*DeleteCollectionRequest)(nil), "filer_pb.DeleteCollectionRequest")
  908. proto.RegisterType((*DeleteCollectionResponse)(nil), "filer_pb.DeleteCollectionResponse")
  909. proto.RegisterType((*StatisticsRequest)(nil), "filer_pb.StatisticsRequest")
  910. proto.RegisterType((*StatisticsResponse)(nil), "filer_pb.StatisticsResponse")
  911. proto.RegisterType((*GetFilerConfigurationRequest)(nil), "filer_pb.GetFilerConfigurationRequest")
  912. proto.RegisterType((*GetFilerConfigurationResponse)(nil), "filer_pb.GetFilerConfigurationResponse")
  913. }
  914. // Reference imports to suppress errors if they are not otherwise used.
  915. var _ context.Context
  916. var _ grpc.ClientConn
  917. // This is a compile-time assertion to ensure that this generated file
  918. // is compatible with the grpc package it is being compiled against.
  919. const _ = grpc.SupportPackageIsVersion4
  920. // Client API for SeaweedFiler service
  921. type SeaweedFilerClient interface {
  922. LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error)
  923. ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (SeaweedFiler_ListEntriesClient, error)
  924. CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error)
  925. UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error)
  926. DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error)
  927. AtomicRenameEntry(ctx context.Context, in *AtomicRenameEntryRequest, opts ...grpc.CallOption) (*AtomicRenameEntryResponse, error)
  928. AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error)
  929. LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error)
  930. DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error)
  931. Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error)
  932. GetFilerConfiguration(ctx context.Context, in *GetFilerConfigurationRequest, opts ...grpc.CallOption) (*GetFilerConfigurationResponse, error)
  933. }
  934. type seaweedFilerClient struct {
  935. cc *grpc.ClientConn
  936. }
  937. func NewSeaweedFilerClient(cc *grpc.ClientConn) SeaweedFilerClient {
  938. return &seaweedFilerClient{cc}
  939. }
  940. func (c *seaweedFilerClient) LookupDirectoryEntry(ctx context.Context, in *LookupDirectoryEntryRequest, opts ...grpc.CallOption) (*LookupDirectoryEntryResponse, error) {
  941. out := new(LookupDirectoryEntryResponse)
  942. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupDirectoryEntry", in, out, c.cc, opts...)
  943. if err != nil {
  944. return nil, err
  945. }
  946. return out, nil
  947. }
  948. func (c *seaweedFilerClient) ListEntries(ctx context.Context, in *ListEntriesRequest, opts ...grpc.CallOption) (SeaweedFiler_ListEntriesClient, error) {
  949. stream, err := grpc.NewClientStream(ctx, &_SeaweedFiler_serviceDesc.Streams[0], c.cc, "/filer_pb.SeaweedFiler/ListEntries", opts...)
  950. if err != nil {
  951. return nil, err
  952. }
  953. x := &seaweedFilerListEntriesClient{stream}
  954. if err := x.ClientStream.SendMsg(in); err != nil {
  955. return nil, err
  956. }
  957. if err := x.ClientStream.CloseSend(); err != nil {
  958. return nil, err
  959. }
  960. return x, nil
  961. }
  962. type SeaweedFiler_ListEntriesClient interface {
  963. Recv() (*ListEntriesResponse, error)
  964. grpc.ClientStream
  965. }
  966. type seaweedFilerListEntriesClient struct {
  967. grpc.ClientStream
  968. }
  969. func (x *seaweedFilerListEntriesClient) Recv() (*ListEntriesResponse, error) {
  970. m := new(ListEntriesResponse)
  971. if err := x.ClientStream.RecvMsg(m); err != nil {
  972. return nil, err
  973. }
  974. return m, nil
  975. }
  976. func (c *seaweedFilerClient) CreateEntry(ctx context.Context, in *CreateEntryRequest, opts ...grpc.CallOption) (*CreateEntryResponse, error) {
  977. out := new(CreateEntryResponse)
  978. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/CreateEntry", in, out, c.cc, opts...)
  979. if err != nil {
  980. return nil, err
  981. }
  982. return out, nil
  983. }
  984. func (c *seaweedFilerClient) UpdateEntry(ctx context.Context, in *UpdateEntryRequest, opts ...grpc.CallOption) (*UpdateEntryResponse, error) {
  985. out := new(UpdateEntryResponse)
  986. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/UpdateEntry", in, out, c.cc, opts...)
  987. if err != nil {
  988. return nil, err
  989. }
  990. return out, nil
  991. }
  992. func (c *seaweedFilerClient) DeleteEntry(ctx context.Context, in *DeleteEntryRequest, opts ...grpc.CallOption) (*DeleteEntryResponse, error) {
  993. out := new(DeleteEntryResponse)
  994. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteEntry", in, out, c.cc, opts...)
  995. if err != nil {
  996. return nil, err
  997. }
  998. return out, nil
  999. }
  1000. func (c *seaweedFilerClient) AtomicRenameEntry(ctx context.Context, in *AtomicRenameEntryRequest, opts ...grpc.CallOption) (*AtomicRenameEntryResponse, error) {
  1001. out := new(AtomicRenameEntryResponse)
  1002. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AtomicRenameEntry", in, out, c.cc, opts...)
  1003. if err != nil {
  1004. return nil, err
  1005. }
  1006. return out, nil
  1007. }
  1008. func (c *seaweedFilerClient) AssignVolume(ctx context.Context, in *AssignVolumeRequest, opts ...grpc.CallOption) (*AssignVolumeResponse, error) {
  1009. out := new(AssignVolumeResponse)
  1010. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/AssignVolume", in, out, c.cc, opts...)
  1011. if err != nil {
  1012. return nil, err
  1013. }
  1014. return out, nil
  1015. }
  1016. func (c *seaweedFilerClient) LookupVolume(ctx context.Context, in *LookupVolumeRequest, opts ...grpc.CallOption) (*LookupVolumeResponse, error) {
  1017. out := new(LookupVolumeResponse)
  1018. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/LookupVolume", in, out, c.cc, opts...)
  1019. if err != nil {
  1020. return nil, err
  1021. }
  1022. return out, nil
  1023. }
  1024. func (c *seaweedFilerClient) DeleteCollection(ctx context.Context, in *DeleteCollectionRequest, opts ...grpc.CallOption) (*DeleteCollectionResponse, error) {
  1025. out := new(DeleteCollectionResponse)
  1026. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/DeleteCollection", in, out, c.cc, opts...)
  1027. if err != nil {
  1028. return nil, err
  1029. }
  1030. return out, nil
  1031. }
  1032. func (c *seaweedFilerClient) Statistics(ctx context.Context, in *StatisticsRequest, opts ...grpc.CallOption) (*StatisticsResponse, error) {
  1033. out := new(StatisticsResponse)
  1034. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/Statistics", in, out, c.cc, opts...)
  1035. if err != nil {
  1036. return nil, err
  1037. }
  1038. return out, nil
  1039. }
  1040. func (c *seaweedFilerClient) GetFilerConfiguration(ctx context.Context, in *GetFilerConfigurationRequest, opts ...grpc.CallOption) (*GetFilerConfigurationResponse, error) {
  1041. out := new(GetFilerConfigurationResponse)
  1042. err := grpc.Invoke(ctx, "/filer_pb.SeaweedFiler/GetFilerConfiguration", in, out, c.cc, opts...)
  1043. if err != nil {
  1044. return nil, err
  1045. }
  1046. return out, nil
  1047. }
  1048. // Server API for SeaweedFiler service
  1049. type SeaweedFilerServer interface {
  1050. LookupDirectoryEntry(context.Context, *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error)
  1051. ListEntries(*ListEntriesRequest, SeaweedFiler_ListEntriesServer) error
  1052. CreateEntry(context.Context, *CreateEntryRequest) (*CreateEntryResponse, error)
  1053. UpdateEntry(context.Context, *UpdateEntryRequest) (*UpdateEntryResponse, error)
  1054. DeleteEntry(context.Context, *DeleteEntryRequest) (*DeleteEntryResponse, error)
  1055. AtomicRenameEntry(context.Context, *AtomicRenameEntryRequest) (*AtomicRenameEntryResponse, error)
  1056. AssignVolume(context.Context, *AssignVolumeRequest) (*AssignVolumeResponse, error)
  1057. LookupVolume(context.Context, *LookupVolumeRequest) (*LookupVolumeResponse, error)
  1058. DeleteCollection(context.Context, *DeleteCollectionRequest) (*DeleteCollectionResponse, error)
  1059. Statistics(context.Context, *StatisticsRequest) (*StatisticsResponse, error)
  1060. GetFilerConfiguration(context.Context, *GetFilerConfigurationRequest) (*GetFilerConfigurationResponse, error)
  1061. }
  1062. func RegisterSeaweedFilerServer(s *grpc.Server, srv SeaweedFilerServer) {
  1063. s.RegisterService(&_SeaweedFiler_serviceDesc, srv)
  1064. }
  1065. func _SeaweedFiler_LookupDirectoryEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1066. in := new(LookupDirectoryEntryRequest)
  1067. if err := dec(in); err != nil {
  1068. return nil, err
  1069. }
  1070. if interceptor == nil {
  1071. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, in)
  1072. }
  1073. info := &grpc.UnaryServerInfo{
  1074. Server: srv,
  1075. FullMethod: "/filer_pb.SeaweedFiler/LookupDirectoryEntry",
  1076. }
  1077. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1078. return srv.(SeaweedFilerServer).LookupDirectoryEntry(ctx, req.(*LookupDirectoryEntryRequest))
  1079. }
  1080. return interceptor(ctx, in, info, handler)
  1081. }
  1082. func _SeaweedFiler_ListEntries_Handler(srv interface{}, stream grpc.ServerStream) error {
  1083. m := new(ListEntriesRequest)
  1084. if err := stream.RecvMsg(m); err != nil {
  1085. return err
  1086. }
  1087. return srv.(SeaweedFilerServer).ListEntries(m, &seaweedFilerListEntriesServer{stream})
  1088. }
  1089. type SeaweedFiler_ListEntriesServer interface {
  1090. Send(*ListEntriesResponse) error
  1091. grpc.ServerStream
  1092. }
  1093. type seaweedFilerListEntriesServer struct {
  1094. grpc.ServerStream
  1095. }
  1096. func (x *seaweedFilerListEntriesServer) Send(m *ListEntriesResponse) error {
  1097. return x.ServerStream.SendMsg(m)
  1098. }
  1099. func _SeaweedFiler_CreateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1100. in := new(CreateEntryRequest)
  1101. if err := dec(in); err != nil {
  1102. return nil, err
  1103. }
  1104. if interceptor == nil {
  1105. return srv.(SeaweedFilerServer).CreateEntry(ctx, in)
  1106. }
  1107. info := &grpc.UnaryServerInfo{
  1108. Server: srv,
  1109. FullMethod: "/filer_pb.SeaweedFiler/CreateEntry",
  1110. }
  1111. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1112. return srv.(SeaweedFilerServer).CreateEntry(ctx, req.(*CreateEntryRequest))
  1113. }
  1114. return interceptor(ctx, in, info, handler)
  1115. }
  1116. func _SeaweedFiler_UpdateEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1117. in := new(UpdateEntryRequest)
  1118. if err := dec(in); err != nil {
  1119. return nil, err
  1120. }
  1121. if interceptor == nil {
  1122. return srv.(SeaweedFilerServer).UpdateEntry(ctx, in)
  1123. }
  1124. info := &grpc.UnaryServerInfo{
  1125. Server: srv,
  1126. FullMethod: "/filer_pb.SeaweedFiler/UpdateEntry",
  1127. }
  1128. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1129. return srv.(SeaweedFilerServer).UpdateEntry(ctx, req.(*UpdateEntryRequest))
  1130. }
  1131. return interceptor(ctx, in, info, handler)
  1132. }
  1133. func _SeaweedFiler_DeleteEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1134. in := new(DeleteEntryRequest)
  1135. if err := dec(in); err != nil {
  1136. return nil, err
  1137. }
  1138. if interceptor == nil {
  1139. return srv.(SeaweedFilerServer).DeleteEntry(ctx, in)
  1140. }
  1141. info := &grpc.UnaryServerInfo{
  1142. Server: srv,
  1143. FullMethod: "/filer_pb.SeaweedFiler/DeleteEntry",
  1144. }
  1145. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1146. return srv.(SeaweedFilerServer).DeleteEntry(ctx, req.(*DeleteEntryRequest))
  1147. }
  1148. return interceptor(ctx, in, info, handler)
  1149. }
  1150. func _SeaweedFiler_AtomicRenameEntry_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1151. in := new(AtomicRenameEntryRequest)
  1152. if err := dec(in); err != nil {
  1153. return nil, err
  1154. }
  1155. if interceptor == nil {
  1156. return srv.(SeaweedFilerServer).AtomicRenameEntry(ctx, in)
  1157. }
  1158. info := &grpc.UnaryServerInfo{
  1159. Server: srv,
  1160. FullMethod: "/filer_pb.SeaweedFiler/AtomicRenameEntry",
  1161. }
  1162. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1163. return srv.(SeaweedFilerServer).AtomicRenameEntry(ctx, req.(*AtomicRenameEntryRequest))
  1164. }
  1165. return interceptor(ctx, in, info, handler)
  1166. }
  1167. func _SeaweedFiler_AssignVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1168. in := new(AssignVolumeRequest)
  1169. if err := dec(in); err != nil {
  1170. return nil, err
  1171. }
  1172. if interceptor == nil {
  1173. return srv.(SeaweedFilerServer).AssignVolume(ctx, in)
  1174. }
  1175. info := &grpc.UnaryServerInfo{
  1176. Server: srv,
  1177. FullMethod: "/filer_pb.SeaweedFiler/AssignVolume",
  1178. }
  1179. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1180. return srv.(SeaweedFilerServer).AssignVolume(ctx, req.(*AssignVolumeRequest))
  1181. }
  1182. return interceptor(ctx, in, info, handler)
  1183. }
  1184. func _SeaweedFiler_LookupVolume_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1185. in := new(LookupVolumeRequest)
  1186. if err := dec(in); err != nil {
  1187. return nil, err
  1188. }
  1189. if interceptor == nil {
  1190. return srv.(SeaweedFilerServer).LookupVolume(ctx, in)
  1191. }
  1192. info := &grpc.UnaryServerInfo{
  1193. Server: srv,
  1194. FullMethod: "/filer_pb.SeaweedFiler/LookupVolume",
  1195. }
  1196. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1197. return srv.(SeaweedFilerServer).LookupVolume(ctx, req.(*LookupVolumeRequest))
  1198. }
  1199. return interceptor(ctx, in, info, handler)
  1200. }
  1201. func _SeaweedFiler_DeleteCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1202. in := new(DeleteCollectionRequest)
  1203. if err := dec(in); err != nil {
  1204. return nil, err
  1205. }
  1206. if interceptor == nil {
  1207. return srv.(SeaweedFilerServer).DeleteCollection(ctx, in)
  1208. }
  1209. info := &grpc.UnaryServerInfo{
  1210. Server: srv,
  1211. FullMethod: "/filer_pb.SeaweedFiler/DeleteCollection",
  1212. }
  1213. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1214. return srv.(SeaweedFilerServer).DeleteCollection(ctx, req.(*DeleteCollectionRequest))
  1215. }
  1216. return interceptor(ctx, in, info, handler)
  1217. }
  1218. func _SeaweedFiler_Statistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1219. in := new(StatisticsRequest)
  1220. if err := dec(in); err != nil {
  1221. return nil, err
  1222. }
  1223. if interceptor == nil {
  1224. return srv.(SeaweedFilerServer).Statistics(ctx, in)
  1225. }
  1226. info := &grpc.UnaryServerInfo{
  1227. Server: srv,
  1228. FullMethod: "/filer_pb.SeaweedFiler/Statistics",
  1229. }
  1230. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1231. return srv.(SeaweedFilerServer).Statistics(ctx, req.(*StatisticsRequest))
  1232. }
  1233. return interceptor(ctx, in, info, handler)
  1234. }
  1235. func _SeaweedFiler_GetFilerConfiguration_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1236. in := new(GetFilerConfigurationRequest)
  1237. if err := dec(in); err != nil {
  1238. return nil, err
  1239. }
  1240. if interceptor == nil {
  1241. return srv.(SeaweedFilerServer).GetFilerConfiguration(ctx, in)
  1242. }
  1243. info := &grpc.UnaryServerInfo{
  1244. Server: srv,
  1245. FullMethod: "/filer_pb.SeaweedFiler/GetFilerConfiguration",
  1246. }
  1247. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1248. return srv.(SeaweedFilerServer).GetFilerConfiguration(ctx, req.(*GetFilerConfigurationRequest))
  1249. }
  1250. return interceptor(ctx, in, info, handler)
  1251. }
  1252. var _SeaweedFiler_serviceDesc = grpc.ServiceDesc{
  1253. ServiceName: "filer_pb.SeaweedFiler",
  1254. HandlerType: (*SeaweedFilerServer)(nil),
  1255. Methods: []grpc.MethodDesc{
  1256. {
  1257. MethodName: "LookupDirectoryEntry",
  1258. Handler: _SeaweedFiler_LookupDirectoryEntry_Handler,
  1259. },
  1260. {
  1261. MethodName: "CreateEntry",
  1262. Handler: _SeaweedFiler_CreateEntry_Handler,
  1263. },
  1264. {
  1265. MethodName: "UpdateEntry",
  1266. Handler: _SeaweedFiler_UpdateEntry_Handler,
  1267. },
  1268. {
  1269. MethodName: "DeleteEntry",
  1270. Handler: _SeaweedFiler_DeleteEntry_Handler,
  1271. },
  1272. {
  1273. MethodName: "AtomicRenameEntry",
  1274. Handler: _SeaweedFiler_AtomicRenameEntry_Handler,
  1275. },
  1276. {
  1277. MethodName: "AssignVolume",
  1278. Handler: _SeaweedFiler_AssignVolume_Handler,
  1279. },
  1280. {
  1281. MethodName: "LookupVolume",
  1282. Handler: _SeaweedFiler_LookupVolume_Handler,
  1283. },
  1284. {
  1285. MethodName: "DeleteCollection",
  1286. Handler: _SeaweedFiler_DeleteCollection_Handler,
  1287. },
  1288. {
  1289. MethodName: "Statistics",
  1290. Handler: _SeaweedFiler_Statistics_Handler,
  1291. },
  1292. {
  1293. MethodName: "GetFilerConfiguration",
  1294. Handler: _SeaweedFiler_GetFilerConfiguration_Handler,
  1295. },
  1296. },
  1297. Streams: []grpc.StreamDesc{
  1298. {
  1299. StreamName: "ListEntries",
  1300. Handler: _SeaweedFiler_ListEntries_Handler,
  1301. ServerStreams: true,
  1302. },
  1303. },
  1304. Metadata: "filer.proto",
  1305. }
  1306. func init() { proto.RegisterFile("filer.proto", fileDescriptor0) }
  1307. var fileDescriptor0 = []byte{
  1308. // 1671 bytes of a gzipped FileDescriptorProto
  1309. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x58, 0xcb, 0x6f, 0xdb, 0x46,
  1310. 0x1a, 0x37, 0xf5, 0xe6, 0x27, 0x29, 0xb1, 0x47, 0x76, 0xa2, 0xc8, 0x8f, 0x75, 0xe8, 0x4d, 0xd6,
  1311. 0x8b, 0x04, 0xde, 0xc0, 0x9b, 0x43, 0xb2, 0xd9, 0x3d, 0x24, 0x7e, 0x2c, 0x8c, 0x75, 0x1e, 0xa0,
  1312. 0x93, 0xc5, 0x2e, 0x0a, 0x94, 0xa0, 0xc9, 0x91, 0x3c, 0x35, 0xc5, 0x61, 0x87, 0x43, 0xdb, 0xe9,
  1313. 0x9f, 0x52, 0xa0, 0x7f, 0x45, 0xaf, 0x45, 0x2f, 0x45, 0xd1, 0x1e, 0xfa, 0xb7, 0xf4, 0xd8, 0x73,
  1314. 0x31, 0x33, 0x24, 0x35, 0x14, 0x65, 0x3b, 0x41, 0x91, 0x1b, 0xe7, 0x7b, 0xcd, 0x37, 0xbf, 0xef,
  1315. 0x29, 0x41, 0x7b, 0x48, 0x02, 0xcc, 0xb6, 0x22, 0x46, 0x39, 0x45, 0x2d, 0x79, 0x70, 0xa2, 0x63,
  1316. 0xeb, 0x35, 0x2c, 0x1f, 0x52, 0x7a, 0x9a, 0x44, 0xbb, 0x84, 0x61, 0x8f, 0x53, 0xf6, 0x7e, 0x2f,
  1317. 0xe4, 0xec, 0xbd, 0x8d, 0xbf, 0x4c, 0x70, 0xcc, 0xd1, 0x0a, 0x98, 0x7e, 0xc6, 0xe8, 0x1b, 0xeb,
  1318. 0xc6, 0xa6, 0x69, 0x4f, 0x08, 0x08, 0x41, 0x2d, 0x74, 0xc7, 0xb8, 0x5f, 0x91, 0x0c, 0xf9, 0x6d,
  1319. 0xed, 0xc1, 0xca, 0x6c, 0x83, 0x71, 0x44, 0xc3, 0x18, 0xa3, 0x7b, 0x50, 0xc7, 0x82, 0x20, 0xad,
  1320. 0xb5, 0xb7, 0x6f, 0x6e, 0x65, 0xae, 0x6c, 0x29, 0x39, 0xc5, 0xb5, 0xbe, 0x37, 0x00, 0x1d, 0x92,
  1321. 0x98, 0x0b, 0x22, 0xc1, 0xf1, 0x87, 0xf9, 0x73, 0x0b, 0x1a, 0x11, 0xc3, 0x43, 0x72, 0x91, 0x7a,
  1322. 0x94, 0x9e, 0xd0, 0x43, 0x58, 0x88, 0xb9, 0xcb, 0xf8, 0x3e, 0xa3, 0xe3, 0x7d, 0x12, 0xe0, 0x57,
  1323. 0xc2, 0xe9, 0xaa, 0x14, 0x29, 0x33, 0xd0, 0x16, 0x20, 0x12, 0x7a, 0x41, 0x12, 0x93, 0x33, 0x7c,
  1324. 0x94, 0x71, 0xfb, 0xb5, 0x75, 0x63, 0xb3, 0x65, 0xcf, 0xe0, 0xa0, 0x45, 0xa8, 0x07, 0x64, 0x4c,
  1325. 0x78, 0xbf, 0xbe, 0x6e, 0x6c, 0x76, 0x6d, 0x75, 0xb0, 0xfe, 0x09, 0xbd, 0x82, 0xff, 0x1f, 0xf7,
  1326. 0xfc, 0x6f, 0x2a, 0x50, 0x97, 0x84, 0x1c, 0x63, 0x63, 0x82, 0x31, 0xba, 0x0b, 0x1d, 0x12, 0x3b,
  1327. 0x13, 0x20, 0x2a, 0xd2, 0xb7, 0x36, 0x89, 0x73, 0xcc, 0xd1, 0x03, 0x68, 0x78, 0x27, 0x49, 0x78,
  1328. 0x1a, 0xf7, 0xab, 0xeb, 0xd5, 0xcd, 0xf6, 0x76, 0x6f, 0x72, 0x91, 0x78, 0xe8, 0x8e, 0xe0, 0xd9,
  1329. 0xa9, 0x08, 0x7a, 0x02, 0xe0, 0x72, 0xce, 0xc8, 0x71, 0xc2, 0x71, 0x2c, 0x5f, 0xda, 0xde, 0xee,
  1330. 0x6b, 0x0a, 0x49, 0x8c, 0x9f, 0xe7, 0x7c, 0x5b, 0x93, 0x45, 0x4f, 0xa1, 0x85, 0x2f, 0x38, 0x0e,
  1331. 0x7d, 0xec, 0xf7, 0xeb, 0xf2, 0xa2, 0xd5, 0xa9, 0x17, 0x6d, 0xed, 0xa5, 0x7c, 0xf5, 0xbe, 0x5c,
  1332. 0x7c, 0xf0, 0x0c, 0xba, 0x05, 0x16, 0x9a, 0x87, 0xea, 0x29, 0xce, 0xa2, 0x2a, 0x3e, 0x05, 0xb2,
  1333. 0x67, 0x6e, 0x90, 0xa8, 0x04, 0xeb, 0xd8, 0xea, 0xf0, 0x8f, 0xca, 0x13, 0xc3, 0xda, 0x05, 0x73,
  1334. 0x3f, 0x09, 0x82, 0x5c, 0xd1, 0x27, 0x2c, 0x53, 0xf4, 0x09, 0x9b, 0xa0, 0x5c, 0xb9, 0x12, 0xe5,
  1335. 0xef, 0x0c, 0x58, 0xd8, 0x3b, 0xc3, 0x21, 0x7f, 0x45, 0x39, 0x19, 0x12, 0xcf, 0xe5, 0x84, 0x86,
  1336. 0xe8, 0x21, 0x98, 0x34, 0xf0, 0x9d, 0x2b, 0xc3, 0xd4, 0xa2, 0x41, 0xea, 0xf5, 0x43, 0x30, 0x43,
  1337. 0x7c, 0xee, 0x5c, 0x79, 0x5d, 0x2b, 0xc4, 0xe7, 0x4a, 0x7a, 0x03, 0xba, 0x3e, 0x0e, 0x30, 0xc7,
  1338. 0x4e, 0x1e, 0x1d, 0x11, 0xba, 0x8e, 0x22, 0xee, 0xa8, 0x70, 0xdc, 0x87, 0x9b, 0xc2, 0x64, 0xe4,
  1339. 0x32, 0x1c, 0x72, 0x27, 0x72, 0xf9, 0x89, 0x8c, 0x89, 0x69, 0x77, 0x43, 0x7c, 0xfe, 0x46, 0x52,
  1340. 0xdf, 0xb8, 0xfc, 0xc4, 0xfa, 0xcd, 0x00, 0x33, 0x0f, 0x26, 0xba, 0x0d, 0x4d, 0x71, 0xad, 0x43,
  1341. 0xfc, 0x14, 0x89, 0x86, 0x38, 0x1e, 0xf8, 0xa2, 0x2a, 0xe8, 0x70, 0x18, 0x63, 0x2e, 0xdd, 0xab,
  1342. 0xda, 0xe9, 0x49, 0x64, 0x56, 0x4c, 0xbe, 0x52, 0x85, 0x50, 0xb3, 0xe5, 0xb7, 0x40, 0x7c, 0xcc,
  1343. 0xc9, 0x18, 0xcb, 0x0b, 0xab, 0xb6, 0x3a, 0xa0, 0x1e, 0xd4, 0xb1, 0xc3, 0xdd, 0x91, 0xcc, 0x70,
  1344. 0xd3, 0xae, 0xe1, 0xb7, 0xee, 0x08, 0xfd, 0x19, 0x6e, 0xc4, 0x34, 0x61, 0x1e, 0x76, 0xb2, 0x6b,
  1345. 0x1b, 0x92, 0xdb, 0x51, 0xd4, 0x7d, 0x75, 0xb9, 0x05, 0xd5, 0x21, 0xf1, 0xfb, 0x4d, 0x09, 0xcc,
  1346. 0x7c, 0x31, 0x09, 0x0f, 0x7c, 0x5b, 0x30, 0xd1, 0xdf, 0x00, 0x72, 0x4b, 0x7e, 0xbf, 0x75, 0x89,
  1347. 0xa8, 0x99, 0xd9, 0xf5, 0xad, 0xff, 0x41, 0x23, 0x35, 0xbf, 0x0c, 0xe6, 0x19, 0x0d, 0x92, 0x71,
  1348. 0xfe, 0xec, 0xae, 0xdd, 0x52, 0x84, 0x03, 0x1f, 0xdd, 0x01, 0xd9, 0xe7, 0x1c, 0x91, 0x55, 0x15,
  1349. 0xf9, 0x48, 0x89, 0xd0, 0x7f, 0xb0, 0xec, 0x14, 0x1e, 0xa5, 0xa7, 0x44, 0xbd, 0xbe, 0x69, 0xa7,
  1350. 0x27, 0xeb, 0xd7, 0x0a, 0xdc, 0x28, 0xa6, 0xbb, 0xb8, 0x42, 0x5a, 0x91, 0x58, 0x19, 0xd2, 0x8c,
  1351. 0x34, 0x7b, 0x54, 0xc0, 0xab, 0xa2, 0xe3, 0x95, 0xa9, 0x8c, 0xa9, 0xaf, 0x2e, 0xe8, 0x2a, 0x95,
  1352. 0x97, 0xd4, 0xc7, 0x22, 0x5b, 0x13, 0xe2, 0x4b, 0x80, 0xbb, 0xb6, 0xf8, 0x14, 0x94, 0x11, 0xf1,
  1353. 0xd3, 0xf6, 0x21, 0x3e, 0xa5, 0x7b, 0x4c, 0xda, 0x6d, 0xa8, 0x90, 0xa9, 0x93, 0x08, 0xd9, 0x58,
  1354. 0x50, 0x9b, 0x2a, 0x0e, 0xe2, 0x1b, 0xad, 0x43, 0x9b, 0xe1, 0x28, 0x48, 0xb3, 0x57, 0xc2, 0x67,
  1355. 0xda, 0x3a, 0x09, 0xad, 0x01, 0x78, 0x34, 0x08, 0xb0, 0x27, 0x05, 0x4c, 0x29, 0xa0, 0x51, 0x44,
  1356. 0xe6, 0x70, 0x1e, 0x38, 0x31, 0xf6, 0xfa, 0xb0, 0x6e, 0x6c, 0xd6, 0xed, 0x06, 0xe7, 0xc1, 0x11,
  1357. 0xf6, 0xc4, 0x3b, 0x92, 0x18, 0x33, 0x47, 0x36, 0xa0, 0xb6, 0xd4, 0x6b, 0x09, 0x82, 0x6c, 0x93,
  1358. 0xab, 0x00, 0x23, 0x46, 0x93, 0x48, 0x71, 0x3b, 0xeb, 0x55, 0xd1, 0x8b, 0x25, 0x45, 0xb2, 0xef,
  1359. 0xc1, 0x8d, 0xf8, 0xfd, 0x38, 0x20, 0xe1, 0xa9, 0xc3, 0x5d, 0x36, 0xc2, 0xbc, 0xdf, 0x55, 0x39,
  1360. 0x9c, 0x52, 0xdf, 0x4a, 0xa2, 0x15, 0x01, 0xda, 0x61, 0xd8, 0xe5, 0xf8, 0x23, 0xc6, 0xce, 0x87,
  1361. 0x55, 0x37, 0x5a, 0x82, 0x06, 0x75, 0xf0, 0x85, 0x17, 0xa4, 0x45, 0x56, 0xa7, 0x7b, 0x17, 0x5e,
  1362. 0x60, 0x3d, 0x80, 0x5e, 0xe1, 0xc6, 0xb4, 0x31, 0x2f, 0x42, 0x1d, 0x33, 0x46, 0xb3, 0x36, 0xa2,
  1363. 0x0e, 0xd6, 0xff, 0x01, 0xbd, 0x8b, 0xfc, 0x4f, 0xe1, 0x9e, 0xb5, 0x04, 0xbd, 0x82, 0x69, 0xe5,
  1364. 0x87, 0xf5, 0xa3, 0x01, 0x68, 0x57, 0x76, 0x83, 0x3f, 0x36, 0x88, 0x45, 0x7d, 0x8a, 0x21, 0xa1,
  1365. 0xba, 0x8d, 0xef, 0x72, 0x37, 0x1d, 0x61, 0x1d, 0x12, 0x2b, 0xfb, 0xbb, 0x2e, 0x77, 0xd3, 0x51,
  1366. 0xc2, 0xb0, 0x97, 0x30, 0x31, 0xd5, 0x64, 0x12, 0xca, 0x51, 0x62, 0x67, 0x24, 0xf4, 0x18, 0x6e,
  1367. 0x91, 0x51, 0x48, 0x19, 0x9e, 0x88, 0x39, 0x0a, 0xaa, 0x86, 0x14, 0x5e, 0x54, 0xdc, 0x5c, 0x61,
  1368. 0x4f, 0x22, 0xb7, 0x04, 0xbd, 0xc2, 0x33, 0xd2, 0xe7, 0x7d, 0x6d, 0x40, 0xff, 0x39, 0xa7, 0x63,
  1369. 0xe2, 0xd9, 0x58, 0xb8, 0x59, 0x78, 0xe4, 0x06, 0x74, 0x45, 0xe7, 0x9d, 0x7e, 0x68, 0x87, 0x06,
  1370. 0xfe, 0x64, 0xb2, 0xdd, 0x01, 0xd1, 0x7c, 0x1d, 0xed, 0xbd, 0x4d, 0x1a, 0xf8, 0x32, 0xe7, 0x36,
  1371. 0x40, 0x74, 0x48, 0x4d, 0x5f, 0xcd, 0xf8, 0x4e, 0x88, 0xcf, 0x0b, 0xfa, 0x42, 0x48, 0xea, 0xab,
  1372. 0xb6, 0xda, 0x0c, 0xf1, 0xb9, 0xd0, 0xb7, 0x96, 0xe1, 0xce, 0x0c, 0xdf, 0x52, 0xcf, 0x7f, 0x36,
  1373. 0xa0, 0xf7, 0x3c, 0x8e, 0xc9, 0x28, 0xfc, 0xaf, 0x6c, 0x30, 0x99, 0xd3, 0x8b, 0x50, 0xf7, 0x68,
  1374. 0x12, 0x72, 0xe9, 0x6c, 0xdd, 0x56, 0x87, 0xa9, 0x9a, 0xab, 0x94, 0x6a, 0x6e, 0xaa, 0x6a, 0xab,
  1375. 0xe5, 0xaa, 0xd5, 0xaa, 0xb2, 0x56, 0xa8, 0xca, 0x3f, 0x41, 0x5b, 0x84, 0xd3, 0xf1, 0x70, 0xc8,
  1376. 0x31, 0x4b, 0x7b, 0x32, 0x08, 0xd2, 0x8e, 0xa4, 0x08, 0x01, 0x7d, 0x76, 0xa8, 0xb6, 0x0c, 0xd1,
  1377. 0x64, 0x70, 0xfc, 0x62, 0xc0, 0x62, 0xf1, 0x29, 0x69, 0x11, 0x5c, 0x3a, 0x43, 0x44, 0xd3, 0x62,
  1378. 0x41, 0xfa, 0x0e, 0xf1, 0x29, 0xca, 0x3f, 0x4a, 0x8e, 0x03, 0xe2, 0x39, 0x82, 0xa1, 0xfc, 0x37,
  1379. 0x15, 0xe5, 0x1d, 0x0b, 0x26, 0xa8, 0xd4, 0x74, 0x54, 0x10, 0xd4, 0xdc, 0x84, 0x9f, 0x64, 0x73,
  1380. 0x44, 0x7c, 0x4f, 0x21, 0xd5, 0xb8, 0x0e, 0xa9, 0x66, 0x09, 0x29, 0xeb, 0x31, 0xf4, 0xd4, 0xca,
  1381. 0x59, 0x0c, 0xcc, 0x2a, 0x40, 0x3e, 0x1b, 0xe2, 0xbe, 0xa1, 0x1a, 0x54, 0x36, 0x1c, 0x62, 0xeb,
  1382. 0x5f, 0x60, 0x1e, 0x52, 0x65, 0x21, 0x46, 0x8f, 0xc0, 0x0c, 0xb2, 0x83, 0x14, 0x6d, 0x6f, 0xa3,
  1383. 0x49, 0xdd, 0x66, 0x72, 0xf6, 0x44, 0xc8, 0x7a, 0x06, 0xad, 0x8c, 0x9c, 0xa1, 0x63, 0x5c, 0x86,
  1384. 0x4e, 0x65, 0x0a, 0x1d, 0xeb, 0x07, 0x03, 0x16, 0x8b, 0x2e, 0xa7, 0x01, 0x78, 0x07, 0xdd, 0xfc,
  1385. 0x0a, 0x67, 0xec, 0x46, 0xa9, 0x2f, 0x8f, 0x74, 0x5f, 0xca, 0x6a, 0xb9, 0x83, 0xf1, 0x4b, 0x37,
  1386. 0x52, 0x59, 0xdb, 0x09, 0x34, 0xd2, 0xe0, 0x2d, 0x2c, 0x94, 0x44, 0x66, 0xec, 0x5b, 0x7f, 0xd5,
  1387. 0xf7, 0xad, 0xc2, 0xce, 0x98, 0x6b, 0xeb, 0x4b, 0xd8, 0x53, 0xb8, 0xad, 0x4a, 0x7c, 0x27, 0x8f,
  1388. 0x56, 0x86, 0x7d, 0x31, 0xa8, 0xc6, 0x74, 0x50, 0xad, 0x01, 0xf4, 0xcb, 0xaa, 0x69, 0xa1, 0x8d,
  1389. 0x60, 0xe1, 0x88, 0xbb, 0x9c, 0xc4, 0x9c, 0x78, 0xf9, 0xe2, 0x3f, 0x95, 0x05, 0xc6, 0x75, 0x53,
  1390. 0xae, 0x5c, 0x71, 0xf3, 0x50, 0xe5, 0x3c, 0xcb, 0x54, 0xf1, 0x29, 0xa2, 0x80, 0xf4, 0x9b, 0xd2,
  1391. 0x18, 0x7c, 0x82, 0xab, 0x44, 0x3e, 0x70, 0xca, 0xdd, 0x40, 0x6d, 0x11, 0x35, 0xb9, 0x45, 0x98,
  1392. 0x92, 0x22, 0xd7, 0x08, 0x35, 0x68, 0x7d, 0xc5, 0xad, 0xab, 0x1d, 0x43, 0x10, 0x24, 0x73, 0x15,
  1393. 0x40, 0x16, 0xa5, 0xaa, 0xa7, 0x86, 0xd2, 0x15, 0x94, 0x1d, 0x41, 0xb0, 0xd6, 0x60, 0xe5, 0xdf,
  1394. 0x98, 0x8b, 0x7d, 0x88, 0xed, 0xd0, 0x70, 0x48, 0x46, 0x09, 0x73, 0xb5, 0x50, 0x58, 0xdf, 0x1a,
  1395. 0xb0, 0x7a, 0x89, 0x40, 0xfa, 0xe0, 0x3e, 0x34, 0xc7, 0x6e, 0xcc, 0x31, 0xcb, 0xaa, 0x24, 0x3b,
  1396. 0x4e, 0x43, 0x51, 0xb9, 0x0e, 0x8a, 0x6a, 0x09, 0x8a, 0x25, 0x68, 0x8c, 0xdd, 0x0b, 0x67, 0x7c,
  1397. 0x9c, 0x2e, 0x3c, 0xf5, 0xb1, 0x7b, 0xf1, 0xf2, 0x58, 0xf6, 0x30, 0xc2, 0x9c, 0xe3, 0xc4, 0x3b,
  1398. 0xc5, 0x3c, 0xce, 0x7b, 0x18, 0x61, 0x2f, 0x14, 0x65, 0xfb, 0xa7, 0x26, 0x74, 0x8e, 0xb0, 0x7b,
  1399. 0x8e, 0xb1, 0x2f, 0x3d, 0x47, 0xa3, 0xac, 0x62, 0x8a, 0xbf, 0x2b, 0xd1, 0xbd, 0xe9, 0xd2, 0x98,
  1400. 0xf9, 0x43, 0x76, 0x70, 0xff, 0x3a, 0xb1, 0x34, 0xf9, 0xe6, 0xd0, 0x2b, 0x68, 0x6b, 0x3f, 0xdc,
  1401. 0xd0, 0x8a, 0xa6, 0x58, 0xfa, 0x3d, 0x3a, 0x58, 0xbd, 0x84, 0x9b, 0x59, 0x7b, 0x64, 0xa0, 0x43,
  1402. 0x68, 0x6b, 0xfb, 0x86, 0x6e, 0xaf, 0xbc, 0xf8, 0xe8, 0xf6, 0x66, 0x2c, 0x29, 0xd6, 0x9c, 0xb0,
  1403. 0xa6, 0x6d, 0x0d, 0xba, 0xb5, 0xf2, 0x9e, 0xa2, 0x5b, 0x9b, 0xb5, 0x6a, 0x48, 0x6b, 0xda, 0x90,
  1404. 0xd6, 0xad, 0x95, 0x57, 0x10, 0xdd, 0xda, 0xac, 0xc9, 0x3e, 0x87, 0x3e, 0x87, 0x85, 0xd2, 0xf8,
  1405. 0x44, 0xd6, 0x44, 0xeb, 0xb2, 0xb9, 0x3f, 0xd8, 0xb8, 0x52, 0x26, 0xb7, 0xff, 0x1a, 0x3a, 0xfa,
  1406. 0xd4, 0x42, 0x9a, 0x43, 0x33, 0x06, 0xf3, 0x60, 0xed, 0x32, 0xb6, 0x6e, 0x50, 0x6f, 0xa7, 0xba,
  1407. 0xc1, 0x19, 0x03, 0x45, 0x37, 0x38, 0xab, 0x0b, 0x5b, 0x73, 0xe8, 0x33, 0x98, 0x9f, 0x6e, 0x6b,
  1408. 0xe8, 0xee, 0x34, 0x6c, 0xa5, 0x6e, 0x39, 0xb0, 0xae, 0x12, 0xc9, 0x8d, 0x1f, 0x00, 0x4c, 0xba,
  1409. 0x15, 0x5a, 0x9e, 0xe8, 0x94, 0xba, 0xe5, 0x60, 0x65, 0x36, 0x33, 0x37, 0xf5, 0x05, 0x2c, 0xcd,
  1410. 0x6c, 0x09, 0x48, 0x2b, 0x93, 0xab, 0x9a, 0xca, 0xe0, 0x2f, 0xd7, 0xca, 0x65, 0x77, 0xbd, 0x58,
  1411. 0x83, 0xf9, 0x58, 0x15, 0xf2, 0x30, 0xde, 0xf2, 0x02, 0x82, 0x43, 0xfe, 0x02, 0xa4, 0xc6, 0x1b,
  1412. 0x46, 0x39, 0x3d, 0x6e, 0xc8, 0xbf, 0xa4, 0xfe, 0xfe, 0x7b, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaa,
  1413. 0x2b, 0xd6, 0xf6, 0xa1, 0x12, 0x00, 0x00,
  1414. }