mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-03 22:44:24 +01:00
Add additional `context.Context` parameters and `struct` fields to allow trace spans to be created by the `virtcontainers` internal functions, objects and sub-packages. Note that not every function is traced; we can add more traces as desired. Fixes #566. Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
29 lines
794 B
Go
29 lines
794 B
Go
// Copyright (c) 2018 HyperHQ Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package base
|
|
|
|
import (
|
|
"context"
|
|
|
|
vc "github.com/kata-containers/runtime/virtcontainers"
|
|
)
|
|
|
|
// FactoryBase is vm factory's internal base factory interfaces.
|
|
// The difference between FactoryBase and Factory is that the Factory
|
|
// also handles vm config validation/comparison and possible CPU/memory
|
|
// hotplugs. It's better to do it at the factory level instead of doing
|
|
// the same work in each of the factory implementations.
|
|
type FactoryBase interface {
|
|
// Config returns base factory config.
|
|
Config() vc.VMConfig
|
|
|
|
// GetBaseVM returns a paused VM created by the base factory.
|
|
GetBaseVM(ctx context.Context) (*vc.VM, error)
|
|
|
|
// CloseFactory closes the base factory.
|
|
CloseFactory(ctx context.Context)
|
|
}
|