Project
Loading...
Searching...
No Matches
ArrowTypes.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12#ifndef O2_FRAMEWORK_ARROWTYPES_H
13#define O2_FRAMEWORK_ARROWTYPES_H
14#include "arrow/type_fwd.h"
15
16namespace o2::soa
17{
18template <typename T>
20};
21template <>
22struct arrow_array_for<bool> {
23 using type = arrow::BooleanArray;
24};
25template <>
26struct arrow_array_for<int8_t> {
27 using type = arrow::Int8Array;
28};
29template <>
30struct arrow_array_for<uint8_t> {
31 using type = arrow::UInt8Array;
32};
33template <>
34struct arrow_array_for<int16_t> {
35 using type = arrow::Int16Array;
36};
37template <>
38struct arrow_array_for<uint16_t> {
39 using type = arrow::UInt16Array;
40};
41template <>
42struct arrow_array_for<int32_t> {
43 using type = arrow::Int32Array;
44};
45template <>
46struct arrow_array_for<int64_t> {
47 using type = arrow::Int64Array;
48};
49template <>
50struct arrow_array_for<uint32_t> {
51 using type = arrow::UInt32Array;
52};
53template <>
54struct arrow_array_for<uint64_t> {
55 using type = arrow::UInt64Array;
56};
57template <>
58struct arrow_array_for<float> {
59 using type = arrow::FloatArray;
60};
61template <>
62struct arrow_array_for<double> {
63 using type = arrow::DoubleArray;
64};
65template <int N>
66struct arrow_array_for<float[N]> {
67 using type = arrow::FixedSizeListArray;
68 using value_type = float;
69};
70template <int N>
71struct arrow_array_for<int[N]> {
72 using type = arrow::FixedSizeListArray;
73 using value_type = int;
74};
75template <int N>
77 using type = arrow::FixedSizeListArray;
79};
80template <int N>
81struct arrow_array_for<double[N]> {
82 using type = arrow::FixedSizeListArray;
83 using value_type = double;
84};
85template <int N>
86struct arrow_array_for<int8_t[N]> {
87 using type = arrow::FixedSizeListArray;
88 using value_type = int8_t;
89};
90
91#define ARROW_VECTOR_FOR(_type_) \
92 template <> \
93 struct arrow_array_for<std::vector<_type_>> { \
94 using type = arrow::ListArray; \
95 using value_type = _type_; \
96 };
97
102
107
110
111template <typename T>
113template <typename T>
115} // namespace o2::soa
116#endif // O2_FRAMEWORK_ARROWTYPES_H
#define ARROW_VECTOR_FOR(_type_)
Definition ArrowTypes.h:91
typename arrow_array_for< T >::value_type value_for_t
Definition ArrowTypes.h:114
typename arrow_array_for< T >::type arrow_array_for_t
Definition ArrowTypes.h:112
arrow::FixedSizeListArray type
Definition ArrowTypes.h:82
arrow::FixedSizeListArray type
Definition ArrowTypes.h:67
arrow::FixedSizeListArray type
Definition ArrowTypes.h:87
arrow::FixedSizeListArray type
Definition ArrowTypes.h:72
arrow::FixedSizeListArray type
Definition ArrowTypes.h:77