This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a change to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
from 496130940f `TiledGridResource.getFillValue()` should return an array with one value per band instead of a single value for all bands. new 905edce310 Replace the error management of `GDALStore` by a more robust mechanism based on the registration of an error handler in GDAL. new b1b0a7fe57 Use library-wide cleaner and shutdown hook in `GDALStore`. new dab1256806 Better `probeContent` implementation, including MIME type. `GDALStore.close()` needs to close child components too. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../factory/ConcurrentAuthorityFactory.java | 24 +- .../src/org.apache.sis.util/main/module-info.java | 1 + .../jdk/JDK17.java => system/Cleaners.java} | 23 +- .../apache/sis/system/ReferenceQueueConsumer.java | 13 +- .../main/org/apache/sis/system/Shutdown.java | 2 +- .../main/org/apache/sis/util/collection/Cache.java | 1 + .../org/apache/sis/test/LogRecordCollector.java | 2 +- .../main/org/apache/sis/storage/gdal/Band.java | 11 +- .../org/apache/sis/storage/gdal/ErrorHandler.java | 247 +++++++++++++++++++++ .../main/org/apache/sis/storage/gdal/GDAL.java | 166 ++++---------- .../org/apache/sis/storage/gdal/GDALStore.java | 77 +++++-- .../apache/sis/storage/gdal/GDALStoreProvider.java | 25 +-- .../main/org/apache/sis/storage/gdal/Opener.java | 48 +++- .../org/apache/sis/storage/gdal/TiledCoverage.java | 18 +- .../org/apache/sis/storage/gdal/TiledResource.java | 48 +++- .../apache/sis/storage/panama/LibraryLoader.java | 3 +- .../apache/sis/storage/panama/NativeFunctions.java | 23 +- .../org/apache/sis/storage/gdal/GDALStoreTest.java | 24 +- 18 files changed, 527 insertions(+), 229 deletions(-) copy endorsed/src/org.apache.sis.util/main/org/apache/sis/{pending/jdk/JDK17.java => system/Cleaners.java} (63%) create mode 100644 incubator/src/org.apache.sis.storage.gdal/main/org/apache/sis/storage/gdal/ErrorHandler.java