1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/*
* Copyright (c) 2020. Ant Group. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
package snapshot
import (
"context"
"github.com/containerd/containerd/log"
"github.com/containerd/containerd/snapshots"
"github.com/containerd/containerd/snapshots/storage"
"github.com/containerd/nydus-snapshotter/pkg/errdefs"
"github.com/pkg/errors"
)
type WalkFunc = func(id string, info snapshots.Info) bool
func GetSnapshotInfo(ctx context.Context, ms *storage.MetaStore, key string) (string, snapshots.Info, snapshots.Usage, error) {
ctx, t, err := ms.TransactionContext(ctx, false)
if err != nil {
return "", snapshots.Info{}, snapshots.Usage{}, err
}
defer func() {
if err := t.Rollback(); err != nil {
log.L.WithError(err).Errorf("Rollback traction %s", key)
}
}()
id, info, usage, err := storage.GetInfo(ctx, key)
if err != nil {
return "", snapshots.Info{}, snapshots.Usage{}, err
}
return id, info, usage, nil
}
func GetSnapshot(ctx context.Context, ms *storage.MetaStore, key string) (*storage.Snapshot, error) {
ctx, t, err := ms.TransactionContext(ctx, false)
if err != nil {
return nil, err
}
defer func() {
if err := t.Rollback(); err != nil {
log.L.WithError(err).Errorf("Rollback traction %s", key)
}
}()
s, err := storage.GetSnapshot(ctx, key)
if err != nil {
return nil, errors.Wrap(err, "get snapshot")
}
return &s, nil
}
// Iterate all the parents of a snapshot specified by `key`
// Stop the iteration once callback `fn` is invoked successfully and return current iterated snapshot
func IterateParentSnapshots(ctx context.Context, ms *storage.MetaStore, key string, fn WalkFunc) (string, snapshots.Info, error) {
ctx, t, err := ms.TransactionContext(ctx, false)
if err != nil {
return "", snapshots.Info{}, err
}
defer func() {
if err := t.Rollback(); err != nil {
log.L.WithError(err).Errorf("Rollback transaction %s", key)
}
}()
for cKey := key; cKey != ""; {
id, info, _, err := storage.GetInfo(ctx, cKey)
if err != nil {
log.L.WithError(err).Warnf("failed to get snapshot info of %q", cKey)
return "", snapshots.Info{}, err
}
if fn(id, info) {
return id, info, nil
}
cKey = info.Parent
}
return "", snapshots.Info{}, errdefs.ErrNotFound
}
func UpdateSnapshotInfo(ctx context.Context, ms *storage.MetaStore, info snapshots.Info, fieldPaths ...string) (snapshots.Info, error) {
ctx, t, err := ms.TransactionContext(ctx, true)
if err != nil {
return snapshots.Info{}, err
}
info, err = storage.UpdateInfo(ctx, info, fieldPaths...)
if err != nil {
if rerr := t.Rollback(); rerr != nil {
log.L.WithError(rerr).Errorf("update snapshot info")
}
return snapshots.Info{}, err
}
if err := t.Commit(); err != nil {
return snapshots.Info{}, err
}
return info, nil
}
|