Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breakout Zarr v2 files from #125 #136

Merged
merged 7 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added

- Ship debug libs for C-Blosc on Linux and Mac.

### Changed

- Upgrades C-Blosc from v1.21.4 to v1.21.5.

### Fixed

- A bug where enabling multiscale without specifying the tile size would cause an error.
- Exceptions thrown off the main thread are now caught and logged, and Zarr throws an error in `append`.

## [0.1.4](https://github.com/acquire-project/acquire-driver-zarr/compare/v0.1.3...v0.1.4) - 2023-08-11

Expand Down
4 changes: 2 additions & 2 deletions src/3rdParty/cblosc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ if(WIN32)
set(libd "${pwd}/lib/win64/libblosc-debug.lib")
elseif(APPLE)
set(lib "${pwd}/lib/osx/libblosc.a")
set(libd ${lib})
set(libd "${pwd}/lib/osx/libblosc-debug.a")
elseif(LINUX)
set(lib "${pwd}/lib/linux-amd64/libblosc.a")
set(libd ${lib})
set(libd "${pwd}/lib/linux-amd64/libblosc-debug.a")
endif()

message(STATUS "C-Blosc: ${pwd}")
Expand Down
Binary file not shown.
Binary file modified src/3rdParty/cblosc/lib/linux-amd64/libblosc.a
Binary file not shown.
2 changes: 1 addition & 1 deletion src/3rdParty/cblosc/lib/osx/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The library here was built as follows.

Against v1.21.4 (2c2f9bd) of the c-blosc source hosted at:
Against v1.21.5 (d306135) of the c-blosc source hosted at:
https://github.com/Blosc/c-blosc

It's a universal binary compiled for `arm64` and `x86_64`.
Expand Down
Binary file added src/3rdParty/cblosc/lib/osx/libblosc-debug.a
Binary file not shown.
Binary file modified src/3rdParty/cblosc/lib/osx/libblosc.a
Binary file not shown.
Binary file modified src/3rdParty/cblosc/lib/win64/libblosc-debug.lib
Binary file not shown.
Binary file modified src/3rdParty/cblosc/lib/win64/libblosc.lib
Binary file not shown.
Binary file modified src/3rdParty/cblosc/lib/win64/libblosc.pdb
Binary file not shown.
28 changes: 13 additions & 15 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
add_subdirectory(3rdParty)

if(NOT TARGET acquire-core-logger)
add_subdirectory(acquire-core-libs)
endif()
if (NOT TARGET acquire-core-logger)
add_subdirectory(acquire-core-libs)
endif ()

set(tgt acquire-driver-zarr)
add_library(${tgt} MODULE
prelude.h
tiled.frame.hh
tiled.frame.cpp
chunk.writer.hh
chunk.writer.cpp
frame.scaler.hh
frame.scaler.cpp
common.hh
common.cpp
writers/writer.hh
writers/writer.cpp
writers/chunk.writer.hh
writers/chunk.writer.cpp
writers/blosc.compressor.hh
writers/blosc.compressor.cpp
zarr.hh
zarr.cpp
zarr.encoder.hh
zarr.encoder.cpp
zarr.raw.hh
zarr.raw.cpp
zarr.blosc.hh
zarr.blosc.cpp
zarr.v2.hh
zarr.v2.cpp
zarr.driver.c
)
target_enable_simd(${tgt})
Expand Down
264 changes: 0 additions & 264 deletions src/chunk.writer.cpp

This file was deleted.

Loading