diff options
author | baude <bbaude@redhat.com> | 2018-03-20 10:21:13 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-21 16:20:14 +0000 |
commit | 3428de0672afcd94ce65d7c29fd23e44e7e2b465 (patch) | |
tree | 1fa7713d169aca7eb17201b83bf8bf11740dceb8 /libpod/image/image.go | |
parent | 64416f14be695537379f9ac0a54b14c65db9545f (diff) | |
download | podman-3428de0672afcd94ce65d7c29fd23e44e7e2b465.tar.gz podman-3428de0672afcd94ce65d7c29fd23e44e7e2b465.tar.bz2 podman-3428de0672afcd94ce65d7c29fd23e44e7e2b465.zip |
Migrate podman images to image library
Signed-off-by: baude <bbaude@redhat.com>
Closes: #523
Approved by: mheon
Diffstat (limited to 'libpod/image/image.go')
-rw-r--r-- | libpod/image/image.go | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/libpod/image/image.go b/libpod/image/image.go index 5e69a0a98..15fc5174c 100644 --- a/libpod/image/image.go +++ b/libpod/image/image.go @@ -29,12 +29,16 @@ import ( // Image is the primary struct for dealing with images // It is still very much a work in progress type Image struct { + // Adding these two structs for now but will cull when we near + // completion of this library. inspect.ImageData + inspect.ImageResult InputName string Local bool //runtime *libpod.Runtime image *storage.Image imageruntime *Runtime + repotagsMap map[string][]string } // Runtime contains the store @@ -496,6 +500,28 @@ func (i *Image) History() ([]ociv1.History, []types.BlobInfo, error) { return oci.History, img.LayerInfos(), nil } +// Dangling returns a bool if the image is "dangling" +func (i *Image) Dangling() bool { + return len(i.Names()) == 0 +} + +// Labels returns the image's labels +func (i *Image) Labels() (map[string]string, error) { + sr, err := i.toStorageReference() + if err != nil { + return nil, err + } + ic, err := sr.NewImage(&types.SystemContext{}) + if err != nil { + return nil, err + } + imgInspect, err := ic.Inspect() + if err != nil { + return nil, err + } + return imgInspect.Labels, nil +} + // Import imports and image into the store and returns an image func Import(path, reference string, writer io.Writer, signingOptions SigningOptions, imageConfig ociv1.Image, runtime *Runtime) (*Image, error) { file := TarballTransport + ":" + path |