mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
65 lines
1.6 KiB
Go
65 lines
1.6 KiB
Go
/*
|
|
Copyright The containerd Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package api
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (v *ValidateContainerAdjustmentRequest) AddPlugin(name, index string) {
|
|
v.Plugins = append(v.Plugins, &PluginInstance{
|
|
Name: name,
|
|
Index: index,
|
|
})
|
|
}
|
|
|
|
func (v *ValidateContainerAdjustmentRequest) AddResponse(rpl *CreateContainerResponse) {
|
|
v.Adjust = rpl.Adjust
|
|
v.Update = rpl.Update
|
|
}
|
|
|
|
func (v *ValidateContainerAdjustmentRequest) AddOwners(owners *OwningPlugins) {
|
|
v.Owners = owners
|
|
}
|
|
|
|
func (v *ValidateContainerAdjustmentResponse) ValidationResult(plugin string) error {
|
|
if !v.Reject {
|
|
return nil
|
|
}
|
|
|
|
reason := v.Reason
|
|
if reason == "" {
|
|
reason = "unknown rejection reason"
|
|
}
|
|
|
|
return fmt.Errorf("validator %q rejected container adjustment, reason: %s", plugin, reason)
|
|
}
|
|
|
|
func (v *ValidateContainerAdjustmentRequest) GetPluginMap() map[string]*PluginInstance {
|
|
if v == nil {
|
|
return nil
|
|
}
|
|
|
|
plugins := make(map[string]*PluginInstance)
|
|
for _, p := range v.Plugins {
|
|
plugins[p.Name] = &PluginInstance{Name: p.Name}
|
|
plugins[p.Index+"-"+p.Name] = p
|
|
}
|
|
|
|
return plugins
|
|
}
|