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 c1c1be4b9a Allow `StorageConnector` to create `ChannelDataOutput`
instance. This feature allows writer such as ASCII Grid to write in
destinations other than files.
new 623a7f3d23 Complete `StorageConnector` with `DataOutput` and
`OutputStream` for consistency.
new 49a3d73017 Fix documentation and add a size limit for safety when
reading auxiliary files.
new 9252ad9e1d First draft of World File reader as a wrapper around
standard Java Image I/O.
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:
.../apache/sis/internal/storage/PRJDataStore.java | 118 ++++-
.../org/apache/sis/internal/storage/Resources.java | 5 +
.../sis/internal/storage/Resources.properties | 1 +
.../sis/internal/storage/Resources_fr.properties | 1 +
.../apache/sis/internal/storage/ascii/Store.java | 3 +-
.../sis/internal/storage/image/FormatFilter.java | 202 +++++++++
.../apache/sis/internal/storage/image/Image.java | 208 +++++++++
.../apache/sis/internal/storage/image/Store.java | 502 +++++++++++++++++++++
.../storage/{xml => image}/StoreProvider.java | 38 +-
.../internal/storage/image/WarningListener.java | 47 +-
.../sis/internal/storage/image/package-info.java | 57 +++
.../sis/internal/storage/io/IOUtilities.java | 2 +-
.../org/apache/sis/storage/StorageConnector.java | 86 +++-
.../apache/sis/storage/StorageConnectorTest.java | 2 +-
14 files changed, 1203 insertions(+), 69 deletions(-)
create mode 100644
storage/sis-storage/src/main/java/org/apache/sis/internal/storage/image/FormatFilter.java
create mode 100644
storage/sis-storage/src/main/java/org/apache/sis/internal/storage/image/Image.java
create mode 100644
storage/sis-storage/src/main/java/org/apache/sis/internal/storage/image/Store.java
copy storage/sis-storage/src/main/java/org/apache/sis/internal/storage/{xml =>
image}/StoreProvider.java (66%)
copy
core/sis-utility/src/test/java/org/apache/sis/util/collection/IntObject.java =>
storage/sis-storage/src/main/java/org/apache/sis/internal/storage/image/WarningListener.java
(51%)
create mode 100644
storage/sis-storage/src/main/java/org/apache/sis/internal/storage/image/package-info.java