Developer API¶
The classes and functions documented here will be of use to developers who wish to create their own custom ASDF types and extensions.
asdf.types Module¶
Functions¶
|
Format a YAML tag. |
Classes¶
Base class for all user-defined types. |
|
|
Base class for all built-in ASDF types. |
The base class of all custom types in the tree. |
Class Inheritance Diagram¶
asdf.tagged Module¶
This file manages a transient representation of the tree made up of
simple Python data types (lists, dicts, scalars) wrapped inside of
Tagged
subclasses, which add a tag
attribute to hold the
associated YAML tag.
Below “basic data types” refers to the basic built-in data types defined in the core YAML specification. “Custom data types” are specialized tags that are added by ASDF or third-parties that are not in the YAML specification.
When YAML is loaded from disk, we want to first validate it using JSON
schema, which only understands basic Python data types, not the
Nodes
that pyyaml
uses as its intermediate representation.
However, basic Python data types do not preserve the tag information
from the YAML file that we need later to convert elements to custom
data types. Therefore, the approach here is to wrap those basic types
inside of Tagged
objects long enough to run through the jsonschema
validator, and then convert to custom data types and throwing away the
tag annotations in the process.
Upon writing, the custom data types are first converted to basic
Python data types wrapped in Tagged
objects. The tags assigned to
the Tagged
objects are then used to write tags to the YAML file.
All of this is an implementation detail of the our custom YAML loader
and dumper (yamlutil.AsdfLoader
and yamlutil.AsdfDumper
) and
is not intended to be exposed to the end user.
Functions¶
|
Tag an object by wrapping it in a |
|
Get the tag associated with the instance, if there is one. |
Classes¶
|
Base class of classes that wrap a given object and store a tag with it. |
|
A Python dict with a tag attached. |
|
A Python list with a tag attached. |
|
A Python string with a tag attached. |
Class Inheritance Diagram¶
asdf.extension Package¶
Support for plugins that extend asdf to serialize additional custom types.
Functions¶
|
Get a previously created ExtensionManager for the specified extensions, or create and cache one if necessary. |
Get the resolver that includes mappings from all installed extensions. |
|
|
Get a previously created AsdfExtensionList for the specified extensions, or create and cache one if necessary. |
Classes¶
Abstract base class defining an extension to ASDF. |
|
|
Proxy that wraps an extension, provides default implementations of optional methods, and carries additional information on the package that provided the extension. |
|
Extension implementation that reads the extension URI, ASDF Standard requirement, and tag list from a manifest document. |
|
Wraps a list of extensions and indexes their converters by tag and by Python type. |
|
Container for properties of a custom YAML tag. |
Abstract base class for plugins that convert nodes from the parsed YAML tree into custom objects, and vice versa. |
|
|
Proxy that wraps a |
Abstract base class for plugins that compress binary data. |
|
Abstract base class defining a (legacy) extension to ASDF. |
|
|
Manage a set of extensions that are in effect. |
This is the "extension" to ASDF that includes all the built-in tags. |
Class Inheritance Diagram¶
asdf.resource Module¶
Support for plugins that provide access to resources such as schemas.
Functions¶
Classes¶
|
Wrapper around a resource mapping that carries additional information on the package that provided the mapping. |
|
A resource mapping that reads resource content from a directory or directory tree. |
|
Wraps multiple resource mappings into a single interface with some friendlier error handling. |
Resource mapping that fetches metaschemas from the jsonschema package. |
Class Inheritance Diagram¶
asdf.yamlutil Module¶
Functions¶
|
Convert a tree, possibly containing custom data types that aren't directly representable in YAML, to a tree of basic data types, annotated with tags. |
|
Convert a tree containing only basic data types, annotated with tags, to a tree containing custom data types. |
asdf.treeutil Module¶
Utility functions for managing tree-like data structures.
Functions¶
|
Walking through a tree of objects, calling a given function at each node. |
|
Iterate over all nodes in a tree, in depth-first order. |
|
Modify a tree by walking it with a callback function. |
|
Retrieve the children (and their dict keys or list/tuple indices) of an ASDF tree node. |
|
Determine if an ASDF tree node is an instance of a "container" type (i.e., value may contain child nodes). |
asdf.util Module¶
Functions¶
|
Formats a list for human readability. |
|
For a given Numpy array, finds the base array that "owns" the actual data. |
|
For a given URI, return the part without any fragment. |
|
For a given local file path, return a file:// url. |
|
Returns all subclasses of a class. |
|
Calculates the amount of extra space to add to a block given the user's request for the amount of extra space. |
|
Resolve a name like |
|
Determine if a value is an instance of a "primitive" type. |
|
Determine if a URI matches a URI pattern with possible wildcards. |
|
Given a class or instance of a class, returns a string representing the fully specified path of the class. |
asdf.versioning Module¶
This module deals with things that change between different versions of the ASDF spec.
Functions¶
|
Split a tag into its base and version. |
|
Join the root and version of a tag back together. |
Classes¶
|
This class adds features to the existing |
|
|
This mix-in is required in order to impose the total ordering that we want for |
Class Inheritance Diagram¶
asdf.schema Module¶
Functions¶
|
Validate the given instance (which must be a tagged tree) against the appropriate schema. |
|
For any default values in the schema, add them to the tree if they don't exist. |
|
For any values in the tree that are the same as the default values specified in the schema, remove them from the tree. |
|
Check a given schema to make sure it is valid YAML schema. |
asdf.tests.helpers Module¶
Functions¶
|
|
|
Assert that two ASDF trees match. |
|
Assert that a given tree saves to ASDF and, when loaded back, the tree matches the original tree. |
|
Given a string of YAML content, adds the extra pre- and post-amble to make it an ASDF file. |
|
Get the file sizes in a directory. |
|
Return a string that displays a list of unexpected warnings |