mirror of
https://github.com/HDFGroup/hdf5.git
synced 2026-09-25 04:09:44 +03:00
Updates/20260312 (#6289)
* Fixed RFC link * Removed the distracting example displays.
This commit is contained in:
+1
-1
@@ -5,7 +5,7 @@ Navigate back: \ref index "Main"
|
||||
|
||||
<table>
|
||||
<tr><th>RFC ID</th><th>Title</th></tr>
|
||||
<tr> <td>2025-11-15</td> <td>Open access at dl.acm.org/doi/full/10.1145/3731599.3767557</td></tr>
|
||||
<tr> <td>2025-11-15</td> <td><a href="https://dl.acm.org/doi/full/10.1145/3731599.3767557">Securing HDF5 Plugins with Digital Signatures</a></td></tr>
|
||||
<tr> <td>2024-04-22</td> <td>\ref_rfc20240422</td></tr>
|
||||
<tr> <td>2022-08-19</td> <td>\ref_rfc20220819</td></tr>
|
||||
<tr> <td>2021-05-28</td> <td>\ref_rfc20210528</td></tr>
|
||||
|
||||
@@ -2884,29 +2884,6 @@
|
||||
* name or by a handle. Such handles can be obtained by either creating or
|
||||
* opening the dataset.
|
||||
*
|
||||
* Typical stages in the HDF5 dataset life cycle are shown below in introductory
|
||||
* examples.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5D_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5D_examples.c read
|
||||
* </td>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5D_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5D_examples.c delete
|
||||
* </td>
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
*/
|
||||
|
||||
#endif /* H5Dmodule_H */
|
||||
|
||||
@@ -2679,34 +2679,6 @@
|
||||
*
|
||||
* Use the functions in this module to manage HDF5 files.
|
||||
*
|
||||
* In the code snippets below, we show the skeletal life cycle of an HDF5 file,
|
||||
* when creating a new file (left) or when opening an existing file (right).
|
||||
* File creation is essentially controlled through \ref FCPL, and file access to
|
||||
* new and existing files is controlled through \ref FAPL. The file \c name and
|
||||
* creation or access \c mode control the interaction with the underlying
|
||||
* storage such as file systems.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5F_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5F_examples.c read
|
||||
* </td>
|
||||
* </tr>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5F_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5F_examples.c delete
|
||||
* </td>
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
* In addition to general file management functions, there are three categories
|
||||
* of functions that deal with advanced file management tasks and use cases:
|
||||
* 1. The control of the HDF5 \ref MDC
|
||||
|
||||
@@ -861,26 +861,6 @@
|
||||
*
|
||||
* Use the functions in this module to manage HDF5 groups.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5G_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5G_examples.c read
|
||||
* </td>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5G_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5G_examples.c delete
|
||||
* </td>
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
* \details \Bold{Groups in HDF5:} A group associates names with objects and
|
||||
* provides a mechanism for mapping a name to an object. Since all
|
||||
* objects appear in at least one group (with the possible exception of
|
||||
|
||||
@@ -146,26 +146,6 @@
|
||||
* \note Identifiers (of type \ref hid_t) are run-time auxiliaries and
|
||||
* not persisted in the file.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5I_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5I_examples.c read
|
||||
* </td>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5I_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5I_examples.c delete
|
||||
* </td>
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
* \defgroup H5IUD User-defined ID Types
|
||||
* \ingroup H5I
|
||||
*
|
||||
|
||||
@@ -131,25 +131,5 @@
|
||||
* reference count to zero, which can (but should not usually) be affected
|
||||
* by a function in this module.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5O_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5O_examples.c read
|
||||
* </td>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5O_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5O_examples.c delete
|
||||
* </td>
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
*/
|
||||
#endif /* H5Omodule_H */
|
||||
|
||||
@@ -120,37 +120,6 @@
|
||||
*
|
||||
* Use the functions in this module to manage HDF5 filters.
|
||||
*
|
||||
* User-defined filters are created by registering a filter descriptor of
|
||||
* type #H5Z_class_t with the library.
|
||||
*
|
||||
* Available filters can be read or examined at runtime.
|
||||
*
|
||||
* It is conceivable that filters are stateful and that that state be
|
||||
* updated at runtime.
|
||||
*
|
||||
* Filters are deleted by unregistering.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5Z_examples.c filter
|
||||
* \snippet{lineno} H5Z_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5Z_examples.c read
|
||||
* </td>
|
||||
* </tr>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5Z_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5Z_examples.c delete
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
* HDF5 supports a filter pipeline that provides the capability for standard and
|
||||
* customized raw data processing during I/O operations. HDF5 is distributed
|
||||
* with a small set of standard filters such as compression (gzip, SZIP, and a
|
||||
|
||||
@@ -1471,27 +1471,6 @@
|
||||
* Use the functions in this module to manage the life cycle of HDF5 library
|
||||
* instances.
|
||||
*
|
||||
* <table>
|
||||
* <tr><th>Create</th><th>Read</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5_examples.c create
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5_examples.c read
|
||||
* </td>
|
||||
* <tr><th>Update</th><th>Delete</th></tr>
|
||||
* <tr valign="top">
|
||||
* <td>
|
||||
* \snippet{lineno} H5_examples.c update
|
||||
* </td>
|
||||
* <td>
|
||||
* \snippet{lineno} H5_examples.c closing_shop
|
||||
* \snippet{lineno} H5_examples.c delete
|
||||
* </td>
|
||||
* </tr>
|
||||
* </table>
|
||||
*
|
||||
*/
|
||||
|
||||
#endif /* H5module_H */
|
||||
|
||||
Reference in New Issue
Block a user