855 lines
28 KiB
Go
855 lines
28 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: util/file/proto/file.proto
|
|
|
|
package go_micro_server
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type OpenRequest struct {
|
|
Filename string `protobuf:"bytes,1,opt,name=filename,proto3" json:"filename,omitempty"`
|
|
Truncate bool `protobuf:"varint,2,opt,name=truncate,proto3" json:"truncate,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OpenRequest) Reset() { *m = OpenRequest{} }
|
|
func (m *OpenRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*OpenRequest) ProtoMessage() {}
|
|
func (*OpenRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{0}
|
|
}
|
|
|
|
func (m *OpenRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OpenRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *OpenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OpenRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OpenRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OpenRequest.Merge(m, src)
|
|
}
|
|
func (m *OpenRequest) XXX_Size() int {
|
|
return xxx_messageInfo_OpenRequest.Size(m)
|
|
}
|
|
func (m *OpenRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OpenRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OpenRequest proto.InternalMessageInfo
|
|
|
|
func (m *OpenRequest) GetFilename() string {
|
|
if m != nil {
|
|
return m.Filename
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *OpenRequest) GetTruncate() bool {
|
|
if m != nil {
|
|
return m.Truncate
|
|
}
|
|
return false
|
|
}
|
|
|
|
type OpenResponse struct {
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Result bool `protobuf:"varint,2,opt,name=result,proto3" json:"result,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *OpenResponse) Reset() { *m = OpenResponse{} }
|
|
func (m *OpenResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*OpenResponse) ProtoMessage() {}
|
|
func (*OpenResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{1}
|
|
}
|
|
|
|
func (m *OpenResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_OpenResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *OpenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_OpenResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *OpenResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_OpenResponse.Merge(m, src)
|
|
}
|
|
func (m *OpenResponse) XXX_Size() int {
|
|
return xxx_messageInfo_OpenResponse.Size(m)
|
|
}
|
|
func (m *OpenResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_OpenResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_OpenResponse proto.InternalMessageInfo
|
|
|
|
func (m *OpenResponse) GetId() int64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *OpenResponse) GetResult() bool {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return false
|
|
}
|
|
|
|
type CloseRequest struct {
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CloseRequest) Reset() { *m = CloseRequest{} }
|
|
func (m *CloseRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CloseRequest) ProtoMessage() {}
|
|
func (*CloseRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{2}
|
|
}
|
|
|
|
func (m *CloseRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CloseRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CloseRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CloseRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CloseRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CloseRequest.Merge(m, src)
|
|
}
|
|
func (m *CloseRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CloseRequest.Size(m)
|
|
}
|
|
func (m *CloseRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CloseRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CloseRequest proto.InternalMessageInfo
|
|
|
|
func (m *CloseRequest) GetId() int64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CloseResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CloseResponse) Reset() { *m = CloseResponse{} }
|
|
func (m *CloseResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*CloseResponse) ProtoMessage() {}
|
|
func (*CloseResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{3}
|
|
}
|
|
|
|
func (m *CloseResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CloseResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *CloseResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CloseResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CloseResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CloseResponse.Merge(m, src)
|
|
}
|
|
func (m *CloseResponse) XXX_Size() int {
|
|
return xxx_messageInfo_CloseResponse.Size(m)
|
|
}
|
|
func (m *CloseResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CloseResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CloseResponse proto.InternalMessageInfo
|
|
|
|
type StatRequest struct {
|
|
Filename string `protobuf:"bytes,1,opt,name=filename,proto3" json:"filename,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *StatRequest) Reset() { *m = StatRequest{} }
|
|
func (m *StatRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*StatRequest) ProtoMessage() {}
|
|
func (*StatRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{4}
|
|
}
|
|
|
|
func (m *StatRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_StatRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *StatRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_StatRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *StatRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_StatRequest.Merge(m, src)
|
|
}
|
|
func (m *StatRequest) XXX_Size() int {
|
|
return xxx_messageInfo_StatRequest.Size(m)
|
|
}
|
|
func (m *StatRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_StatRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_StatRequest proto.InternalMessageInfo
|
|
|
|
func (m *StatRequest) GetFilename() string {
|
|
if m != nil {
|
|
return m.Filename
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type StatResponse struct {
|
|
Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
|
|
Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
|
|
LastModified int64 `protobuf:"varint,3,opt,name=last_modified,json=lastModified,proto3" json:"last_modified,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *StatResponse) Reset() { *m = StatResponse{} }
|
|
func (m *StatResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*StatResponse) ProtoMessage() {}
|
|
func (*StatResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{5}
|
|
}
|
|
|
|
func (m *StatResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_StatResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *StatResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_StatResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *StatResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_StatResponse.Merge(m, src)
|
|
}
|
|
func (m *StatResponse) XXX_Size() int {
|
|
return xxx_messageInfo_StatResponse.Size(m)
|
|
}
|
|
func (m *StatResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_StatResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_StatResponse proto.InternalMessageInfo
|
|
|
|
func (m *StatResponse) GetType() string {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *StatResponse) GetSize() int64 {
|
|
if m != nil {
|
|
return m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *StatResponse) GetLastModified() int64 {
|
|
if m != nil {
|
|
return m.LastModified
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ReadRequest struct {
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
Size int64 `protobuf:"varint,3,opt,name=size,proto3" json:"size,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} }
|
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadRequest) ProtoMessage() {}
|
|
func (*ReadRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{6}
|
|
}
|
|
|
|
func (m *ReadRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadRequest.Merge(m, src)
|
|
}
|
|
func (m *ReadRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ReadRequest.Size(m)
|
|
}
|
|
func (m *ReadRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadRequest proto.InternalMessageInfo
|
|
|
|
func (m *ReadRequest) GetId() int64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ReadRequest) GetOffset() int64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ReadRequest) GetSize() int64 {
|
|
if m != nil {
|
|
return m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ReadResponse struct {
|
|
Size int64 `protobuf:"varint,1,opt,name=size,proto3" json:"size,omitempty"`
|
|
Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
|
|
Eof bool `protobuf:"varint,3,opt,name=eof,proto3" json:"eof,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadResponse) Reset() { *m = ReadResponse{} }
|
|
func (m *ReadResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadResponse) ProtoMessage() {}
|
|
func (*ReadResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{7}
|
|
}
|
|
|
|
func (m *ReadResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadResponse.Merge(m, src)
|
|
}
|
|
func (m *ReadResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ReadResponse.Size(m)
|
|
}
|
|
func (m *ReadResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadResponse proto.InternalMessageInfo
|
|
|
|
func (m *ReadResponse) GetSize() int64 {
|
|
if m != nil {
|
|
return m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ReadResponse) GetData() []byte {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ReadResponse) GetEof() bool {
|
|
if m != nil {
|
|
return m.Eof
|
|
}
|
|
return false
|
|
}
|
|
|
|
type GetRequest struct {
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
BlockId int64 `protobuf:"varint,2,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetRequest) Reset() { *m = GetRequest{} }
|
|
func (m *GetRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetRequest) ProtoMessage() {}
|
|
func (*GetRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{8}
|
|
}
|
|
|
|
func (m *GetRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetRequest.Merge(m, src)
|
|
}
|
|
func (m *GetRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetRequest.Size(m)
|
|
}
|
|
func (m *GetRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetRequest) GetId() int64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetRequest) GetBlockId() int64 {
|
|
if m != nil {
|
|
return m.BlockId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetResponse struct {
|
|
BlockId int64 `protobuf:"varint,1,opt,name=block_id,json=blockId,proto3" json:"block_id,omitempty"`
|
|
Size int64 `protobuf:"varint,2,opt,name=size,proto3" json:"size,omitempty"`
|
|
Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetResponse) Reset() { *m = GetResponse{} }
|
|
func (m *GetResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetResponse) ProtoMessage() {}
|
|
func (*GetResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{9}
|
|
}
|
|
|
|
func (m *GetResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetResponse.Merge(m, src)
|
|
}
|
|
func (m *GetResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetResponse.Size(m)
|
|
}
|
|
func (m *GetResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetResponse) GetBlockId() int64 {
|
|
if m != nil {
|
|
return m.BlockId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetResponse) GetSize() int64 {
|
|
if m != nil {
|
|
return m.Size
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetResponse) GetData() []byte {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type WriteRequest struct {
|
|
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *WriteRequest) Reset() { *m = WriteRequest{} }
|
|
func (m *WriteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*WriteRequest) ProtoMessage() {}
|
|
func (*WriteRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{10}
|
|
}
|
|
|
|
func (m *WriteRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_WriteRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *WriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_WriteRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *WriteRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_WriteRequest.Merge(m, src)
|
|
}
|
|
func (m *WriteRequest) XXX_Size() int {
|
|
return xxx_messageInfo_WriteRequest.Size(m)
|
|
}
|
|
func (m *WriteRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_WriteRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_WriteRequest proto.InternalMessageInfo
|
|
|
|
func (m *WriteRequest) GetId() int64 {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *WriteRequest) GetOffset() int64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *WriteRequest) GetData() []byte {
|
|
if m != nil {
|
|
return m.Data
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type WriteResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *WriteResponse) Reset() { *m = WriteResponse{} }
|
|
func (m *WriteResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*WriteResponse) ProtoMessage() {}
|
|
func (*WriteResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_c90a6c4a93f92bf4, []int{11}
|
|
}
|
|
|
|
func (m *WriteResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_WriteResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *WriteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_WriteResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *WriteResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_WriteResponse.Merge(m, src)
|
|
}
|
|
func (m *WriteResponse) XXX_Size() int {
|
|
return xxx_messageInfo_WriteResponse.Size(m)
|
|
}
|
|
func (m *WriteResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_WriteResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_WriteResponse proto.InternalMessageInfo
|
|
|
|
func init() {
|
|
proto.RegisterType((*OpenRequest)(nil), "go.micro.server.OpenRequest")
|
|
proto.RegisterType((*OpenResponse)(nil), "go.micro.server.OpenResponse")
|
|
proto.RegisterType((*CloseRequest)(nil), "go.micro.server.CloseRequest")
|
|
proto.RegisterType((*CloseResponse)(nil), "go.micro.server.CloseResponse")
|
|
proto.RegisterType((*StatRequest)(nil), "go.micro.server.StatRequest")
|
|
proto.RegisterType((*StatResponse)(nil), "go.micro.server.StatResponse")
|
|
proto.RegisterType((*ReadRequest)(nil), "go.micro.server.ReadRequest")
|
|
proto.RegisterType((*ReadResponse)(nil), "go.micro.server.ReadResponse")
|
|
proto.RegisterType((*GetRequest)(nil), "go.micro.server.GetRequest")
|
|
proto.RegisterType((*GetResponse)(nil), "go.micro.server.GetResponse")
|
|
proto.RegisterType((*WriteRequest)(nil), "go.micro.server.WriteRequest")
|
|
proto.RegisterType((*WriteResponse)(nil), "go.micro.server.WriteResponse")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("util/file/proto/file.proto", fileDescriptor_c90a6c4a93f92bf4) }
|
|
|
|
var fileDescriptor_c90a6c4a93f92bf4 = []byte{
|
|
// 447 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcf, 0x8e, 0xd3, 0x30,
|
|
0x10, 0xc6, 0x9b, 0x3f, 0x2c, 0x61, 0x92, 0x52, 0xe4, 0x03, 0x2a, 0x11, 0xac, 0x56, 0xe6, 0xb2,
|
|
0x5c, 0xb2, 0x12, 0x48, 0xf0, 0x00, 0x68, 0x61, 0x17, 0x09, 0x81, 0xcc, 0x81, 0x03, 0x87, 0x55,
|
|
0xb6, 0x9e, 0x20, 0x8b, 0x34, 0x0e, 0xb1, 0x83, 0x04, 0x2f, 0xcd, 0x2b, 0x20, 0x3b, 0x6e, 0xeb,
|
|
0xb6, 0x89, 0x84, 0xf6, 0x36, 0xe3, 0x19, 0xff, 0xfc, 0xd9, 0xf9, 0x26, 0x90, 0xf7, 0x5a, 0xd4,
|
|
0x17, 0x95, 0xa8, 0xf1, 0xa2, 0xed, 0xa4, 0x96, 0x36, 0x2c, 0x6c, 0x48, 0x16, 0xdf, 0x65, 0xb1,
|
|
0x16, 0xab, 0x4e, 0x16, 0x0a, 0xbb, 0x5f, 0xd8, 0xd1, 0x4b, 0x48, 0x3f, 0xb5, 0xd8, 0x30, 0xfc,
|
|
0xd9, 0xa3, 0xd2, 0x24, 0x87, 0xc4, 0x74, 0x37, 0xe5, 0x1a, 0x97, 0xc1, 0x59, 0x70, 0xfe, 0x80,
|
|
0x6d, 0x73, 0x53, 0xd3, 0x5d, 0xdf, 0xac, 0x4a, 0x8d, 0xcb, 0xf0, 0x2c, 0x38, 0x4f, 0xd8, 0x36,
|
|
0xa7, 0xaf, 0x21, 0x1b, 0x30, 0xaa, 0x95, 0x8d, 0x42, 0xf2, 0x10, 0x42, 0xc1, 0x2d, 0x21, 0x62,
|
|
0xa1, 0xe0, 0xe4, 0x31, 0x9c, 0x74, 0xa8, 0xfa, 0x5a, 0xbb, 0x9d, 0x2e, 0xa3, 0xa7, 0x90, 0xbd,
|
|
0xad, 0xa5, 0xc2, 0xcd, 0xf9, 0x07, 0xfb, 0xe8, 0x02, 0xe6, 0xae, 0x3e, 0x80, 0xe9, 0x0b, 0x48,
|
|
0xbf, 0xe8, 0x52, 0xff, 0x87, 0x5e, 0xfa, 0x0d, 0xb2, 0xa1, 0xd5, 0x69, 0x22, 0x10, 0xeb, 0xdf,
|
|
0xed, 0xa6, 0xcf, 0xc6, 0x66, 0x4d, 0x89, 0x3f, 0xc3, 0x7d, 0x22, 0x66, 0x63, 0xf2, 0x1c, 0xe6,
|
|
0x75, 0xa9, 0xf4, 0xcd, 0x5a, 0x72, 0x51, 0x09, 0xe4, 0xcb, 0xc8, 0x16, 0x33, 0xb3, 0xf8, 0xd1,
|
|
0xad, 0xd1, 0x6b, 0x48, 0x19, 0x96, 0x7c, 0x42, 0xb7, 0xb9, 0xaf, 0xac, 0x2a, 0x85, 0xda, 0x91,
|
|
0x5d, 0xb6, 0x3d, 0x2f, 0xda, 0x9d, 0x47, 0xaf, 0x20, 0x1b, 0x50, 0x3b, 0x9d, 0xb6, 0x27, 0xf0,
|
|
0x34, 0x11, 0x88, 0x79, 0xa9, 0x4b, 0x4b, 0xcb, 0x98, 0x8d, 0xc9, 0x23, 0x88, 0x50, 0x56, 0x16,
|
|
0x95, 0x30, 0x13, 0xd2, 0x37, 0x00, 0xef, 0x51, 0x4f, 0x69, 0x7a, 0x02, 0xc9, 0x6d, 0x2d, 0x57,
|
|
0x3f, 0x6e, 0x04, 0x77, 0xaa, 0xee, 0xdb, 0xfc, 0x9a, 0xd3, 0xcf, 0x90, 0xda, 0x8d, 0x4e, 0x81,
|
|
0xdf, 0x19, 0xec, 0x75, 0x8e, 0x3e, 0xd8, 0x46, 0x5c, 0xb4, 0x13, 0x47, 0x3f, 0x40, 0xf6, 0xb5,
|
|
0x13, 0x1a, 0xef, 0xf0, 0x40, 0x47, 0xac, 0x05, 0xcc, 0x1d, 0x6b, 0xd0, 0xf7, 0xf2, 0x6f, 0x08,
|
|
0xf1, 0x3b, 0x51, 0x23, 0xb9, 0x84, 0xd8, 0xd8, 0x8e, 0x3c, 0x2d, 0x0e, 0x7c, 0x5d, 0x78, 0xa6,
|
|
0xce, 0x9f, 0x4d, 0x54, 0x9d, 0xa5, 0x66, 0x06, 0x63, 0x9c, 0x32, 0x82, 0xf1, 0xbc, 0x36, 0x82,
|
|
0xf1, 0xed, 0x35, 0x60, 0xcc, 0x87, 0x1c, 0xc1, 0x78, 0x56, 0x19, 0xc1, 0xf8, 0x5f, 0x9f, 0xce,
|
|
0xc8, 0x15, 0xdc, 0xb3, 0xd7, 0x25, 0xc7, 0x9d, 0xfe, 0x93, 0xe6, 0xa7, 0x53, 0x65, 0x9f, 0x64,
|
|
0xa7, 0x67, 0x84, 0xe4, 0x4f, 0xdd, 0x08, 0x69, 0x7f, 0xe8, 0x66, 0xb7, 0x27, 0xf6, 0xf7, 0xf1,
|
|
0xea, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaf, 0x08, 0x7e, 0x74, 0x5c, 0x04, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// FileClient is the client API for File service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type FileClient interface {
|
|
Open(ctx context.Context, in *OpenRequest, opts ...grpc.CallOption) (*OpenResponse, error)
|
|
Stat(ctx context.Context, in *StatRequest, opts ...grpc.CallOption) (*StatResponse, error)
|
|
Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error)
|
|
Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error)
|
|
Close(ctx context.Context, in *CloseRequest, opts ...grpc.CallOption) (*CloseResponse, error)
|
|
}
|
|
|
|
type fileClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewFileClient(cc *grpc.ClientConn) FileClient {
|
|
return &fileClient{cc}
|
|
}
|
|
|
|
func (c *fileClient) Open(ctx context.Context, in *OpenRequest, opts ...grpc.CallOption) (*OpenResponse, error) {
|
|
out := new(OpenResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.server.File/Open", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *fileClient) Stat(ctx context.Context, in *StatRequest, opts ...grpc.CallOption) (*StatResponse, error) {
|
|
out := new(StatResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.server.File/Stat", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *fileClient) Read(ctx context.Context, in *ReadRequest, opts ...grpc.CallOption) (*ReadResponse, error) {
|
|
out := new(ReadResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.server.File/Read", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *fileClient) Write(ctx context.Context, in *WriteRequest, opts ...grpc.CallOption) (*WriteResponse, error) {
|
|
out := new(WriteResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.server.File/Write", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *fileClient) Close(ctx context.Context, in *CloseRequest, opts ...grpc.CallOption) (*CloseResponse, error) {
|
|
out := new(CloseResponse)
|
|
err := c.cc.Invoke(ctx, "/go.micro.server.File/Close", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// FileServer is the server API for File service.
|
|
type FileServer interface {
|
|
Open(context.Context, *OpenRequest) (*OpenResponse, error)
|
|
Stat(context.Context, *StatRequest) (*StatResponse, error)
|
|
Read(context.Context, *ReadRequest) (*ReadResponse, error)
|
|
Write(context.Context, *WriteRequest) (*WriteResponse, error)
|
|
Close(context.Context, *CloseRequest) (*CloseResponse, error)
|
|
}
|
|
|
|
// UnimplementedFileServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedFileServer struct {
|
|
}
|
|
|
|
func (*UnimplementedFileServer) Open(ctx context.Context, req *OpenRequest) (*OpenResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Open not implemented")
|
|
}
|
|
func (*UnimplementedFileServer) Stat(ctx context.Context, req *StatRequest) (*StatResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Stat not implemented")
|
|
}
|
|
func (*UnimplementedFileServer) Read(ctx context.Context, req *ReadRequest) (*ReadResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Read not implemented")
|
|
}
|
|
func (*UnimplementedFileServer) Write(ctx context.Context, req *WriteRequest) (*WriteResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Write not implemented")
|
|
}
|
|
func (*UnimplementedFileServer) Close(ctx context.Context, req *CloseRequest) (*CloseResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Close not implemented")
|
|
}
|
|
|
|
func RegisterFileServer(s *grpc.Server, srv FileServer) {
|
|
s.RegisterService(&_File_serviceDesc, srv)
|
|
}
|
|
|
|
func _File_Open_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(OpenRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FileServer).Open(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.server.File/Open",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FileServer).Open(ctx, req.(*OpenRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _File_Stat_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(StatRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FileServer).Stat(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.server.File/Stat",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FileServer).Stat(ctx, req.(*StatRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _File_Read_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ReadRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FileServer).Read(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.server.File/Read",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FileServer).Read(ctx, req.(*ReadRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _File_Write_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(WriteRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FileServer).Write(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.server.File/Write",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FileServer).Write(ctx, req.(*WriteRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _File_Close_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CloseRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(FileServer).Close(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/go.micro.server.File/Close",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(FileServer).Close(ctx, req.(*CloseRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _File_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "go.micro.server.File",
|
|
HandlerType: (*FileServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Open",
|
|
Handler: _File_Open_Handler,
|
|
},
|
|
{
|
|
MethodName: "Stat",
|
|
Handler: _File_Stat_Handler,
|
|
},
|
|
{
|
|
MethodName: "Read",
|
|
Handler: _File_Read_Handler,
|
|
},
|
|
{
|
|
MethodName: "Write",
|
|
Handler: _File_Write_Handler,
|
|
},
|
|
{
|
|
MethodName: "Close",
|
|
Handler: _File_Close_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "util/file/proto/file.proto",
|
|
}
|