liyujie
2025-08-28 867b8b7b729282c7e14e200ca277435329ebe747
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
119
120
121
122
/*
 * Copyright (C) 2018 The Android Open Source Project
 *
 * Licensed 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 LIBTEXTCLASSIFIER_UTILS_VARIANT_H_
#define LIBTEXTCLASSIFIER_UTILS_VARIANT_H_
 
#include <map>
#include <string>
 
#include "utils/base/integral_types.h"
#include "utils/base/logging.h"
#include "utils/strings/stringpiece.h"
 
namespace libtextclassifier3 {
 
// Represents a type-tagged union of different basic types.
class Variant {
 public:
  enum Type {
    TYPE_EMPTY = 0,
    TYPE_INT_VALUE = 1,
    TYPE_INT64_VALUE = 2,
    TYPE_FLOAT_VALUE = 3,
    TYPE_DOUBLE_VALUE = 4,
    TYPE_BOOL_VALUE = 5,
    TYPE_STRING_VALUE = 6,
  };
 
  Variant() : type_(TYPE_EMPTY) {}
  explicit Variant(const int value)
      : type_(TYPE_INT_VALUE), int_value_(value) {}
  explicit Variant(const int64 value)
      : type_(TYPE_INT64_VALUE), long_value_(value) {}
  explicit Variant(const float value)
      : type_(TYPE_FLOAT_VALUE), float_value_(value) {}
  explicit Variant(const double value)
      : type_(TYPE_DOUBLE_VALUE), double_value_(value) {}
  explicit Variant(const StringPiece value)
      : type_(TYPE_STRING_VALUE), string_value_(value.ToString()) {}
  explicit Variant(const std::string value)
      : type_(TYPE_STRING_VALUE), string_value_(value) {}
  explicit Variant(const char* value)
      : type_(TYPE_STRING_VALUE), string_value_(value) {}
  explicit Variant(const bool value)
      : type_(TYPE_BOOL_VALUE), bool_value_(value) {}
 
  Variant& operator=(const Variant&) = default;
 
  int IntValue() const {
    TC3_CHECK(HasInt());
    return int_value_;
  }
 
  int64 Int64Value() const {
    TC3_CHECK(HasInt64());
    return long_value_;
  }
 
  float FloatValue() const {
    TC3_CHECK(HasFloat());
    return float_value_;
  }
 
  double DoubleValue() const {
    TC3_CHECK(HasDouble());
    return double_value_;
  }
 
  bool BoolValue() const {
    TC3_CHECK(HasBool());
    return bool_value_;
  }
 
  const std::string& StringValue() const {
    TC3_CHECK(HasString());
    return string_value_;
  }
 
  bool HasInt() const { return type_ == TYPE_INT_VALUE; }
 
  bool HasInt64() const { return type_ == TYPE_INT64_VALUE; }
 
  bool HasFloat() const { return type_ == TYPE_FLOAT_VALUE; }
 
  bool HasDouble() const { return type_ == TYPE_DOUBLE_VALUE; }
 
  bool HasBool() const { return type_ == TYPE_BOOL_VALUE; }
 
  bool HasString() const { return type_ == TYPE_STRING_VALUE; }
 
  Type GetType() const { return type_; }
 
  bool HasValue() const { return type_ != TYPE_EMPTY; }
 
 private:
  Type type_;
  union {
    int int_value_;
    int64 long_value_;
    float float_value_;
    double double_value_;
    bool bool_value_;
  };
  std::string string_value_;
};
 
}  // namespace libtextclassifier3
 
#endif  // LIBTEXTCLASSIFIER_UTILS_VARIANT_H_