import "github.com/luci/gae/service/datastore/meta"
Package meta contains some methods for interacting with GAE's metadata APIs. It only contains an implementation for those metadata APIs we've needed so far, but should be extended to support new ones in the case that we use them.
See metadata docs: https://cloud.google.com/appengine/docs/python/datastore/metadataentityclasses#EntityGroup
GetEntityGroupVersion returns the entity group version for the entity group containing root. If the entity group doesn't exist, this function will return zero and a nil error.
func Namespaces(c context.Context, cb NamespacesCallback) error
Namespaces returns a list of all of the namespaces in the datastore.
This is done by issuing a datastore query for kind "__namespace__". The resulting keys will have IDs for the namespaces, namely:
- The empty namespace will have integer ID 1. This will be forwarded to the callback as "". - Other namespaces will have non-zero string IDs.
NamespacesWithPrefix runs Namespaces, returning only namespaces beginning with the supplied prefix string.
type EntityGroupMeta struct { Parent *ds.Key `gae:"$parent"` Version int64 `gae:"__version__"` // contains filtered or unexported fields }
EntityGroupMeta is the model corresponding to the __entity_group__ model in appengine. You shouldn't need to use this struct directly, but instead should use GetEntityGroupVersion.
NamespacesCallback is the callback type used with Namespaces. The callback will be invoked with each identified namespace.
If the callback returns an error, iteration will stop. If the error is datastore.Stop, Namespaces will stop iterating and return nil. Otherwise, the error will be forwarded.
NamespacesCollector exposes a NamespacesCallback function that aggregates resulting namespaces into the collector slice.
func (c *NamespacesCollector) Callback(v string) error
Callback is a NamespacesCallback which adds each namespace to the collector.
Package meta imports 4 packages (graph). Updated 2017-09-16. Refresh now. Tools for package owners. This is an inactive package (no imports and no commits in at least two years).