123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //go:build windows
- package computestorage
- import (
- "context"
- "encoding/json"
- "github.com/Microsoft/hcsshim/internal/oc"
- "github.com/pkg/errors"
- "go.opencensus.io/trace"
- )
- // ExportLayer exports a container layer.
- //
- // `layerPath` is a path to a directory containing the layer to export.
- //
- // `exportFolderPath` is a pre-existing folder to export the layer to.
- //
- // `layerData` is the parent layer data.
- //
- // `options` are the export options applied to the exported layer.
- func ExportLayer(ctx context.Context, layerPath, exportFolderPath string, layerData LayerData, options ExportLayerOptions) (err error) {
- title := "hcsshim::ExportLayer"
- ctx, span := oc.StartSpan(ctx, title) //nolint:ineffassign,staticcheck
- defer span.End()
- defer func() { oc.SetSpanStatus(span, err) }()
- span.AddAttributes(
- trace.StringAttribute("layerPath", layerPath),
- trace.StringAttribute("exportFolderPath", exportFolderPath),
- )
- ldBytes, err := json.Marshal(layerData)
- if err != nil {
- return err
- }
- oBytes, err := json.Marshal(options)
- if err != nil {
- return err
- }
- err = hcsExportLayer(layerPath, exportFolderPath, string(ldBytes), string(oBytes))
- if err != nil {
- return errors.Wrap(err, "failed to export layer")
- }
- return nil
- }
|