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.

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