blob: 6852590a8f57025e4857f7e3301da15ff2c05c25 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#ifndef THETA_HELPERS_HPP_
#define THETA_HELPERS_HPP_
#include <string>
#include <stdexcept>
namespace datasketches {
template<typename T>
static void check_value(T actual, T expected, const char* description) {
if (actual != expected) {
throw std::invalid_argument(std::string(description) + " mismatch: expected " + std::to_string(expected) + ", actual " + std::to_string(actual));
}
}
template<bool dummy>
class checker {
public:
static void check_serial_version(uint8_t actual, uint8_t expected) {
check_value(actual, expected, "serial version");
}
static void check_sketch_family(uint8_t actual, uint8_t expected) {
check_value(actual, expected, "sketch family");
}
static void check_sketch_type(uint8_t actual, uint8_t expected) {
check_value(actual, expected, "sketch type");
}
static void check_seed_hash(uint16_t actual, uint16_t expected) {
check_value(actual, expected, "seed hash");
}
};
} /* namespace datasketches */
#endif