mirror of
https://github.com/JuLi0n21/thumbnailservice.git
synced 2026-04-20 08:20:07 +00:00
275 lines
8.6 KiB
Go
275 lines
8.6 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.6
|
|
// protoc v3.21.12
|
|
// source: thumbnail.proto
|
|
|
|
package proto
|
|
|
|
import (
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
// Enum for the file type
|
|
type FileType int32
|
|
|
|
const (
|
|
FileType_FILE_TYPE_UNSPECIFIED FileType = 0 // Default value for unspecified file type
|
|
FileType_IMAGE FileType = 1 // Image file
|
|
FileType_VIDEO FileType = 2 // Video file
|
|
FileType_PDF FileType = 3 // PDF file
|
|
)
|
|
|
|
// Enum value maps for FileType.
|
|
var (
|
|
FileType_name = map[int32]string{
|
|
0: "FILE_TYPE_UNSPECIFIED",
|
|
1: "IMAGE",
|
|
2: "VIDEO",
|
|
3: "PDF",
|
|
}
|
|
FileType_value = map[string]int32{
|
|
"FILE_TYPE_UNSPECIFIED": 0,
|
|
"IMAGE": 1,
|
|
"VIDEO": 2,
|
|
"PDF": 3,
|
|
}
|
|
)
|
|
|
|
func (x FileType) Enum() *FileType {
|
|
p := new(FileType)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x FileType) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (FileType) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_thumbnail_proto_enumTypes[0].Descriptor()
|
|
}
|
|
|
|
func (FileType) Type() protoreflect.EnumType {
|
|
return &file_thumbnail_proto_enumTypes[0]
|
|
}
|
|
|
|
func (x FileType) Number() protoreflect.EnumNumber {
|
|
return protoreflect.EnumNumber(x)
|
|
}
|
|
|
|
// Deprecated: Use FileType.Descriptor instead.
|
|
func (FileType) EnumDescriptor() ([]byte, []int) {
|
|
return file_thumbnail_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
// Request message for generating thumbnails
|
|
type ThumbnailRequest struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
FileContent []byte `protobuf:"bytes,1,opt,name=file_content,json=fileContent,proto3" json:"file_content,omitempty"` // File content as bytes
|
|
FileType FileType `protobuf:"varint,2,opt,name=file_type,json=fileType,proto3,enum=thumbnail_service.FileType" json:"file_type,omitempty"` // File type (image, video, pdf)
|
|
MaxWidth int32 `protobuf:"varint,3,opt,name=max_width,json=maxWidth,proto3" json:"max_width,omitempty"` // Optional max width for resizing (0 means no limit)
|
|
MaxHeight int32 `protobuf:"varint,4,opt,name=max_height,json=maxHeight,proto3" json:"max_height,omitempty"` // Optional max height for resizing (0 means no limit)
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ThumbnailRequest) Reset() {
|
|
*x = ThumbnailRequest{}
|
|
mi := &file_thumbnail_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ThumbnailRequest) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ThumbnailRequest) ProtoMessage() {}
|
|
|
|
func (x *ThumbnailRequest) ProtoReflect() protoreflect.Message {
|
|
mi := &file_thumbnail_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ThumbnailRequest.ProtoReflect.Descriptor instead.
|
|
func (*ThumbnailRequest) Descriptor() ([]byte, []int) {
|
|
return file_thumbnail_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *ThumbnailRequest) GetFileContent() []byte {
|
|
if x != nil {
|
|
return x.FileContent
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *ThumbnailRequest) GetFileType() FileType {
|
|
if x != nil {
|
|
return x.FileType
|
|
}
|
|
return FileType_FILE_TYPE_UNSPECIFIED
|
|
}
|
|
|
|
func (x *ThumbnailRequest) GetMaxWidth() int32 {
|
|
if x != nil {
|
|
return x.MaxWidth
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *ThumbnailRequest) GetMaxHeight() int32 {
|
|
if x != nil {
|
|
return x.MaxHeight
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// Response message for the thumbnail generation
|
|
type ThumbnailResponse struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` // Message indicating success or failure
|
|
ThumbnailContent []byte `protobuf:"bytes,2,opt,name=thumbnail_content,json=thumbnailContent,proto3" json:"thumbnail_content,omitempty"` // Thumbnail content as bytes
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *ThumbnailResponse) Reset() {
|
|
*x = ThumbnailResponse{}
|
|
mi := &file_thumbnail_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *ThumbnailResponse) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*ThumbnailResponse) ProtoMessage() {}
|
|
|
|
func (x *ThumbnailResponse) ProtoReflect() protoreflect.Message {
|
|
mi := &file_thumbnail_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use ThumbnailResponse.ProtoReflect.Descriptor instead.
|
|
func (*ThumbnailResponse) Descriptor() ([]byte, []int) {
|
|
return file_thumbnail_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *ThumbnailResponse) GetMessage() string {
|
|
if x != nil {
|
|
return x.Message
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *ThumbnailResponse) GetThumbnailContent() []byte {
|
|
if x != nil {
|
|
return x.ThumbnailContent
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var File_thumbnail_proto protoreflect.FileDescriptor
|
|
|
|
const file_thumbnail_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\x0fthumbnail.proto\x12\x11thumbnail_service\"\xab\x01\n" +
|
|
"\x10ThumbnailRequest\x12!\n" +
|
|
"\ffile_content\x18\x01 \x01(\fR\vfileContent\x128\n" +
|
|
"\tfile_type\x18\x02 \x01(\x0e2\x1b.thumbnail_service.FileTypeR\bfileType\x12\x1b\n" +
|
|
"\tmax_width\x18\x03 \x01(\x05R\bmaxWidth\x12\x1d\n" +
|
|
"\n" +
|
|
"max_height\x18\x04 \x01(\x05R\tmaxHeight\"Z\n" +
|
|
"\x11ThumbnailResponse\x12\x18\n" +
|
|
"\amessage\x18\x01 \x01(\tR\amessage\x12+\n" +
|
|
"\x11thumbnail_content\x18\x02 \x01(\fR\x10thumbnailContent*D\n" +
|
|
"\bFileType\x12\x19\n" +
|
|
"\x15FILE_TYPE_UNSPECIFIED\x10\x00\x12\t\n" +
|
|
"\x05IMAGE\x10\x01\x12\t\n" +
|
|
"\x05VIDEO\x10\x02\x12\a\n" +
|
|
"\x03PDF\x10\x032r\n" +
|
|
"\x10ThumbnailService\x12^\n" +
|
|
"\x11GenerateThumbnail\x12#.thumbnail_service.ThumbnailRequest\x1a$.thumbnail_service.ThumbnailResponseB\tZ\a./protob\x06proto3"
|
|
|
|
var (
|
|
file_thumbnail_proto_rawDescOnce sync.Once
|
|
file_thumbnail_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_thumbnail_proto_rawDescGZIP() []byte {
|
|
file_thumbnail_proto_rawDescOnce.Do(func() {
|
|
file_thumbnail_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_thumbnail_proto_rawDesc), len(file_thumbnail_proto_rawDesc)))
|
|
})
|
|
return file_thumbnail_proto_rawDescData
|
|
}
|
|
|
|
var file_thumbnail_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
var file_thumbnail_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
var file_thumbnail_proto_goTypes = []any{
|
|
(FileType)(0), // 0: thumbnail_service.FileType
|
|
(*ThumbnailRequest)(nil), // 1: thumbnail_service.ThumbnailRequest
|
|
(*ThumbnailResponse)(nil), // 2: thumbnail_service.ThumbnailResponse
|
|
}
|
|
var file_thumbnail_proto_depIdxs = []int32{
|
|
0, // 0: thumbnail_service.ThumbnailRequest.file_type:type_name -> thumbnail_service.FileType
|
|
1, // 1: thumbnail_service.ThumbnailService.GenerateThumbnail:input_type -> thumbnail_service.ThumbnailRequest
|
|
2, // 2: thumbnail_service.ThumbnailService.GenerateThumbnail:output_type -> thumbnail_service.ThumbnailResponse
|
|
2, // [2:3] is the sub-list for method output_type
|
|
1, // [1:2] is the sub-list for method input_type
|
|
1, // [1:1] is the sub-list for extension type_name
|
|
1, // [1:1] is the sub-list for extension extendee
|
|
0, // [0:1] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_thumbnail_proto_init() }
|
|
func file_thumbnail_proto_init() {
|
|
if File_thumbnail_proto != nil {
|
|
return
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_thumbnail_proto_rawDesc), len(file_thumbnail_proto_rawDesc)),
|
|
NumEnums: 1,
|
|
NumMessages: 2,
|
|
NumExtensions: 0,
|
|
NumServices: 1,
|
|
},
|
|
GoTypes: file_thumbnail_proto_goTypes,
|
|
DependencyIndexes: file_thumbnail_proto_depIdxs,
|
|
EnumInfos: file_thumbnail_proto_enumTypes,
|
|
MessageInfos: file_thumbnail_proto_msgTypes,
|
|
}.Build()
|
|
File_thumbnail_proto = out.File
|
|
file_thumbnail_proto_goTypes = nil
|
|
file_thumbnail_proto_depIdxs = nil
|
|
}
|