mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
107 lines
2.3 KiB
Go
107 lines
2.3 KiB
Go
/*
|
|
Copyright (c) 2015 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 flags
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/vmware/govmomi/object"
|
|
)
|
|
|
|
type VirtualAppFlag struct {
|
|
common
|
|
|
|
*DatacenterFlag
|
|
*SearchFlag
|
|
|
|
name string
|
|
app *object.VirtualApp
|
|
}
|
|
|
|
var virtualAppFlagKey = flagKey("virtualApp")
|
|
|
|
func NewVirtualAppFlag(ctx context.Context) (*VirtualAppFlag, context.Context) {
|
|
if v := ctx.Value(virtualAppFlagKey); v != nil {
|
|
return v.(*VirtualAppFlag), ctx
|
|
}
|
|
|
|
v := &VirtualAppFlag{}
|
|
v.DatacenterFlag, ctx = NewDatacenterFlag(ctx)
|
|
v.SearchFlag, ctx = NewSearchFlag(ctx, SearchVirtualApps)
|
|
ctx = context.WithValue(ctx, virtualAppFlagKey, v)
|
|
return v, ctx
|
|
}
|
|
|
|
func (flag *VirtualAppFlag) Register(ctx context.Context, f *flag.FlagSet) {
|
|
flag.RegisterOnce(func() {
|
|
flag.DatacenterFlag.Register(ctx, f)
|
|
flag.SearchFlag.Register(ctx, f)
|
|
|
|
env := "GOVC_VAPP"
|
|
value := os.Getenv(env)
|
|
usage := fmt.Sprintf("Virtual App [%s]", env)
|
|
f.StringVar(&flag.name, "vapp", value, usage)
|
|
})
|
|
}
|
|
|
|
func (flag *VirtualAppFlag) Process(ctx context.Context) error {
|
|
return flag.ProcessOnce(func() error {
|
|
if err := flag.DatacenterFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
if err := flag.SearchFlag.Process(ctx); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
func (flag *VirtualAppFlag) VirtualApp() (*object.VirtualApp, error) {
|
|
ctx := context.TODO()
|
|
|
|
if flag.app != nil {
|
|
return flag.app, nil
|
|
}
|
|
|
|
// Use search flags if specified.
|
|
if flag.SearchFlag.IsSet() {
|
|
app, err := flag.SearchFlag.VirtualApp()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
flag.app = app
|
|
return flag.app, nil
|
|
}
|
|
|
|
// Never look for a default virtual app.
|
|
if flag.name == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
finder, err := flag.Finder()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
flag.app, err = finder.VirtualApp(ctx, flag.name)
|
|
return flag.app, err
|
|
}
|