2022-11-01 19:05:23 +00:00
|
|
|
/**
|
|
|
|
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
package cdi
|
|
|
|
|
|
|
|
import (
|
2023-12-01 01:10:10 +00:00
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
|
2022-11-01 19:05:23 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/cmd/nvidia-ctk/cdi/generate"
|
2023-05-09 14:10:42 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/cmd/nvidia-ctk/cdi/list"
|
2023-03-28 10:18:32 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/cmd/nvidia-ctk/cdi/transform"
|
2023-03-22 12:27:43 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/logger"
|
2022-11-01 19:05:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type command struct {
|
2023-03-22 12:27:43 +00:00
|
|
|
logger logger.Interface
|
2022-11-01 19:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewCommand constructs an info command with the specified logger
|
2023-03-22 12:27:43 +00:00
|
|
|
func NewCommand(logger logger.Interface) *cli.Command {
|
2022-11-01 19:05:23 +00:00
|
|
|
c := command{
|
|
|
|
logger: logger,
|
|
|
|
}
|
|
|
|
return c.build()
|
|
|
|
}
|
|
|
|
|
|
|
|
// build
|
|
|
|
func (m command) build() *cli.Command {
|
|
|
|
// Create the 'hook' command
|
|
|
|
hook := cli.Command{
|
|
|
|
Name: "cdi",
|
|
|
|
Usage: "Provide tools for interacting with Container Device Interface specifications",
|
|
|
|
}
|
|
|
|
|
|
|
|
hook.Subcommands = []*cli.Command{
|
|
|
|
generate.NewCommand(m.logger),
|
2023-03-28 10:18:32 +00:00
|
|
|
transform.NewCommand(m.logger),
|
2023-05-09 14:10:42 +00:00
|
|
|
list.NewCommand(m.logger),
|
2022-11-01 19:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &hook
|
|
|
|
}
|