2018-09-05 14:54:38 -04:00
|
|
|
package wclayer
|
|
|
|
|
|
|
|
import (
|
2020-05-09 11:16:54 -04:00
|
|
|
"context"
|
|
|
|
|
2018-09-05 14:54:38 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/hcserror"
|
2020-05-09 11:16:54 -04:00
|
|
|
"github.com/Microsoft/hcsshim/internal/oc"
|
|
|
|
"go.opencensus.io/trace"
|
2018-09-05 14:54:38 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// DestroyLayer will remove the on-disk files representing the layer with the given
|
|
|
|
// path, including that layer's containing folder, if any.
|
2020-05-09 11:16:54 -04:00
|
|
|
func DestroyLayer(ctx context.Context, path string) (err error) {
|
2019-02-28 13:16:30 -05:00
|
|
|
title := "hcsshim::DestroyLayer"
|
2020-05-09 11:16:54 -04:00
|
|
|
ctx, span := trace.StartSpan(ctx, title)
|
|
|
|
defer span.End()
|
|
|
|
defer func() { oc.SetSpanStatus(span, err) }()
|
|
|
|
span.AddAttributes(trace.StringAttribute("path", path))
|
2018-09-05 14:54:38 -04:00
|
|
|
|
2019-02-28 13:16:30 -05:00
|
|
|
err = destroyLayer(&stdDriverInfo, path)
|
2018-09-05 14:54:38 -04:00
|
|
|
if err != nil {
|
2019-02-28 13:16:30 -05:00
|
|
|
return hcserror.New(err, title+" - failed", "")
|
2018-09-05 14:54:38 -04:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|