Files
virtual-kubelet/vendor/github.com/vmware/govmomi/govc/object/find.go
Loc Nguyen 513cebe7b7 VMware vSphere Integrated Containers provider (#206)
* Add Virtual Kubelet provider for VIC

Initial virtual kubelet provider for VMware VIC.  This provider currently
handles creating and starting of a pod VM via the VIC portlayer and persona
server.  Image store handling via the VIC persona server.  This provider
currently requires the feature/wolfpack branch of VIC.

* Added pod stop and delete.  Also added node capacity.

Added the ability to stop and delete pod VMs via VIC.  Also retrieve
node capacity information from the VCH.

* Cleanup and readme file

Some file clean up and added a Readme.md markdown file for the VIC
provider.

* Cleaned up errors, added function comments, moved operation code

1. Cleaned up error handling.  Set standard for creating errors.
2. Added method prototype comments for all interface functions.
3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder.

* Add mocking code and unit tests for podcache, podcreator, and podstarter

Used the unit test framework used in VIC to handle assertions in the provider's
unit test.  Mocking code generated using OSS project mockery, which is compatible
with the testify assertion framework.

* Vendored packages for the VIC provider

Requires feature/wolfpack branch of VIC and a few specific commit sha of
projects used within VIC.

* Implementation of POD Stopper and Deleter unit tests (#4)

* Updated files for initial PR
2018-06-04 15:41:32 -07:00

319 lines
6.1 KiB
Go

/*
Copyright (c) 2017 VMware, Inc. All Rights Reserved.
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 object
import (
"bytes"
"context"
"flag"
"fmt"
"strings"
"github.com/vmware/govmomi/govc/cli"
"github.com/vmware/govmomi/govc/flags"
"github.com/vmware/govmomi/object"
"github.com/vmware/govmomi/property"
"github.com/vmware/govmomi/view"
"github.com/vmware/govmomi/vim25"
"github.com/vmware/govmomi/vim25/types"
)
type find struct {
*flags.DatacenterFlag
ref bool
kind kinds
name string
maxdepth int
}
var alias = []struct {
name string
kind string
}{
{"a", "VirtualApp"},
{"c", "ClusterComputeResource"},
{"d", "Datacenter"},
{"f", "Folder"},
{"g", "DistributedVirtualPortgroup"},
{"h", "HostSystem"},
{"m", "VirtualMachine"},
{"n", "Network"},
{"o", "OpaqueNetwork"},
{"p", "ResourcePool"},
{"r", "ComputeResource"},
{"s", "Datastore"},
{"w", "DistributedVirtualSwitch"},
}
func aliasHelp() string {
var help bytes.Buffer
for _, a := range alias {
fmt.Fprintf(&help, " %s %s\n", a.name, a.kind)
}
return help.String()
}
type kinds []string
func (e *kinds) String() string {
return fmt.Sprint(*e)
}
func (e *kinds) Set(value string) error {
*e = append(*e, e.alias(value))
return nil
}
func (e *kinds) alias(value string) string {
if len(value) != 1 {
return value
}
for _, a := range alias {
if a.name == value {
return a.kind
}
}
return value
}
func (e *kinds) wanted(kind string) bool {
if len(*e) == 0 {
return true
}
for _, k := range *e {
if kind == k {
return true
}
}
return false
}
func init() {
cli.Register("find", &find{})
}
func (cmd *find) Register(ctx context.Context, f *flag.FlagSet) {
cmd.DatacenterFlag, ctx = flags.NewDatacenterFlag(ctx)
cmd.DatacenterFlag.Register(ctx, f)
f.Var(&cmd.kind, "type", "Resource type")
f.StringVar(&cmd.name, "name", "*", "Resource name")
f.IntVar(&cmd.maxdepth, "maxdepth", -1, "Max depth")
f.BoolVar(&cmd.ref, "i", false, "Print the managed object reference")
}
func (cmd *find) Usage() string {
return "[ROOT] [KEY VAL]..."
}
func (cmd *find) Description() string {
atable := aliasHelp()
return fmt.Sprintf(`Find managed objects.
ROOT can be an inventory path or ManagedObjectReference.
ROOT defaults to '.', an alias for the root folder or DC if set.
Optional KEY VAL pairs can be used to filter results against object instance properties.
Use the govc 'object.collect' command to view possible object property keys.
The '-type' flag value can be a managed entity type or one of the following aliases:
%s
Examples:
govc find
govc find /dc1 -type c
govc find vm -name my-vm-*
govc find . -type n
govc find . -type m -runtime.powerState poweredOn
govc find . -type m -datastore $(govc find -i datastore -name vsanDatastore)
govc find . -type s -summary.type vsan
govc find . -type h -hardware.cpuInfo.numCpuCores 16`, atable)
}
// rootMatch returns true if the root object path should be printed
func (cmd *find) rootMatch(ctx context.Context, root object.Reference, client *vim25.Client, filter property.Filter) bool {
ref := root.Reference()
if !cmd.kind.wanted(ref.Type) {
return false
}
if len(filter) == 1 && filter["name"] == "*" {
return true
}
var content []types.ObjectContent
pc := property.DefaultCollector(client)
_ = pc.RetrieveWithFilter(ctx, []types.ManagedObjectReference{ref}, filter.Keys(), &content, filter)
return content != nil
}
func (cmd *find) Run(ctx context.Context, f *flag.FlagSet) error {
client, err := cmd.Client()
if err != nil {
return err
}
finder, err := cmd.Finder()
if err != nil {
return err
}
root := client.ServiceContent.RootFolder
rootPath := "/"
arg := f.Arg(0)
props := f.Args()
if len(props) > 0 {
if strings.HasPrefix(arg, "-") {
arg = "."
} else {
props = props[1:]
}
}
if len(props)%2 != 0 {
return flag.ErrHelp
}
switch arg {
case rootPath:
case "", ".":
dc, _ := cmd.DatacenterIfSpecified()
if dc == nil {
arg = rootPath
} else {
arg = "."
root = dc.Reference()
rootPath = dc.InventoryPath
}
default:
l, ferr := finder.ManagedObjectList(ctx, arg)
if ferr != nil {
return err
}
switch len(l) {
case 0:
return fmt.Errorf("%s not found", arg)
case 1:
root = l[0].Object.Reference()
rootPath = l[0].Path
default:
return flag.ErrHelp
}
}
filter := property.Filter{}
if len(props)%2 != 0 {
return flag.ErrHelp
}
for i := 0; i < len(props); i++ {
key := props[i]
if !strings.HasPrefix(key, "-") {
return flag.ErrHelp
}
key = key[1:]
i++
val := props[i]
if xf := f.Lookup(key); xf != nil {
// Support use of -flag following the ROOT arg (flag package does not do this)
if err = xf.Value.Set(val); err != nil {
return err
}
} else {
filter[key] = val
}
}
filter["name"] = cmd.name
printPath := func(o types.ManagedObjectReference, p string) {
if cmd.ref {
fmt.Fprintln(cmd.Out, o)
return
}
path := strings.Replace(p, rootPath, arg, 1)
fmt.Fprintln(cmd.Out, path)
}
recurse := false
switch cmd.maxdepth {
case -1:
recurse = true
case 0:
case 1:
default:
return flag.ErrHelp // TODO: ?
}
if cmd.rootMatch(ctx, root, client, filter) {
printPath(root, arg)
}
if cmd.maxdepth == 0 {
return nil
}
m := view.NewManager(client)
v, err := m.CreateContainerView(ctx, root, cmd.kind, recurse)
if err != nil {
return err
}
defer v.Destroy(ctx)
objs, err := v.Find(ctx, cmd.kind, filter)
if err != nil {
return err
}
for _, o := range objs {
var path string
if !cmd.ref {
e, err := finder.Element(ctx, o)
if err != nil {
return err
}
path = e.Path
}
printPath(o, path)
}
return nil
}