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.

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