diff --git a/cmd/isulad_img/grpc.go b/cmd/isulad_img/grpc.go index e1b7f072ce0c92b4d953525dfbbdc31678c4beb0..9268de4af7b1ccc1b60295f21c00f73c4a414b6a 100644 --- a/cmd/isulad_img/grpc.go +++ b/cmd/isulad_img/grpc.go @@ -261,12 +261,12 @@ func (s *grpcImageService) ListImages(ctx context.Context, req *pb.ListImagesReq resp := &pb.ListImagesResponse{} for _, img := range images.Images { - respImg, err := transImageToPBImage(img) - if err != nil { + respImg, err2 := transImageToPBImage(img) + if err2 != nil { return &pb.ListImagesResponse{ - Errmsg: err.Error(), + Errmsg: err2.Error(), Cc: 1, - }, err + }, err2 } resp.Images = append(resp.Images, respImg) @@ -637,6 +637,30 @@ func (s *grpcImageService) GraphdriverStatus(ctx context.Context, req *pb.Graphd return resp, nil } +// get metadata of graphdriver +func (s *grpcImageService) GraphdriverMetadata(ctx context.Context, req *pb.GraphdriverMetadataRequest) (*pb.GraphdriverMetadataResponse, error) { + var err error + + if req == nil || req.NameId == "" { + err = errors.New("Lack infomation for driver metadata") + return &pb.GraphdriverMetadataResponse{ + Errmsg: err.Error(), + Cc: 1, + }, err + } + + resp := &pb.GraphdriverMetadataResponse{} + resp.Metadata, resp.Name, err = storageMetadata(s.gopts, req.NameId) + if err != nil { + return &pb.GraphdriverMetadataResponse{ + Errmsg: err.Error(), + Cc: 1, + }, err + } + + return resp, nil +} + // login registry func (s *grpcImageService) Login(ctx context.Context, req *pb.LoginRequest) (*pb.LoginResponse, error) { if req == nil || req.Server == "" || req.Username == "" || req.Password == "" { diff --git a/cmd/isulad_img/storage_metadata.go b/cmd/isulad_img/storage_metadata.go new file mode 100644 index 0000000000000000000000000000000000000000..67b1244ae7d649a936b4cf5f58c7d17571a48d45 --- /dev/null +++ b/cmd/isulad_img/storage_metadata.go @@ -0,0 +1,50 @@ +// Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved. +// iSulad-img licensed under the Mulan PSL v1. +// You can use this software according to the terms and conditions of the Mulan PSL v1. +// You may obtain a copy of Mulan PSL v1 at: +// http://license.coscl.org.cn/MulanPSL +// THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR +// PURPOSE. +// See the Mulan PSL v1 for more details. +// Description: iSulad image kit +// Author: wangfengtu +// Create: 2020-03-20 + +package main + +import "fmt" + +func storageMetadata(gopts *globalOptions, nameID string) (metadata map[string]string, name string, err error) { + imageService, err := getImageService(gopts) + if err != nil { + return nil, "", fmt.Errorf("failed to get image service: %v", err) + } + + runtimeService := getRuntimeService("", imageService) + if runtimeService == nil { + return nil, "", fmt.Errorf("failed to get runtime service: %v", err) + } + + layerID, err := runtimeService.GetContainerLayerID(nameID) + if err != nil { + return nil, "", fmt.Errorf("failed to get container layer id by %v: %v", nameID, err) + } + + store, err := getStorageStore(gopts) + if err != nil { + return nil, "", err + } + + driver, err := store.GraphDriver() + if err != nil { + return nil, "", err + } + + metadata, err = driver.Metadata(layerID) + if err != nil { + return nil, "", err + } + + return metadata, driver.String(), err +} diff --git a/isula/isula_image.pb.go b/isula/isula_image.pb.go index d683884d55b0ecfc2d6c9524da0a6442162cdceb..d40221aefd7207e2da78831273d75cc019438214 100644 --- a/isula/isula_image.pb.go +++ b/isula/isula_image.pb.go @@ -43,7 +43,7 @@ func (x Protocol) String() string { return proto.EnumName(Protocol_name, int32(x)) } func (Protocol) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{0} + return fileDescriptor_isula_image_9d49025646188a13, []int{0} } type MountPropagation int32 @@ -73,7 +73,7 @@ func (x MountPropagation) String() string { return proto.EnumName(MountPropagation_name, int32(x)) } func (MountPropagation) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{1} + return fileDescriptor_isula_image_9d49025646188a13, []int{1} } type HealthCheckRequest struct { @@ -86,7 +86,7 @@ func (m *HealthCheckRequest) Reset() { *m = HealthCheckRequest{} } func (m *HealthCheckRequest) String() string { return proto.CompactTextString(m) } func (*HealthCheckRequest) ProtoMessage() {} func (*HealthCheckRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{0} + return fileDescriptor_isula_image_9d49025646188a13, []int{0} } func (m *HealthCheckRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_HealthCheckRequest.Unmarshal(m, b) @@ -118,7 +118,7 @@ func (m *HealthCheckResponse) Reset() { *m = HealthCheckResponse{} } func (m *HealthCheckResponse) String() string { return proto.CompactTextString(m) } func (*HealthCheckResponse) ProtoMessage() {} func (*HealthCheckResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{1} + return fileDescriptor_isula_image_9d49025646188a13, []int{1} } func (m *HealthCheckResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_HealthCheckResponse.Unmarshal(m, b) @@ -165,7 +165,7 @@ func (m *LoginRequest) Reset() { *m = LoginRequest{} } func (m *LoginRequest) String() string { return proto.CompactTextString(m) } func (*LoginRequest) ProtoMessage() {} func (*LoginRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{2} + return fileDescriptor_isula_image_9d49025646188a13, []int{2} } func (m *LoginRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoginRequest.Unmarshal(m, b) @@ -218,7 +218,7 @@ func (m *LoginResponse) Reset() { *m = LoginResponse{} } func (m *LoginResponse) String() string { return proto.CompactTextString(m) } func (*LoginResponse) ProtoMessage() {} func (*LoginResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{3} + return fileDescriptor_isula_image_9d49025646188a13, []int{3} } func (m *LoginResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoginResponse.Unmarshal(m, b) @@ -263,7 +263,7 @@ func (m *LogoutRequest) Reset() { *m = LogoutRequest{} } func (m *LogoutRequest) String() string { return proto.CompactTextString(m) } func (*LogoutRequest) ProtoMessage() {} func (*LogoutRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{4} + return fileDescriptor_isula_image_9d49025646188a13, []int{4} } func (m *LogoutRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LogoutRequest.Unmarshal(m, b) @@ -302,7 +302,7 @@ func (m *LogoutResponse) Reset() { *m = LogoutResponse{} } func (m *LogoutResponse) String() string { return proto.CompactTextString(m) } func (*LogoutResponse) ProtoMessage() {} func (*LogoutResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{5} + return fileDescriptor_isula_image_9d49025646188a13, []int{5} } func (m *LogoutResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LogoutResponse.Unmarshal(m, b) @@ -351,7 +351,7 @@ func (m *ContainerExportRequest) Reset() { *m = ContainerExportRequest{} func (m *ContainerExportRequest) String() string { return proto.CompactTextString(m) } func (*ContainerExportRequest) ProtoMessage() {} func (*ContainerExportRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{6} + return fileDescriptor_isula_image_9d49025646188a13, []int{6} } func (m *ContainerExportRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerExportRequest.Unmarshal(m, b) @@ -418,7 +418,7 @@ func (m *ContainerExportResponse) Reset() { *m = ContainerExportResponse func (m *ContainerExportResponse) String() string { return proto.CompactTextString(m) } func (*ContainerExportResponse) ProtoMessage() {} func (*ContainerExportResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{7} + return fileDescriptor_isula_image_9d49025646188a13, []int{7} } func (m *ContainerExportResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerExportResponse.Unmarshal(m, b) @@ -464,7 +464,7 @@ func (m *LoadImageRequest) Reset() { *m = LoadImageRequest{} } func (m *LoadImageRequest) String() string { return proto.CompactTextString(m) } func (*LoadImageRequest) ProtoMessage() {} func (*LoadImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{8} + return fileDescriptor_isula_image_9d49025646188a13, []int{8} } func (m *LoadImageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoadImageRequest.Unmarshal(m, b) @@ -511,7 +511,7 @@ func (m *LoadImageResponose) Reset() { *m = LoadImageResponose{} } func (m *LoadImageResponose) String() string { return proto.CompactTextString(m) } func (*LoadImageResponose) ProtoMessage() {} func (*LoadImageResponose) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{9} + return fileDescriptor_isula_image_9d49025646188a13, []int{9} } func (m *LoadImageResponose) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LoadImageResponose.Unmarshal(m, b) @@ -562,7 +562,7 @@ func (m *GraphdriverStatusRequest) Reset() { *m = GraphdriverStatusReque func (m *GraphdriverStatusRequest) String() string { return proto.CompactTextString(m) } func (*GraphdriverStatusRequest) ProtoMessage() {} func (*GraphdriverStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{10} + return fileDescriptor_isula_image_9d49025646188a13, []int{10} } func (m *GraphdriverStatusRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GraphdriverStatusRequest.Unmarshal(m, b) @@ -595,7 +595,7 @@ func (m *GraphdriverStatusResponse) Reset() { *m = GraphdriverStatusResp func (m *GraphdriverStatusResponse) String() string { return proto.CompactTextString(m) } func (*GraphdriverStatusResponse) ProtoMessage() {} func (*GraphdriverStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{11} + return fileDescriptor_isula_image_9d49025646188a13, []int{11} } func (m *GraphdriverStatusResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_GraphdriverStatusResponse.Unmarshal(m, b) @@ -636,6 +636,106 @@ func (m *GraphdriverStatusResponse) GetCc() uint32 { return 0 } +type GraphdriverMetadataRequest struct { + NameId string `protobuf:"bytes,1,opt,name=name_id,json=nameId,proto3" json:"name_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GraphdriverMetadataRequest) Reset() { *m = GraphdriverMetadataRequest{} } +func (m *GraphdriverMetadataRequest) String() string { return proto.CompactTextString(m) } +func (*GraphdriverMetadataRequest) ProtoMessage() {} +func (*GraphdriverMetadataRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_isula_image_9d49025646188a13, []int{12} +} +func (m *GraphdriverMetadataRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GraphdriverMetadataRequest.Unmarshal(m, b) +} +func (m *GraphdriverMetadataRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GraphdriverMetadataRequest.Marshal(b, m, deterministic) +} +func (dst *GraphdriverMetadataRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GraphdriverMetadataRequest.Merge(dst, src) +} +func (m *GraphdriverMetadataRequest) XXX_Size() int { + return xxx_messageInfo_GraphdriverMetadataRequest.Size(m) +} +func (m *GraphdriverMetadataRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GraphdriverMetadataRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GraphdriverMetadataRequest proto.InternalMessageInfo + +func (m *GraphdriverMetadataRequest) GetNameId() string { + if m != nil { + return m.NameId + } + return "" +} + +type GraphdriverMetadataResponse struct { + Metadata map[string]string `protobuf:"bytes,1,rep,name=metadata,proto3" json:"metadata,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Errmsg string `protobuf:"bytes,3,opt,name=errmsg,proto3" json:"errmsg,omitempty"` + Cc uint32 `protobuf:"varint,4,opt,name=cc,proto3" json:"cc,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GraphdriverMetadataResponse) Reset() { *m = GraphdriverMetadataResponse{} } +func (m *GraphdriverMetadataResponse) String() string { return proto.CompactTextString(m) } +func (*GraphdriverMetadataResponse) ProtoMessage() {} +func (*GraphdriverMetadataResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_isula_image_9d49025646188a13, []int{13} +} +func (m *GraphdriverMetadataResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GraphdriverMetadataResponse.Unmarshal(m, b) +} +func (m *GraphdriverMetadataResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GraphdriverMetadataResponse.Marshal(b, m, deterministic) +} +func (dst *GraphdriverMetadataResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GraphdriverMetadataResponse.Merge(dst, src) +} +func (m *GraphdriverMetadataResponse) XXX_Size() int { + return xxx_messageInfo_GraphdriverMetadataResponse.Size(m) +} +func (m *GraphdriverMetadataResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GraphdriverMetadataResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GraphdriverMetadataResponse proto.InternalMessageInfo + +func (m *GraphdriverMetadataResponse) GetMetadata() map[string]string { + if m != nil { + return m.Metadata + } + return nil +} + +func (m *GraphdriverMetadataResponse) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *GraphdriverMetadataResponse) GetErrmsg() string { + if m != nil { + return m.Errmsg + } + return "" +} + +func (m *GraphdriverMetadataResponse) GetCc() uint32 { + if m != nil { + return m.Cc + } + return 0 +} + type ContainerFsUsageRequest struct { NameId string `protobuf:"bytes,1,opt,name=name_id,json=nameId,proto3" json:"name_id,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -647,7 +747,7 @@ func (m *ContainerFsUsageRequest) Reset() { *m = ContainerFsUsageRequest func (m *ContainerFsUsageRequest) String() string { return proto.CompactTextString(m) } func (*ContainerFsUsageRequest) ProtoMessage() {} func (*ContainerFsUsageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{12} + return fileDescriptor_isula_image_9d49025646188a13, []int{14} } func (m *ContainerFsUsageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerFsUsageRequest.Unmarshal(m, b) @@ -687,7 +787,7 @@ func (m *ContainerFsUsageResponse) Reset() { *m = ContainerFsUsageRespon func (m *ContainerFsUsageResponse) String() string { return proto.CompactTextString(m) } func (*ContainerFsUsageResponse) ProtoMessage() {} func (*ContainerFsUsageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{13} + return fileDescriptor_isula_image_9d49025646188a13, []int{15} } func (m *ContainerFsUsageResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerFsUsageResponse.Unmarshal(m, b) @@ -740,7 +840,7 @@ func (m *ContainerUmountRequest) Reset() { *m = ContainerUmountRequest{} func (m *ContainerUmountRequest) String() string { return proto.CompactTextString(m) } func (*ContainerUmountRequest) ProtoMessage() {} func (*ContainerUmountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{14} + return fileDescriptor_isula_image_9d49025646188a13, []int{16} } func (m *ContainerUmountRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerUmountRequest.Unmarshal(m, b) @@ -786,7 +886,7 @@ func (m *ContainerUmountResponse) Reset() { *m = ContainerUmountResponse func (m *ContainerUmountResponse) String() string { return proto.CompactTextString(m) } func (*ContainerUmountResponse) ProtoMessage() {} func (*ContainerUmountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{15} + return fileDescriptor_isula_image_9d49025646188a13, []int{17} } func (m *ContainerUmountResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerUmountResponse.Unmarshal(m, b) @@ -831,7 +931,7 @@ func (m *ContainerMountRequest) Reset() { *m = ContainerMountRequest{} } func (m *ContainerMountRequest) String() string { return proto.CompactTextString(m) } func (*ContainerMountRequest) ProtoMessage() {} func (*ContainerMountRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{16} + return fileDescriptor_isula_image_9d49025646188a13, []int{18} } func (m *ContainerMountRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerMountRequest.Unmarshal(m, b) @@ -870,7 +970,7 @@ func (m *ContainerMountResponse) Reset() { *m = ContainerMountResponse{} func (m *ContainerMountResponse) String() string { return proto.CompactTextString(m) } func (*ContainerMountResponse) ProtoMessage() {} func (*ContainerMountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{17} + return fileDescriptor_isula_image_9d49025646188a13, []int{19} } func (m *ContainerMountResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerMountResponse.Unmarshal(m, b) @@ -915,7 +1015,7 @@ func (m *ContainerRemoveRequest) Reset() { *m = ContainerRemoveRequest{} func (m *ContainerRemoveRequest) String() string { return proto.CompactTextString(m) } func (*ContainerRemoveRequest) ProtoMessage() {} func (*ContainerRemoveRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{18} + return fileDescriptor_isula_image_9d49025646188a13, []int{20} } func (m *ContainerRemoveRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerRemoveRequest.Unmarshal(m, b) @@ -954,7 +1054,7 @@ func (m *ContainerRemoveResponse) Reset() { *m = ContainerRemoveResponse func (m *ContainerRemoveResponse) String() string { return proto.CompactTextString(m) } func (*ContainerRemoveResponse) ProtoMessage() {} func (*ContainerRemoveResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{19} + return fileDescriptor_isula_image_9d49025646188a13, []int{21} } func (m *ContainerRemoveResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerRemoveResponse.Unmarshal(m, b) @@ -1002,7 +1102,7 @@ func (m *ContainerPrepareRequest) Reset() { *m = ContainerPrepareRequest func (m *ContainerPrepareRequest) String() string { return proto.CompactTextString(m) } func (*ContainerPrepareRequest) ProtoMessage() {} func (*ContainerPrepareRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{20} + return fileDescriptor_isula_image_9d49025646188a13, []int{22} } func (m *ContainerPrepareRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerPrepareRequest.Unmarshal(m, b) @@ -1064,7 +1164,7 @@ func (m *ContainerPrepareResponse) Reset() { *m = ContainerPrepareRespon func (m *ContainerPrepareResponse) String() string { return proto.CompactTextString(m) } func (*ContainerPrepareResponse) ProtoMessage() {} func (*ContainerPrepareResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{21} + return fileDescriptor_isula_image_9d49025646188a13, []int{23} } func (m *ContainerPrepareResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ContainerPrepareResponse.Unmarshal(m, b) @@ -1122,7 +1222,7 @@ func (m *ListContainersRequest) Reset() { *m = ListContainersRequest{} } func (m *ListContainersRequest) String() string { return proto.CompactTextString(m) } func (*ListContainersRequest) ProtoMessage() {} func (*ListContainersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{22} + return fileDescriptor_isula_image_9d49025646188a13, []int{24} } func (m *ListContainersRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListContainersRequest.Unmarshal(m, b) @@ -1155,7 +1255,7 @@ func (m *ListContainersResponse) Reset() { *m = ListContainersResponse{} func (m *ListContainersResponse) String() string { return proto.CompactTextString(m) } func (*ListContainersResponse) ProtoMessage() {} func (*ListContainersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{23} + return fileDescriptor_isula_image_9d49025646188a13, []int{25} } func (m *ListContainersResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListContainersResponse.Unmarshal(m, b) @@ -1214,7 +1314,7 @@ func (m *DNSConfig) Reset() { *m = DNSConfig{} } func (m *DNSConfig) String() string { return proto.CompactTextString(m) } func (*DNSConfig) ProtoMessage() {} func (*DNSConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{24} + return fileDescriptor_isula_image_9d49025646188a13, []int{26} } func (m *DNSConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_DNSConfig.Unmarshal(m, b) @@ -1274,7 +1374,7 @@ func (m *PortMapping) Reset() { *m = PortMapping{} } func (m *PortMapping) String() string { return proto.CompactTextString(m) } func (*PortMapping) ProtoMessage() {} func (*PortMapping) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{25} + return fileDescriptor_isula_image_9d49025646188a13, []int{27} } func (m *PortMapping) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PortMapping.Unmarshal(m, b) @@ -1343,7 +1443,7 @@ func (m *Mount) Reset() { *m = Mount{} } func (m *Mount) String() string { return proto.CompactTextString(m) } func (*Mount) ProtoMessage() {} func (*Mount) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{26} + return fileDescriptor_isula_image_9d49025646188a13, []int{28} } func (m *Mount) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Mount.Unmarshal(m, b) @@ -1415,7 +1515,7 @@ func (m *NamespaceOption) Reset() { *m = NamespaceOption{} } func (m *NamespaceOption) String() string { return proto.CompactTextString(m) } func (*NamespaceOption) ProtoMessage() {} func (*NamespaceOption) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{27} + return fileDescriptor_isula_image_9d49025646188a13, []int{29} } func (m *NamespaceOption) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_NamespaceOption.Unmarshal(m, b) @@ -1469,7 +1569,7 @@ func (m *Int64Value) Reset() { *m = Int64Value{} } func (m *Int64Value) String() string { return proto.CompactTextString(m) } func (*Int64Value) ProtoMessage() {} func (*Int64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{28} + return fileDescriptor_isula_image_9d49025646188a13, []int{30} } func (m *Int64Value) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Int64Value.Unmarshal(m, b) @@ -1511,7 +1611,7 @@ func (m *SELinuxOption) Reset() { *m = SELinuxOption{} } func (m *SELinuxOption) String() string { return proto.CompactTextString(m) } func (*SELinuxOption) ProtoMessage() {} func (*SELinuxOption) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{29} + return fileDescriptor_isula_image_9d49025646188a13, []int{31} } func (m *SELinuxOption) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_SELinuxOption.Unmarshal(m, b) @@ -1599,7 +1699,7 @@ func (m *LinuxSandboxSecurityContext) Reset() { *m = LinuxSandboxSecurit func (m *LinuxSandboxSecurityContext) String() string { return proto.CompactTextString(m) } func (*LinuxSandboxSecurityContext) ProtoMessage() {} func (*LinuxSandboxSecurityContext) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{30} + return fileDescriptor_isula_image_9d49025646188a13, []int{32} } func (m *LinuxSandboxSecurityContext) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LinuxSandboxSecurityContext.Unmarshal(m, b) @@ -1688,7 +1788,7 @@ func (m *LinuxPodSandboxConfig) Reset() { *m = LinuxPodSandboxConfig{} } func (m *LinuxPodSandboxConfig) String() string { return proto.CompactTextString(m) } func (*LinuxPodSandboxConfig) ProtoMessage() {} func (*LinuxPodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{31} + return fileDescriptor_isula_image_9d49025646188a13, []int{33} } func (m *LinuxPodSandboxConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_LinuxPodSandboxConfig.Unmarshal(m, b) @@ -1751,7 +1851,7 @@ func (m *PodSandboxMetadata) Reset() { *m = PodSandboxMetadata{} } func (m *PodSandboxMetadata) String() string { return proto.CompactTextString(m) } func (*PodSandboxMetadata) ProtoMessage() {} func (*PodSandboxMetadata) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{32} + return fileDescriptor_isula_image_9d49025646188a13, []int{34} } func (m *PodSandboxMetadata) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodSandboxMetadata.Unmarshal(m, b) @@ -1859,7 +1959,7 @@ func (m *PodSandboxConfig) Reset() { *m = PodSandboxConfig{} } func (m *PodSandboxConfig) String() string { return proto.CompactTextString(m) } func (*PodSandboxConfig) ProtoMessage() {} func (*PodSandboxConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{33} + return fileDescriptor_isula_image_9d49025646188a13, []int{35} } func (m *PodSandboxConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PodSandboxConfig.Unmarshal(m, b) @@ -1949,7 +2049,7 @@ func (m *ImageSpec) Reset() { *m = ImageSpec{} } func (m *ImageSpec) String() string { return proto.CompactTextString(m) } func (*ImageSpec) ProtoMessage() {} func (*ImageSpec) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{34} + return fileDescriptor_isula_image_9d49025646188a13, []int{36} } func (m *ImageSpec) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageSpec.Unmarshal(m, b) @@ -1988,7 +2088,7 @@ func (m *ImageFilter) Reset() { *m = ImageFilter{} } func (m *ImageFilter) String() string { return proto.CompactTextString(m) } func (*ImageFilter) ProtoMessage() {} func (*ImageFilter) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{35} + return fileDescriptor_isula_image_9d49025646188a13, []int{37} } func (m *ImageFilter) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageFilter.Unmarshal(m, b) @@ -2028,7 +2128,7 @@ func (m *ListImagesRequest) Reset() { *m = ListImagesRequest{} } func (m *ListImagesRequest) String() string { return proto.CompactTextString(m) } func (*ListImagesRequest) ProtoMessage() {} func (*ListImagesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{36} + return fileDescriptor_isula_image_9d49025646188a13, []int{38} } func (m *ListImagesRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListImagesRequest.Unmarshal(m, b) @@ -2094,7 +2194,7 @@ func (m *Image) Reset() { *m = Image{} } func (m *Image) String() string { return proto.CompactTextString(m) } func (*Image) ProtoMessage() {} func (*Image) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{37} + return fileDescriptor_isula_image_9d49025646188a13, []int{39} } func (m *Image) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_Image.Unmarshal(m, b) @@ -2191,7 +2291,7 @@ func (m *ListImagesResponse) Reset() { *m = ListImagesResponse{} } func (m *ListImagesResponse) String() string { return proto.CompactTextString(m) } func (*ListImagesResponse) ProtoMessage() {} func (*ListImagesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{38} + return fileDescriptor_isula_image_9d49025646188a13, []int{40} } func (m *ListImagesResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ListImagesResponse.Unmarshal(m, b) @@ -2246,7 +2346,7 @@ func (m *ImageStatusRequest) Reset() { *m = ImageStatusRequest{} } func (m *ImageStatusRequest) String() string { return proto.CompactTextString(m) } func (*ImageStatusRequest) ProtoMessage() {} func (*ImageStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{39} + return fileDescriptor_isula_image_9d49025646188a13, []int{41} } func (m *ImageStatusRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageStatusRequest.Unmarshal(m, b) @@ -2299,7 +2399,7 @@ func (m *ImageStatusResponse) Reset() { *m = ImageStatusResponse{} } func (m *ImageStatusResponse) String() string { return proto.CompactTextString(m) } func (*ImageStatusResponse) ProtoMessage() {} func (*ImageStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{40} + return fileDescriptor_isula_image_9d49025646188a13, []int{42} } func (m *ImageStatusResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageStatusResponse.Unmarshal(m, b) @@ -2358,7 +2458,7 @@ func (m *ImageInfoRequest) Reset() { *m = ImageInfoRequest{} } func (m *ImageInfoRequest) String() string { return proto.CompactTextString(m) } func (*ImageInfoRequest) ProtoMessage() {} func (*ImageInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{41} + return fileDescriptor_isula_image_9d49025646188a13, []int{43} } func (m *ImageInfoRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageInfoRequest.Unmarshal(m, b) @@ -2398,7 +2498,7 @@ func (m *ImageInfoResponse) Reset() { *m = ImageInfoResponse{} } func (m *ImageInfoResponse) String() string { return proto.CompactTextString(m) } func (*ImageInfoResponse) ProtoMessage() {} func (*ImageInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{42} + return fileDescriptor_isula_image_9d49025646188a13, []int{44} } func (m *ImageInfoResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageInfoResponse.Unmarshal(m, b) @@ -2459,7 +2559,7 @@ func (m *AuthConfig) Reset() { *m = AuthConfig{} } func (m *AuthConfig) String() string { return proto.CompactTextString(m) } func (*AuthConfig) ProtoMessage() {} func (*AuthConfig) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{43} + return fileDescriptor_isula_image_9d49025646188a13, []int{45} } func (m *AuthConfig) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_AuthConfig.Unmarshal(m, b) @@ -2537,7 +2637,7 @@ func (m *PullImageRequest) Reset() { *m = PullImageRequest{} } func (m *PullImageRequest) String() string { return proto.CompactTextString(m) } func (*PullImageRequest) ProtoMessage() {} func (*PullImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{44} + return fileDescriptor_isula_image_9d49025646188a13, []int{46} } func (m *PullImageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PullImageRequest.Unmarshal(m, b) @@ -2593,7 +2693,7 @@ func (m *PullImageResponse) Reset() { *m = PullImageResponse{} } func (m *PullImageResponse) String() string { return proto.CompactTextString(m) } func (*PullImageResponse) ProtoMessage() {} func (*PullImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{45} + return fileDescriptor_isula_image_9d49025646188a13, []int{47} } func (m *PullImageResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_PullImageResponse.Unmarshal(m, b) @@ -2647,7 +2747,7 @@ func (m *RemoveImageRequest) Reset() { *m = RemoveImageRequest{} } func (m *RemoveImageRequest) String() string { return proto.CompactTextString(m) } func (*RemoveImageRequest) ProtoMessage() {} func (*RemoveImageRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{46} + return fileDescriptor_isula_image_9d49025646188a13, []int{48} } func (m *RemoveImageRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_RemoveImageRequest.Unmarshal(m, b) @@ -2693,7 +2793,7 @@ func (m *RemoveImageResponse) Reset() { *m = RemoveImageResponse{} } func (m *RemoveImageResponse) String() string { return proto.CompactTextString(m) } func (*RemoveImageResponse) ProtoMessage() {} func (*RemoveImageResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{47} + return fileDescriptor_isula_image_9d49025646188a13, []int{49} } func (m *RemoveImageResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_RemoveImageResponse.Unmarshal(m, b) @@ -2737,7 +2837,7 @@ func (m *ImageFsInfoRequest) Reset() { *m = ImageFsInfoRequest{} } func (m *ImageFsInfoRequest) String() string { return proto.CompactTextString(m) } func (*ImageFsInfoRequest) ProtoMessage() {} func (*ImageFsInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{48} + return fileDescriptor_isula_image_9d49025646188a13, []int{50} } func (m *ImageFsInfoRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageFsInfoRequest.Unmarshal(m, b) @@ -2770,7 +2870,7 @@ func (m *UInt64Value) Reset() { *m = UInt64Value{} } func (m *UInt64Value) String() string { return proto.CompactTextString(m) } func (*UInt64Value) ProtoMessage() {} func (*UInt64Value) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{49} + return fileDescriptor_isula_image_9d49025646188a13, []int{51} } func (m *UInt64Value) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_UInt64Value.Unmarshal(m, b) @@ -2810,7 +2910,7 @@ func (m *StorageIdentifier) Reset() { *m = StorageIdentifier{} } func (m *StorageIdentifier) String() string { return proto.CompactTextString(m) } func (*StorageIdentifier) ProtoMessage() {} func (*StorageIdentifier) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{50} + return fileDescriptor_isula_image_9d49025646188a13, []int{52} } func (m *StorageIdentifier) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_StorageIdentifier.Unmarshal(m, b) @@ -2860,7 +2960,7 @@ func (m *FilesystemUsage) Reset() { *m = FilesystemUsage{} } func (m *FilesystemUsage) String() string { return proto.CompactTextString(m) } func (*FilesystemUsage) ProtoMessage() {} func (*FilesystemUsage) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{51} + return fileDescriptor_isula_image_9d49025646188a13, []int{53} } func (m *FilesystemUsage) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_FilesystemUsage.Unmarshal(m, b) @@ -2922,7 +3022,7 @@ func (m *ImageFsInfoResponse) Reset() { *m = ImageFsInfoResponse{} } func (m *ImageFsInfoResponse) String() string { return proto.CompactTextString(m) } func (*ImageFsInfoResponse) ProtoMessage() {} func (*ImageFsInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_isula_image_60d5c3ca4d409144, []int{52} + return fileDescriptor_isula_image_9d49025646188a13, []int{54} } func (m *ImageFsInfoResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_ImageFsInfoResponse.Unmarshal(m, b) @@ -2976,6 +3076,9 @@ func init() { proto.RegisterType((*LoadImageResponose)(nil), "isula.LoadImageResponose") proto.RegisterType((*GraphdriverStatusRequest)(nil), "isula.GraphdriverStatusRequest") proto.RegisterType((*GraphdriverStatusResponse)(nil), "isula.GraphdriverStatusResponse") + proto.RegisterType((*GraphdriverMetadataRequest)(nil), "isula.GraphdriverMetadataRequest") + proto.RegisterType((*GraphdriverMetadataResponse)(nil), "isula.GraphdriverMetadataResponse") + proto.RegisterMapType((map[string]string)(nil), "isula.GraphdriverMetadataResponse.MetadataEntry") proto.RegisterType((*ContainerFsUsageRequest)(nil), "isula.ContainerFsUsageRequest") proto.RegisterType((*ContainerFsUsageResponse)(nil), "isula.ContainerFsUsageResponse") proto.RegisterType((*ContainerUmountRequest)(nil), "isula.ContainerUmountRequest") @@ -3073,6 +3176,8 @@ type ImageServiceClient interface { ContainerFsUsage(ctx context.Context, in *ContainerFsUsageRequest, opts ...grpc.CallOption) (*ContainerFsUsageResponse, error) // get status of graphdriver GraphdriverStatus(ctx context.Context, in *GraphdriverStatusRequest, opts ...grpc.CallOption) (*GraphdriverStatusResponse, error) + // get metadata of graphdriver + GraphdriverMetadata(ctx context.Context, in *GraphdriverMetadataRequest, opts ...grpc.CallOption) (*GraphdriverMetadataResponse, error) // login registry Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error) // logout registry @@ -3224,6 +3329,15 @@ func (c *imageServiceClient) GraphdriverStatus(ctx context.Context, in *Graphdri return out, nil } +func (c *imageServiceClient) GraphdriverMetadata(ctx context.Context, in *GraphdriverMetadataRequest, opts ...grpc.CallOption) (*GraphdriverMetadataResponse, error) { + out := new(GraphdriverMetadataResponse) + err := c.cc.Invoke(ctx, "/isula.ImageService/GraphdriverMetadata", in, out, opts...) + if err != nil { + return nil, err + } + return out, nil +} + func (c *imageServiceClient) Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error) { out := new(LoginResponse) err := c.cc.Invoke(ctx, "/isula.ImageService/Login", in, out, opts...) @@ -3288,6 +3402,8 @@ type ImageServiceServer interface { ContainerFsUsage(context.Context, *ContainerFsUsageRequest) (*ContainerFsUsageResponse, error) // get status of graphdriver GraphdriverStatus(context.Context, *GraphdriverStatusRequest) (*GraphdriverStatusResponse, error) + // get metadata of graphdriver + GraphdriverMetadata(context.Context, *GraphdriverMetadataRequest) (*GraphdriverMetadataResponse, error) // login registry Login(context.Context, *LoginRequest) (*LoginResponse, error) // logout registry @@ -3570,6 +3686,24 @@ func _ImageService_GraphdriverStatus_Handler(srv interface{}, ctx context.Contex return interceptor(ctx, in, info, handler) } +func _ImageService_GraphdriverMetadata_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GraphdriverMetadataRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(ImageServiceServer).GraphdriverMetadata(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: "/isula.ImageService/GraphdriverMetadata", + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(ImageServiceServer).GraphdriverMetadata(ctx, req.(*GraphdriverMetadataRequest)) + } + return interceptor(ctx, in, info, handler) +} + func _ImageService_Login_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(LoginRequest) if err := dec(in); err != nil { @@ -3688,6 +3822,10 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{ MethodName: "GraphdriverStatus", Handler: _ImageService_GraphdriverStatus_Handler, }, + { + MethodName: "GraphdriverMetadata", + Handler: _ImageService_GraphdriverMetadata_Handler, + }, { MethodName: "Login", Handler: _ImageService_Login_Handler, @@ -3706,165 +3844,169 @@ var _ImageService_serviceDesc = grpc.ServiceDesc{ } func init() { - proto.RegisterFile("isula/isula_image.proto", fileDescriptor_isula_image_60d5c3ca4d409144) -} - -var fileDescriptor_isula_image_60d5c3ca4d409144 = []byte{ - // 2484 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x39, 0x5b, 0x6f, 0x1b, 0xc7, - 0xd5, 0x22, 0x29, 0x4a, 0xe4, 0xa1, 0x2e, 0xd4, 0x48, 0xb1, 0x28, 0xda, 0x72, 0xe4, 0xb5, 0xf3, - 0x59, 0x9f, 0x8b, 0xca, 0x31, 0x93, 0xd4, 0x8e, 0x0b, 0x07, 0x51, 0x64, 0xd9, 0x61, 0xa1, 0x0b, - 0xb1, 0x92, 0x0c, 0x03, 0x01, 0xba, 0x58, 0xed, 0x0e, 0xa9, 0xad, 0xc9, 0x9d, 0xed, 0xce, 0xac, - 0x62, 0xf5, 0xa9, 0x08, 0xda, 0xb7, 0xbe, 0xf7, 0xb9, 0xef, 0xfd, 0x27, 0x45, 0x2f, 0x0f, 0xfd, - 0x41, 0xc5, 0x5c, 0x39, 0xcb, 0x8b, 0x2d, 0xe5, 0x65, 0xb1, 0xe7, 0xcc, 0x39, 0x67, 0xce, 0x6d, - 0xce, 0x9c, 0x99, 0x81, 0xf5, 0x88, 0x66, 0x7d, 0xff, 0xb1, 0xf8, 0x7a, 0xd1, 0xc0, 0xef, 0xe1, - 0x9d, 0x24, 0x25, 0x8c, 0xa0, 0xb2, 0x40, 0x39, 0x6b, 0x80, 0xbe, 0xc7, 0x7e, 0x9f, 0x5d, 0xec, - 0x5d, 0xe0, 0xe0, 0x9d, 0x8b, 0x7f, 0x9f, 0x61, 0xca, 0x9c, 0x17, 0xb0, 0x9a, 0xc3, 0xd2, 0x84, - 0xc4, 0x14, 0xa3, 0x5b, 0x30, 0x87, 0xd3, 0x74, 0x40, 0x7b, 0x8d, 0xc2, 0x56, 0x61, 0xbb, 0xea, - 0x2a, 0x08, 0x2d, 0x41, 0x31, 0x08, 0x1a, 0xc5, 0xad, 0xc2, 0xf6, 0xa2, 0x5b, 0x0c, 0x02, 0xe7, - 0xb7, 0xb0, 0x70, 0x40, 0x7a, 0x51, 0xac, 0xc4, 0x71, 0x3e, 0x8a, 0xd3, 0x4b, 0x9c, 0x6a, 0x3e, - 0x09, 0xa1, 0x26, 0x54, 0x32, 0x8a, 0xd3, 0xd8, 0x1f, 0x60, 0xc1, 0x5d, 0x75, 0x0d, 0xcc, 0xc7, - 0x12, 0x9f, 0xd2, 0x1f, 0x49, 0x1a, 0x36, 0x4a, 0x72, 0x4c, 0xc3, 0xce, 0x53, 0x58, 0x54, 0xf2, - 0x6f, 0xa8, 0xd8, 0x43, 0xc1, 0x48, 0x32, 0xf6, 0x11, 0xcd, 0x9c, 0x67, 0xb0, 0xa4, 0x09, 0x6f, - 0x38, 0xc5, 0x9f, 0x0b, 0x70, 0x6b, 0x8f, 0xc4, 0xcc, 0x8f, 0x62, 0x9c, 0xee, 0xbf, 0x4f, 0x48, - 0x6a, 0x26, 0x5b, 0x87, 0x79, 0x6e, 0x9a, 0x17, 0x85, 0x5a, 0x06, 0x07, 0xdb, 0x21, 0x97, 0x4d, - 0x32, 0x96, 0x64, 0x4c, 0x79, 0x41, 0x41, 0xa8, 0x0e, 0xa5, 0x2c, 0x92, 0xe6, 0x2f, 0xba, 0xfc, - 0x97, 0x63, 0x7a, 0x51, 0xd8, 0x98, 0x95, 0x98, 0x5e, 0x24, 0x79, 0xbb, 0x5d, 0x8a, 0x59, 0xa3, - 0x2c, 0x90, 0x0a, 0x72, 0x76, 0x61, 0x7d, 0x4c, 0x8d, 0x1b, 0x9a, 0xf2, 0x0c, 0xea, 0x07, 0xc4, - 0x0f, 0xdb, 0x3c, 0x6b, 0xb4, 0x0d, 0x08, 0x66, 0xbb, 0x51, 0x1f, 0x2b, 0x4e, 0xf1, 0xcf, 0x95, - 0x62, 0x7e, 0x4f, 0xe9, 0xce, 0x7f, 0x9d, 0x53, 0x40, 0x16, 0x27, 0x9f, 0x96, 0xc8, 0x79, 0x49, - 0xc6, 0xac, 0x79, 0x25, 0x64, 0xe9, 0x53, 0x9c, 0xa0, 0x4f, 0xc9, 0xe8, 0xd3, 0x84, 0xc6, 0xeb, - 0xd4, 0x4f, 0x2e, 0xc2, 0x34, 0xba, 0xc4, 0xe9, 0x09, 0xf3, 0x59, 0x46, 0x75, 0xc6, 0xfe, 0x00, - 0x1b, 0x13, 0xc6, 0x86, 0x06, 0x53, 0x81, 0x31, 0x51, 0x16, 0xd0, 0xb5, 0x27, 0x6e, 0x59, 0xbe, - 0x7c, 0x45, 0xcf, 0xa8, 0xe5, 0x8f, 0x69, 0x31, 0x75, 0xde, 0x42, 0x63, 0x9c, 0x47, 0xe9, 0xb3, - 0x06, 0xe5, 0x8c, 0x23, 0x14, 0x8b, 0x04, 0xae, 0xad, 0xcd, 0x6b, 0x2b, 0xc1, 0xce, 0x06, 0x24, - 0x8b, 0x3f, 0x9e, 0x60, 0x6b, 0x50, 0xee, 0x92, 0x34, 0x90, 0xab, 0xac, 0xe2, 0x4a, 0x20, 0x97, - 0x22, 0x5a, 0xd0, 0x0d, 0x53, 0xe4, 0x73, 0xf8, 0xc4, 0x88, 0x38, 0xbc, 0x8e, 0x2a, 0xce, 0xb7, - 0x96, 0xf6, 0x87, 0x3f, 0x6b, 0xce, 0x27, 0x96, 0x04, 0x17, 0x0f, 0xc8, 0xe5, 0xc7, 0x83, 0x61, - 0x5b, 0xaa, 0x59, 0x6e, 0x38, 0xeb, 0xa5, 0x25, 0xa2, 0x93, 0xe2, 0xc4, 0x4f, 0xcd, 0xb4, 0x6b, - 0x50, 0x16, 0x95, 0x55, 0x87, 0x53, 0x00, 0x5c, 0x40, 0x14, 0xaa, 0x50, 0x16, 0xa3, 0x90, 0xaf, - 0x1c, 0x51, 0xe8, 0x64, 0x31, 0x13, 0xff, 0xe8, 0x1e, 0x2c, 0x50, 0x46, 0x52, 0xbf, 0x87, 0x3d, - 0x92, 0x30, 0xda, 0x98, 0xdd, 0x2a, 0x6d, 0x57, 0xdd, 0x9a, 0xc2, 0x1d, 0x27, 0x8c, 0x3a, 0x3f, - 0x15, 0xac, 0x44, 0x32, 0x13, 0x2b, 0xe5, 0x3f, 0x85, 0x9a, 0x88, 0x9b, 0x97, 0x90, 0x28, 0x66, - 0x6a, 0x7e, 0x10, 0xa8, 0x0e, 0xc7, 0xa0, 0x4d, 0x00, 0xa1, 0x8d, 0x17, 0x90, 0xb8, 0xab, 0x94, - 0xa9, 0x0a, 0xcc, 0x1e, 0x89, 0xbb, 0x96, 0xf1, 0xa5, 0x09, 0xc6, 0xcf, 0x1a, 0xe3, 0xd7, 0xe1, - 0x93, 0x83, 0x88, 0x32, 0xa3, 0x87, 0x59, 0x76, 0xff, 0x2a, 0xc0, 0xad, 0xd1, 0x11, 0xa5, 0xdb, - 0x21, 0x40, 0x60, 0xb0, 0x8d, 0xc2, 0x56, 0x69, 0xbb, 0xd6, 0xfa, 0xe5, 0x8e, 0xd8, 0x75, 0x76, - 0x26, 0xb3, 0xec, 0x0c, 0x51, 0xfb, 0x31, 0x4b, 0xaf, 0x5c, 0x4b, 0xc0, 0x75, 0x57, 0x47, 0xf3, - 0x05, 0x2c, 0x8f, 0x88, 0xe1, 0xf5, 0xe9, 0x1d, 0xbe, 0x52, 0xde, 0xe1, 0xbf, 0x3c, 0x62, 0x97, - 0x7e, 0x3f, 0x33, 0xeb, 0x41, 0x00, 0xcf, 0x8b, 0xcf, 0x0a, 0xce, 0x0f, 0x50, 0x7d, 0x79, 0x74, - 0xc2, 0x9d, 0x13, 0xf5, 0x50, 0x03, 0xe6, 0xe5, 0x7e, 0x20, 0xf5, 0xaf, 0xba, 0x1a, 0xe4, 0xbb, - 0x13, 0xc5, 0x7e, 0x1a, 0x5c, 0x60, 0xda, 0x28, 0x8a, 0x21, 0x03, 0x73, 0x2e, 0x92, 0xb0, 0x88, - 0xc4, 0xb4, 0x51, 0x92, 0x5c, 0x0a, 0x74, 0xfe, 0x5a, 0x80, 0x5a, 0x87, 0xa4, 0xec, 0xd0, 0x4f, - 0x92, 0x28, 0xee, 0xa1, 0x5f, 0x40, 0x45, 0x6c, 0xc6, 0x01, 0xe9, 0x0b, 0xed, 0x96, 0x5a, 0xcb, - 0xca, 0x41, 0x1d, 0x85, 0x76, 0x0d, 0x01, 0xfa, 0x0c, 0x96, 0x8c, 0x3b, 0x3c, 0x5e, 0xcf, 0x85, - 0xf2, 0x65, 0x77, 0xd1, 0x60, 0xb9, 0x68, 0x74, 0x1b, 0xaa, 0x17, 0x84, 0x32, 0x49, 0x51, 0x12, - 0x14, 0x15, 0x8e, 0x10, 0x83, 0xeb, 0x30, 0x2f, 0x06, 0xa3, 0x44, 0x04, 0xb7, 0xea, 0xce, 0x71, - 0xb0, 0x9d, 0x38, 0xff, 0x28, 0x40, 0x59, 0xac, 0xc6, 0x91, 0x69, 0x7c, 0x76, 0xa1, 0xfc, 0x66, - 0x4d, 0xe3, 0xb3, 0x8b, 0xe1, 0x34, 0x9c, 0x42, 0xed, 0xdd, 0x62, 0x1a, 0x3e, 0xd8, 0x84, 0x4a, - 0x8a, 0xfd, 0x90, 0xc4, 0xfd, 0x2b, 0xa1, 0x42, 0xc5, 0x35, 0x30, 0x7a, 0x08, 0xcb, 0x14, 0xf7, - 0xa3, 0x38, 0x7b, 0xef, 0xa5, 0xb8, 0xef, 0x9f, 0xe3, 0xbe, 0x50, 0xa5, 0xe2, 0x2e, 0x29, 0xb4, - 0x2b, 0xb1, 0xe8, 0x6b, 0xa8, 0x25, 0x29, 0x49, 0xfc, 0x9e, 0xcf, 0x9d, 0x27, 0x76, 0xb7, 0xa5, - 0xd6, 0xba, 0xf2, 0x8f, 0xd0, 0xb5, 0x33, 0x1c, 0x76, 0x6d, 0x5a, 0xe7, 0x77, 0xb0, 0x7c, 0xe4, - 0x0f, 0x30, 0x4d, 0xfc, 0x80, 0x2f, 0xa2, 0x88, 0xc4, 0x7c, 0xa5, 0x09, 0x7d, 0x63, 0xcc, 0x7e, - 0x24, 0xe9, 0x3b, 0x61, 0x54, 0xc5, 0xad, 0x71, 0xdc, 0x91, 0x44, 0xa1, 0x0d, 0xa8, 0x48, 0x93, - 0xd4, 0xb2, 0xad, 0xb8, 0xc2, 0x59, 0x9d, 0x28, 0x34, 0x43, 0x51, 0x12, 0x28, 0x83, 0xe6, 0xa5, - 0xe3, 0x02, 0xc7, 0x01, 0x68, 0xc7, 0xec, 0x57, 0x5f, 0xbe, 0xe1, 0x29, 0x34, 0x4c, 0x2c, 0x2e, - 0xbf, 0xa4, 0x12, 0xcb, 0xf1, 0x61, 0xf1, 0x64, 0xff, 0x80, 0x1b, 0xa7, 0xb4, 0x41, 0x30, 0xcb, - 0x1b, 0x1d, 0xbd, 0x8b, 0xf2, 0x7f, 0x8e, 0x4b, 0x49, 0x5f, 0x37, 0x42, 0xe2, 0x9f, 0xe3, 0xd8, - 0x55, 0x62, 0x6a, 0x06, 0xff, 0xe7, 0x53, 0xf4, 0xf1, 0xa5, 0x72, 0x5b, 0xd5, 0x95, 0x80, 0xf3, - 0xc7, 0x12, 0xdc, 0x16, 0x33, 0x9c, 0xf8, 0x71, 0x78, 0x4e, 0xde, 0x9f, 0xe0, 0x20, 0x4b, 0x23, - 0x76, 0xc5, 0xd7, 0x02, 0x7e, 0xcf, 0xd0, 0x1e, 0xac, 0xc4, 0xda, 0x25, 0x9e, 0x4e, 0x4f, 0x3e, - 0x7d, 0xad, 0x75, 0x4b, 0xf9, 0x74, 0xc4, 0x65, 0x6e, 0x3d, 0xce, 0x23, 0x28, 0x7a, 0x31, 0x8c, - 0x9d, 0x16, 0x51, 0x14, 0x22, 0xd6, 0x94, 0x88, 0x9c, 0x95, 0x26, 0xa2, 0x9a, 0xfd, 0x09, 0xd4, - 0xd2, 0x2c, 0xf6, 0x7c, 0xea, 0x09, 0xe3, 0x4b, 0x82, 0x75, 0x45, 0xb1, 0x0e, 0x9d, 0xe8, 0x56, - 0xd3, 0x2c, 0xde, 0xa5, 0x67, 0xdc, 0x29, 0x0f, 0x61, 0x59, 0x67, 0x8e, 0x97, 0x12, 0xc2, 0xba, - 0x54, 0x67, 0x8b, 0x46, 0xbb, 0x02, 0x8b, 0x1e, 0xc3, 0x2a, 0xcd, 0x92, 0xa4, 0x8f, 0x07, 0x38, - 0x66, 0x7e, 0xdf, 0xeb, 0xa5, 0x24, 0x4b, 0x68, 0xa3, 0xbc, 0x55, 0xda, 0x2e, 0xb9, 0xc8, 0x1e, - 0x7a, 0x2d, 0x46, 0xd0, 0x5d, 0x80, 0x24, 0x8d, 0x2e, 0xa3, 0x3e, 0xee, 0xe1, 0xb0, 0x31, 0x27, - 0x84, 0x5a, 0x18, 0xf4, 0x39, 0xac, 0x51, 0x1c, 0x04, 0x64, 0x90, 0x78, 0x49, 0x4a, 0x78, 0x9f, - 0x23, 0x73, 0x7d, 0x5e, 0x78, 0x1d, 0xa9, 0xb1, 0x8e, 0x1c, 0xe2, 0x59, 0xef, 0xfc, 0xa5, 0xc8, - 0xab, 0x64, 0x9c, 0xbd, 0xef, 0x90, 0x50, 0x45, 0x41, 0xd5, 0x91, 0xfb, 0xb0, 0x18, 0x08, 0x85, - 0x3c, 0x5e, 0xbd, 0x4d, 0xa1, 0x5e, 0x90, 0xc8, 0x8e, 0xc0, 0xa1, 0x43, 0xa8, 0x53, 0x15, 0x34, - 0x5e, 0xad, 0x79, 0xd4, 0x94, 0x77, 0x1d, 0x53, 0x35, 0xa7, 0xc6, 0xd7, 0x5d, 0xa6, 0x63, 0x01, - 0x9f, 0xa7, 0x57, 0x34, 0x60, 0x7d, 0x59, 0x85, 0x6a, 0xad, 0xff, 0xb7, 0xa5, 0x8c, 0xaa, 0xb8, - 0x73, 0x22, 0x69, 0x65, 0xdd, 0xd5, 0x9c, 0xcd, 0xe7, 0xb0, 0x60, 0x0f, 0x7c, 0xac, 0x92, 0x56, - 0xed, 0x4a, 0x9a, 0x02, 0x1a, 0xce, 0x72, 0x88, 0x99, 0x1f, 0xfa, 0xcc, 0x37, 0xbb, 0x60, 0xc1, - 0xda, 0x05, 0x55, 0x9b, 0xab, 0xfa, 0x47, 0xde, 0xe6, 0xde, 0x81, 0xaa, 0x49, 0x3e, 0x95, 0xfc, - 0x43, 0x04, 0x2f, 0xb0, 0x3e, 0x63, 0x78, 0x90, 0x30, 0xb5, 0x45, 0x69, 0xd0, 0xf9, 0xfb, 0x2c, - 0xd4, 0xc7, 0xbc, 0xff, 0x15, 0x54, 0x06, 0x6a, 0x7a, 0x95, 0xf1, 0x1b, 0xba, 0xca, 0x8e, 0xe9, - 0xe7, 0x1a, 0x52, 0x5e, 0xc4, 0xf8, 0x1a, 0xb7, 0x0f, 0x27, 0x1a, 0xe6, 0x01, 0xed, 0x93, 0x9e, - 0x17, 0x46, 0x29, 0x0e, 0x18, 0x49, 0xaf, 0x94, 0x8e, 0x0b, 0x7d, 0xd2, 0x7b, 0xa9, 0x71, 0xe8, - 0x31, 0x40, 0x18, 0x53, 0xb1, 0xf3, 0x46, 0x3d, 0xa1, 0x69, 0xad, 0x55, 0x57, 0x33, 0x9b, 0x3d, - 0xc6, 0xad, 0x86, 0x31, 0x55, 0x8a, 0x3e, 0x85, 0x45, 0x5e, 0xb5, 0xbd, 0x81, 0xdc, 0x1e, 0x64, - 0xf6, 0xd6, 0x5a, 0xc8, 0x68, 0x6b, 0x76, 0x0e, 0x77, 0x21, 0x19, 0x02, 0x14, 0xfd, 0x1a, 0xe6, - 0x44, 0xcd, 0xa4, 0x8d, 0x39, 0xc1, 0x71, 0x7f, 0xcc, 0x3e, 0x15, 0xe5, 0x03, 0x41, 0x25, 0x83, - 0xac, 0x58, 0xd0, 0x6f, 0xa0, 0xe6, 0xc7, 0x31, 0x61, 0xbe, 0x5c, 0xd0, 0xf3, 0x42, 0xc2, 0xf6, - 0x34, 0x09, 0xbb, 0x43, 0x52, 0x29, 0xc6, 0x66, 0x46, 0x2d, 0x28, 0x8b, 0x15, 0xdf, 0xa8, 0x08, - 0x6b, 0xef, 0x7c, 0x28, 0xe5, 0x5c, 0x49, 0xda, 0xfc, 0x1a, 0x6a, 0x96, 0x5a, 0x37, 0x49, 0xb1, - 0xe6, 0x37, 0x50, 0x1f, 0xd5, 0xe7, 0x46, 0x29, 0x7a, 0x0f, 0xaa, 0xe2, 0x88, 0x72, 0x92, 0xe0, - 0x60, 0x72, 0x17, 0xe7, 0x7c, 0x05, 0x35, 0x41, 0xf2, 0x2a, 0xea, 0x33, 0x9c, 0xa2, 0xff, 0xb3, - 0x89, 0x86, 0xe1, 0x34, 0x52, 0x34, 0xdb, 0x19, 0xac, 0xf0, 0x1e, 0x47, 0xe0, 0x75, 0xb3, 0x84, - 0x1e, 0xc1, 0x5c, 0x57, 0x88, 0x51, 0xdc, 0xc8, 0xe6, 0x96, 0x13, 0xb8, 0x8a, 0x82, 0x6b, 0x13, - 0xf0, 0xb3, 0xb7, 0xee, 0x50, 0x04, 0xe0, 0xfc, 0xa9, 0x08, 0xe5, 0xb6, 0xd5, 0x5d, 0x16, 0x4c, - 0x77, 0x79, 0x1b, 0xaa, 0x29, 0x4e, 0x88, 0xc7, 0xfc, 0x9e, 0xe9, 0x48, 0x38, 0xe2, 0xd4, 0xef, - 0x51, 0xbe, 0xf9, 0x89, 0xc1, 0x30, 0xea, 0x61, 0xca, 0x74, 0x5b, 0x52, 0xe3, 0xb8, 0x97, 0x12, - 0xc5, 0xd7, 0x25, 0x8d, 0xfe, 0x80, 0x45, 0x9a, 0xce, 0xba, 0xe2, 0x1f, 0xdd, 0x97, 0xeb, 0xb2, - 0x3c, 0xad, 0x4e, 0x8b, 0xa5, 0x6a, 0x9f, 0xe1, 0xe7, 0x46, 0xce, 0xf0, 0x0d, 0x98, 0x0f, 0x52, - 0xec, 0x33, 0x1c, 0xaa, 0xb2, 0xa9, 0x41, 0xde, 0xcd, 0xf5, 0x89, 0x1f, 0xe2, 0x50, 0x64, 0x4a, - 0xd5, 0x55, 0x10, 0x7a, 0x00, 0xb3, 0x34, 0xc1, 0x41, 0xa3, 0x3a, 0xc5, 0xbd, 0x62, 0xd4, 0x39, - 0x07, 0x64, 0x7b, 0x57, 0x35, 0x9c, 0x0f, 0x60, 0x4e, 0x38, 0x5f, 0x37, 0x9b, 0x0b, 0x36, 0xb7, - 0xab, 0xc6, 0xae, 0x7d, 0xca, 0x7a, 0x03, 0x48, 0x4e, 0x6b, 0x1f, 0x33, 0xaf, 0x1b, 0x7f, 0x6e, - 0xf9, 0x25, 0x4e, 0xcf, 0x09, 0xd5, 0x2d, 0xa6, 0x06, 0x9d, 0xff, 0x16, 0x60, 0x35, 0x27, 0x58, - 0x69, 0xef, 0xe4, 0x25, 0xe7, 0x95, 0x57, 0x52, 0x9f, 0xc1, 0x6c, 0x14, 0x77, 0x89, 0x88, 0x6f, - 0xad, 0xf5, 0x20, 0x37, 0x79, 0x4e, 0xda, 0x4e, 0x3b, 0xee, 0x12, 0xb9, 0x3e, 0x05, 0xc7, 0x75, - 0x1b, 0xfd, 0xe6, 0x53, 0xa8, 0x1a, 0xd6, 0x1b, 0x2d, 0xa5, 0xe7, 0x50, 0x17, 0x7a, 0x70, 0xee, - 0x1b, 0x3a, 0xcb, 0x39, 0x86, 0x15, 0x8b, 0x57, 0xf9, 0x03, 0xa9, 0x4c, 0x50, 0x1b, 0x05, 0xff, - 0xbf, 0x76, 0xec, 0xfe, 0x59, 0x00, 0xd8, 0xcd, 0xd8, 0x85, 0xaa, 0xab, 0x76, 0x8a, 0x16, 0x3e, - 0x70, 0xcd, 0x54, 0xcc, 0x5f, 0x33, 0x71, 0x15, 0xfc, 0x8c, 0x5d, 0xe8, 0xee, 0x8b, 0xff, 0xf3, - 0xf6, 0x58, 0x9e, 0x01, 0x3c, 0x3f, 0x0c, 0x53, 0x4c, 0xa9, 0x6a, 0xc3, 0x16, 0x25, 0x76, 0x57, - 0x22, 0x39, 0x59, 0x14, 0xe2, 0x98, 0xf1, 0xcd, 0x9c, 0x91, 0x77, 0x58, 0xf6, 0xaf, 0x55, 0x77, - 0x51, 0x63, 0x4f, 0x39, 0x92, 0x93, 0xa5, 0xb8, 0x17, 0x51, 0x96, 0x6a, 0x32, 0xb9, 0x84, 0x16, - 0x35, 0x56, 0x90, 0x39, 0x7f, 0x2b, 0x40, 0xbd, 0x93, 0xf5, 0xfb, 0xb9, 0x9b, 0x98, 0xeb, 0xa6, - 0xe2, 0x67, 0xca, 0x8a, 0x62, 0x6e, 0x19, 0x0f, 0xdd, 0xa3, 0x0c, 0xfb, 0x06, 0x96, 0xa8, 0x2c, - 0xcf, 0x7a, 0xc7, 0x92, 0xfd, 0xd9, 0xfa, 0x94, 0x9d, 0xc0, 0x5d, 0xa4, 0x36, 0xe8, 0xbc, 0x85, - 0x15, 0x4b, 0x45, 0x15, 0xc4, 0xdb, 0x20, 0x0f, 0x9b, 0x5e, 0x8a, 0xbb, 0xda, 0xf5, 0x91, 0xa4, - 0xe8, 0x5e, 0x3b, 0x9a, 0x2e, 0x20, 0x79, 0x66, 0xff, 0x59, 0xe6, 0x4f, 0xbe, 0xfa, 0x78, 0x01, - 0xab, 0x39, 0x99, 0x37, 0xbc, 0x0c, 0x58, 0x53, 0xc5, 0xe1, 0x15, 0xb5, 0xf2, 0xdd, 0xb9, 0x0f, - 0xb5, 0xb3, 0x69, 0x67, 0x81, 0x59, 0x7d, 0x16, 0x78, 0x08, 0x2b, 0x27, 0xf2, 0x78, 0xdf, 0x16, - 0xa9, 0xd0, 0x8d, 0x64, 0xef, 0x9f, 0x65, 0xa6, 0x9e, 0x8b, 0x7f, 0xe7, 0x3f, 0x05, 0x58, 0x7e, - 0x15, 0xf5, 0x31, 0xbd, 0xa2, 0x0c, 0x0f, 0xc4, 0x05, 0x12, 0xef, 0x8b, 0x58, 0x34, 0xc0, 0x94, - 0xf9, 0x83, 0x44, 0x1d, 0x31, 0x86, 0x08, 0xf4, 0x14, 0x40, 0xdf, 0x26, 0xa8, 0x76, 0xaa, 0xd6, - 0x6a, 0xe8, 0xce, 0x7c, 0x74, 0x4e, 0xb7, 0x4a, 0x35, 0x0a, 0x3d, 0x01, 0xc8, 0x28, 0x0e, 0xbd, - 0xf3, 0x2b, 0x86, 0xa9, 0x8a, 0xbb, 0xde, 0x9c, 0xce, 0xec, 0xc6, 0x9c, 0x53, 0x7d, 0xc7, 0x89, - 0xd0, 0x17, 0x50, 0x8b, 0x62, 0x12, 0x62, 0xd1, 0xcb, 0x87, 0xaa, 0xbb, 0x99, 0xc4, 0x03, 0x92, - 0xec, 0x8c, 0xe2, 0xd0, 0xf9, 0x49, 0xd7, 0x3e, 0xed, 0x37, 0xe5, 0xf6, 0x3d, 0x58, 0x91, 0x69, - 0xd2, 0x35, 0xf6, 0xea, 0x22, 0xae, 0x0f, 0x27, 0x23, 0x9e, 0x70, 0xeb, 0x91, 0xda, 0x34, 0x35, - 0xfd, 0x75, 0xd3, 0xe9, 0xd1, 0x1d, 0xa8, 0xe8, 0xd3, 0x35, 0x9a, 0x87, 0xd2, 0xe9, 0x5e, 0xa7, - 0x3e, 0xc3, 0x7f, 0xce, 0x5e, 0x76, 0xea, 0x85, 0x47, 0x03, 0xa8, 0x8f, 0x9e, 0x2d, 0xd1, 0x3a, - 0xac, 0x76, 0xdc, 0xe3, 0xce, 0xee, 0xeb, 0xdd, 0xd3, 0xf6, 0xf1, 0x91, 0xd7, 0x71, 0xdb, 0x6f, - 0x76, 0x4f, 0xf7, 0xeb, 0x33, 0xe8, 0x1e, 0x6c, 0xda, 0x03, 0xdf, 0x1f, 0x9f, 0x9c, 0x7a, 0xa7, - 0xc7, 0xde, 0xde, 0xf1, 0xd1, 0xe9, 0x6e, 0xfb, 0x68, 0xdf, 0xad, 0x17, 0xd0, 0x26, 0x6c, 0xd8, - 0x24, 0xdf, 0xb5, 0x5f, 0xb6, 0xdd, 0xfd, 0x3d, 0xfe, 0xbf, 0x7b, 0x50, 0x2f, 0xb6, 0xfe, 0x0d, - 0xb0, 0x20, 0x53, 0x16, 0xa7, 0x97, 0x51, 0xc0, 0x5d, 0x01, 0xc3, 0xad, 0x0d, 0x35, 0xac, 0xfb, - 0x92, 0x5c, 0x2f, 0xd1, 0xdc, 0x98, 0x30, 0x22, 0xbd, 0xe9, 0xcc, 0xa0, 0x57, 0xaa, 0x69, 0x91, - 0x9b, 0x02, 0xda, 0x98, 0xb4, 0x51, 0x48, 0x31, 0xcd, 0xe9, 0x7b, 0x88, 0x33, 0x83, 0xbe, 0x55, - 0xfd, 0x11, 0x0f, 0x16, 0x5a, 0xb7, 0x49, 0xad, 0xb4, 0x6f, 0x36, 0xc6, 0x07, 0x6c, 0x09, 0xa6, - 0x2a, 0x18, 0x09, 0xa3, 0xa5, 0xcc, 0x48, 0x18, 0x2b, 0x20, 0xd2, 0x16, 0x6b, 0xa5, 0x1a, 0x5b, - 0xc6, 0x2b, 0x82, 0xb1, 0x65, 0xc2, 0xc2, 0xb6, 0x7c, 0x22, 0x53, 0x2f, 0xef, 0x93, 0xdc, 0x32, - 0xce, 0xfb, 0x24, 0x9f, 0xa9, 0xce, 0x0c, 0xda, 0x85, 0xaa, 0xb9, 0xda, 0x36, 0x16, 0x8d, 0x5e, - 0x93, 0x0f, 0xc3, 0x33, 0x76, 0x0b, 0xee, 0xcc, 0xa0, 0x63, 0x58, 0xca, 0x5f, 0x80, 0xa1, 0x3b, - 0x53, 0xee, 0xc5, 0xa4, 0xb0, 0xcd, 0x0f, 0xde, 0x9a, 0x39, 0x33, 0xe8, 0x0c, 0xea, 0xa3, 0x57, - 0x84, 0xe8, 0xae, 0x62, 0x9a, 0x72, 0x69, 0xd9, 0xfc, 0x74, 0xea, 0xb8, 0x11, 0xeb, 0x5a, 0x57, - 0x69, 0xd2, 0xa9, 0x68, 0x73, 0x94, 0x2b, 0x77, 0x01, 0xdb, 0xbc, 0x3b, 0x6d, 0xd8, 0xc8, 0x3c, - 0x86, 0xa5, 0xfc, 0xf5, 0xaf, 0xb1, 0x7d, 0xe2, 0x3d, 0x72, 0x73, 0x73, 0xca, 0xe8, 0x44, 0x25, - 0xe5, 0x25, 0xf6, 0xb8, 0x92, 0xb9, 0x5b, 0xf2, 0x71, 0x25, 0xf3, 0x77, 0xdf, 0x23, 0x32, 0xe5, - 0xdb, 0xc9, 0xb8, 0xcc, 0xdc, 0xd3, 0xce, 0xb8, 0xcc, 0xfc, 0x93, 0xcb, 0x48, 0x8c, 0xd4, 0x7b, - 0xc0, 0x78, 0x8c, 0xf2, 0x8f, 0x0b, 0xe3, 0x31, 0x1a, 0x79, 0x48, 0x70, 0x66, 0xd0, 0x5b, 0x58, - 0x19, 0x7b, 0xf7, 0x40, 0x9a, 0x6f, 0xda, 0x6b, 0x49, 0x73, 0x6b, 0x3a, 0x81, 0x91, 0xfc, 0x25, - 0x94, 0xc5, 0x23, 0x1b, 0x5a, 0x35, 0xb9, 0x3c, 0x7c, 0xd2, 0x6b, 0xae, 0xe5, 0x91, 0x86, 0xeb, - 0x29, 0xcc, 0xc9, 0x87, 0x33, 0x64, 0x51, 0x0c, 0x1f, 0xdc, 0x9a, 0x9f, 0x8c, 0x60, 0xed, 0xf5, - 0x69, 0x3d, 0x39, 0x9a, 0xf5, 0x39, 0xfe, 0x38, 0x69, 0xd6, 0xe7, 0x84, 0x17, 0x4a, 0x67, 0xe6, - 0x7c, 0x4e, 0x5c, 0x98, 0x7e, 0xf1, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8b, 0x5f, 0x40, 0xf0, - 0xf9, 0x1c, 0x00, 0x00, + proto.RegisterFile("isula/isula_image.proto", fileDescriptor_isula_image_9d49025646188a13) +} + +var fileDescriptor_isula_image_9d49025646188a13 = []byte{ + // 2554 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x19, 0x4d, 0x6f, 0x1b, 0xc7, + 0x55, 0x24, 0x45, 0x89, 0x7c, 0x14, 0x25, 0x6a, 0xa4, 0x58, 0x14, 0x6d, 0x25, 0xf2, 0x3a, 0xa9, + 0xd5, 0x14, 0x55, 0x12, 0x26, 0xae, 0x1d, 0x07, 0x0e, 0xa2, 0xc8, 0xb2, 0xc3, 0x42, 0x1f, 0xc4, + 0x4a, 0x32, 0x0c, 0x04, 0x08, 0xb1, 0xda, 0x1d, 0x52, 0x5b, 0x93, 0x3b, 0xdb, 0x9d, 0x59, 0xc5, + 0xea, 0xa9, 0x08, 0xda, 0x5b, 0xef, 0x3d, 0xf7, 0x5e, 0xa0, 0x3f, 0xa4, 0x68, 0xd1, 0x43, 0x7f, + 0x42, 0x7f, 0x48, 0x31, 0x9f, 0x9c, 0xe5, 0x87, 0x45, 0xe5, 0xb2, 0xd8, 0xf7, 0x66, 0xde, 0x9b, + 0xf7, 0x3d, 0x6f, 0x66, 0x60, 0x23, 0xa4, 0x69, 0xdf, 0xfb, 0x44, 0x7c, 0x3b, 0xe1, 0xc0, 0xeb, + 0xe1, 0xdd, 0x38, 0x21, 0x8c, 0xa0, 0xa2, 0x40, 0x39, 0xeb, 0x80, 0xbe, 0xc3, 0x5e, 0x9f, 0x5d, + 0xee, 0x5f, 0x62, 0xff, 0x8d, 0x8b, 0x7f, 0x9f, 0x62, 0xca, 0x9c, 0x67, 0xb0, 0x96, 0xc1, 0xd2, + 0x98, 0x44, 0x14, 0xa3, 0x3b, 0xb0, 0x80, 0x93, 0x64, 0x40, 0x7b, 0xf5, 0xdc, 0x76, 0x6e, 0xa7, + 0xec, 0x2a, 0x08, 0x2d, 0x43, 0xde, 0xf7, 0xeb, 0xf9, 0xed, 0xdc, 0x4e, 0xd5, 0xcd, 0xfb, 0xbe, + 0xf3, 0x03, 0x2c, 0x1d, 0x92, 0x5e, 0x18, 0x29, 0x76, 0x9c, 0x8e, 0xe2, 0xe4, 0x0a, 0x27, 0x9a, + 0x4e, 0x42, 0xa8, 0x01, 0xa5, 0x94, 0xe2, 0x24, 0xf2, 0x06, 0x58, 0x50, 0x97, 0x5d, 0x03, 0xf3, + 0xb1, 0xd8, 0xa3, 0xf4, 0x47, 0x92, 0x04, 0xf5, 0x82, 0x1c, 0xd3, 0xb0, 0xf3, 0x18, 0xaa, 0x8a, + 0xff, 0x2d, 0x05, 0x7b, 0x28, 0x08, 0x49, 0xca, 0x6e, 0x90, 0xcc, 0x79, 0x02, 0xcb, 0x7a, 0xe2, + 0x2d, 0x97, 0xf8, 0x73, 0x0e, 0xee, 0xec, 0x93, 0x88, 0x79, 0x61, 0x84, 0x93, 0x83, 0xb7, 0x31, + 0x49, 0xcc, 0x62, 0x1b, 0xb0, 0xc8, 0x55, 0xeb, 0x84, 0x81, 0xe6, 0xc1, 0xc1, 0x56, 0xc0, 0x79, + 0x93, 0x94, 0xc5, 0x29, 0x53, 0x56, 0x50, 0x10, 0xaa, 0x41, 0x21, 0x0d, 0xa5, 0xfa, 0x55, 0x97, + 0xff, 0x72, 0x4c, 0x2f, 0x0c, 0xea, 0xf3, 0x12, 0xd3, 0x0b, 0x25, 0x6d, 0xb7, 0x4b, 0x31, 0xab, + 0x17, 0x05, 0x52, 0x41, 0xce, 0x1e, 0x6c, 0x8c, 0x89, 0x71, 0x4b, 0x55, 0x9e, 0x40, 0xed, 0x90, + 0x78, 0x41, 0x8b, 0x47, 0x8d, 0xd6, 0x01, 0xc1, 0x7c, 0x37, 0xec, 0x63, 0x45, 0x29, 0xfe, 0xb9, + 0x50, 0xcc, 0xeb, 0x29, 0xd9, 0xf9, 0xaf, 0x73, 0x06, 0xc8, 0xa2, 0xe4, 0xcb, 0x12, 0xb9, 0x2e, + 0x49, 0x99, 0xb5, 0xae, 0x84, 0x2c, 0x79, 0xf2, 0x13, 0xe4, 0x29, 0x18, 0x79, 0x1a, 0x50, 0x7f, + 0x99, 0x78, 0xf1, 0x65, 0x90, 0x84, 0x57, 0x38, 0x39, 0x65, 0x1e, 0x4b, 0xa9, 0x8e, 0xd8, 0xef, + 0x61, 0x73, 0xc2, 0xd8, 0x50, 0x61, 0x2a, 0x30, 0xc6, 0xcb, 0x02, 0x9a, 0x79, 0xe1, 0x47, 0xd0, + 0xb0, 0x98, 0x1f, 0x61, 0xe6, 0x05, 0x1e, 0xf3, 0x6e, 0x72, 0xab, 0xf3, 0xbf, 0x1c, 0xdc, 0x9d, + 0x48, 0xa7, 0xc4, 0x3a, 0x84, 0xd2, 0x40, 0xe1, 0xea, 0xb9, 0xed, 0xc2, 0x4e, 0xa5, 0xf9, 0xe9, + 0xae, 0xc8, 0xca, 0xdd, 0x77, 0x50, 0xed, 0x6a, 0xc4, 0x41, 0xc4, 0x92, 0x6b, 0xd7, 0x70, 0xe0, + 0x9e, 0xb1, 0x12, 0x49, 0xfc, 0x5b, 0x0a, 0x16, 0x26, 0x28, 0x38, 0xaf, 0x15, 0x6c, 0x7c, 0x05, + 0xd5, 0x0c, 0x5b, 0xee, 0xd2, 0x37, 0xf8, 0x5a, 0xe9, 0xc3, 0x7f, 0xd1, 0x3a, 0x14, 0xaf, 0xbc, + 0x7e, 0xaa, 0xf9, 0x4b, 0xe0, 0x69, 0xfe, 0x49, 0xce, 0x69, 0x5a, 0x91, 0xf6, 0x82, 0x9e, 0x53, + 0x2b, 0x5a, 0xa6, 0x9a, 0xe6, 0x35, 0xd4, 0xc7, 0x69, 0x94, 0x59, 0xd6, 0xa1, 0x98, 0x72, 0x84, + 0x22, 0x91, 0xc0, 0xcc, 0xbe, 0x7a, 0x69, 0xa5, 0xdf, 0xf9, 0x80, 0xa4, 0xd1, 0xcd, 0xe9, 0xb7, + 0x0e, 0xc5, 0x2e, 0x49, 0x7c, 0xa9, 0x5a, 0xc9, 0x95, 0x40, 0x26, 0x81, 0x34, 0xa3, 0x5b, 0x26, + 0xd0, 0xa7, 0xf0, 0x9e, 0x61, 0x71, 0x34, 0x8b, 0x28, 0xce, 0x37, 0x96, 0xf4, 0x47, 0x3f, 0x6b, + 0xcd, 0xcf, 0x2c, 0x0e, 0x2e, 0x1e, 0x90, 0xab, 0x9b, 0x9d, 0x61, 0x6b, 0xaa, 0x49, 0x6e, 0xb9, + 0xea, 0x95, 0xc5, 0xa2, 0x9d, 0xe0, 0xd8, 0x4b, 0xcc, 0xb2, 0xeb, 0x50, 0x14, 0xfb, 0x8e, 0x76, + 0xa7, 0x00, 0x38, 0x83, 0x30, 0x50, 0xae, 0xcc, 0x87, 0x81, 0x89, 0xde, 0x82, 0x15, 0xbd, 0xf7, + 0x61, 0x89, 0x32, 0x92, 0x78, 0x3d, 0xdc, 0x21, 0x31, 0xa3, 0xf5, 0xf9, 0xed, 0xc2, 0x4e, 0xd9, + 0xad, 0x28, 0xdc, 0x49, 0xcc, 0xa8, 0xf3, 0x53, 0xce, 0x0a, 0x24, 0xb3, 0xb0, 0x12, 0xfe, 0x03, + 0xa8, 0x08, 0xbf, 0x75, 0x62, 0x12, 0x46, 0x4c, 0xad, 0x0f, 0x02, 0xd5, 0xe6, 0x18, 0xb4, 0x05, + 0x20, 0xa4, 0xe9, 0xf8, 0x24, 0xea, 0x2a, 0x61, 0xca, 0x02, 0xb3, 0x4f, 0xa2, 0xee, 0xac, 0xd9, + 0xe3, 0x6c, 0xc0, 0x7b, 0x87, 0x21, 0x65, 0x46, 0x0e, 0x53, 0x94, 0xfe, 0x9d, 0x83, 0x3b, 0xa3, + 0x23, 0x4a, 0xb6, 0x23, 0x00, 0xdf, 0x60, 0x55, 0xf6, 0xff, 0x5a, 0x65, 0xff, 0x64, 0x92, 0xdd, + 0x21, 0x4a, 0xa6, 0xbe, 0xc5, 0x60, 0xd6, 0xec, 0x68, 0x3c, 0x83, 0x95, 0x11, 0x36, 0x37, 0xa5, + 0x7a, 0xc9, 0x4e, 0xf5, 0xef, 0xa1, 0xfc, 0xfc, 0xf8, 0x94, 0x1b, 0x27, 0xec, 0xa1, 0x3a, 0x2c, + 0xca, 0xdd, 0x52, 0xca, 0x5f, 0x76, 0x35, 0xc8, 0xf7, 0x6e, 0x8a, 0xbd, 0xc4, 0xbf, 0xc4, 0xb4, + 0x9e, 0x17, 0x43, 0x06, 0xe6, 0x54, 0x24, 0x66, 0x21, 0x89, 0x68, 0xbd, 0x20, 0xa9, 0x14, 0xe8, + 0xfc, 0x35, 0x07, 0x95, 0x36, 0x49, 0xd8, 0x91, 0x17, 0xc7, 0x61, 0xd4, 0x43, 0xbf, 0x82, 0x92, + 0x68, 0x55, 0x7c, 0xd2, 0x17, 0xd2, 0x2d, 0x37, 0x57, 0x94, 0x81, 0xda, 0x0a, 0xed, 0x9a, 0x09, + 0xe8, 0x23, 0x58, 0x36, 0xe6, 0xe8, 0xf0, 0xdd, 0x4e, 0x08, 0x5f, 0x74, 0xab, 0x06, 0xcb, 0x59, + 0xa3, 0xbb, 0x50, 0xbe, 0x24, 0x94, 0xc9, 0x19, 0x05, 0x31, 0xa3, 0xc4, 0x11, 0x62, 0x70, 0x03, + 0x16, 0xc5, 0x60, 0x18, 0x0b, 0xe7, 0x96, 0xdd, 0x05, 0x0e, 0xb6, 0x62, 0xe7, 0x9f, 0x39, 0x28, + 0x8a, 0x6c, 0x1c, 0x59, 0xc6, 0x63, 0x97, 0xca, 0x6e, 0xd6, 0x32, 0x1e, 0xbb, 0x1c, 0x2e, 0xc3, + 0x67, 0xa8, 0xce, 0x46, 0x2c, 0xc3, 0x07, 0x1b, 0x50, 0x4a, 0xb0, 0x17, 0x90, 0xa8, 0x7f, 0x2d, + 0x44, 0x28, 0xb9, 0x06, 0x46, 0x0f, 0x61, 0x85, 0xe2, 0x7e, 0x18, 0xa5, 0x6f, 0x3b, 0x09, 0xee, + 0x7b, 0x17, 0xb8, 0x2f, 0x44, 0x29, 0xb9, 0xcb, 0x0a, 0xed, 0x4a, 0x2c, 0xfa, 0x12, 0x2a, 0x71, + 0x42, 0x62, 0xaf, 0xe7, 0x71, 0xe3, 0x89, 0xbd, 0x7f, 0xb9, 0xb9, 0xa1, 0xec, 0x23, 0x64, 0x6d, + 0x0f, 0x87, 0x5d, 0x7b, 0xae, 0xf3, 0x3b, 0x58, 0x39, 0xf6, 0x06, 0x98, 0xc6, 0x9e, 0xcf, 0x93, + 0x28, 0x24, 0x11, 0xcf, 0x34, 0x21, 0x6f, 0x84, 0xd9, 0x8f, 0x24, 0x79, 0x23, 0x94, 0x2a, 0xb9, + 0x15, 0x8e, 0x3b, 0x96, 0x28, 0xb4, 0x09, 0x25, 0xa9, 0x92, 0x4a, 0xdb, 0x92, 0x2b, 0x8c, 0xd5, + 0x0e, 0x03, 0x33, 0x14, 0xc6, 0xbe, 0x52, 0x68, 0x51, 0x1a, 0xce, 0x77, 0x1c, 0x80, 0x56, 0xc4, + 0x7e, 0xf3, 0xc5, 0x2b, 0x1e, 0x42, 0xc3, 0xc0, 0xe2, 0xfc, 0x0b, 0x2a, 0xb0, 0x1c, 0x0f, 0xaa, + 0xa7, 0x07, 0x87, 0x5c, 0x39, 0x25, 0x0d, 0x82, 0x79, 0xde, 0x06, 0xea, 0x1e, 0x83, 0xff, 0x73, + 0x5c, 0x42, 0xfa, 0x66, 0x77, 0xe3, 0xff, 0x1c, 0xc7, 0xae, 0x63, 0x53, 0x33, 0xf8, 0x3f, 0x5f, + 0xa2, 0x8f, 0xaf, 0x94, 0xd9, 0xca, 0xae, 0x04, 0x9c, 0x3f, 0x16, 0xe0, 0xae, 0x58, 0xe1, 0xd4, + 0x8b, 0x82, 0x0b, 0xf2, 0xf6, 0x14, 0xfb, 0x69, 0x12, 0xb2, 0x6b, 0x9e, 0x0b, 0xf8, 0x2d, 0x43, + 0xfb, 0xb0, 0x1a, 0x69, 0x93, 0x74, 0x74, 0x78, 0xf2, 0xe5, 0x2b, 0xcd, 0x3b, 0xca, 0xa6, 0x23, + 0x26, 0x73, 0x6b, 0x51, 0x16, 0x41, 0xd1, 0xb3, 0xa1, 0xef, 0x34, 0x8b, 0xbc, 0x60, 0xb1, 0xae, + 0x58, 0x64, 0xb4, 0x34, 0x1e, 0xd5, 0xe4, 0x9f, 0x41, 0x25, 0x49, 0xa3, 0x8e, 0x47, 0x3b, 0x42, + 0xf9, 0x82, 0x20, 0x5d, 0x55, 0xa4, 0x43, 0x23, 0xba, 0xe5, 0x24, 0x8d, 0xf6, 0xe8, 0x39, 0x37, + 0xca, 0x43, 0x58, 0xd1, 0x91, 0xd3, 0x49, 0x08, 0x61, 0x5d, 0xaa, 0xa3, 0x45, 0xa3, 0x5d, 0x81, + 0x45, 0x9f, 0xc0, 0x1a, 0x4d, 0xe3, 0xb8, 0x8f, 0x07, 0x38, 0x62, 0x5e, 0xbf, 0xd3, 0x4b, 0x48, + 0x1a, 0xd3, 0x7a, 0x71, 0xbb, 0xb0, 0x53, 0x70, 0x91, 0x3d, 0xf4, 0x52, 0x8c, 0xa0, 0xf7, 0x01, + 0xe2, 0x24, 0xbc, 0x0a, 0xfb, 0xb8, 0x87, 0x83, 0xfa, 0x82, 0x60, 0x6a, 0x61, 0xd0, 0xa7, 0xb0, + 0x4e, 0xb1, 0xef, 0x93, 0x41, 0xdc, 0x89, 0x13, 0xc2, 0xbb, 0x40, 0x19, 0xeb, 0x8b, 0xc2, 0xea, + 0x48, 0x8d, 0xb5, 0xe5, 0x10, 0x8f, 0x7a, 0xe7, 0x2f, 0x79, 0x5e, 0x25, 0xa3, 0xf4, 0x6d, 0x9b, + 0x04, 0xca, 0x0b, 0xaa, 0x8e, 0x3c, 0x80, 0xaa, 0x2f, 0x04, 0xea, 0xf0, 0xea, 0x6d, 0x0a, 0xf5, + 0x92, 0x44, 0xb6, 0x05, 0x0e, 0x1d, 0x41, 0x8d, 0x2a, 0xa7, 0xf1, 0x6a, 0xcd, 0xbd, 0xa6, 0xac, + 0xeb, 0x98, 0xaa, 0x39, 0xd5, 0xbf, 0xee, 0x0a, 0x1d, 0x73, 0xf8, 0x22, 0xbd, 0xa6, 0x3e, 0xeb, + 0xcb, 0x2a, 0x54, 0x69, 0xfe, 0xd2, 0xe6, 0x32, 0x2a, 0xe2, 0xee, 0xa9, 0x9c, 0x2b, 0xeb, 0xae, + 0xa6, 0x6c, 0x3c, 0x85, 0x25, 0x7b, 0xe0, 0x56, 0x4d, 0x53, 0x02, 0x68, 0xb8, 0xca, 0xd1, 0x68, + 0x0f, 0x97, 0xb3, 0x76, 0x41, 0x75, 0x08, 0x50, 0xdd, 0x35, 0x3f, 0x04, 0xdc, 0x83, 0xb2, 0x09, + 0x3e, 0x15, 0xfc, 0x43, 0x04, 0x2f, 0xb0, 0x1e, 0x63, 0x78, 0x10, 0x33, 0xb5, 0x45, 0x69, 0xd0, + 0xf9, 0xfb, 0x3c, 0xd4, 0xc6, 0xac, 0xff, 0x28, 0xd3, 0x84, 0x72, 0x83, 0x6e, 0xea, 0x2a, 0x3b, + 0x26, 0x9f, 0xd5, 0x6d, 0x36, 0x64, 0xce, 0xdb, 0x47, 0x37, 0x0d, 0x73, 0x87, 0xf6, 0x49, 0xaf, + 0x13, 0x84, 0x09, 0xf6, 0x19, 0x49, 0xae, 0x95, 0x8c, 0x4b, 0x7d, 0xd2, 0x7b, 0xae, 0x71, 0xe8, + 0x13, 0x80, 0x20, 0xa2, 0x62, 0xe7, 0x0d, 0x7b, 0x42, 0xd2, 0x4a, 0xb3, 0xa6, 0x56, 0x36, 0x7b, + 0x8c, 0x5b, 0x0e, 0x22, 0xaa, 0x04, 0x7d, 0x0c, 0x55, 0x5e, 0xb5, 0x3b, 0x03, 0xb9, 0x3d, 0xc8, + 0xe8, 0xad, 0x34, 0x91, 0x91, 0xd6, 0xec, 0x1c, 0xee, 0x52, 0x3c, 0x04, 0x28, 0xfa, 0x0a, 0x16, + 0x44, 0xcd, 0xa4, 0xf5, 0x05, 0x41, 0xf1, 0x60, 0x4c, 0x3f, 0xe5, 0xe5, 0x43, 0x31, 0x4b, 0x3a, + 0x59, 0x91, 0xa0, 0xdf, 0x42, 0xc5, 0x8b, 0x22, 0xc2, 0x3c, 0x99, 0xd0, 0x8b, 0x82, 0xc3, 0xce, + 0x34, 0x0e, 0x7b, 0xc3, 0xa9, 0x92, 0x8d, 0x4d, 0x8c, 0x9a, 0x50, 0x14, 0x19, 0x5f, 0x2f, 0x09, + 0x6d, 0xef, 0xbd, 0x2b, 0xe4, 0x5c, 0x39, 0xb5, 0xf1, 0x25, 0x54, 0x2c, 0xb1, 0x6e, 0x13, 0x62, + 0x8d, 0xaf, 0xa1, 0x36, 0x2a, 0xcf, 0xad, 0x42, 0xf4, 0x3e, 0x94, 0xc5, 0x01, 0xee, 0x34, 0xc6, + 0xfe, 0xe4, 0x2e, 0xce, 0x79, 0x04, 0x15, 0x31, 0xe5, 0x45, 0xd8, 0x67, 0x38, 0x41, 0xbf, 0xb0, + 0x27, 0x0d, 0xdd, 0x69, 0xb8, 0x68, 0xb2, 0x73, 0x58, 0xe5, 0x3d, 0x8e, 0xc0, 0xeb, 0x66, 0x09, + 0x7d, 0x0c, 0x0b, 0x5d, 0xc1, 0x46, 0x51, 0x23, 0x9b, 0x5a, 0x2e, 0xe0, 0xaa, 0x19, 0x5c, 0x1a, + 0xff, 0x12, 0xfb, 0x6f, 0x74, 0x87, 0x22, 0x00, 0xe7, 0x4f, 0x79, 0x28, 0xb6, 0xac, 0xee, 0x32, + 0x67, 0xba, 0xcb, 0xbb, 0x50, 0x4e, 0x70, 0x4c, 0x3a, 0xcc, 0xeb, 0x99, 0x8e, 0x84, 0x23, 0xce, + 0xbc, 0x1e, 0xe5, 0x9b, 0x9f, 0x18, 0x0c, 0xc2, 0x1e, 0xa6, 0x4c, 0xb7, 0x25, 0x15, 0x8e, 0x7b, + 0x2e, 0x51, 0x3c, 0x2f, 0x69, 0xf8, 0x07, 0x2c, 0xc2, 0x74, 0xde, 0x15, 0xff, 0xe8, 0x81, 0xcc, + 0xcb, 0xe2, 0xb4, 0x3a, 0x2d, 0x52, 0xd5, 0xbe, 0xe1, 0x58, 0x18, 0xb9, 0xe1, 0xa8, 0xc3, 0xa2, + 0x9f, 0x60, 0x8f, 0xe1, 0x40, 0x95, 0x4d, 0x0d, 0xf2, 0x6e, 0xae, 0x4f, 0xbc, 0x00, 0x07, 0x22, + 0x52, 0xca, 0xae, 0x82, 0xd0, 0x87, 0x30, 0x4f, 0x63, 0xec, 0xd7, 0xcb, 0x53, 0xcc, 0x2b, 0x46, + 0x9d, 0x0b, 0x40, 0xb6, 0x75, 0x55, 0xc3, 0xf9, 0x21, 0x2c, 0x08, 0xe3, 0xeb, 0x66, 0x73, 0xc9, + 0xa6, 0x76, 0xd5, 0xd8, 0xcc, 0xa7, 0xac, 0x57, 0x80, 0xe4, 0xb2, 0xf6, 0x21, 0x7c, 0x56, 0xff, + 0x73, 0xcd, 0xaf, 0x70, 0x72, 0x41, 0xa8, 0x6e, 0x31, 0x35, 0xe8, 0xfc, 0x37, 0x07, 0x6b, 0x19, + 0xc6, 0x4a, 0x7a, 0x27, 0xcb, 0x39, 0x2b, 0xbc, 0xe2, 0xfa, 0x04, 0xe6, 0xc3, 0xa8, 0x4b, 0x84, + 0x7f, 0x2b, 0xcd, 0x0f, 0x33, 0x8b, 0x67, 0xb8, 0xed, 0xb6, 0xa2, 0x2e, 0x91, 0xf9, 0x29, 0x28, + 0x66, 0x3e, 0x26, 0x3f, 0x86, 0xb2, 0x21, 0xbd, 0x55, 0x2a, 0x3d, 0x85, 0x9a, 0x90, 0x83, 0x53, + 0xdf, 0xd2, 0x58, 0xce, 0x09, 0xac, 0x5a, 0xb4, 0xca, 0x1e, 0x48, 0x45, 0x82, 0xda, 0x28, 0xf8, + 0xff, 0xcc, 0xbe, 0xfb, 0x57, 0x0e, 0x60, 0x2f, 0x65, 0x97, 0xaa, 0xae, 0xda, 0x21, 0x9a, 0x7b, + 0xc7, 0x25, 0x5c, 0x3e, 0x7b, 0x09, 0xc7, 0x45, 0xf0, 0x52, 0x76, 0xa9, 0xbb, 0x2f, 0xfe, 0xcf, + 0xdb, 0x63, 0x79, 0x06, 0xe8, 0x78, 0x41, 0x90, 0x60, 0x4a, 0x55, 0x1b, 0x56, 0x95, 0xd8, 0x3d, + 0x89, 0xe4, 0xd3, 0xc2, 0x00, 0x47, 0x8c, 0x6f, 0xe6, 0x8c, 0xbc, 0xc1, 0xb2, 0x7f, 0x2d, 0xbb, + 0x55, 0x8d, 0x3d, 0xe3, 0x48, 0x3e, 0x2d, 0xc1, 0xbd, 0x90, 0xb2, 0x44, 0x4f, 0x93, 0x29, 0x54, + 0xd5, 0x58, 0x31, 0xcd, 0xf9, 0x5b, 0x0e, 0x6a, 0xed, 0xb4, 0xdf, 0xcf, 0xdc, 0x53, 0xcd, 0x1a, + 0x8a, 0x1f, 0x29, 0x2d, 0xf2, 0x99, 0x34, 0x1e, 0x9a, 0x47, 0x29, 0xf6, 0x35, 0x2c, 0x53, 0x59, + 0x9e, 0xf5, 0x8e, 0x25, 0xfb, 0xb3, 0x8d, 0x29, 0x3b, 0x81, 0x5b, 0xa5, 0x36, 0xe8, 0xbc, 0x86, + 0x55, 0x4b, 0x44, 0xe5, 0xc4, 0xbb, 0x20, 0x0f, 0x9b, 0x9d, 0x04, 0x77, 0xb5, 0xe9, 0x43, 0x39, + 0xa3, 0x3b, 0xb3, 0x37, 0x5d, 0x40, 0xf2, 0xcc, 0xfe, 0xb3, 0xd4, 0x9f, 0x7c, 0xf5, 0xf1, 0x0c, + 0xd6, 0x32, 0x3c, 0x6f, 0x79, 0x19, 0xb0, 0xae, 0x8a, 0xc3, 0x0b, 0x6a, 0xc5, 0xbb, 0xf3, 0x00, + 0x2a, 0xe7, 0xd3, 0xce, 0x02, 0xf3, 0xfa, 0x2c, 0xf0, 0x10, 0x56, 0x4f, 0xe5, 0xf1, 0xbe, 0x25, + 0x42, 0xa1, 0x1b, 0xca, 0xde, 0x3f, 0x4d, 0x4d, 0x3d, 0x17, 0xff, 0xce, 0x7f, 0x72, 0xb0, 0xf2, + 0x22, 0xec, 0x63, 0x7a, 0x4d, 0x19, 0x1e, 0x88, 0x0b, 0x24, 0xde, 0x17, 0xb1, 0x70, 0x80, 0x29, + 0xf3, 0x06, 0xb1, 0x3a, 0x62, 0x0c, 0x11, 0xe8, 0x31, 0x80, 0xbe, 0x4d, 0x50, 0xed, 0x54, 0xa5, + 0x59, 0xd7, 0x9d, 0xf9, 0xe8, 0x9a, 0x6e, 0x99, 0x6a, 0x14, 0xfa, 0x0c, 0x20, 0xa5, 0x38, 0xe8, + 0x5c, 0x5c, 0x33, 0x4c, 0x95, 0xdf, 0xf5, 0xe6, 0x74, 0x6e, 0x37, 0xe6, 0x7c, 0xd6, 0xb7, 0x7c, + 0x12, 0xfa, 0x1c, 0x2a, 0x61, 0x44, 0x02, 0x2c, 0x7a, 0xf9, 0x40, 0x75, 0x37, 0x93, 0x68, 0x40, + 0x4e, 0x3b, 0xa7, 0x38, 0x70, 0x7e, 0xd2, 0xb5, 0x4f, 0xdb, 0x4d, 0x99, 0x7d, 0x1f, 0x56, 0x65, + 0x98, 0x74, 0x8d, 0xbe, 0xba, 0x88, 0xeb, 0xc3, 0xc9, 0x88, 0x25, 0xdc, 0x5a, 0xa8, 0x36, 0x4d, + 0x3d, 0x7f, 0xd6, 0x70, 0xfa, 0xf8, 0x1e, 0x94, 0xf4, 0xe9, 0x1a, 0x2d, 0x42, 0xe1, 0x6c, 0xbf, + 0x5d, 0x9b, 0xe3, 0x3f, 0xe7, 0xcf, 0xdb, 0xb5, 0xdc, 0xc7, 0x03, 0xa8, 0x8d, 0x9e, 0x2d, 0xd1, + 0x06, 0xac, 0xb5, 0xdd, 0x93, 0xf6, 0xde, 0xcb, 0xbd, 0xb3, 0xd6, 0xc9, 0x71, 0xa7, 0xed, 0xb6, + 0x5e, 0xed, 0x9d, 0x1d, 0xd4, 0xe6, 0xd0, 0x7d, 0xd8, 0xb2, 0x07, 0xbe, 0x3b, 0x39, 0x3d, 0xeb, + 0x9c, 0x9d, 0x74, 0xf6, 0x4f, 0x8e, 0xcf, 0xf6, 0x5a, 0xc7, 0x07, 0x6e, 0x2d, 0x87, 0xb6, 0x60, + 0xd3, 0x9e, 0xf2, 0x6d, 0xeb, 0x79, 0xcb, 0x3d, 0xd8, 0xe7, 0xff, 0x7b, 0x87, 0xb5, 0x7c, 0xf3, + 0x1f, 0x15, 0x58, 0x92, 0x21, 0x8b, 0x93, 0xab, 0xd0, 0xe7, 0xa6, 0x80, 0xe1, 0xd6, 0x86, 0xea, + 0xd6, 0x7d, 0x49, 0xa6, 0x97, 0x68, 0x6c, 0x4e, 0x18, 0x91, 0xd6, 0x74, 0xe6, 0xd0, 0x0b, 0xd5, + 0xb4, 0xc8, 0x4d, 0x01, 0x6d, 0x4e, 0xda, 0x28, 0x24, 0x9b, 0xc6, 0xf4, 0x3d, 0xc4, 0x99, 0x43, + 0xdf, 0xa8, 0xfe, 0x88, 0x3b, 0x0b, 0x6d, 0xd8, 0x53, 0xad, 0xb0, 0x6f, 0xd4, 0xc7, 0x07, 0x6c, + 0x0e, 0xa6, 0x2a, 0x18, 0x0e, 0xa3, 0xa5, 0xcc, 0x70, 0x18, 0x2b, 0x20, 0x52, 0x17, 0x2b, 0x53, + 0x8d, 0x2e, 0xe3, 0x15, 0xc1, 0xe8, 0x32, 0x21, 0xb1, 0x2d, 0x9b, 0xc8, 0xd0, 0xcb, 0xda, 0x24, + 0x93, 0xc6, 0x59, 0x9b, 0x64, 0x23, 0xd5, 0x99, 0x43, 0x7b, 0x50, 0x36, 0x17, 0xff, 0x46, 0xa3, + 0xd1, 0x47, 0x84, 0xa1, 0x7b, 0xc6, 0xde, 0x08, 0x9c, 0x39, 0x74, 0x02, 0xcb, 0xd9, 0x0b, 0x30, + 0x74, 0x6f, 0xca, 0xbd, 0x98, 0x64, 0xb6, 0xf5, 0xce, 0x5b, 0x33, 0x67, 0x0e, 0x9d, 0x43, 0x6d, + 0xf4, 0x8a, 0x10, 0xbd, 0xaf, 0x88, 0xa6, 0x5c, 0x5a, 0x36, 0x3e, 0x98, 0x3a, 0x6e, 0xd8, 0xba, + 0xd6, 0x55, 0x9a, 0x34, 0x2a, 0xda, 0x1a, 0xa5, 0xca, 0x5c, 0xc0, 0x36, 0xde, 0x9f, 0x36, 0x6c, + 0x78, 0x9e, 0xc0, 0x72, 0xf6, 0xfa, 0xd7, 0xe8, 0x3e, 0xf1, 0x1e, 0xb9, 0xb1, 0x35, 0x65, 0x74, + 0xa2, 0x90, 0xf2, 0x12, 0x7b, 0x5c, 0xc8, 0xcc, 0x2d, 0xf9, 0xb8, 0x90, 0xd9, 0xbb, 0xef, 0x11, + 0x9e, 0xf2, 0x65, 0x69, 0x9c, 0x67, 0xe6, 0xe1, 0x6b, 0x9c, 0x67, 0xf6, 0x41, 0x6a, 0xc4, 0x47, + 0xea, 0x3d, 0x60, 0xdc, 0x47, 0xd9, 0xc7, 0x85, 0x71, 0x1f, 0x8d, 0x3c, 0x24, 0x38, 0x73, 0xe8, + 0x35, 0xac, 0x8e, 0xbd, 0x0a, 0xa1, 0x0f, 0xc6, 0x1f, 0x59, 0xb2, 0x69, 0xbf, 0x3d, 0x7d, 0x82, + 0xe1, 0xfc, 0x03, 0xac, 0x4d, 0x78, 0xa4, 0x41, 0xf7, 0xdf, 0xf5, 0x80, 0x23, 0xb9, 0x3b, 0x37, + 0xbf, 0xf1, 0x38, 0x73, 0xe8, 0x0b, 0x28, 0x8a, 0x27, 0x4e, 0xb4, 0x66, 0x72, 0x65, 0xf8, 0xa0, + 0xda, 0x58, 0xcf, 0x22, 0x0d, 0xd5, 0x63, 0x58, 0x90, 0xcf, 0x96, 0xc8, 0x9a, 0x31, 0x7c, 0xee, + 0x6c, 0xbc, 0x37, 0x82, 0xb5, 0xf3, 0xdf, 0x7a, 0xf0, 0x35, 0xf9, 0x3f, 0xfe, 0x34, 0x6c, 0xf2, + 0x7f, 0xc2, 0xfb, 0xb0, 0x33, 0x77, 0xb1, 0x20, 0x2e, 0x64, 0x3f, 0xff, 0x7f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xb6, 0x68, 0x1d, 0x89, 0x77, 0x1e, 0x00, 0x00, } diff --git a/isula/isula_image.proto b/isula/isula_image.proto index 335dc57b8d028f2fdbe32a8c5361e6b95068bf40..7a4258501ad34168fa35a7b3f7ac0579b046e738 100644 --- a/isula/isula_image.proto +++ b/isula/isula_image.proto @@ -76,6 +76,9 @@ service ImageService { // get status of graphdriver rpc GraphdriverStatus(GraphdriverStatusRequest) returns (GraphdriverStatusResponse) {} + // get metadata of graphdriver + rpc GraphdriverMetadata(GraphdriverMetadataRequest) returns (GraphdriverMetadataResponse) {} + // login registry rpc Login(LoginRequest) returns (LoginResponse) {} // logout registry @@ -144,6 +147,17 @@ message GraphdriverStatusResponse { uint32 cc = 3; } +message GraphdriverMetadataRequest { + string name_id = 1; +} + +message GraphdriverMetadataResponse { + map metadata = 1; + string name = 2; + string errmsg = 3; + uint32 cc = 4; +} + message ContainerFsUsageRequest { string name_id = 1; }