xlnt - community edition
variant.hpp
1 // Copyright (c) 2017-2022 Thomas Fussell
2 // Copyright (c) 2024-2025 xlnt-community
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
5 // of this software and associated documentation files (the "Software"), to deal
6 // in the Software without restriction, including without limitation the rights
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 // copies of the Software, and to permit persons to whom the Software is
9 // furnished to do so, subject to the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included in
12 // all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20 // THE SOFTWARE
21 //
22 // @license: http://www.opensource.org/licenses/mit-license.php
23 // @author: see AUTHORS file
24 
25 #pragma once
26 
27 #include <cstdint>
28 #include <string>
29 #include <vector>
30 
31 #include <xlnt/xlnt_config.hpp>
32 
33 namespace xlnt {
34 
35 struct datetime;
36 
40 class XLNT_API variant
41 {
42 public:
43  // TODO: implement remaining types?
44 
48  enum class type
49  {
50  vector,
51  //array,
52  //blob,
53  //oblob,
54  //empty,
55  null,
56  //i1,
57  //i2,
58  i4,
59  //i8,
60  //integer,
61  //ui1,
62  //ui2,
63  //ui4,
64  //ui8,
65  //uint,
66  //r4,
67  //r8,
68  //decimal,
69  lpstr, // TODO: how does this differ from lpwstr?
70  //lpwstr,
71  //bstr,
72  date,
73  //filetime,
74  boolean,
75  //cy,
76  //error,
77  //stream,
78  //ostream,
79  //storage,
80  //ostorage,
81  //vstream,
82  //clsid
83  };
84 
88  variant();
89 
93  variant(const std::string &value);
94 
98  variant(const char *value);
99 
103  variant(std::int32_t value);
104 
108  variant(bool value);
109 
113  variant(const datetime &value);
114 
118  variant(const std::initializer_list<std::int32_t> &value);
119 
123  variant(const std::vector<std::int32_t> &value);
124 
128  variant(const std::initializer_list<const char *> &value);
129 
133  variant(const std::vector<const char *> &value);
134 
138  variant(const std::initializer_list<std::string> &value);
139 
143  variant(const std::vector<std::string> &value);
144 
148  variant(const std::initializer_list<bool> &value);
149 
153  variant(const std::vector<bool> &value);
154 
158  variant(const std::initializer_list<datetime> &value);
159 
163  variant(const std::vector<datetime> &value);
164 
168  variant(const std::vector<variant> &value);
169 
173  bool is(type t) const;
174 
179  template <typename T>
180  T get() const;
181 
185  type value_type() const;
186 
187  bool operator==(const variant &rhs) const;
188 
189  bool operator!=(const variant &rhs) const;
190 
191 private:
192  template<typename T>
193  void construct_vector_internal(const T &vec);
194 
195  template<typename T>
196  std::vector<T> get_vector_internal() const;
197 
198  type type_;
199  std::vector<variant> vector_value_;
200  std::int32_t i4_value_;
201  std::string lpstr_value_;
202 };
203 
204 template <>
205 XLNT_API bool variant::get() const;
206 
207 template <>
208 XLNT_API std::int32_t variant::get() const;
209 
210 template <>
211 XLNT_API std::string variant::get() const;
212 
213 template <>
214 XLNT_API datetime variant::get() const;
215 
216 template <>
217 XLNT_API std::vector<variant> variant::get() const;
218 
219 template <>
220 XLNT_API std::vector<bool> variant::get() const;
221 
222 template <>
223 XLNT_API std::vector<std::int32_t> variant::get() const;
224 
225 template <>
226 XLNT_API std::vector<std::string> variant::get() const;
227 
228 template <>
229 XLNT_API std::vector<datetime> variant::get() const;
230 
231 } // namespace xlnt
type
The possible types a variant can hold.
Definition: variant.hpp:48
Represents an object that can have variable type.
Definition: variant.hpp:40
T get() const
Returns the value of this variant as type T. An exception will be thrown if the types are not convert...
Enumerates the possible types a cell can be determined by it&#39;s current value.
Definition: cell.hpp:36
bool operator!=(std::nullptr_t, const cell &cell)
Returns true if this cell is initialized.
bool operator==(std::nullptr_t, const cell &cell)
Returns true if this cell is uninitialized.
value is an ISO 8601 formatted date
A datetime is a combination of a date and a time. IMPORTANT: The datetime could be in an empty/invali...
Definition: datetime.hpp:41
value is TRUE or FALSE