aboutsummaryrefslogtreecommitdiff
path: root/typed_value.h
blob: 868397cd4314bdca4ee2756bfe9c96157a4034a5 (plain)
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
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_ZUCCHINI_TYPED_VALUE_H_
#define COMPONENTS_ZUCCHINI_TYPED_VALUE_H_

#include <ostream>

namespace zucchini {

// Strong typed values, with compare and convert functions for underlying data.
// Typically one would use strongly typed enums for this. However, for Zucchini,
// the number of bytes is not fixed, and must be represented as an integer for
// iteration.
// |Tag| is a type tag used to uniquely identify TypedValue.
// |T| is an integral type used to hold values.
// Example:
//    struct Foo : TypedValue<Foo, int> {
//      using Foo::TypedValue::TypedValue; // inheriting constructor.
//    };
// Foo will be used to hold values of type |int|, but with a distinct type from
// any other TypedValue.
template <class Tag, class T>
class TypedValue {
 public:
  constexpr TypedValue() = default;
  explicit constexpr TypedValue(const T& value) : value_(value) {}

  explicit operator T() const { return value_; }
  const T value() const { return value_; }

  friend bool operator==(const TypedValue& a, const TypedValue& b) {
    return a.value_ == b.value_;
  }
  friend bool operator!=(const TypedValue& a, const TypedValue& b) {
    return !(a == b);
  }
  friend bool operator<(const TypedValue& a, const TypedValue& b) {
    return a.value_ < b.value_;
  }
  friend bool operator>(const TypedValue& a, const TypedValue& b) {
    return b < a;
  }

 private:
  T value_ = {};
};

template <class Tag, class T>
std::ostream& operator<<(std::ostream& os, const TypedValue<Tag, T>& tag) {
  return os << tag.value();
}

}  // namespace zucchini

#endif  // COMPONENTS_ZUCCHINI_TYPED_VALUE_H_