mirror of
https://github.com/containers/podman.git
synced 2025-09-09 19:52:21 +08:00

* registry.PodmanConfig() new returns a pointer to the source of truth Signed-off-by: Jhon Honce <jhonce@redhat.com>
36 lines
1.2 KiB
Go
36 lines
1.2 KiB
Go
// +build !ABISupport
|
|
|
|
package infra
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/containers/libpod/pkg/bindings"
|
|
"github.com/containers/libpod/pkg/domain/entities"
|
|
"github.com/containers/libpod/pkg/domain/infra/tunnel"
|
|
)
|
|
|
|
func NewContainerEngine(facts *entities.PodmanConfig) (entities.ContainerEngine, error) {
|
|
switch facts.EngineMode {
|
|
case entities.ABIMode:
|
|
return nil, fmt.Errorf("direct runtime not supported")
|
|
case entities.TunnelMode:
|
|
ctx, err := bindings.NewConnection(context.Background(), facts.Uri, facts.Identities...)
|
|
return &tunnel.ContainerEngine{ClientCxt: ctx}, err
|
|
}
|
|
return nil, fmt.Errorf("runtime mode '%v' is not supported", facts.EngineMode)
|
|
}
|
|
|
|
// NewImageEngine factory provides a libpod runtime for image-related operations
|
|
func NewImageEngine(facts *entities.PodmanConfig) (entities.ImageEngine, error) {
|
|
switch facts.EngineMode {
|
|
case entities.ABIMode:
|
|
return nil, fmt.Errorf("direct image runtime not supported")
|
|
case entities.TunnelMode:
|
|
ctx, err := bindings.NewConnection(context.Background(), facts.Uri, facts.Identities...)
|
|
return &tunnel.ImageEngine{ClientCxt: ctx}, err
|
|
}
|
|
return nil, fmt.Errorf("runtime mode '%v' is not supported", facts.EngineMode)
|
|
}
|