Files
containerd/core/mount/proxy/convert.go
Derek McGowan 8db3010865 Add mounts api service
Signed-off-by: Derek McGowan <derek@mcg.dev>
2025-09-29 17:08:31 -07:00

101 lines
2.3 KiB
Go

/*
Copyright The containerd Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package proxy
import (
"time"
"github.com/containerd/containerd/api/types"
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
"github.com/containerd/containerd/v2/core/mount"
)
func ActivationInfoToProto(a mount.ActivationInfo) *types.ActivationInfo {
return &types.ActivationInfo{
Name: a.Name,
Active: ActiveMountToProto(a.Active),
System: mount.ToProto(a.System),
Labels: a.Labels,
}
}
func ActivationInfoFromProto(a *types.ActivationInfo) mount.ActivationInfo {
if a == nil {
return mount.ActivationInfo{}
}
return mount.ActivationInfo{
Name: a.Name,
Active: ActiveMountFromProto(a.Active),
System: mount.FromProto(a.System),
Labels: a.Labels,
}
}
func ActiveMountToProto(a []mount.ActiveMount) []*types.ActiveMount {
c := make([]*types.ActiveMount, len(a))
for i, m := range a {
c[i] = &types.ActiveMount{
Mount: &types.Mount{
Type: m.Type,
Source: m.Source,
Target: m.Target,
Options: m.Options,
},
MountedAt: toTimestamp(m.MountedAt),
MountPoint: m.MountPoint,
Data: m.MountData,
}
}
return c
}
func ActiveMountFromProto(a []*types.ActiveMount) []mount.ActiveMount {
c := make([]mount.ActiveMount, len(a))
for i, m := range a {
c[i] = mount.ActiveMount{
Mount: mount.Mount{
Type: m.Mount.Type,
Source: m.Mount.Source,
Target: m.Mount.Target,
Options: m.Mount.Options,
},
MountedAt: fromTimestamp(m.MountedAt),
MountPoint: m.MountPoint,
MountData: m.Data,
}
}
return c
}
func toTimestamp(from *time.Time) *timestamppb.Timestamp {
if from == nil {
return nil
}
return timestamppb.New(*from)
}
func fromTimestamp(from *timestamppb.Timestamp) *time.Time {
if from == nil {
return nil
}
t := from.AsTime()
return &t
}