-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Wait function in property package standalone
This function uses CreateFilter to be selective in the updates it receives. Filters can only be added to property collectors, not removed. This means that a property collector is no longer useful after being used by Wait. This in turn means that it is most convenient to have Wait create and destroy a property collector for its own use.
- Loading branch information
Showing
5 changed files
with
120 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
Copyright (c) 2014 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 property | ||
|
||
import ( | ||
"github.com/vmware/govmomi/vim25/types" | ||
"golang.org/x/net/context" | ||
) | ||
|
||
// Wait waits for any of the specified properties of the specified managed | ||
// object to change. It calls the specified function for every update it | ||
// receives. If this function returns false, it continues waiting for | ||
// subsequent updates. If this function returns true, it stops waiting and | ||
// returns. | ||
// | ||
// To only receive updates for the specified managed object, the function | ||
// creates a new property collector and calls CreateFilter. A new property | ||
// collector is required because filters can only be added, not removed. | ||
// | ||
// The newly created collector is destroyed before this function returns (both | ||
// in case of success or error). | ||
// | ||
func Wait(ctx context.Context, c *Collector, obj types.ManagedObjectReference, ps []string, f func([]types.PropertyChange) bool) error { | ||
p, err := c.Create(ctx) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Attempt to destroy the collector using the background context, as the | ||
// specified context may have timed out or have been cancelled. | ||
defer p.Destroy(context.Background()) | ||
|
||
req := types.CreateFilter{ | ||
Spec: types.PropertyFilterSpec{ | ||
ObjectSet: []types.ObjectSpec{ | ||
{ | ||
Obj: obj, | ||
}, | ||
}, | ||
PropSet: []types.PropertySpec{ | ||
{ | ||
PathSet: ps, | ||
Type: obj.Type, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
err = p.CreateFilter(ctx, req) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
for version := ""; ; { | ||
res, err := p.WaitForUpdates(ctx, version) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
version = res.Version | ||
|
||
for _, fs := range res.FilterSet { | ||
for _, os := range fs.ObjectSet { | ||
if os.Obj == obj { | ||
if f(os.ChangeSet) { | ||
return nil | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters