sparrow 0.9.0
Loading...
Searching...
No Matches
array_api.hpp
Go to the documentation of this file.
1// Copyright 2024 Man Group Operations Limited
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or mplied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#pragma once
16
25
26namespace sparrow
27{
39 class array
40 {
41 public:
42
43 using size_type = std::size_t;
46
50 array() = default;
51
59 template <layout A>
60 requires(not std::is_lvalue_reference_v<A>)
61 constexpr explicit array(A&& a);
62
71 template <layout A>
72 constexpr explicit array(A* a);
73
82 template <layout A>
83 constexpr explicit array(std::shared_ptr<A> a);
84
94
104
114
121 constexpr array(const array& rhs) = default;
122
130 array& operator=(const array& rhs) = default;
131
137 array(array&& rhs) = default;
138
145 array& operator=(array&& rhs) = default;
146
150 [[nodiscard]] SPARROW_API enum data_type data_type() const;
151
155 [[nodiscard]] SPARROW_API std::optional<std::string_view> name() const;
156
162 SPARROW_API void set_name(std::optional<std::string_view> name);
163
167 [[nodiscard]] SPARROW_API std::optional<key_value_view> metadata() const;
168
175 template <input_metadata_container R = std::vector<metadata_pair>>
176 constexpr void set_metadata(std::optional<R> metadata);
177
183 [[nodiscard]] SPARROW_API bool empty() const;
184
188 [[nodiscard]] SPARROW_API size_type size() const;
189
197 [[nodiscard]] SPARROW_API const_reference at(size_type index) const;
198
205
212 [[nodiscard]] SPARROW_API const_reference front() const;
213
220 [[nodiscard]] SPARROW_API const_reference back() const;
221
222 template <class F>
223 using visit_result_t = std::invoke_result_t<F, null_array>;
224
235 template <class F>
236 constexpr visit_result_t<F> visit(F&& func) const;
237
248 [[nodiscard]] SPARROW_API array slice(size_type start, size_type end) const;
249
260 [[nodiscard]] SPARROW_API array slice_view(size_type start, size_type end) const;
261
262 private:
263
270
276 [[nodiscard]] SPARROW_API arrow_proxy& get_arrow_proxy();
277
283 [[nodiscard]] SPARROW_API const arrow_proxy& get_arrow_proxy() const;
284
285 cloning_ptr<array_wrapper> p_array = nullptr;
286
288 };
289
299 bool operator==(const array& lhs, const array& rhs);
300
301 template <class A>
302 concept layout_or_array = layout<A> or std::same_as<A, array>;
303
312 template <layout_or_array A>
313 bool owns_arrow_array(const A& a);
314
324 template <layout_or_array A>
325 bool owns_arrow_schema(const A& a);
326
335 template <layout_or_array A>
337
346 template <layout_or_array A>
348
357 template <layout_or_array A>
358 std::pair<ArrowArray*, ArrowSchema*> get_arrow_structures(A& a);
359
371 template <layout_or_array A>
373
385 template <layout_or_array A>
387
400 template <layout_or_array A>
401 std::pair<ArrowArray, ArrowSchema> extract_arrow_structures(A&& a);
402
403 // Implementation
404
405 template <input_metadata_container R>
406 constexpr void array::set_metadata(std::optional<R> metadata)
407 {
408 get_arrow_proxy().set_metadata(metadata);
409 }
410}
Dynamically typed array encapsulating an Arrow layout.
Definition array_api.hpp:40
SPARROW_API const_reference at(size_type index) const
std::invoke_result_t< F, null_array > visit_result_t
constexpr visit_result_t< F > visit(F &&func) const
Returns the result of calling the given functor func on the layout internally held by the array.
Definition array.hpp:42
array & operator=(const array &rhs)=default
Overwrites the content of the array with a deep copy of the given array, even if it does not have the...
array & operator=(array &&rhs)=default
The move assignment operator.
SPARROW_API array(ArrowArray &&array, ArrowSchema *schema)
Constructs an Array from the given Arrow C structures.
array(array &&rhs)=default
The move constructor.
SPARROW_API bool empty() const
Checks if the array has no element, i.e.
std::size_t size_type
Definition array_api.hpp:43
SPARROW_API std::optional< key_value_view > metadata() const
SPARROW_API std::optional< std::string_view > name() const
SPARROW_API const_reference back() const
Returns a constant reference to the last element in the container.
SPARROW_API const_reference front() const
Returns a constant reference to the first element in the container.
SPARROW_API size_type size() const
array()=default
Constructs an empty array.
constexpr void set_metadata(std::optional< R > metadata)
Sets the metadata of the array to metadata.
array_traits::const_reference const_reference
Definition array_api.hpp:45
SPARROW_API const_reference operator[](size_type index) const
SPARROW_API array(ArrowArray &&array, ArrowSchema &&schema)
Constructs an Array from the given Arrow C structures, whose ownership is transferred to the Array.
SPARROW_API array slice(size_type start, size_type end) const
Slices the array to keep only the elements between the given start and end.
SPARROW_API enum data_type data_type() const
SPARROW_API void set_name(std::optional< std::string_view > name)
Sets the name of the array to name.
SPARROW_API array(ArrowArray *array, ArrowSchema *schema)
Constructs an array from the given Arrow C structures.
array_traits::value_type value_type
Definition array_api.hpp:44
constexpr array(const array &rhs)=default
Performs a deep copy of the given array, even if it does not have the ownership of its internal data.
SPARROW_API array slice_view(size_type start, size_type end) const
Slices the array to keep only the elements between the given start and end.
Smart pointer behaving like a copiable std::unique_ptr.
Definition memory.hpp:126
Concept for layouts.
#define SPARROW_API
Definition config.hpp:38
SPARROW_API bool operator==(const array &lhs, const array &rhs)
Compares the content of two arrays.
ArrowArray extract_arrow_array(A &&a)
Extracts the internal ArrowArray structure from the given Array or typed layout.
Definition array.hpp:79
std::pair< ArrowArray, ArrowSchema > extract_arrow_structures(A &&a)
Extracts the internal ArrowArray and ArrowSchema structures from the given array or typed layout.
Definition array.hpp:91
ArrowSchema extract_arrow_schema(A &&a)
Extracts the internal ArrowSchema structure from the given array or typed layout.
Definition array.hpp:85
ArrowSchema * get_arrow_schema(A &a)
Returns a pointer to the internal ArrowSchema of the given array or layout.
Definition array.hpp:66
bool owns_arrow_schema(const A &a)
Returns true if the given layout or array has ownership of its internal ArrowSchema.
Definition array.hpp:54
bool owns_arrow_array(const A &a)
Returns true if the given layout or array has ownership of its internal ArrowArray.
Definition array.hpp:48
std::pair< ArrowArray *, ArrowSchema * > get_arrow_structures(A &a)
Returns pointers to the internal ArrowArray and ArrowSchema of the given Array or layout.
Definition array.hpp:72
ArrowArray * get_arrow_array(A &a)
Returns a pointer to the internal ArrowArray of the given array or layout.
Definition array.hpp:60
mpl::rename< mpl::unique< mpl::transform< detail::array_const_reference_t, all_base_types_t > >, nullable_variant > const_reference
mpl::rename< mpl::transform< detail::array_value_type_t, all_base_types_t >, nullable_variant > value_type