File: byte.cpp

package info (click to toggle)
actor-framework 0.17.6-3.2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 9,008 kB
  • sloc: cpp: 77,684; sh: 674; python: 309; makefile: 13
file content (118 lines) | stat: -rw-r--r-- 3,971 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/******************************************************************************
 *                       ____    _    _____                                   *
 *                      / ___|  / \  |  ___|    C++                           *
 *                     | |     / _ \ | |_       Actor                         *
 *                     | |___ / ___ \|  _|      Framework                     *
 *                      \____/_/   \_|_|                                      *
 *                                                                            *
 * Copyright 2011-2019 Dominik Charousset                                     *
 *                                                                            *
 * Distributed under the terms and conditions of the BSD 3-Clause License or  *
 * (at your option) under the terms and conditions of the Boost Software      *
 * License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE.       *
 *                                                                            *
 * If you did not receive a copy of the license files, see                    *
 * http://opensource.org/licenses/BSD-3-Clause and                            *
 * http://www.boost.org/LICENSE_1_0.txt.                                      *
 ******************************************************************************/

#define CAF_SUITE byte

#include "caf/byte.hpp"

#include "caf/test/dsl.hpp"

#include <cstdint>

#include "caf/detail/parser/add_ascii.hpp"

using namespace caf;

namespace {

byte operator"" _b(const char* str, size_t n) {
  size_t consumed = 0;
  uint8_t result = 0;
  for (size_t i = 0; i < n; ++i) {
    if (str[i] != '\'') {
      if (!detail::parser::add_ascii<2>(result, str[i]))
        throw std::logic_error("invalid character or over-/underflow");
      else
        ++consumed;
    }
  }
  if (consumed != 8)
    throw std::logic_error("too few digits, expected exactly 8");
  return static_cast<byte>(result);
}

struct fixture {
  fixture() {
    // Sanity checks.
    if ("0001'1100"_b != static_cast<byte>(0x1C))
      CAF_FAIL("operator \"\"_b broken");
    if ("1000'0001"_b != static_cast<byte>(0x81))
      CAF_FAIL("operator \"\"_b broken");
  }
};

} // namespace

CAF_TEST_FIXTURE_SCOPE(byte_tests, fixture)

CAF_TEST(to integer) {
  CAF_CHECK_EQUAL(to_integer<int>("0110'1001"_b), 0x69);
}

CAF_TEST(left shift) {
  auto x = "0000'0001"_b;
  x <<= 1;
  CAF_CHECK_EQUAL(x, "0000'0010"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 1, "0000'0100"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 2, "0000'1000"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 3, "0001'0000"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 4, "0010'0000"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 5, "0100'0000"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 6, "1000'0000"_b);
  CAF_CHECK_EQUAL("0000'0010"_b << 7, "0000'0000"_b);
}

CAF_TEST(right shift) {
  auto x = "0100'0000"_b;
  x >>= 1;
  CAF_CHECK_EQUAL(x, "0010'0000"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 1, "0010'0000"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 2, "0001'0000"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 3, "0000'1000"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 4, "0000'0100"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 5, "0000'0010"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 6, "0000'0001"_b);
  CAF_CHECK_EQUAL("0100'0000"_b >> 7, "0000'0000"_b);
}

CAF_TEST(bitwise or) {
  auto x = "0001'1110"_b;
  x |= "0111'1000"_b;
  CAF_CHECK_EQUAL(x, "0111'1110"_b);
  CAF_CHECK_EQUAL("0001'1110"_b | "0111'1000"_b, "0111'1110"_b);
}

CAF_TEST(bitwise and) {
  auto x = "0001'1110"_b;
  x &= "0111'1000"_b;
  CAF_CHECK_EQUAL(x, "0001'1000"_b);
  CAF_CHECK_EQUAL("0001'1110"_b & "0111'1000"_b, "0001'1000"_b);
}

CAF_TEST(bitwise xor) {
  auto x = "0001'1110"_b;
  x ^= "0111'1000"_b;
  CAF_CHECK_EQUAL(x, "0110'0110"_b);
  CAF_CHECK_EQUAL("0001'1110"_b ^ "0111'1000"_b, "0110'0110"_b);
}

CAF_TEST(bitwise not) {
  CAF_CHECK_EQUAL(~"0111'1110"_b, "1000'0001"_b);
}

CAF_TEST_FIXTURE_SCOPE_END()