-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major Changes: + BREAKING CHANGE - removed the ftk plugin in favor of using it from the external metrics plugin. This change reduces complexity and code duplication between this library and the ftk command line application this also prevents the frequent internals changes in FTK from breaking libpressio's build. closes #12 + libpressio now has JSON support with the following features: + pressio_options structures can be serialized to and from JSON. NOTE when serializing options that use pressio_option_userptr_type are omitted because by definition they cannot be serialized. + external metrics can now read a JSON based format when using the `external:api=json:1` version. This allows returning complex datatypes from metrics. + an experimental hdf5_filter which provides another way to use compressors supported with libpressio. The JSON support is used in serializing options where relevant. Minor Changes: + Moved the python bindings to `tools/swig` + Added the ability to not produce man page links and install docs when documentation is built + renamed the imagemagick check to be imagemagick_longlong to more clear about what it was testing for. Bug Fixes: + Added missing headers to CMakeLists to improve clangd and clion autocompetion. + Fixed all current documentation warnings and compiler warnings
- Loading branch information
Showing
35 changed files
with
1,485 additions
and
318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include <nlohmann/json_fwd.hpp> | ||
class pressio_data; | ||
class pressio_option; | ||
class pressio_options; | ||
|
||
void to_json(nlohmann::json& j, pressio_data const& data); | ||
void to_json(nlohmann::json& j, pressio_option const& option); | ||
void to_json(nlohmann::json& j, pressio_options const& options); | ||
void from_json(nlohmann::json const& j, pressio_data& data); | ||
void from_json(nlohmann::json const& j, pressio_option& option); | ||
void from_json(nlohmann::json const& j, pressio_options& options); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.