2016-12-12 18:05:53 -05:00
|
|
|
package plugin
|
2016-09-07 20:01:10 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/plugins"
|
|
|
|
"github.com/docker/docker/plugin/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Store manages the plugin inventory in memory and on-disk
|
|
|
|
type Store struct {
|
|
|
|
sync.RWMutex
|
|
|
|
plugins map[string]*v2.Plugin
|
|
|
|
/* handlers are necessary for transition path of legacy plugins
|
|
|
|
* to the new model. Legacy plugins use Handle() for registering an
|
|
|
|
* activation callback.*/
|
2016-10-15 01:40:28 -04:00
|
|
|
handlers map[string][]func(string, *plugins.Client)
|
2016-09-07 20:01:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewStore creates a Store.
|
2017-03-17 17:57:23 -04:00
|
|
|
func NewStore() *Store {
|
2016-09-07 20:01:10 -04:00
|
|
|
return &Store{
|
|
|
|
plugins: make(map[string]*v2.Plugin),
|
2016-10-15 01:40:28 -04:00
|
|
|
handlers: make(map[string][]func(string, *plugins.Client)),
|
2016-09-07 20:01:10 -04:00
|
|
|
}
|
|
|
|
}
|