![]() |
NetCDF 4.9.3
|
The processes by which plugins are installed into some directory and the process by which plugins are located are unfortunately complicated. This is in part due to the historical requirements to support existing HDF5 and Zarr mechanisms.
This document describes the following major processes:
The netcdf-c library maintains an internal sequence of directory paths – collectively called the plugin path – that controls the search for plugin libraries. Basically, when looking for a specific plugin, each directory in the plugin path is examined in order. For each such directory, the files in that directory are checked to see if it contains the specified plugin. The details of how a file is processed is described in the document filters.md.
The netcdf-c search algorithm is closely tied to the HDF5 discovery process. The HDF5 process searches its own internal plugin path (sequence of directories) in order to discover a specific plugin library.
The addition of NCZarr support to the netcdf-c library requires yet another plugin path (sequence of directories) for its search process.
It is important to know that the plugin path is completely controlled by a global plugin path. If it changes, then this global plugin path is propagated to HDF5 and NCZarr to ensure that all such plugin paths use the same sequence of directories for discovery.
As of netcdf-c version 4.9.3, it is possible for a client program to set the global plugin path to control plugin discovery. Since the global path and the HDF5 and NCZarr paths are kept in sync, this means that both HDF5 and NCZarr will look in the same directories in order to locate specified plugins. Appendix E.1 defines the current API for managing the global plugin path.
Note that it is best practice for a client program to use the API to set the plugin path before any calls to nc_open or nc_create. Modifying the plugin paths later may fail because it cannot be guaranteed that the underlying implementations (i.e. HDF5 or NCZarr) will take notice of the change.
When the netcdf-c library initializes itself, it chooses an initial global plugin path using the following rules, which are those used by the HDF5 library:
This initial global plugin path will be propagated to HDF5 and NCZarr.
At build-time, the target location directory into which libraries implementing plugins are installed is specified using a special ./configure option
or its corresponding cmake option.
At build time, certain plugin-related constants are constructed.
Table showing the build-time computation of DEFAULT_PLUGIN_INSTALL_DIR and DEFAULT_PLUGIN_SEARCH_PATH. | |||
–with-plugin-dir | –prefix | DEFAULT_PLUGIN_INSTALL_DIR | DEFAULT_PLUGIN_SEARCH_PATH |
---|---|---|---|
undefined | undefined | undefined | PLATFORMDEFALT |
undefined | <abspath-prefix> | <abspath-prefix>/hdf5/lib/plugin | <abspath-prefix>/hdf5/lib/plugin<SEP>PLATFORMDEFALT |
<abspath-plugins> | N.A. | <abspath-plugins> | <abspath-plugins><SEP>PLATFORMDEFALT |
Notes:
When the netcdf-c library initializes itself (at runtime), it chooses an initial global plugin path for the config.h value. This value defaults to NETCDF_PLUGIN_SEARCH_PATH. If, however, HDF5_PLUGIN_PATH is defined, then it is used to override NETCDF_PLUGIN_SEARCH_PATH.
Table showing the computation of the initial global plugin path | |
HDF5_PLUGIN_PATH | Initial global plugin path |
---|---|
undefined | NETCDF_PLUGIN_SEARCH_PATH |
<path1;...pathn> | <path1;...pathn> |
Specifically, note that modifying the plugin path must be done "atomically". That is, in a multi-threaded environment, it is important that the sequence of actions involved in setting up the plugin path must be done by a single processor or in some other way as to guarantee that two or more processors are not simultaneously accessing the plugin path get/set operations.
As an example, assume there exists a mutex lock called PLUGINLOCK. Then any processor accessing the plugin paths should operate as follows:
It is assumed here that there only needs to be a single set of plugin path directories that is shared by all filter code and is independent of any file descriptor; it is global in other words. This means, for example, that the path list for NCZarr and for HDF5 will always be the same.
However, and internally, processing the set of plugin paths depends on the particular NC_FORMATX value (NC_FORMATX_NC_HDF5 and NC_FORMATX_NCZARR, currently). So the nc_plugin_path_set function, will take the paths it is given and propagate them to each of the NC_FORMATX dispatchers to store in a way that is appropriate to the given dispatcher.
There is a complication with respect to the nc_plugin_path_get function. It is possible for users to bypass the netcdf API and modify the HDF5 plugin paths directly. This can result in an inconsistent plugin path between the value used by HDF5 and the global value used by netcdf-c. Since there is no obvious fix for this, we warn the user of this possibility and otherwise ignore it.
The API makes use of a counted vector of strings representing the sequence of directories in the path. The relevant type definition is as follows.
The API proposed in this PR looks like this (from netcdf-c/include/netcdf_filter.h).
int nc_plugin_path_ndirs(size_t* ndirsp);
This function returns the number of directories in the sequence if internal directories of the internal plugin path list.
The argument is as follows:
int nc_plugin_path_get(NCPluginList* dirs);
This function returns the current sequence of directories from the internal plugin path list. Since this function does not modify the plugin path, it does not need to be locked; it is only when used to get the path to be modified that locking is required.
The argument is as follows:
If the value of dirs.dirs is NULL (the normal case), then memory is allocated to hold the vector of directories. Otherwise, use the memory of *dirs.dirs to hold the vector of directories.
int nc_plugin_path_set(const NCPluginList* dirs);
This function empties the current internal path sequence and replaces it with the sequence of directories argument. Using an ndirs argument of 0 will clear the set of plugin paths.
The argument are as follows:
HDF5_PLUGIN_PATH is a typical Windows or Unix style path-list. That is it is a sequence of absolute directory paths separated by a specific separator character. For Windows, the separator character is a semicolon (';') and for Unix, it is a colon (':').
At the moment, NetCDF optionally (i.e. not overridden) uses the existing HDF5 environment variable HDF5_PLUGIN_PATH to locate the directories in which plugin libraries are located. It also optionally uses the last directory in the path as the installation directory. This is used both for the HDF5 filter wrappers but also the NCZarr codec wrappers.
Author: Dennis Heimbigner
Email: denni.nosp@m.s.he.nosp@m.imbig.nosp@m.ner@.nosp@m.gmail.nosp@m..com
Initial Version: 9/28/2024
Last Revised: 9/28/2024