File: safe_cast.cpp

package info (click to toggle)
mapnik 3.0.12%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,084 kB
  • ctags: 18,454
  • sloc: cpp: 142,516; python: 1,416; sh: 769; makefile: 170; xml: 140; lisp: 13
file content (60 lines) | stat: -rw-r--r-- 2,889 bytes parent folder | download | duplicates (4)
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
52
53
54
55
56
57
58
59
60

#include "catch.hpp"
#include <mapnik/safe_cast.hpp>

#define CAST_ASSERT(numeric_type)                                  \
    using limit = std::numeric_limits<numeric_type>;                      \
    auto min_value = static_cast<std::intmax_t>(limit::min())-1;          \
    auto max_value = static_cast<std::intmax_t>(limit::max())+1;          \
    CHECK( limit::min() == mapnik::safe_cast<numeric_type>(min_value) ); \
    CHECK( limit::max() == mapnik::safe_cast<numeric_type>(max_value) ); \

#define CAST_ASSERT2(numeric_type)                                 \
    using limit = std::numeric_limits<numeric_type>;                      \
    auto min_value = static_cast<std::intmax_t>(limit::min());            \
    auto max_value = static_cast<std::intmax_t>(limit::max());            \
    CHECK( limit::min() == mapnik::safe_cast<numeric_type>(min_value) ); \
    CHECK( limit::max() == mapnik::safe_cast<numeric_type>(max_value) ); \

#define CAST_ASSERT3(numeric_type)                                 \
    using limit = std::numeric_limits<numeric_type>;                      \
    auto min_value = static_cast<std::intmax_t>(limit::min())-1;          \
    auto max_value = static_cast<std::uintmax_t>(limit::max());            \
    CHECK( limit::min() == mapnik::safe_cast<numeric_type>(min_value) ); \
    CHECK( limit::max() == mapnik::safe_cast<numeric_type>(max_value) ); \

#define CAST_ASSERT4(numeric_type)                                 \
    using limit = std::numeric_limits<numeric_type>;                      \
    auto min_value = static_cast<double>(-limit::max())-1;          \
    auto max_value = static_cast<double>(limit::max());            \
    CHECK( -limit::max() == mapnik::safe_cast<numeric_type>(min_value) ); \
    CHECK( limit::max() == mapnik::safe_cast<numeric_type>(max_value) ); \

TEST_CASE("saturated cast") {

    SECTION("int8")   { CAST_ASSERT(std::int8_t);   }
    SECTION("int16")  { CAST_ASSERT(std::int16_t);  }
    SECTION("int32")  { CAST_ASSERT(std::int32_t);  }

    SECTION("int64")  { CAST_ASSERT2(std::int64_t);  }
    SECTION("intmax") { CAST_ASSERT2(std::intmax_t); }
    SECTION("intptr") { CAST_ASSERT2(std::intptr_t); }

    SECTION("uint8")   { CAST_ASSERT(std::uint8_t);   }
    SECTION("uint16")  { CAST_ASSERT(std::uint16_t);  }
    SECTION("uint32")  { CAST_ASSERT(std::uint32_t);  }

    SECTION("uint64")  { CAST_ASSERT3(std::uint64_t);  }
    SECTION("uintmax") { CAST_ASSERT3(std::uintmax_t); }
    SECTION("uintptr") { CAST_ASSERT3(std::uintptr_t); }

    SECTION("float") { CAST_ASSERT4(float); }

    SECTION("freeform") {

        CHECK( static_cast<std::size_t>(0) == mapnik::safe_cast<std::size_t>(-1) );
        CHECK( static_cast<std::uint64_t>(0) == mapnik::safe_cast<std::uint64_t>(-1) );
        CHECK( static_cast<unsigned long long>(0) == mapnik::safe_cast<unsigned long long>(-1) );
    }

}