2015-07-02 05:00:48 +00:00
|
|
|
package osl
|
2015-07-21 16:41:01 +00:00
|
|
|
|
|
|
|
// GenerateKey generates a sandbox key based on the passed
|
|
|
|
// container id.
|
|
|
|
func GenerateKey(containerID string) string {
|
|
|
|
maxLen := 12
|
|
|
|
if len(containerID) < maxLen {
|
|
|
|
maxLen = len(containerID)
|
|
|
|
}
|
|
|
|
|
|
|
|
return containerID[:maxLen]
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSandbox provides a new sandbox instance created in an os specific way
|
|
|
|
// provided a key which uniquely identifies the sandbox
|
2023-08-20 08:00:29 +00:00
|
|
|
func NewSandbox(key string, osCreate, isRestore bool) (*Namespace, error) {
|
2015-07-21 16:41:01 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2015-11-24 21:42:28 +00:00
|
|
|
// GetSandboxForExternalKey returns sandbox object for the supplied path
|
2023-08-20 08:00:29 +00:00
|
|
|
func GetSandboxForExternalKey(path string, key string) (*Namespace, error) {
|
2015-11-24 21:42:28 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2015-07-21 16:41:01 +00:00
|
|
|
// GC triggers garbage collection of namespace path right away
|
|
|
|
// and waits for it.
|
|
|
|
func GC() {
|
|
|
|
}
|