summaryrefslogtreecommitdiff
path: root/vendor/github.com/Microsoft/hcsshim/internal/wclayer/nametoguid.go
blob: 741994ba4dca0437fc2f28d8eeabe4c82bdf652d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package wclayer

import (
	"github.com/Microsoft/hcsshim/internal/guid"
	"github.com/Microsoft/hcsshim/internal/hcserror"
	"github.com/sirupsen/logrus"
)

// NameToGuid converts the given string into a GUID using the algorithm in the
// Host Compute Service, ensuring GUIDs generated with the same string are common
// across all clients.
func NameToGuid(name string) (id guid.GUID, err error) {
	title := "hcsshim::NameToGuid "

	err = nameToGuid(name, &id)
	if err != nil {
		err = hcserror.Errorf(err, title, "name=%s", name)
		logrus.Error(err)
		return
	}

	logrus.Debugf(title+"name:%s guid:%s", name, id.String())
	return
}