2015-07-02 05:00:48 +00:00
|
|
|
package osl
|
2015-06-12 19:03:06 +00:00
|
|
|
|
|
|
|
// GenerateKey generates a sandbox key based on the passed
|
|
|
|
// container id.
|
|
|
|
func GenerateKey(containerID string) string {
|
2017-03-31 03:31:34 +00:00
|
|
|
return containerID
|
2015-06-12 19:03:06 +00:00
|
|
|
}
|
|
|
|
|
2023-08-20 08:00:29 +00:00
|
|
|
type Namespace struct{}
|
|
|
|
|
|
|
|
func (n *Namespace) Destroy() error { return nil }
|
|
|
|
|
2015-06-12 19:03:06 +00:00
|
|
|
// 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-06-12 19:03:06 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2023-08-20 08:00:29 +00:00
|
|
|
func GetSandboxForExternalKey(path string, key string) (*Namespace, error) {
|
2015-09-09 23:20:54 +00:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:03:06 +00:00
|
|
|
// GC triggers garbage collection of namespace path right away
|
|
|
|
// and waits for it.
|
2023-08-12 09:07:18 +00:00
|
|
|
func GC() {}
|