-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Miloslav Trmač <[email protected]>
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package layout | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"os" | ||
"path/filepath" | ||
|
||
"github.com/containers/image/v5/types" | ||
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1" | ||
) | ||
|
||
// This file is named reader.go for consistency with other transports | ||
// handling of “image containers”, but we don’t actually need a stateful reader object. | ||
|
||
// ListResult wraps the image reference and the manifest for loading | ||
type ListResult struct { | ||
Reference types.ImageReference | ||
ManifestDescriptor imgspecv1.Descriptor | ||
} | ||
|
||
// List returns a slice of manifests included in the archive | ||
func List(dir string) ([]ListResult, error) { | ||
var res []ListResult | ||
|
||
indexJSON, err := os.ReadFile(filepath.Join(dir, imgspecv1.ImageIndexFile)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
var index imgspecv1.Index | ||
if err := json.Unmarshal(indexJSON, &index); err != nil { | ||
return nil, err | ||
} | ||
|
||
for manifestIndex, md := range index.Manifests { | ||
refName := md.Annotations[imgspecv1.AnnotationRefName] | ||
index := -1 | ||
if refName == "" { | ||
index = manifestIndex | ||
} | ||
ref, err := newReference(dir, refName, index) | ||
if err != nil { | ||
return nil, fmt.Errorf("error creating image reference: %w", err) | ||
} | ||
reference := ListResult{ | ||
Reference: ref, | ||
ManifestDescriptor: md, | ||
} | ||
res = append(res, reference) | ||
} | ||
return res, nil | ||
} |