summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/getsharedbaseimages.go
blob: 05d3d9532aeba7a0fff708529a96bcbddf087fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package hcsshim

import "github.com/sirupsen/logrus"

// GetSharedBaseImages will enumerate the images stored in the common central
// image store and return descriptive info about those images for the purpose
// of registering them with the graphdriver, graph, and tagstore.
func GetSharedBaseImages() (imageData string, err error) {
	title := "hcsshim::GetSharedBaseImages "

	logrus.Debugf("Calling proc")
	var buffer *uint16
	err = getBaseImages(&buffer)
	if err != nil {
		err = makeError(err, title, "")
		logrus.Error(err)
		return
	}
	imageData = convertAndFreeCoTaskMemString(buffer)
	logrus.Debugf(title+" - succeeded output=%s", imageData)
	return
}