/** * @file filter_option.h * * @section LICENSE * * The MIT License * * @copyright Copyright (c) 2017-2020 TileDB, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * * @section DESCRIPTION * * This defines the TileDB FilterOption enum that maps to tiledb_filter_option_t * C-API enum. */ #ifndef TILEDB_FILTER_OPTION_H #define TILEDB_FILTER_OPTION_H #include #include "tiledb/common/status.h" #include "tiledb/sm/misc/constants.h" namespace tiledb { namespace sm { /** Defines the filter type. */ enum class FilterOption : uint8_t { #define TILEDB_FILTER_OPTION_ENUM(id) id #include "tiledb/sm/c_api/tiledb_enum.h" #undef TILEDB_FILTER_OPTION_ENUM }; /** Returns the string representation of the input FilterOption type. */ inline const std::string& filter_option_str(FilterOption filter_option_) { switch (filter_option_) { case FilterOption::COMPRESSION_LEVEL: return constants::filter_option_compression_level_str; case FilterOption::BIT_WIDTH_MAX_WINDOW: return constants::filter_option_bit_width_max_window_str; case FilterOption::POSITIVE_DELTA_MAX_WINDOW: return constants::filter_option_positive_delta_max_window_str; default: return constants::empty_str; } } /** Returns the FilterOption type given a string representation. */ inline Status filter_option_enum( const std::string& filter_option_str, FilterOption* filter_option_) { if (filter_option_str == constants::filter_option_compression_level_str) *filter_option_ = FilterOption::COMPRESSION_LEVEL; else if ( filter_option_str == constants::filter_option_bit_width_max_window_str) *filter_option_ = FilterOption::BIT_WIDTH_MAX_WINDOW; else if ( filter_option_str == constants::filter_option_positive_delta_max_window_str) *filter_option_ = FilterOption::POSITIVE_DELTA_MAX_WINDOW; else return Status::Error("Invalid FilterOption " + filter_option_str); return Status::Ok(); } } // namespace sm } // namespace tiledb #endif // TILEDB_FILTER_OPTION_H