aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/unique_store_value_filter.h
blob: 5b4c078ab48578c10f4ab4024509caf4247d91ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

namespace vespalib::datastore {

/*
 * Helper class for normalizing values inserted into unique store.
 */
template <typename EntryT>
class UniqueStoreValueFilter {
public:
    static const EntryT &filter(const EntryT &value) {
        return value;
    }
};

/*
 * Specialized helper class for normalizing floating point values
 * inserted into unique store.  Any type of NAN is normalized to a
 * specific one.
 */
template <typename EntryT>
class UniqueStoreFloatingPointValueFilter {
    static const EntryT normalized_nan;
public:
    static const EntryT &filter(const EntryT &value) {
        return std::isnan(value) ? normalized_nan : value;
    }
};

template <typename EntryT>
const EntryT UniqueStoreFloatingPointValueFilter<EntryT>::normalized_nan = -std::numeric_limits<EntryT>::quiet_NaN();

/*
 * Specialized helper class for normalizing float values inserted into unique store.
 * Any type of NAN is normalized to a specific one.
 */
template <>
class UniqueStoreValueFilter<float> : public UniqueStoreFloatingPointValueFilter<float> {
};

/*
 * Specialized helper class for normalizing double values inserted into unique store.
 * Any type of NAN is normalized to a specific one.
 */
template <>
class UniqueStoreValueFilter<double> : public UniqueStoreFloatingPointValueFilter<double> {
};

}