12#ifndef O2_FRAMEWORK_ASOA_H_
13#define O2_FRAMEWORK_ASOA_H_
26#include <arrow/table.h>
27#include <arrow/array.h>
28#include <arrow/util/config.h>
29#include <gandiva/selection_vector.h>
32#include <fmt/format.h>
40using ListVector = std::vector<std::vector<int64_t>>;
65 consteval TableRef(uint32_t _label, uint32_t _desc, uint32_t _origin, uint32_t _version)
79 return (this->label_hash ==
other.label_hash) &&
80 (this->desc_hash ==
other.desc_hash) &&
81 (this->origin_hash ==
other.origin_hash) &&
82 (this->version ==
other.version);
87 return this->desc_hash ==
other.desc_hash;
92 return this->desc_hash == _desc_hash;
102template <
size_t N1,
size_t N2, std::array<TableRef, N1> ar1, std::array<TableRef, N2> ar2>
105 constexpr const int duplicates = std::ranges::count_if(ar2.begin(), ar2.end(), [&](
TableRef const&
a) { return std::any_of(ar1.begin(), ar1.end(), [&](TableRef const& e) { return e == a; }); });
106 std::array<TableRef, N1 + N2 - duplicates> out;
108 auto pos = std::copy(ar1.begin(), ar1.end(), out.begin());
109 std::copy_if(ar2.begin(), ar2.end(),
pos, [&](TableRef
const&
a) { return std::none_of(ar1.begin(), ar1.end(), [&](TableRef const& e) { return e == a; }); });
113template <
size_t N1,
size_t N2, std::array<TableRef, N1> ar1, std::array<TableRef, N2> ar2,
typename L>
116 constexpr const int to_remove = std::ranges::count_if(ar1.begin(), ar1.end(), [&](
TableRef const&
a) { return !l(a); });
117 constexpr const int duplicates = std::ranges::count_if(ar2.begin(), ar2.end(), [&](
TableRef const&
a) { return std::any_of(ar1.begin(), ar1.end(), [&](TableRef const& e) { return e == a; }) || !l(
a); });
118 std::array<TableRef, N1 + N2 - duplicates - to_remove> out;
120 auto pos = std::copy_if(ar1.begin(), ar1.end(), out.begin(), [&](TableRef
const&
a) { return l(a); });
121 std::copy_if(ar2.begin(), ar2.end(),
pos, [&](TableRef
const&
a) { return std::none_of(ar1.begin(), ar1.end(), [&](TableRef const& e) { return e == a; }) && l(
a); });
125template <
size_t N, std::array<TableRef, N> ar,
typename L>
128 constexpr const int to_remove = std::ranges::count_if(ar.begin(), ar.end(), [&l](
TableRef const& e) { return l(e); });
129 std::array<
TableRef, N - to_remove> out;
130 std::copy_if(ar.begin(), ar.end(), out.begin(), [&l](
TableRef const& e) { return !l(e); });
134template <
size_t N1,
size_t N2, std::array<TableRef, N1> ar1, std::array<TableRef, N2> ar2>
135consteval auto intersect()
137 constexpr const int duplicates = std::ranges::count_if(ar2.begin(), ar2.end(), [&](
TableRef const&
a) { return std::any_of(ar1.begin(), ar1.end(), [&](TableRef const& e) { return e == a; }); });
138 std::array<TableRef, duplicates> out;
139 std::copy_if(ar1.begin(), ar1.end(), out.begin(), [](TableRef
const&
a) { return std::find(ar2.begin(), ar2.end(), a) != ar2.end(); });
143template <
typename T,
typename... Ts>
145 requires(
sizeof...(Ts) == 1)
148 return merge<T::originals.size(), T1::originals.size(), T::originals, T1::originals>();
151template <
typename T,
typename...
Ts>
153 requires(
sizeof...(Ts) > 1)
156 return merge<T::originals.size(), tail.size(), T::originals, tail>();
159template <
typename T,
typename...
Ts>
160 requires(
sizeof...(Ts) == 1)
161consteval auto intersectOriginals()
164 return intersect<T::originals.size(), T1::originals.size(), T::originals, T1::originals>();
167template <
typename T,
typename...
Ts>
168 requires(
sizeof...(Ts) > 1)
169consteval auto intersectOriginals()
172 return intersect<T::originals.size(), tail.size(), T::originals, tail>();
181concept not_void =
requires { !std::same_as<T, void>; };
198 {
c.setCurrentRaw(
b) } -> std::same_as<bool>;
203using is_external_index_t =
typename std::conditional_t<is_index_column<C>, std::true_type, std::false_type>;
206using is_self_index_t =
typename std::conditional_t<is_self_index_column<C>, std::true_type, std::false_type>;
212template <
typename D,
typename... Cs>
219 template <
typename Key,
typename... PCs>
222 return std::array<bool,
sizeof...(PCs)>{[]() {
223 if constexpr (
requires { PCs::index_targets.size(); }) {
224 return Key::template isIndexTargetOf<PCs::index_targets.size(), PCs::index_targets>();
231 template <
typename Key>
237 template <
typename Key,
size_t N, std::array<
bool, N> map>
240 constexpr const auto pos = std::find(map.begin(), map.end(),
true);
241 if constexpr (
pos != map.end()) {
242 return std::distance(map.begin(),
pos);
258 static constexpr uint32_t
hash = H;
259 static constexpr char const*
const str{
""};
263template <
size_t N, std::array<soa::TableRef, N> ar,
typename Key>
266 constexpr std::array<bool, N>
test = []<
size_t... Is>(std::index_sequence<Is...>) {
267 return std::array<bool, N>{(Key::template hasOriginal<ar[Is]>() || (
o2::aod::MetadataTrait<
o2::aod::Hash<ar[Is].desc_hash>>::metadata::template getIndexPosToKey<Key>() >= 0))...};
268 }(std::make_index_sequence<N>());
269 constexpr int correct = std::ranges::count(
test.begin(),
test.end(),
true);
270 std::array<soa::TableRef, correct> out;
271 std::ranges::copy_if(ar.begin(), ar.end(), out.begin(), [&
test](
soa::TableRef const&
r) { return test[std::distance(ar.begin(), std::find(ar.begin(), ar.end(), r))]; });
276#define O2HASH(_Str_) \
278 struct Hash<_Str_ ""_h> { \
279 static constexpr uint32_t hash = _Str_ ""_h; \
280 static constexpr char const* const str{_Str_}; \
284#define O2ORIGIN(_Str_) \
286 struct Hash<_Str_ ""_h> { \
287 static constexpr header::DataOrigin origin{_Str_}; \
288 static constexpr uint32_t hash = _Str_ ""_h; \
289 static constexpr char const* const str{_Str_}; \
293static inline constexpr uint32_t
version(
const char*
const str)
295 if (
str[0] ==
'\0') {
303 if (
str[
len - 1] ==
'\0') {
306 for (
auto i =
len + 1;
str[
i] !=
'\0'; ++
i) {
313static inline constexpr std::string_view description_str(
const char*
const str)
319 return std::string_view{
str,
len};
329 for (
auto i = 0;
i < 16; ++
i) {
332 std::memcpy(out,
str,
len);
337template <soa::TableRef R>
343template <soa::TableRef R>
349template <soa::TableRef R>
355template <soa::TableRef R>
369template <soa::TableRef R>
370static constexpr auto sourceSpec()
372 return fmt::format(
"{}/{}/{}/{}",
label<R>(), origin_str<R>(), description_str(signature<R>()),
R.version);
378template <aod::is_aod_hash L, aod::is_aod_hash D, aod::is_origin_hash O,
typename... Ts>
383 void const*
ptr =
nullptr;
385 std::span<TableRef const>
refs;
387 template <
typename T>
391 hash = o2::framework::TypeIdHelpers::uniqueId<T>();
392 refs = std::span{T::originals};
395 template <
typename T>
398 if (
hash == o2::framework::TypeIdHelpers::uniqueId<T>()) {
399 return static_cast<T const*
>(
ptr);
405template <
typename... C>
408 return std::vector<std::shared_ptr<arrow::Field>>{C::asArrowField()...};
431template <
typename B,
typename E>
433 constexpr static bool value =
false;
436template <aod::is_aod_hash A, aod::is_aod_hash B>
438 constexpr static bool value =
false;
441template <
typename B,
typename E>
444template <aod::is_aod_hash A, aod::is_aod_hash B>
483template <
typename T,
typename ChunkingPolicy = Chunked>
486 static constexpr char SCALE_FACTOR = std::same_as<std::decay_t<T>,
bool> ? 3 : 0;
502 auto array = getCurrentArray();
517 auto previousArray = getCurrentArray();
521 auto array = getCurrentArray();
528 auto previousArray = getCurrentArray();
532 auto array = getCurrentArray();
554 auto array = getCurrentArray();
560 decltype(
auto)
operator*()
const
561 requires std::same_as<bool, std::decay_t<T>>
567 decltype(
auto)
operator*()
const
568 requires((!std::same_as<bool, std::decay_t<T>>) && std::same_as<
arrow_array_for_t<T>, arrow::ListArray>)
577 decltype(
auto)
operator*()
const
578 requires((!std::same_as<bool, std::decay_t<T>>) && !std::same_as<
arrow_array_for_t<T>, arrow::ListArray>)
600 void checkSkipChunk() const
609 void checkSkipChunk() const
617 void checkSkipChunk() const
618 requires(ChunkingPolicy::
chunked == false)
622 auto getCurrentArray() const
626 mOffset = chunkToUse->offset();
627 chunkToUse = std::dynamic_pointer_cast<arrow::FixedSizeListArray>(chunkToUse)->values();
628 return std::static_pointer_cast<arrow_array_for_t<value_for_t<T>>>(chunkToUse);
631 auto getCurrentArray() const
635 mOffset = chunkToUse->offset();
636 chunkToUse = std::dynamic_pointer_cast<arrow::ListArray>(chunkToUse)->values();
637 mOffset = chunkToUse->offset();
638 return std::static_pointer_cast<arrow_array_for_t<value_for_t<T>>>(chunkToUse);
641 auto getCurrentArray() const
645 mOffset = chunkToUse->offset();
646 return std::static_pointer_cast<arrow_array_for_t<T>>(chunkToUse);
650template <
typename T,
typename INHERIT>
666 static constexpr const char*
const&
columnLabel() {
return INHERIT::mLabel; }
684template <
typename F,
typename INHERIT>
688 static constexpr const char*
const&
columnLabel() {
return INHERIT::mLabel; }
691template <
typename INHERIT>
695 static constexpr const char*
const&
columnLabel() {
return INHERIT::mLabel; }
698template <
typename INHERIT>
702 static constexpr const char*
const&
columnLabel() {
return INHERIT::mLabel; }
705template <
size_t M = 0>
709 constexpr inline static auto value = M;
724 static constexpr const char*
mLabel =
"Marker";
727template <int64_t START = 0, int64_t
END = -1>
730 constexpr inline static int64_t
start = START;
731 constexpr inline static int64_t
end =
END;
791 static constexpr const char*
mLabel =
"Index";
815using is_dynamic_t = std::conditional_t<is_dynamic_column<T>, std::true_type, std::false_type>;
821using is_indexing_t = std::conditional_t<is_indexing_column<T>, std::true_type, std::false_type>;
842 mSelectedRows(selection),
843 mMaxSelection(selection.
size()),
851 mSelectedRows = selection;
852 mMaxSelection = selection.size();
862 [[nodiscard]] std::tuple<int64_t const*, int64_t const*>
865 return std::make_tuple(&
mRowIndex, &mSelectionRow);
868 [[nodiscard]] std::tuple<uint64_t const*>
871 return std::make_tuple(&
mOffset);
878 mMaxSelection = std::min(
end, mMaxSelection);
896 return lh.mSelectionRow == rh.mSelectionRow;
909 this->mSelectionRow = this->mMaxSelection;
915 return mSelectionRow;
918 [[nodiscard]]
auto size()
const
920 return mMaxSelection;
929 inline void updateRow()
933 gsl::span<int64_t const> mSelectedRows;
934 int64_t mSelectionRow = 0;
935 int64_t mMaxSelection = 0;
970 [[nodiscard]] std::tuple<int64_t const*, int64_t const*>
976 [[nodiscard]] std::tuple<uint64_t const*>
979 return std::make_tuple(&
mOffset);
1020template <
typename T>
1025template <
typename C>
1031template <
typename T,
typename B>
1033 { t.B::mColumnIterator };
1036template <
typename...
C>
1039template <
typename D,
typename O,
typename IP,
typename... C>
1067 this->limitRange(this->rangeStart(), this->rangeEnd());
1073 C(static_cast<
C const&>(
other))...
1080 IP::operator=(
static_cast<IP const&
>(
other));
1081 (
void(
static_cast<C&
>(*
this) =
static_cast<C>(
other)), ...);
1087 requires std::same_as<IP, DefaultIndexPolicy>
1089 C(
static_cast<C const&
>(
other))...
1096 this->moveByIndex(1);
1109 this->moveByIndex(-1);
1124 copy.moveByIndex(inc);
1138 template <
typename... CL,
typename TA>
1141 (CL::setCurrent(current), ...);
1144 template <
typename CL>
1147 return CL::getCurrentRaw();
1150 template <
typename... Cs>
1153 return std::vector<o2::soa::Binding>{
static_cast<Cs const&
>(*this).getCurrentRaw()...};
1161 template <
typename... TA>
1167 template <
typename... Cs>
1170 (Cs::setCurrentRaw(ptrs[framework::has_type_at_v<Cs>(p)]), ...);
1173 template <
typename... Cs,
typename I>
1178 (Cs::setCurrentRaw(
b), ...);
1186 template <
typename I>
1194 template <
typename... PC>
1197 (PC::mColumnIterator.moveToEnd(), ...);
1207 [
this]<soa::is_dynamic_column T>(T*) ->
void { bindDynamicColumn<T>(
typename T::bindings_t{}); },
1208 [
this]<
typename T>(
T*) ->
void {},
1210 (
f(
static_cast<C*
>(
nullptr)), ...);
1211 if constexpr (has_index<
C...>) {
1212 this->setIndices(this->getIndices());
1213 this->setOffsets(this->getOffsets());
1217 template <
typename DC,
typename...
B>
1220 DC::boundIterators = std::make_tuple(getDynamicBinding<B>()...);
1228 template <
typename B>
1229 requires(can_bind<self_t, B>)
1230 decltype(
auto) getDynamicBinding()
1232 static_assert(std::same_as<decltype(&(static_cast<B*>(
this)->mColumnIterator)), std::decay_t<
decltype(B::mColumnIterator)>*>,
"foo");
1233 return &(
static_cast<B*
>(
this)->mColumnIterator);
1237 template <
typename B>
1238 decltype(
auto) getDynamicBinding()
1240 return static_cast<std::decay_t<decltype(B::mColumnIterator)
>*>(
nullptr);
1245 static std::shared_ptr<arrow::Table>
joinTables(std::vector<std::shared_ptr<arrow::Table>>&& tables);
1246 static std::shared_ptr<arrow::Table>
concatTables(std::vector<std::shared_ptr<arrow::Table>>&& tables);
1250template <
typename T>
1253template <
typename T>
1255 T::originals.size();
1258template <
typename T>
1263template <
typename T>
1266template <
size_t N1, std::array<TableRef, N1> os1,
size_t N2, std::array<TableRef, N2> os2>
1269 return []<
size_t... Is>(std::index_sequence<Is...>) {
1270 return ([]<
size_t... Ks>(std::index_sequence<Ks...>) {
1271 constexpr auto h = os1[Is].desc_hash;
1274 }(std::make_index_sequence<N2>()) ||
1276 }(std::make_index_sequence<N1>());
1279template <with_originals T, with_originals B>
1282 return is_compatible<T::originals.size(), T::originals, B::originals.size(), B::originals>();
1285template <
typename T,
typename B>
1286using is_binding_compatible = std::conditional_t<is_binding_compatible_v<T, typename B::binding_t>(), std::true_type, std::false_type>;
1288template <
typename L,
typename D,
typename O,
typename Key,
typename H,
typename...
Ts>
1291template <
typename T>
1294template <soa::is_table T>
1295static constexpr std::string getLabelForTable()
1297 return std::string{aod::label<std::decay_t<T>::originals[0]>()};
1300template <soa::is_table T>
1302static constexpr std::string getLabelFromType()
1304 return getLabelForTable<T>();
1307template <soa::is_iterator T>
1308static constexpr std::string getLabelFromType()
1310 return getLabelForTable<typename std::decay_t<T>::parent_t>();
1313template <soa::is_index_table T>
1314static constexpr std::string getLabelFromType()
1316 return getLabelForTable<typename std::decay_t<T>::first_t>();
1318template <soa::with_base_table T>
1319static constexpr std::string getLabelFromType()
1324template <
typename...
C>
1327 return ((C::inherited_t::mLabel ==
key) || ...);
1330template <TableRef ref>
1331static constexpr std::pair<bool, std::string> hasKey(std::string
const&
key)
1336template <
typename...
C>
1339 return std::vector{hasKey<C>(
key)...};
1345template <with_originals T,
bool OPT = false>
1346static constexpr std::string getLabelFromTypeForKey(std::string
const&
key)
1348 if constexpr (T::originals.size() == 1) {
1349 auto locate = hasKey<T::originals[0]>(
key);
1351 return locate.second;
1354 auto locate = [&]<
size_t... Is>(std::index_sequence<Is...>) {
1355 return std::vector{hasKey<T::originals[Is]>(
key)...};
1356 }(std::make_index_sequence<T::originals.size()>{});
1357 auto it = std::find_if(locate.begin(), locate.end(), [](
auto const&
x) { return x.first; });
1358 if (it != locate.end()) {
1362 if constexpr (!OPT) {
1370template <
typename B,
typename...
C>
1373 return (o2::soa::is_binding_compatible_v<B, typename C::binding_t>() || ...);
1376template <
typename B,
typename...
C>
1379 return ((C::sorted && o2::soa::is_binding_compatible_v<B, typename C::binding_t>()) || ...);
1382template <
typename B,
typename Z>
1383consteval static bool relatedByIndex()
1385 return hasIndexTo<B>(
typename Z::table_t::external_index_columns_t{});
1388template <
typename B,
typename Z>
1389consteval static bool relatedBySortedIndex()
1391 return hasSortedIndexTo<B>(
typename Z::table_t::external_index_columns_t{});
1410 std::shared_ptr<arrow::Table>
getSliceFor(
int value, std::shared_ptr<arrow::Table>
const& input, uint64_t&
offset)
const;
1420template <
typename T,
typename Policy,
bool OPT = false>
1428 : Policy{
PreslicePolicyBase{{o2::soa::getLabelFromTypeForKey<T, OPT>(std::string{index_.
name})}, std::make_pair(o2::soa::getLabelFromTypeForKey<T, OPT>(std::string{index_.name}), std::string{index_.name})}, {}}
1434 if constexpr (OPT) {
1435 if (Policy::isMissing()) {
1444 if constexpr (OPT) {
1445 if (Policy::isMissing()) {
1449 return Policy::getSliceFor(
value);
1453template <
typename T>
1455template <
typename T>
1457template <
typename T>
1459template <
typename T>
1462template <
typename T>
1469template <soa::is_table T>
1471template <
typename T>
1474template <
typename T>
1477template <
typename T>
1480template <
typename T>
1484template <
typename T>
1487template <
typename T>
1490template <
typename T>
1494template <
typename... Is>
1502template <
typename T,
typename C,
typename Policy,
bool OPT>
1503 requires std::same_as<Policy, framework::PreslicePolicySorted> && (o2::soa::is_binding_compatible_v<C, T>())
1506 if constexpr (OPT) {
1507 if (container.isMissing()) {
1513 auto t =
typename T::self_t({out},
offset);
1514 table->copyIndexBindings(t);
1515 t.bindInternalIndicesTo(table);
1519template <soa::is_filtered_table T>
1524 t.bindInternalIndicesTo(table);
1525 t.intersectWithSelection(table->getSelectedRows());
1529template <soa::is_table T>
1535 t.bindInternalIndicesTo(table);
1539template <
typename T,
typename C,
typename Policy,
bool OPT>
1540 requires std::same_as<Policy, framework::PreslicePolicyGeneral> && (o2::soa::is_binding_compatible_v<C, T>())
1543 if constexpr (OPT) {
1544 if (container.isMissing()) {
1554template <soa::is_filtered_table T>
1557 if (
offset >=
static_cast<uint64_t
>(table->tableSize())) {
1568template <soa::is_filtered_table T,
typename C,
bool OPT>
1569 requires(o2::soa::is_binding_compatible_v<C, T>())
1572 if constexpr (OPT) {
1573 if (container.isMissing()) {
1582template <
typename T>
1587 auto t =
typename T::self_t({table->asArrowTable()->Slice(
static_cast<uint64_t
>(
offset),
count)},
static_cast<uint64_t
>(
offset));
1588 table->copyIndexBindings(t);
1592template <
typename T>
1597 auto slice = table->asArrowTable()->Slice(
static_cast<uint64_t
>(
offset),
count);
1601template <
typename T>
1606 auto t =
typename T::self_t({table->asArrowTable()}, localCache.getSliceFor(
value));
1607 t.intersectWithSelection(table->getSelectedRows());
1608 table->copyIndexBindings(t);
1611 auto t =
Filtered<T>({table->asArrowTable()}, localCache.getSliceFor(
value));
1612 table->copyIndexBindings(t);
1617template <with_originals T>
1625template <
typename D,
typename O,
typename IP,
typename...
C>
1662 return std::array<TableRef, 1>{
ref};
1678 static constexpr const auto ref =
TableRef{L::hash, D::hash, O::hash, o2::aod::version(D::str)};
1684 template <
size_t N, std::array<TableRef, N> bindings>
1685 requires(
ref.origin_hash ==
"CONC"_h)
1691 template <
size_t N, std::array<TableRef, N> bindings>
1692 requires(
ref.origin_hash ==
"JOIN"_h)
1697 return std::find(bindings.begin(), bindings.end(),
r) != bindings.end();
1701 template <
size_t N, std::array<TableRef, N> bindings>
1702 requires(!(
ref.origin_hash ==
"CONC"_h ||
ref.origin_hash ==
"JOIN"_h))
1705 return std::find(bindings.begin(), bindings.end(),
self_t::ref) != bindings.end();
1708 template <TableRef r>
1721 template <
typename IP>
1724 template <
typename IP,
typename Parent,
typename... T>
1741 template <
typename P,
typename... Os>
1743 requires(P::ref.desc_hash == Parent::ref.desc_hash)
1749 template <
typename P>
1756 template <
typename P>
1758 requires std::same_as<IP, DefaultIndexPolicy>
1764 template <
typename P,
typename O1,
typename... Os>
1766 requires(P::ref.desc_hash == Parent::ref.desc_hash)
1771 template <
typename P,
typename O1,
typename... Os>
1773 requires(P::ref.desc_hash == Parent::ref.desc_hash)
1778 template <
typename P>
1784 template <
typename P>
1790 template <
typename P>
1792 requires std::same_as<IP, DefaultIndexPolicy>
1799 this->mRowIndex =
other.index;
1802 template <
typename P>
1805 this->mRowIndex =
other.mRowIndex;
1808 template <
typename P,
typename... Os>
1810 requires std::same_as<typename P::table_t, typename Parent::table_t>
1812 this->mRowIndex =
other.mRowIndex;
1815 template <
typename TI>
1818 using decayed = std::decay_t<TI>;
1820 constexpr auto idx = framework::has_type_at_v<decayed>(
bindings_pack_t{});
1822 }
else if constexpr (std::same_as<decayed, Parent>) {
1823 return this->globalIndex();
1825 return this->globalIndex();
1827 return static_cast<int32_t
>(-1);
1831 template <
typename CD,
typename... CDArgs>
1834 using decayed = std::decay_t<CD>;
1836 return static_cast<decayed
>(*this).template getDynamicValue<CDArgs...>();
1839 template <
typename B,
typename CC>
1842 using COL = std::decay_t<CC>;
1844 return static_cast<B>(
static_cast<COL
>(*this).get());
1847 template <
typename B,
typename... CCs>
1850 static_assert(std::same_as<B, float> || std::same_as<B, double>,
"The common return type should be float or double");
1851 return {getValue<B, CCs>()...};
1862 copy.moveByIndex(inc);
1877 template <
typename IP,
typename Parent,
typename... T>
1880 template <
typename IP,
typename Parent>
1883 if constexpr (
sizeof...(Ts) == 0) {
1894 template <
typename IP,
typename Parent>
1906 return []<
typename...
C>(
framework::pack<
C...>) {
return std::set{{o2::framework::TypeIdHelpers::uniqueId<C>()...}}; }(
columns_t{});
1911 mEnd{table->num_rows()},
1914 if (mTable->num_rows() == 0) {
1916 mColumnChunks[ci] =
nullptr;
1922 mColumnChunks[ci] = lookups[ci];
1925 mBegin.bindInternalIndices(
this);
1929 Table(std::vector<std::shared_ptr<arrow::Table>>&& tables, uint64_t
offset = 0)
1930 requires(
ref.origin_hash !=
"CONC"_h)
1935 Table(std::vector<std::shared_ptr<arrow::Table>>&& tables, uint64_t
offset = 0)
1936 requires(
ref.origin_hash ==
"CONC"_h)
1941 template <
typename Key>
1945 return std::array<bool,
sizeof...(Cs)>{[]() {
1946 if constexpr (
requires { Cs::index_targets.size(); }) {
1947 return Key::template
isIndexTargetOf<Cs::index_targets.size(), Cs::index_targets>();
1953 constexpr auto pos = std::find(map.begin(), map.end(),
true);
1954 if constexpr (
pos != map.end()) {
1955 return mColumnChunks[std::distance(map.begin(),
pos)];
1957 static_assert(framework::always_static_assert_v<Key>,
"This table does not have an index to given Key");
1987 return filtered_iterator(mColumnChunks, {selection, mTable->num_rows(), mOffset});
2025 return mTable->num_rows();
2035 template <
typename... TA>
2038 mBegin.bindExternalIndices(current...);
2041 template <
typename I>
2044 mBegin.bindInternalIndices(
ptr);
2052 template <
typename... Cs>
2055 (
static_cast<Cs
>(mBegin).setCurrentRaw(binding), ...);
2060 mBegin.bindExternalIndicesRaw(std::forward<std::vector<o2::soa::Binding>>(ptrs));
2063 template <
typename T,
typename... Cs>
2066 dest.bindExternalIndicesRaw(mBegin.getIndexBindings());
2069 template <
typename T>
2092 template <
typename T1,
typename Policy,
bool OPT>
2105 return self_t{mTable->Slice(0, 0), 0};
2109 template <
typename T>
2110 arrow::ChunkedArray* lookupColumn()
2113 auto label = T::columnLabel();
2119 std::shared_ptr<arrow::Table> mTable =
nullptr;
2120 uint64_t mOffset = 0;
2127template <uint32_t
D, soa::is_column...
C>
2133namespace row_helpers
2144 return std::array<std::shared_ptr<arrow::Array>,
sizeof...(Cs)>{
o2::soa::getIndexFromLabel(table, Cs::columnLabel())->chunk(ci)...};
2147template <
typename T, soa::is_persistent_column C>
2148typename C::type
getSingleRowData(arrow::Table* table, T& rowIterator, uint64_t ci = std::numeric_limits<uint64_t>::max(), uint64_t ai = std::numeric_limits<uint64_t>::max(), uint64_t globalIndex = std::numeric_limits<uint64_t>::max())
2150 if (ci == std::numeric_limits<uint64_t>::max() || ai == std::numeric_limits<uint64_t>::max()) {
2151 auto colIterator =
static_cast<C>(rowIterator).getIterator();
2152 ci = colIterator.mCurrentChunk;
2153 ai = *(colIterator.mCurrentPos) - colIterator.mFirstIndex;
2155 return std::static_pointer_cast<o2::soa::arrow_array_for_t<typename C::type>>(
o2::soa::getIndexFromLabel(table, C::columnLabel())->chunk(ci))->raw_values()[ai];
2158template <
typename T, soa::is_dynamic_column C>
2159typename C::type
getSingleRowData(arrow::Table*, T& rowIterator, uint64_t ci = std::numeric_limits<uint64_t>::max(), uint64_t ai = std::numeric_limits<uint64_t>::max(), uint64_t globalIndex = std::numeric_limits<uint64_t>::max())
2161 if (globalIndex != std::numeric_limits<uint64_t>::max() && globalIndex != *std::get<0>(rowIterator.getIndices())) {
2162 rowIterator.setCursor(globalIndex);
2164 return rowIterator.template getDynamicColumn<C>();
2167template <
typename T, soa::is_index_column C>
2168typename C::type
getSingleRowData(arrow::Table*, T& rowIterator, uint64_t ci = std::numeric_limits<uint64_t>::max(), uint64_t ai = std::numeric_limits<uint64_t>::max(), uint64_t globalIndex = std::numeric_limits<uint64_t>::max())
2170 if (globalIndex != std::numeric_limits<uint64_t>::max() && globalIndex != *std::get<0>(rowIterator.getIndices())) {
2171 rowIterator.setCursor(globalIndex);
2173 return rowIterator.template getId<C>();
2176template <
typename T,
typename... Cs>
2177std::tuple<
typename Cs::type...>
getRowData(arrow::Table* table, T rowIterator, uint64_t ci = std::numeric_limits<uint64_t>::max(), uint64_t ai = std::numeric_limits<uint64_t>::max(), uint64_t globalIndex = std::numeric_limits<uint64_t>::max())
2179 return std::make_tuple(getSingleRowData<T, Cs>(table, rowIterator, ci, ai, globalIndex)...);
2184template <
typename R,
typename T,
typename C>
2185R getColumnValue(
const T& rowIterator)
2187 return static_cast<R>(
static_cast<C>(rowIterator).get());
2190template <
typename R,
typename T>
2191using ColumnGetterFunction =
R (*)(
const T&);
2193template <
typename T,
typename R>
2198 { t.get() } -> std::convertible_to<R>;
2201template <
typename T,
typename R>
2203 { t.get() } -> std::convertible_to<R>;
2206template <
typename R,
typename T, persistent_with_common_getter<R> C>
2207ColumnGetterFunction<R, T> createGetterPtr(
const std::string_view& targetColumnLabel)
2209 return targetColumnLabel == C::columnLabel() ? &getColumnValue<R, T, C> :
nullptr;
2212template <
typename R,
typename T, dynamic_with_common_getter<R> C>
2213ColumnGetterFunction<R, T> createGetterPtr(
const std::string_view& targetColumnLabel)
2215 std::string_view columnLabel(C::columnLabel());
2219 if (targetColumnLabel.starts_with(
"f") && targetColumnLabel.substr(1) == columnLabel) {
2220 return &getColumnValue<R, T, C>;
2224 if (targetColumnLabel == columnLabel) {
2225 return &getColumnValue<R, T, C>;
2231template <
typename R,
typename T,
typename... Cs>
2234 ColumnGetterFunction<R, T>
func;
2236 (
void)((
func = createGetterPtr<R, T, Cs>(targetColumnLabel),
func) || ...);
2245template <
typename T,
typename R>
2246using with_common_getter_t =
typename std::conditional<persistent_with_common_getter<T, R> || dynamic_with_common_getter<T, R>, std::true_type, std::false_type>
::type;
2249template <
typename R,
typename T>
2254 if (targetColumnLabel.size() == 0) {
2258 return getColumnGetterByLabel<R, typename T::iterator>(TypesWithCommonGetter{}, targetColumnLabel);
2278#define DECLARE_EQUIVALENT_FOR_INDEX(_Base_, _Equiv_) \
2280 struct EquivalentIndexNG<o2::aod::Hash<_Base_::ref.desc_hash>, o2::aod::Hash<_Equiv_::ref.desc_hash>> { \
2281 constexpr static bool value = true; \
2284#define DECLARE_EQUIVALENT_FOR_INDEX_NG(_Base_, _Equiv_) \
2286 struct EquivalentIndexNG<o2::aod::Hash<_Base_ ""_h>, o2::aod::Hash<_Equiv_ ""_h>> { \
2287 constexpr static bool value = true; \
2290#define DECLARE_SOA_COLUMN_FULL(_Name_, _Getter_, _Type_, _Label_) \
2291 struct _Name_ : o2::soa::Column<_Type_, _Name_> { \
2292 static constexpr const char* mLabel = _Label_; \
2293 static_assert(!((*(mLabel + 1) == 'I' && *(mLabel + 2) == 'n' && *(mLabel + 3) == 'd' && *(mLabel + 4) == 'e' && *(mLabel + 5) == 'x')), "Index is not a valid column name"); \
2294 using base = o2::soa::Column<_Type_, _Name_>; \
2295 using type = _Type_; \
2296 using column_t = _Name_; \
2297 _Name_(arrow::ChunkedArray const* column) \
2298 : o2::soa::Column<_Type_, _Name_>(o2::soa::ColumnIterator<type>(column)) \
2302 _Name_() = default; \
2303 _Name_(_Name_ const& other) = default; \
2304 _Name_& operator=(_Name_ const& other) = default; \
2306 decltype(auto) _Getter_() const \
2308 return *mColumnIterator; \
2311 decltype(auto) get() const \
2313 return _Getter_(); \
2316 [[maybe_unused]] static constexpr o2::framework::expressions::BindingNode _Getter_ { _Label_, o2::framework::TypeIdHelpers::uniqueId<_Name_>(), \
2317 o2::framework::expressions::selectArrowType<_Type_>() }
2319#define DECLARE_SOA_COLUMN(_Name_, _Getter_, _Type_) \
2320 DECLARE_SOA_COLUMN_FULL(_Name_, _Getter_, _Type_, "f" #_Name_)
2324#define MAKEINT(_Size_) uint##_Size_##_t
2326#define DECLARE_SOA_BITMAP_COLUMN_FULL(_Name_, _Getter_, _Size_, _Label_) \
2327 struct _Name_ : o2::soa::Column<MAKEINT(_Size_), _Name_> { \
2328 static constexpr const char* mLabel = _Label_; \
2329 static_assert(!((*(mLabel + 1) == 'I' && *(mLabel + 2) == 'n' && *(mLabel + 3) == 'd' && *(mLabel + 4) == 'e' && *(mLabel + 5) == 'x')), "Index is not a valid column name"); \
2330 using base = o2::soa::Column<MAKEINT(_Size_), _Name_>; \
2331 using type = MAKEINT(_Size_); \
2332 _Name_(arrow::ChunkedArray const* column) \
2333 : o2::soa::Column<type, _Name_>(o2::soa::ColumnIterator<type>(column)) \
2337 _Name_() = default; \
2338 _Name_(_Name_ const& other) = default; \
2339 _Name_& operator=(_Name_ const& other) = default; \
2341 decltype(auto) _Getter_##_raw() const \
2343 return *mColumnIterator; \
2346 bool _Getter_##_bit(int bit) const \
2348 return (*mColumnIterator & (static_cast<type>(1) << bit)) >> bit; \
2351 [[maybe_unused]] static constexpr o2::framework::expressions::BindingNode _Getter_ { _Label_, o2::framework::TypeIdHelpers::uniqueId<_Name_>(), \
2352 o2::framework::expressions::selectArrowType<MAKEINT(_Size_)>() }
2354#define DECLARE_SOA_BITMAP_COLUMN(_Name_, _Getter_, _Size_) \
2355 DECLARE_SOA_BITMAP_COLUMN_FULL(_Name_, _Getter_, _Size_, "f" #_Name_)
2359#define DECLARE_SOA_EXPRESSION_COLUMN_FULL(_Name_, _Getter_, _Type_, _Label_, _Expression_) \
2360 struct _Name_ : o2::soa::Column<_Type_, _Name_> { \
2361 static constexpr const char* mLabel = _Label_; \
2362 using base = o2::soa::Column<_Type_, _Name_>; \
2363 using type = _Type_; \
2364 using column_t = _Name_; \
2365 using spawnable_t = std::true_type; \
2366 _Name_(arrow::ChunkedArray const* column) \
2367 : o2::soa::Column<_Type_, _Name_>(o2::soa::ColumnIterator<type>(column)) \
2371 _Name_() = default; \
2372 _Name_(_Name_ const& other) = default; \
2373 _Name_& operator=(_Name_ const& other) = default; \
2375 decltype(auto) _Getter_() const \
2377 return *mColumnIterator; \
2380 decltype(auto) get() const \
2382 return _Getter_(); \
2385 static o2::framework::expressions::Projector Projector() \
2387 return _Expression_; \
2390 [[maybe_unused]] static constexpr o2::framework::expressions::BindingNode _Getter_ { _Label_, o2::framework::TypeIdHelpers::uniqueId<_Name_>(), \
2391 o2::framework::expressions::selectArrowType<_Type_>() }
2393#define DECLARE_SOA_EXPRESSION_COLUMN(_Name_, _Getter_, _Type_, _Expression_) \
2394 DECLARE_SOA_EXPRESSION_COLUMN_FULL(_Name_, _Getter_, _Type_, "f" #_Name_, _Expression_);
2417template <o2::soa::is_table T>
2420 return T::originals;
2423#define DECLARE_SOA_SLICE_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, _Type_, _Table_, _Label_, _Suffix_) \
2424 struct _Name_##IdSlice : o2::soa::Column<_Type_[2], _Name_##IdSlice> { \
2425 static_assert(std::is_integral_v<_Type_>, "Index type must be integral"); \
2426 static_assert((*_Suffix_ == '\0') || (*_Suffix_ == '_'), "Suffix has to begin with _"); \
2427 static constexpr const char* mLabel = "fIndexSlice" _Label_ _Suffix_; \
2428 using base = o2::soa::Column<_Type_[2], _Name_##IdSlice>; \
2429 using type = _Type_[2]; \
2430 using column_t = _Name_##IdSlice; \
2431 using binding_t = _Table_; \
2432 static constexpr auto index_targets = getIndexTargets<_Table_>(); \
2433 _Name_##IdSlice(arrow::ChunkedArray const* column) \
2434 : o2::soa::Column<_Type_[2], _Name_##IdSlice>(o2::soa::ColumnIterator<type>(column)) \
2438 _Name_##IdSlice() = default; \
2439 _Name_##IdSlice(_Name_##IdSlice const& other) = default; \
2440 _Name_##IdSlice& operator=(_Name_##IdSlice const& other) = default; \
2441 std::array<_Type_, 2> inline getIds() const \
2443 return _Getter_##Ids(); \
2446 bool has_##_Getter_() const \
2448 auto a = *mColumnIterator; \
2449 return a[0] >= 0 && a[1] >= 0; \
2452 std::array<_Type_, 2> _Getter_##Ids() const \
2454 auto a = *mColumnIterator; \
2455 return std::array{a[0], a[1]}; \
2458 template <typename T> \
2459 auto _Getter_##_as() const \
2461 if (O2_BUILTIN_UNLIKELY(mBinding.ptr == nullptr)) { \
2462 o2::soa::notBoundTable(#_Table_); \
2464 auto t = mBinding.get<T>(); \
2465 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2466 o2::soa::dereferenceWithWrongType(#_Getter_, #_Table_); \
2468 if (O2_BUILTIN_UNLIKELY(!has_##_Getter_())) { \
2469 return t->emptySlice(); \
2471 auto a = *mColumnIterator; \
2472 auto r = t->rawSlice(a[0], a[1]); \
2473 t->copyIndexBindings(r); \
2474 r.bindInternalIndicesTo(t); \
2478 auto _Getter_() const \
2480 return _Getter_##_as<binding_t>(); \
2483 template <typename T> \
2484 bool setCurrent(T const* current) \
2486 if constexpr (o2::soa::is_binding_compatible_v<T, binding_t>()) { \
2487 assert(current != nullptr); \
2488 this->mBinding.bind(current); \
2494 bool setCurrentRaw(o2::soa::Binding current) \
2496 this->mBinding = current; \
2499 binding_t const* getCurrent() const { return mBinding.get<binding_t>(); } \
2500 o2::soa::Binding getCurrentRaw() const { return mBinding; } \
2501 o2::soa::Binding mBinding; \
2504#define DECLARE_SOA_SLICE_INDEX_COLUMN_FULL(_Name_, _Getter_, _Type_, _Table_, _Suffix_) DECLARE_SOA_SLICE_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, _Type_, _Table_, #_Table_, _Suffix_)
2505#define DECLARE_SOA_SLICE_INDEX_COLUMN(_Name_, _Getter_) DECLARE_SOA_SLICE_INDEX_COLUMN_FULL(_Name_, _Getter_, int32_t, _Name_##s, "")
2506#define DECLARE_SOA_SLICE_INDEX_COLUMN_CUSTOM(_Name_, _Getter_, _Label_) DECLARE_SOA_SLICE_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, int32_t, _Name_##s, _Label_, "")
2509#define DECLARE_SOA_ARRAY_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, _Type_, _Table_, _Label_, _Suffix_) \
2510 struct _Name_##Ids : o2::soa::Column<std::vector<_Type_>, _Name_##Ids> { \
2511 static_assert(std::is_integral_v<_Type_>, "Index type must be integral"); \
2512 static_assert((*_Suffix_ == '\0') || (*_Suffix_ == '_'), "Suffix has to begin with _"); \
2513 static constexpr const char* mLabel = "fIndexArray" _Label_ _Suffix_; \
2514 using base = o2::soa::Column<std::vector<_Type_>, _Name_##Ids>; \
2515 using type = std::vector<_Type_>; \
2516 using column_t = _Name_##Ids; \
2517 using binding_t = _Table_; \
2518 static constexpr auto index_targets = getIndexTargets<_Table_>(); \
2519 _Name_##Ids(arrow::ChunkedArray const* column) \
2520 : o2::soa::Column<std::vector<_Type_>, _Name_##Ids>(o2::soa::ColumnIterator<type>(column)) \
2524 _Name_##Ids() = default; \
2525 _Name_##Ids(_Name_##Ids const& other) = default; \
2526 _Name_##Ids& operator=(_Name_##Ids const& other) = default; \
2528 gsl::span<const _Type_> inline getIds() const \
2530 return _Getter_##Ids(); \
2533 gsl::span<const _Type_> _Getter_##Ids() const \
2535 return *mColumnIterator; \
2538 bool has_##_Getter_() const \
2540 return !(*mColumnIterator).empty(); \
2543 template <typename T> \
2544 auto _Getter_##_as() const \
2546 if (O2_BUILTIN_UNLIKELY(mBinding.ptr == nullptr)) { \
2547 o2::soa::notBoundTable(#_Table_); \
2549 auto t = mBinding.get<T>(); \
2550 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2551 o2::soa::dereferenceWithWrongType(#_Getter_, #_Table_); \
2553 return getIterators<T>(); \
2556 template <typename T> \
2557 auto filtered_##_Getter_##_as() const \
2559 if (O2_BUILTIN_UNLIKELY(mBinding.ptr == nullptr)) { \
2560 o2::soa::notBoundTable(#_Table_); \
2562 auto t = mBinding.get<T>(); \
2563 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2564 o2::soa::dereferenceWithWrongType(#_Getter_, #_Table_); \
2566 return getFilteredIterators<T>(); \
2569 template <typename T> \
2570 auto getIterators() const \
2572 auto result = std::vector<typename T::unfiltered_iterator>(); \
2573 for (auto& i : *mColumnIterator) { \
2574 result.push_back(mBinding.get<T>()->rawIteratorAt(i)); \
2579 template <typename T> \
2580 std::vector<typename T::iterator> getFilteredIterators() const \
2582 if constexpr (o2::soa::is_filtered_table<T>) { \
2583 auto result = std::vector<typename T::iterator>(); \
2584 for (auto const& i : *mColumnIterator) { \
2585 auto pos = mBinding.get<T>()->isInSelectedRows(i); \
2587 result.emplace_back(mBinding.get<T>()->iteratorAt(pos)); \
2592 static_assert(o2::framework::always_static_assert_v<T>, "T is not a Filtered type"); \
2597 auto _Getter_() const \
2599 return _Getter_##_as<binding_t>(); \
2602 template <typename T> \
2603 auto _Getter_##_first_as() const \
2605 if (O2_BUILTIN_UNLIKELY(mBinding.ptr == nullptr)) { \
2606 o2::soa::notBoundTable(#_Table_); \
2608 auto t = mBinding.get<T>(); \
2609 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2610 o2::soa::dereferenceWithWrongType(#_Getter_, #_Table_); \
2612 return t->rawIteratorAt((*mColumnIterator)[0]); \
2615 template <typename T> \
2616 auto _Getter_##_last_as() const \
2618 if (O2_BUILTIN_UNLIKELY(mBinding.ptr == nullptr)) { \
2619 o2::soa::notBoundTable(#_Table_); \
2621 auto t = mBinding.get<T>(); \
2622 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2623 o2::soa::dereferenceWithWrongType(#_Getter_, #_Table_); \
2625 return t->rawIteratorAt((*mColumnIterator).back()); \
2628 auto _Getter_first() const \
2630 return _Getter_##_first_as<binding_t>(); \
2633 auto _Getter_last() const \
2635 return _Getter_##_last_as<binding_t>(); \
2638 template <typename T> \
2639 bool setCurrent(T const* current) \
2641 if constexpr (o2::soa::is_binding_compatible_v<T, binding_t>()) { \
2642 assert(current != nullptr); \
2643 this->mBinding.bind(current); \
2649 bool setCurrentRaw(o2::soa::Binding current) \
2651 this->mBinding = current; \
2654 binding_t const* getCurrent() const { return mBinding.get<binding_t>(); } \
2655 o2::soa::Binding getCurrentRaw() const { return mBinding; } \
2656 o2::soa::Binding mBinding; \
2659#define DECLARE_SOA_ARRAY_INDEX_COLUMN_FULL(_Name_, _Getter_, _Type_, _Table_, _Suffix_) DECLARE_SOA_ARRAY_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, _Type_, _Table_, #_Table_, _Suffix_)
2660#define DECLARE_SOA_ARRAY_INDEX_COLUMN(_Name_, _Getter_) DECLARE_SOA_ARRAY_INDEX_COLUMN_FULL(_Name_, _Getter_, int32_t, _Name_##s, "")
2661#define DECLARE_SOA_ARRAY_INDEX_COLUMN_CUSTOM(_Name_, _Getter_, _Label_) DECLARE_SOA_ARRAY_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, int32_t, _Name_##s, _Label_, "")
2664#define DECLARE_SOA_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, _Type_, _Table_, _Label_, _Suffix_) \
2665 struct _Name_##Id : o2::soa::Column<_Type_, _Name_##Id> { \
2666 static_assert(std::is_integral_v<_Type_>, "Index type must be integral"); \
2667 static_assert((*_Suffix_ == '\0') || (*_Suffix_ == '_'), "Suffix has to begin with _"); \
2668 static constexpr const char* mLabel = "fIndex" _Label_ _Suffix_; \
2669 using base = o2::soa::Column<_Type_, _Name_##Id>; \
2670 using type = _Type_; \
2671 using column_t = _Name_##Id; \
2672 using binding_t = _Table_; \
2673 static constexpr auto index_targets = getIndexTargets<_Table_>(); \
2674 _Name_##Id(arrow::ChunkedArray const* column) \
2675 : o2::soa::Column<_Type_, _Name_##Id>(o2::soa::ColumnIterator<type>(column)) \
2679 _Name_##Id() = default; \
2680 _Name_##Id(_Name_##Id const& other) = default; \
2681 _Name_##Id& operator=(_Name_##Id const& other) = default; \
2682 type inline getId() const \
2684 return _Getter_##Id(); \
2687 type _Getter_##Id() const \
2689 return *mColumnIterator; \
2692 bool has_##_Getter_() const \
2694 return *mColumnIterator >= 0; \
2697 template <typename T> \
2698 auto _Getter_##_as() const \
2700 if (O2_BUILTIN_UNLIKELY(mBinding.ptr == nullptr)) { \
2701 o2::soa::notBoundTable(#_Table_); \
2703 if (O2_BUILTIN_UNLIKELY(!has_##_Getter_())) { \
2704 o2::soa::accessingInvalidIndexFor(#_Getter_); \
2706 auto t = mBinding.get<T>(); \
2707 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2708 o2::soa::dereferenceWithWrongType(#_Getter_, #_Table_); \
2710 return t->rawIteratorAt(*mColumnIterator); \
2713 auto _Getter_() const \
2715 return _Getter_##_as<binding_t>(); \
2718 template <typename T> \
2719 bool setCurrent(T* current) \
2721 if constexpr (o2::soa::is_binding_compatible_v<T, binding_t>()) { \
2722 assert(current != nullptr); \
2723 this->mBinding.bind(current); \
2729 bool setCurrentRaw(o2::soa::Binding current) \
2731 this->mBinding = current; \
2734 binding_t const* getCurrent() const { return mBinding.get<binding_t>(); } \
2735 o2::soa::Binding getCurrentRaw() const { return mBinding; } \
2736 o2::soa::Binding mBinding; \
2738 [[maybe_unused]] static constexpr o2::framework::expressions::BindingNode _Getter_##Id { "fIndex" #_Table_ _Suffix_, o2::framework::TypeIdHelpers::uniqueId<_Name_##Id>(), \
2739 o2::framework::expressions::selectArrowType<_Type_>() }
2741#define DECLARE_SOA_INDEX_COLUMN_FULL(_Name_, _Getter_, _Type_, _Table_, _Suffix_) DECLARE_SOA_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, _Type_, _Table_, #_Table_, _Suffix_)
2742#define DECLARE_SOA_INDEX_COLUMN(_Name_, _Getter_) DECLARE_SOA_INDEX_COLUMN_FULL(_Name_, _Getter_, int32_t, _Name_##s, "")
2743#define DECLARE_SOA_INDEX_COLUMN_CUSTOM(_Name_, _Getter_, _Label_) DECLARE_SOA_INDEX_COLUMN_FULL_CUSTOM(_Name_, _Getter_, int32_t, _Name_##s, _Label_, "")
2746#define DECLARE_SOA_SELF_INDEX_COLUMN_COMPLETE(_Name_, _Getter_, _Type_, _Label_, _IndexTarget_) \
2747 struct _Name_##Id : o2::soa::Column<_Type_, _Name_##Id> { \
2748 static_assert(std::is_integral_v<_Type_>, "Index type must be integral"); \
2749 static constexpr const char* mLabel = "fIndex" _Label_; \
2750 using base = o2::soa::Column<_Type_, _Name_##Id>; \
2751 using type = _Type_; \
2752 using column_t = _Name_##Id; \
2753 using self_index_t = std::true_type; \
2754 using compatible_signature = std::conditional<aod::is_aod_hash<_IndexTarget_>, _IndexTarget_, void>; \
2755 _Name_##Id(arrow::ChunkedArray const* column) \
2756 : o2::soa::Column<_Type_, _Name_##Id>(o2::soa::ColumnIterator<type>(column)) \
2760 _Name_##Id() = default; \
2761 _Name_##Id(_Name_##Id const& other) = default; \
2762 _Name_##Id& operator=(_Name_##Id const& other) = default; \
2763 type inline getId() const \
2765 return _Getter_##Id(); \
2768 type _Getter_##Id() const \
2770 return *mColumnIterator; \
2773 bool has_##_Getter_() const \
2775 return *mColumnIterator >= 0; \
2778 template <typename T> \
2779 auto _Getter_##_as() const \
2781 if (O2_BUILTIN_UNLIKELY(!has_##_Getter_())) { \
2782 o2::soa::accessingInvalidIndexFor(#_Getter_); \
2784 auto t = mBinding.get<T>(); \
2785 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2786 o2::soa::dereferenceWithWrongType(#_Getter_, "self"); \
2788 return t->rawIteratorAt(*mColumnIterator); \
2791 bool setCurrentRaw(o2::soa::Binding current) \
2793 this->mBinding = current; \
2796 o2::soa::Binding getCurrentRaw() const { return mBinding; } \
2797 o2::soa::Binding mBinding; \
2799 [[maybe_unused]] static constexpr o2::framework::expressions::BindingNode _Getter_##Id { "fIndex" _Label_, o2::framework::TypeIdHelpers::uniqueId<_Name_##Id>(), \
2800 o2::framework::expressions::selectArrowType<_Type_>() }
2802#define DECLARE_SOA_SELF_INDEX_COLUMN_FULL(_Name_, _Getter_, _Type_, _Label_) DECLARE_SOA_SELF_INDEX_COLUMN_COMPLETE(_Name_, _Getter_, _Type_, _Label_, void)
2803#define DECLARE_SOA_SELF_INDEX_COLUMN(_Name_, _Getter_) DECLARE_SOA_SELF_INDEX_COLUMN_FULL(_Name_, _Getter_, int32_t, #_Name_)
2805#define DECLARE_SOA_SELF_SLICE_INDEX_COLUMN_COMPLETE(_Name_, _Getter_, _Type_, _Label_, _IndexTarget_) \
2806 struct _Name_##IdSlice : o2::soa::Column<_Type_[2], _Name_##IdSlice> { \
2807 static_assert(std::is_integral_v<_Type_>, "Index type must be integral"); \
2808 static constexpr const char* mLabel = "fIndexSlice" _Label_; \
2809 using base = o2::soa::Column<_Type_[2], _Name_##IdSlice>; \
2810 using type = _Type_[2]; \
2811 using column_t = _Name_##IdSlice; \
2812 using self_index_t = std::true_type; \
2813 using compatible_signature = std::conditional<aod::is_aod_hash<_IndexTarget_>, _IndexTarget_, void>; \
2814 _Name_##IdSlice(arrow::ChunkedArray const* column) \
2815 : o2::soa::Column<_Type_[2], _Name_##IdSlice>(o2::soa::ColumnIterator<type>(column)) \
2819 _Name_##IdSlice() = default; \
2820 _Name_##IdSlice(_Name_##IdSlice const& other) = default; \
2821 _Name_##IdSlice& operator=(_Name_##IdSlice const& other) = default; \
2822 std::array<_Type_, 2> inline getIds() const \
2824 return _Getter_##Ids(); \
2827 bool has_##_Getter_() const \
2829 auto a = *mColumnIterator; \
2830 return a[0] >= 0 && a[1] >= 0; \
2833 std::array<_Type_, 2> _Getter_##Ids() const \
2835 auto a = *mColumnIterator; \
2836 return std::array{a[0], a[1]}; \
2839 template <typename T> \
2840 auto _Getter_##_as() const \
2842 auto t = mBinding.get<T>(); \
2843 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2844 o2::soa::dereferenceWithWrongType(#_Getter_, "self"); \
2846 if (O2_BUILTIN_UNLIKELY(!has_##_Getter_())) { \
2847 return t->emptySlice(); \
2849 auto a = *mColumnIterator; \
2850 auto r = t->rawSlice(a[0], a[1]); \
2851 t->copyIndexBindings(r); \
2852 r.bindInternalIndicesTo(t); \
2856 bool setCurrentRaw(o2::soa::Binding current) \
2858 this->mBinding = current; \
2861 o2::soa::Binding getCurrentRaw() const { return mBinding; } \
2862 o2::soa::Binding mBinding; \
2865#define DECLARE_SOA_SELF_SLICE_INDEX_COLUMN_FULL(_Name_, _Getter_, _Type_, _Label_) DECLARE_SOA_SELF_SLICE_INDEX_COLUMN_COMPLETE(_Name_, _Getter_, _Type_, _Label_, void)
2866#define DECLARE_SOA_SELF_SLICE_INDEX_COLUMN(_Name_, _Getter_) DECLARE_SOA_SELF_SLICE_INDEX_COLUMN_FULL(_Name_, _Getter_, int32_t, "_" #_Name_)
2868#define DECLARE_SOA_SELF_ARRAY_INDEX_COLUMN_COMPLETE(_Name_, _Getter_, _Type_, _Label_, _IndexTarget_) \
2869 struct _Name_##Ids : o2::soa::Column<std::vector<_Type_>, _Name_##Ids> { \
2870 static_assert(std::is_integral_v<_Type_>, "Index type must be integral"); \
2871 static constexpr const char* mLabel = "fIndexArray" _Label_; \
2872 using base = o2::soa::Column<std::vector<_Type_>, _Name_##Ids>; \
2873 using type = std::vector<_Type_>; \
2874 using column_t = _Name_##Ids; \
2875 using self_index_t = std::true_type; \
2876 using compatible_signature = std::conditional<aod::is_aod_hash<_IndexTarget_>, _IndexTarget_, void>; \
2877 _Name_##Ids(arrow::ChunkedArray const* column) \
2878 : o2::soa::Column<std::vector<_Type_>, _Name_##Ids>(o2::soa::ColumnIterator<type>(column)) \
2882 _Name_##Ids() = default; \
2883 _Name_##Ids(_Name_##Ids const& other) = default; \
2884 _Name_##Ids& operator=(_Name_##Ids const& other) = default; \
2885 gsl::span<const _Type_> inline getIds() const \
2887 return _Getter_##Ids(); \
2890 gsl::span<const _Type_> _Getter_##Ids() const \
2892 return *mColumnIterator; \
2895 bool has_##_Getter_() const \
2897 return !(*mColumnIterator).empty(); \
2900 template <typename T> \
2901 auto _Getter_##_as() const \
2903 auto t = mBinding.get<T>(); \
2904 if (O2_BUILTIN_UNLIKELY(t == nullptr)) { \
2905 o2::soa::dereferenceWithWrongType(#_Getter_, "self"); \
2907 return getIterators<T>(); \
2910 template <typename T> \
2911 auto getIterators() const \
2913 auto result = std::vector<typename T::unfiltered_iterator>(); \
2914 for (auto& i : *mColumnIterator) { \
2915 result.push_back(mBinding.get<T>()->rawIteratorAt(i)); \
2920 template <typename T> \
2921 auto _Getter_##_first_as() const \
2923 return mBinding.get<T>()->rawIteratorAt((*mColumnIterator)[0]); \
2926 template <typename T> \
2927 auto _Getter_##_last_as() const \
2929 return mBinding.get<T>()->rawIteratorAt((*mColumnIterator).back()); \
2932 bool setCurrentRaw(o2::soa::Binding current) \
2934 this->mBinding = current; \
2937 o2::soa::Binding getCurrentRaw() const { return mBinding; } \
2938 o2::soa::Binding mBinding; \
2941#define DECLARE_SOA_SELF_ARRAY_INDEX_COLUMN_FULL(_Name_, _Getter_, _Type_, _Label_) DECLARE_SOA_SELF_ARRAY_INDEX_COLUMN_COMPLETE(_Name_, _Getter_, _Type_, _Label_, void)
2942#define DECLARE_SOA_SELF_ARRAY_INDEX_COLUMN(_Name_, _Getter_) DECLARE_SOA_SELF_ARRAY_INDEX_COLUMN_FULL(_Name_, _Getter_, int32_t, "_" #_Name_)
2972#define DECLARE_SOA_DYNAMIC_COLUMN(_Name_, _Getter_, ...) \
2973 struct _Name_##Callback { \
2974 static inline constexpr auto getLambda() { return __VA_ARGS__; } \
2977 struct _Name_##Helper { \
2978 using callable_t = decltype(o2::framework::FunctionMetadata(std::declval<decltype(_Name_##Callback::getLambda())>())); \
2979 using return_type = typename callable_t::return_type; \
2981 template <typename... Bindings> \
2982 struct _Name_ : o2::soa::DynamicColumn<typename _Name_##Helper::callable_t::type, _Name_<Bindings...>> { \
2983 using base = o2::soa::DynamicColumn<typename _Name_##Helper::callable_t::type, _Name_<Bindings...>>; \
2984 using helper = _Name_##Helper; \
2985 using callback_holder_t = _Name_##Callback; \
2986 using callable_t = helper::callable_t; \
2987 using callback_t = callable_t::type; \
2989 _Name_(arrow::ChunkedArray const*) \
2992 _Name_() = default; \
2993 _Name_(_Name_ const& other) = default; \
2994 _Name_& operator=(_Name_ const& other) = default; \
2995 static constexpr const char* mLabel = #_Name_; \
2996 using type = typename callable_t::return_type; \
2998 template <typename... FreeArgs> \
2999 type _Getter_(FreeArgs... freeArgs) const \
3001 return boundGetter(std::make_index_sequence<std::tuple_size_v<decltype(boundIterators)>>{}, freeArgs...); \
3003 template <typename... FreeArgs> \
3004 type getDynamicValue(FreeArgs... freeArgs) const \
3006 return boundGetter(std::make_index_sequence<std::tuple_size_v<decltype(boundIterators)>>{}, freeArgs...); \
3011 return _Getter_(); \
3014 template <size_t... Is, typename... FreeArgs> \
3015 type boundGetter(std::integer_sequence<size_t, Is...>&&, FreeArgs... freeArgs) const \
3017 return __VA_ARGS__((**std::get<Is>(boundIterators))..., freeArgs...); \
3020 using bindings_t = typename o2::framework::pack<Bindings...>; \
3021 std::tuple<o2::soa::ColumnIterator<typename Bindings::type> const*...> boundIterators; \
3024#define DECLARE_SOA_TABLE_METADATA(_Name_, _Desc_, _Version_, ...) \
3025 using _Name_##Metadata = TableMetadata<Hash<_Desc_ "/" #_Version_ ""_h>, __VA_ARGS__>;
3027#define DECLARE_SOA_TABLE_METADATA_TRAIT(_Name_, _Desc_, _Version_) \
3029 struct MetadataTrait<Hash<_Desc_ "/" #_Version_ ""_h>> { \
3030 using metadata = _Name_##Metadata; \
3033#define DECLARE_SOA_TABLE_FULL_VERSIONED_(_Name_, _Label_, _Origin_, _Desc_, _Version_) \
3034 O2HASH(_Desc_ "/" #_Version_); \
3035 template <typename O> \
3036 using _Name_##From = o2::soa::Table<Hash<_Label_ ""_h>, Hash<_Desc_ "/" #_Version_ ""_h>, O>; \
3037 using _Name_ = _Name_##From<Hash<_Origin_ ""_h>>; \
3039 struct MetadataTrait<Hash<_Desc_ "/" #_Version_ ""_h>> { \
3040 using metadata = _Name_##Metadata; \
3043#define DECLARE_SOA_STAGE(_Name_, _Origin_, _Desc_, _Version_) \
3044 template <typename O> \
3045 using _Name_##From = o2::soa::Table<Hash<#_Name_ ""_h>, Hash<_Desc_ "/" #_Version_ ""_h>, O>; \
3046 using _Name_ = _Name_##From<Hash<_Origin_ ""_h>>;
3048#define DECLARE_SOA_TABLE_FULL_VERSIONED(_Name_, _Label_, _Origin_, _Desc_, _Version_, ...) \
3049 DECLARE_SOA_TABLE_METADATA(_Name_, _Desc_, _Version_, __VA_ARGS__); \
3050 DECLARE_SOA_TABLE_FULL_VERSIONED_(_Name_, _Label_, _Origin_, _Desc_, _Version_);
3052#define DECLARE_SOA_TABLE_FULL(_Name_, _Label_, _Origin_, _Desc_, ...) \
3054 DECLARE_SOA_TABLE_METADATA(_Name_, _Desc_, 0, __VA_ARGS__); \
3055 DECLARE_SOA_TABLE_FULL_VERSIONED_(_Name_, _Label_, _Origin_, _Desc_, 0)
3057#define DECLARE_SOA_TABLE(_Name_, _Origin_, _Desc_, ...) \
3058 DECLARE_SOA_TABLE_FULL(_Name_, #_Name_, _Origin_, _Desc_, __VA_ARGS__)
3060#define DECLARE_SOA_TABLE_VERSIONED(_Name_, _Origin_, _Desc_, _Version_, ...) \
3062 DECLARE_SOA_TABLE_METADATA(_Name_, _Desc_, _Version_, __VA_ARGS__); \
3063 DECLARE_SOA_TABLE_FULL_VERSIONED_(_Name_, #_Name_, _Origin_, _Desc_, _Version_)
3065#define DECLARE_SOA_TABLE_STAGED_VERSIONED(_BaseName_, _Desc_, _Version_, ...) \
3066 O2HASH(_Desc_ "/" #_Version_); \
3067 O2HASH(#_BaseName_); \
3068 O2HASH("Stored" #_BaseName_); \
3069 DECLARE_SOA_TABLE_METADATA(_BaseName_, _Desc_, _Version_, __VA_ARGS__); \
3070 using Stored##_BaseName_##Metadata = _BaseName_##Metadata; \
3071 DECLARE_SOA_TABLE_METADATA_TRAIT(_BaseName_, _Desc_, _Version_); \
3072 DECLARE_SOA_STAGE(_BaseName_, "AOD", _Desc_, _Version_); \
3073 DECLARE_SOA_STAGE(Stored##_BaseName_, "AOD1", _Desc_, _Version_);
3075#define DECLARE_SOA_TABLE_STAGED(_BaseName_, _Desc_, ...) \
3076 DECLARE_SOA_TABLE_STAGED_VERSIONED(_BaseName_, _Desc_, 0, __VA_ARGS__);
3078#define DECLARE_SOA_EXTENDED_TABLE_FULL(_Name_, _Label_, _OriginalTable_, _Origin_, _Desc_, _Version_, ...) \
3079 O2HASH(_Desc_ "/" #_Version_); \
3080 template <typename O> \
3081 using _Name_##ExtensionFrom = soa::Table<o2::aod::Hash<_Label_ ""_h>, o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>, O>; \
3082 using _Name_##Extension = _Name_##ExtensionFrom<o2::aod::Hash<_Origin_ ""_h>>; \
3083 template <typename O = o2::aod::Hash<_Origin_ ""_h>> \
3084 struct _Name_##ExtensionMetadataFrom : TableMetadata<o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>, __VA_ARGS__> { \
3085 using base_table_t = _OriginalTable_; \
3086 using extension_table_t = _Name_##ExtensionFrom<O>; \
3087 using expression_pack_t = framework::pack<__VA_ARGS__>; \
3088 static constexpr auto sources = _OriginalTable_::originals; \
3090 using _Name_##ExtensionMetadata = _Name_##ExtensionMetadataFrom<o2::aod::Hash<_Origin_ ""_h>>; \
3092 struct MetadataTrait<o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>> { \
3093 using metadata = _Name_##ExtensionMetadata; \
3095 template <typename O> \
3096 using _Name_##From = o2::soa::JoinFull<o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>, _OriginalTable_, _Name_##ExtensionFrom<O>>; \
3097 using _Name_ = _Name_##From<o2::aod::Hash<_Origin_ ""_h>>;
3099#define DECLARE_SOA_EXTENDED_TABLE(_Name_, _Table_, _Description_, _Version_, ...) \
3100 O2HASH(#_Name_ "Extension"); \
3101 DECLARE_SOA_EXTENDED_TABLE_FULL(_Name_, #_Name_ "Extension", _Table_, "DYN", _Description_, _Version_, __VA_ARGS__)
3103#define DECLARE_SOA_EXTENDED_TABLE_USER(_Name_, _Table_, _Description_, ...) \
3104 O2HASH(#_Name_ "Extension"); \
3105 DECLARE_SOA_EXTENDED_TABLE_FULL(_Name_, #_Name_ "Extension", _Table_, "AOD", "EX" _Description_, 0, __VA_ARGS__)
3107#define DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, _Origin_, _Version_, _Desc_, _Exclusive_, ...) \
3109 O2HASH(_Desc_ "/" #_Version_); \
3110 template <typename O = o2::aod::Hash<_Origin_ ""_h>> \
3111 struct _Name_##MetadataFrom : o2::aod::TableMetadata<o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>, soa::Index<>, __VA_ARGS__> { \
3112 static constexpr bool exclusive = _Exclusive_; \
3113 using Key = _Key_; \
3114 using index_pack_t = framework::pack<__VA_ARGS__>; \
3115 static constexpr const auto sources = []<typename... Cs>(framework::pack<Cs...>) { \
3116 constexpr auto a = o2::soa::mergeOriginals<typename Cs::binding_t...>(); \
3117 return o2::aod::filterForKey<a.size(), a, Key>(); \
3118 }(framework::pack<__VA_ARGS__>{}); \
3120 using _Name_##Metadata = _Name_##MetadataFrom<o2::aod::Hash<_Origin_ ""_h>>; \
3122 template <typename O = o2::aod::Hash<_Origin_ ""_h>> \
3123 using _Name_##From = o2::soa::IndexTable<o2::aod::Hash<#_Name_ ""_h>, o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>, O, _Key_, __VA_ARGS__>; \
3124 using _Name_ = _Name_##From<o2::aod::Hash<_Origin_ ""_h>>; \
3127 struct MetadataTrait<o2::aod::Hash<_Desc_ "/" #_Version_ ""_h>> { \
3128 using metadata = _Name_##Metadata; \
3131#define DECLARE_SOA_INDEX_TABLE(_Name_, _Key_, _Description_, ...) \
3132 DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, "IDX", 0, _Description_, false, __VA_ARGS__)
3134#define DECLARE_SOA_INDEX_TABLE_EXCLUSIVE(_Name_, _Key_, _Description_, ...) \
3135 DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, "IDX", 0, _Description_, true, __VA_ARGS__)
3137#define DECLARE_SOA_INDEX_TABLE_USER(_Name_, _Key_, _Description_, ...) \
3138 DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, "AOD", 0, _Description_, false, __VA_ARGS__)
3140#define DECLARE_SOA_INDEX_TABLE_EXCLUSIVE_USER(_Name_, _Key_, _Description_, ...) \
3141 DECLARE_SOA_INDEX_TABLE_FULL(_Name_, _Key_, "AOD", 0, _Description_, true, __VA_ARGS__)
3145template <
typename D,
typename...
Ts>
3146struct JoinFull :
Table<o2::aod::Hash<"JOIN"_h>, D, o2::aod::Hash<"JOIN"_h>, Ts...> {
3194 template <
typename T1,
typename Policy,
bool OPT>
3222 template <
typename T>
3229template <
typename...
Ts>
3232template <
typename...
Ts>
3238template <
typename T>
3241template <
typename T>
3244template <
typename...
Ts>
3245struct Concat :
Table<o2::aod::Hash<"CONC"_h>, o2::aod::Hash<"CONC/0"_h>, o2::aod::Hash<"CONC"_h>, Ts...> {
3248 Concat(std::vector<std::shared_ptr<arrow::Table>>&& tables, uint64_t
offset = 0)
3256 bindInternalIndicesTo(
this);
3259 using base::originals;
3261 using base::bindExternalIndices;
3262 using base::bindInternalIndicesTo;
3276template <
typename...
Ts>
3282template <soa::is_table T>
3293 using iterator = T::template iterator_template_o<FilteredIndexPolicy, self_t>;
3299 mSelectedRows{getSpan(selection)}
3301 if (this->tableSize() != 0) {
3302 mFilteredBegin = table_t::filtered_begin(mSelectedRows);
3305 mFilteredBegin.bindInternalIndices(
this);
3310 mSelectedRowsCache{
std::move(selection)},
3313 mSelectedRows = gsl::span{mSelectedRowsCache};
3314 if (this->tableSize() != 0) {
3315 mFilteredBegin = table_t::filtered_begin(mSelectedRows);
3318 mFilteredBegin.bindInternalIndices(
this);
3321 FilteredBase(std::vector<std::shared_ptr<arrow::Table>>&& tables, gsl::span<int64_t const>
const& selection, uint64_t
offset = 0)
3323 mSelectedRows{selection}
3325 if (this->tableSize() != 0) {
3326 mFilteredBegin = table_t::filtered_begin(mSelectedRows);
3329 mFilteredBegin.bindInternalIndices(
this);
3356 return mFilteredBegin;
3361 return mFilteredBegin;
3366 return mFilteredBegin +
i;
3371 return mSelectedRows.size();
3376 return table_t::asArrowTable()->num_rows();
3381 return mSelectedRows;
3387 newSelection.resize(
static_cast<int64_t
>(
end -
start + 1));
3388 std::iota(newSelection.begin(), newSelection.end(),
start);
3389 return self_t{{this->asArrowTable()}, std::move(newSelection), 0};
3399 if (sel ==
nullptr) {
3400 return gsl::span<int64_t const>{};
3402 auto array = std::static_pointer_cast<arrow::Int64Array>(sel->ToArray());
3405 return gsl::span{
start, stop};
3410 template <
typename... TA>
3413 table_t::bindExternalIndices(current...);
3414 mFilteredBegin.bindExternalIndices(current...);
3419 mFilteredBegin.bindExternalIndicesRaw(std::forward<std::vector<o2::soa::Binding>>(ptrs));
3422 template <
typename I>
3425 mFilteredBegin.bindInternalIndices(
ptr);
3428 template <
typename T1,
typename... Cs>
3431 dest.bindExternalIndicesRaw(mFilteredBegin.getIndexBindings());
3434 template <
typename T1>
3440 template <
typename T1>
3456 template <
typename T1,
bool OPT>
3462 template <
typename T1,
bool OPT>
3471 copyIndexBindings(t);
3477 auto locate = std::find(mSelectedRows.begin(), mSelectedRows.end(),
i);
3478 if (locate == mSelectedRows.end()) {
3481 return static_cast<int>(std::distance(mSelectedRows.begin(), locate));
3488 std::set_union(mSelectedRows.begin(), mSelectedRows.end(), selection.begin(), selection.end(), std::back_inserter(rowsUnion));
3489 mSelectedRowsCache.clear();
3490 mSelectedRowsCache = rowsUnion;
3498 std::set_intersection(mSelectedRows.begin(), mSelectedRows.end(), selection.begin(), selection.end(), std::back_inserter(intersection));
3499 mSelectedRowsCache.clear();
3500 mSelectedRowsCache = intersection;
3508 std::set_union(mSelectedRows.begin(), mSelectedRows.end(), selection.begin(), selection.end(), std::back_inserter(rowsUnion));
3509 mSelectedRowsCache.clear();
3510 mSelectedRowsCache = rowsUnion;
3518 std::set_intersection(mSelectedRows.begin(), mSelectedRows.end(), selection.begin(), selection.end(), std::back_inserter(intersection));
3519 mSelectedRowsCache.clear();
3520 mSelectedRowsCache = intersection;
3533 mSelectedRows = gsl::span{mSelectedRowsCache};
3535 mFilteredEnd.reset(
new RowViewSentinel{
static_cast<int64_t
>(mSelectedRows.size())});
3536 if (tableSize() == 0) {
3537 mFilteredBegin = *mFilteredEnd;
3539 mFilteredBegin.resetSelection(mSelectedRows);
3543 gsl::span<int64_t const> mSelectedRows;
3545 bool mCached =
false;
3546 iterator mFilteredBegin;
3547 std::shared_ptr<RowViewSentinel> mFilteredEnd;
3550template <
typename T>
3559 using iterator = T::template iterator_template_o<FilteredIndexPolicy, self_t>;
3565 return iterator(this->cached_begin());
3579 Filtered(std::vector<std::shared_ptr<arrow::Table>>&& tables, gsl::span<int64_t const>
const& selection, uint64_t
offset = 0)
3603 this->sumWithSelection(selection);
3609 this->sumWithSelection(selection);
3615 return operator+=(
other.getSelectedRows());
3634 return operator*(
other.getSelectedRows());
3639 this->intersectWithSelection(selection);
3645 this->intersectWithSelection(selection);
3651 return operator*=(
other.getSelectedRows());
3666 newSelection.resize(
static_cast<int64_t
>(
end -
start + 1));
3667 std::iota(newSelection.begin(), newSelection.end(),
start);
3668 return self_t{{this->asArrowTable()}, std::move(newSelection), 0};
3676 template <
typename T1>
3692 template <
typename T1,
bool OPT>
3698 template <
typename T1,
bool OPT>
3707 copyIndexBindings(t);
3712template <
typename T>
3721 using iterator =
typename T::template iterator_template_o<FilteredIndexPolicy, self_t>;
3727 return iterator(this->cached_begin());
3738 for (
auto& table : tables) {
3746 for (
auto& table : tables) {
3754 for (
auto& table : tables) {
3780 this->sumWithSelection(selection);
3786 this->sumWithSelection(selection);
3792 return operator+=(
other.getSelectedRows());
3798 copy.intersectionWithSelection(selection);
3805 copy.intersectionWithSelection(selection);
3811 return operator*(
other.getSelectedRows());
3816 this->intersectWithSelection(selection);
3822 this->intersectWithSelection(selection);
3828 return operator*=(
other.getSelectedRows());
3841 newSelection.resize(
static_cast<int64_t
>(
end -
start + 1));
3842 std::iota(newSelection.begin(), newSelection.end(),
start);
3843 return self_t{{this->asArrowTable()}, std::move(newSelection), 0};
3861 template <
typename T1,
bool OPT>
3867 template <
typename T1,
bool OPT>
3874 std::vector<std::shared_ptr<arrow::Table>> extractTablesFromFiltered(std::vector<
Filtered<T>>& tables)
3876 std::vector<std::shared_ptr<arrow::Table>> outTables;
3877 for (
auto& table : tables) {
3878 outTables.push_back(table.asArrowTable());
3889template <
typename L,
typename D,
typename O,
typename Key,
typename H,
typename...
Ts>
3920template <
typename T,
bool APPLY>
3922 static constexpr bool applyFilters = APPLY;
3929 SmallGroupsBase(std::vector<std::shared_ptr<arrow::Table>>&& tables, gsl::span<int64_t const>
const& selection, uint64_t
offset = 0)
3933template <
typename T>
3936template <
typename T>
3939template <
typename T>
#define O2HASH(_Str_)
Pre-declare Hash specialization for a generic string.
#define O2ORIGIN(_Str_)
Pre-declare Hash specialization for an origin string.
consteval auto getIndexTargets()
SLICE.
o2::monitoring::tags::Key Key
#define O2_BUILTIN_UNREACHABLE
#define O2_BUILTIN_LIKELY(x)
#define O2_BUILTIN_UNLIKELY(x)
Class for time synchronization of RawReader instances.
int64_t const * mCurrentPos
ColumnIterator(arrow::ChunkedArray const *column)
ColumnIterator(ColumnIterator< T, ChunkingPolicy > const &)=default
void moveToEnd()
Move the iterator to the end of the column.
ColumnIterator< T > & moveToPos()
ColumnIterator< T, ChunkingPolicy > & operator=(ColumnIterator< T, ChunkingPolicy > const &)=default
unwrap_t< T > const * mCurrent
unwrap_t< T > const * mLast
ColumnIterator(ColumnIterator< T, ChunkingPolicy > &&)=default
arrow::ChunkedArray const * mColumn
ColumnIterator< T, ChunkingPolicy > & operator=(ColumnIterator< T, ChunkingPolicy > &&)=default
void moveToChunk(int chunk)
void nextChunk() const
Move the iterator to the next chunk.
auto sliceByCachedUnsorted(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
FilteredBase(std::vector< std::shared_ptr< arrow::Table > > &&tables, gsl::span< int64_t const > const &selection, uint64_t offset=0)
int64_t tableSize() const
FilteredBase(std::vector< std::shared_ptr< arrow::Table > > &&tables, gandiva::Selection const &selection, uint64_t offset=0)
typename T::external_index_columns_t external_index_columns_t
auto select(framework::expressions::Filter const &f) const
static auto getSpan(gandiva::Selection const &sel)
T::template iterator_template_o< FilteredIndexPolicy, self_t > iterator
auto rawSliceBy(o2::framework::Preslice< T1 > const &container, int value) const
T::template iterator_template_o< DefaultIndexPolicy, self_t > unfiltered_iterator
void copyIndexBindings(T1 &dest) const
auto const & getSelectedRows() const
typename T::columns_t columns_t
void bindExternalIndices(TA *... current)
void sumWithSelection(SelectionVector const &selection)
void bindInternalIndicesTo(I const *ptr)
void intersectWithSelection(SelectionVector const &selection)
auto sliceBy(o2::framework::PresliceBase< T1, framework::PreslicePolicyGeneral, OPT > const &container, int value) const
auto rawSlice(uint64_t start, uint64_t end) const
auto sliceBy(o2::framework::PresliceBase< T1, framework::PreslicePolicySorted, OPT > const &container, int value) const
iterator iteratorAt(uint64_t i) const
typename T::table_t table_t
typename T::persistent_columns_t persistent_columns_t
RowViewSentinel end() const
void intersectWithSelection(gsl::span< int64_t const > const &selection)
FilteredBase(std::vector< std::shared_ptr< arrow::Table > > &&tables, SelectionVector &&selection, uint64_t offset=0)
void bindExternalIndicesRaw(std::vector< o2::soa::Binding > &&ptrs)
const_iterator begin() const
unfiltered_iterator rawIteratorAt(uint64_t i) const
int isInSelectedRows(int i) const
auto sliceByCached(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
void doCopyIndexBindings(framework::pack< Cs... >, T1 &dest) const
void sumWithSelection(gsl::span< int64_t const > const &selection)
auto const & cached_begin() const
auto sliceBy(o2::framework::PresliceBase< T1, framework::PreslicePolicySorted, OPT > const &container, int value) const
typename FilteredBase< typename T::table_t >::table_t table_t
Filtered< Filtered< T > > operator+=(gsl::span< int64_t const > const &selection)
typename T::template iterator_template_o< DefaultIndexPolicy, self_t > unfiltered_iterator
Filtered< Filtered< T > > operator+(SelectionVector const &selection)
auto sliceBy(o2::framework::PresliceBase< T1, framework::PreslicePolicyGeneral, OPT > const &container, int value) const
Filtered< Filtered< T > > operator*(gsl::span< int64_t const > const &selection)
typename T::template iterator_template_o< FilteredIndexPolicy, self_t > iterator
typename T::columns_t columns_t
const_iterator begin() const
Filtered(std::vector< Filtered< T > > &&tables, SelectionVector &&selection, uint64_t offset=0)
unfiltered_iterator rawIteratorAt(uint64_t i) const
Filtered< Filtered< T > > operator+=(Filtered< T > const &other)
Filtered< Filtered< T > > operator+=(SelectionVector const &selection)
Filtered< Filtered< T > > operator*=(SelectionVector const &selection)
auto rawSlice(uint64_t start, uint64_t end) const
Filtered< Filtered< T > > operator+(Filtered< T > const &other)
Filtered(std::vector< Filtered< T > > &&tables, gandiva::Selection const &selection, uint64_t offset=0)
Filtered< Filtered< T > > operator*=(Filtered< T > const &other)
auto sliceByCached(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
Filtered< Filtered< T > > operator*=(gsl::span< int64_t const > const &selection)
Filtered< Filtered< T > > operator*(Filtered< T > const &other)
Filtered< Filtered< T > > operator+(gsl::span< int64_t const > const &selection)
Filtered< Filtered< T > > operator*(SelectionVector const &selection)
auto sliceByCachedUnsorted(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
Filtered(std::vector< Filtered< T > > &&tables, gsl::span< int64_t const > const &selection, uint64_t offset=0)
Filtered< T > operator+=(Filtered< T > const &other)
auto sliceBy(o2::framework::PresliceBase< T1, framework::PreslicePolicyGeneral, OPT > const &container, int value) const
Filtered(std::vector< std::shared_ptr< arrow::Table > > &&tables, SelectionVector &&selection, uint64_t offset=0)
Filtered(std::vector< std::shared_ptr< arrow::Table > > &&tables, gsl::span< int64_t const > const &selection, uint64_t offset=0)
auto sliceByCachedUnsorted(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
Filtered< T > operator+(Filtered< T > const &other)
Filtered< T > operator*=(SelectionVector const &selection)
const_iterator begin() const
T::template iterator_template_o< FilteredIndexPolicy, self_t > iterator
auto sliceByCached(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
auto select(framework::expressions::Filter const &f) const
Filtered< T > operator+(SelectionVector const &selection)
Filtered< T > operator*(gsl::span< int64_t const > const &selection)
T::template iterator_template_o< DefaultIndexPolicy, self_t > unfiltered_iterator
unfiltered_iterator rawIteratorAt(uint64_t i) const
Filtered< T > operator*(SelectionVector const &selection)
Filtered< T > operator*=(Filtered< T > const &other)
Filtered< T > operator*(Filtered< T > const &other)
auto rawSliceBy(o2::framework::Preslice< T1 > const &container, int value) const
Filtered< T > operator+=(SelectionVector const &selection)
Filtered< T > operator*=(gsl::span< int64_t const > const &selection)
Filtered< T > operator+(gsl::span< int64_t const > const &selection)
Filtered< T > operator+=(gsl::span< int64_t const > const &selection)
auto rawSlice(uint64_t start, uint64_t end) const
Filtered(std::vector< std::shared_ptr< arrow::Table > > &&tables, gandiva::Selection const &selection, uint64_t offset=0)
auto sliceBy(o2::framework::PresliceBase< T1, framework::PreslicePolicySorted, OPT > const &container, int value) const
typename T::table_t table_t
typename T::columns_t columns_t
decltype([]< typename... C >(framework::pack< C... > &&) -> framework::selected_pack< soa::is_self_index_t, C... > {}(columns_t{})) internal_index_columns_t
void bindInternalIndicesExplicit(o2::soa::Binding binding)
iterator iteratorAt(uint64_t i) const
decltype([]< typename... C >(framework::pack< C... > &&) -> framework::selected_pack< soa::is_persistent_column_t, C... > {}(columns_t{})) persistent_columns_t
static constexpr const auto ref
auto offset() const
Return offset.
static consteval bool hasOriginal()
unfiltered_iterator begin()
int64_t tableSize() const
auto rawSlice(uint64_t start, uint64_t end) const
void bindExternalIndices(TA *... current)
auto select(framework::expressions::Filter const &f) const
unfiltered_iterator unfiltered_const_iterator
static consteval auto full_iter()
auto const & cached_begin() const
auto sliceByCachedUnsorted(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
TableIteratorBase< IP, Parent, T... > iterator_template
void bindExternalIndicesRaw(std::vector< o2::soa::Binding > &&ptrs)
auto sliceBy(o2::framework::PresliceBase< T1, Policy, OPT > const &container, int value) const
static constexpr auto hashes()
iterator unfiltered_iterator
std::shared_ptr< arrow::Table > asArrowTable() const
Return a type erased arrow table backing store for / the type safe table.
void doCopyIndexBindings(framework::pack< Cs... >, T &dest) const
int64_t size() const
Size of the table, in rows.
Table(std::vector< std::shared_ptr< arrow::Table > > &&tables, uint64_t offset=0)
decltype(getColumns< ref, Ts... >()) columns_t
arrow::ChunkedArray * getIndexToKey()
decltype([]< typename... C >(framework::pack< C... >) -> framework::pack< typename C::type... > {}(persistent_columns_t{})) column_types
static consteval auto isIndexTargetOf()
iterator_template_o< FilteredIndexPolicy, table_t > filtered_iterator
unfiltered_const_iterator begin() const
void copyIndexBindings(T &dest) const
Table(std::vector< std::shared_ptr< arrow::Table > > &&tables, uint64_t offset=0)
Table< L, D, O, Ts... > self_t
static consteval auto isIndexTargetOf()
decltype(full_iter< IP, Parent >()) iterator_template_o
void doBindInternalIndicesExplicit(framework::pack< Cs... >, o2::soa::Binding binding)
static constexpr const auto originals
decltype([]< typename... C >(framework::pack< C... > &&) -> framework::selected_pack< soa::is_external_index_t, C... > {}(columns_t{})) external_index_columns_t
Table(std::shared_ptr< arrow::Table > table, uint64_t offset=0)
RowViewSentinel end() const
auto sliceByCached(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
void bindInternalIndicesTo(I const *ptr)
unfiltered_iterator rawIteratorAt(uint64_t i) const
filtered_iterator filtered_begin(gsl::span< int64_t const > selection)
iterator_template_o< DefaultIndexPolicy, table_t > iterator
hash identification concepts
Helper to check if a type T is an iterator.
column identification concepts
GLuint GLsizei const GLuint const GLintptr * offsets
GLboolean GLboolean GLboolean b
GLsizei const GLfloat * value
GLint GLint GLsizei GLint GLenum GLenum type
GLuint GLsizei GLsizei * length
GLuint GLsizei const GLchar * label
GLsizei GLenum const void * indices
typedef void(APIENTRYP PFNGLCULLFACEPROC)(GLenum mode)
GLenum GLenum GLsizei len
GLboolean GLboolean GLboolean GLboolean a
std::shared_ptr< gandiva::SelectionVector > Selection
consteval const char * origin_str()
consteval const char * signature()
consteval auto filterForKey()
Filter TableRef array for compatibility with Key table.
consteval const char * label()
consteval header::DataOrigin origin()
std::shared_ptr< arrow::DataType > concreteArrowType(atype::type type)
gandiva::Selection createSelection(std::shared_ptr< arrow::Table > const &table, Filter const &expression)
Function for creating gandiva selection from our internal filter tree.
Defining PrimaryVertex explicitly as messageable.
std::decay_t< decltype(select_pack< Condition >(pack<>{}, Pack{}, CondPack{}))> selected_pack_multicondition
std::decay_t< decltype(prune_voids_pack(pack<>{}, with_condition_pack< Condition, Types... >{}))> selected_pack
decltype(intersected_pack(Ps{}...)) full_intersected_pack_t
typename pack_element< I, T >::type pack_element_t
consteval size_t has_type_at_v(pack< Ts... >)
constexpr std::size_t pack_size(pack< Ts... > const &)
template function to determine number of types in a pack
decltype(concatenate_pack_unique(Ps{}...)) concatenated_pack_unique_t
std::pair< std::string, std::string > StringPair
std::string strToUpper(std::string &&str)
typename pack_element< 0, T >::type pack_head_t
std::string cutString(std::string &&str)
std::vector< std::vector< int64_t > > ListVector
std::array< std::shared_ptr< arrow::Array >, sizeof...(Cs)> getChunks(arrow::Table *table, framework::pack< Cs... >, uint64_t ci)
ColumnGetterFunction< R, typename T::iterator > getColumnGetterByLabel(const std::string_view &targetColumnLabel)
std::array< arrow::ChunkedArray *, sizeof...(Cs)> getArrowColumns(arrow::Table *table, framework::pack< Cs... >)
std::tuple< typename Cs::type... > getRowData(arrow::Table *table, T rowIterator, uint64_t ci=std::numeric_limits< uint64_t >::max(), uint64_t ai=std::numeric_limits< uint64_t >::max(), uint64_t globalIndex=std::numeric_limits< uint64_t >::max())
C::type getSingleRowData(arrow::Table *table, T &rowIterator, uint64_t ci=std::numeric_limits< uint64_t >::max(), uint64_t ai=std::numeric_limits< uint64_t >::max(), uint64_t globalIndex=std::numeric_limits< uint64_t >::max())
consteval auto computeOriginals()
auto createFieldsFromColumns(framework::pack< C... >)
SelectionVector selectionToVector(gandiva::Selection const &sel)
constexpr bool is_persistent_v
constexpr bool is_ng_index_equivalent_v
consteval auto remove_if(L l)
constexpr auto join(Ts const &... t)
auto doSliceBy(T const *table, o2::framework::PresliceBase< C, Policy, OPT > const &container, int value)
SelectionVector sliceSelection(gsl::span< int64_t const > const &mSelectedRows, int64_t nrows, uint64_t offset)
void notBoundTable(const char *tableName)
auto doFilteredSliceBy(T const *table, o2::framework::PresliceBase< C, framework::PreslicePolicySorted, OPT > const &container, int value)
constexpr auto concat(Ts const &... t)
consteval auto intersectOriginals()
consteval auto getColumns()
std::vector< int64_t > SelectionVector
std::conditional_t< is_binding_compatible_v< T, typename B::binding_t >(), std::true_type, std::false_type > is_binding_compatible
consteval auto mergeOriginals()
constexpr bool is_soa_filtered_v
typename std::conditional_t< is_index_column< C >, std::true_type, std::false_type > is_external_index_t
void missingFilterDeclaration(int hash, int ai)
auto doSliceByCachedUnsorted(T const *table, framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache)
auto doSliceByCached(T const *table, framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache)
void accessingInvalidIndexFor(const char *getter)
auto select(T const &t, framework::expressions::Filter const &f)
consteval auto base_iter(framework::pack< C... > &&) -> TableIterator< D, O, IP, C... >
constexpr bool is_index_equivalent_v
constexpr bool is_soa_join_v
void dereferenceWithWrongType(const char *getter, const char *target)
std::conditional_t< is_indexing_column< T >, std::true_type, std::false_type > is_indexing_t
auto doSliceByHelper(T const *table, gsl::span< const int64_t > const &selection)
consteval bool is_binding_compatible_v()
auto prepareFilteredSlice(T const *table, std::shared_ptr< arrow::Table > slice, uint64_t offset)
typename unwrap< T >::type unwrap_t
void getterNotFound(const char *targetColumnLabel)
auto doFilteredSliceByCached(T const *table, framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache)
void missingOptionalPreslice(const char *label, const char *key)
consteval bool is_compatible()
arrow::ChunkedArray * getIndexFromLabel(arrow::Table *table, std::string_view label)
consteval auto merge()
Helpers to manipulate TableRef arrays.
consteval auto merge_if(L l)
std::conditional_t< is_persistent_column< C >, std::true_type, std::false_type > is_persistent_column_t
typename arrow_array_for< T >::type arrow_array_for_t
void notFoundColumn(const char *label, const char *key)
std::conditional_t< is_dynamic_column< T >, std::true_type, std::false_type > is_dynamic_t
typename std::conditional_t< is_self_index_column< C >, std::true_type, std::false_type > is_self_index_t
Defining DataPointCompositeObject explicitly as copiable.
FIXME: do not use data model tables.
static constexpr uint32_t hash
static constexpr char const *const str
SliceInfoPtr getCacheFor(StringPair const &bindingKey) const
SliceInfoUnsortedPtr getCacheUnsortedFor(StringPair const &bindingKey) const
std::shared_ptr< arrow::Table > getSliceFor(int value, std::shared_ptr< arrow::Table > const &input, uint64_t &offset) const
static constexpr bool optional
PresliceBase(expressions::BindingNode index_)
gsl::span< const int64_t > getSliceFor(int value) const
const std::string binding
StringPair const & getBindingKey() const
const std::string binding
SliceInfoUnsortedPtr sliceInfo
gsl::span< const int64_t > getSliceFor(int value) const
void updateSliceInfo(SliceInfoUnsortedPtr &&si)
void updateSliceInfo(SliceInfoPtr &&si)
std::shared_ptr< arrow::Table > getSliceFor(int value, std::shared_ptr< arrow::Table > const &input, uint64_t &offset) const
ArrowTableSlicingCache * ptr
std::pair< int64_t, int64_t > getSliceFor(int value) const
An expression tree node corresponding to a column binding.
A struct, containing the root of the expression tree.
From https://en.cppreference.com/w/cpp/utility/variant/visit.
static std::shared_ptr< arrow::Table > joinTables(std::vector< std::shared_ptr< arrow::Table > > &&tables)
static std::shared_ptr< arrow::Table > concatTables(std::vector< std::shared_ptr< arrow::Table > > &&tables)
Type-checking index column binding.
std::span< TableRef const > refs
void bind(T const *table)
static constexpr bool chunked
arrow::ChunkedArray * second
Column(ColumnIterator< T > const &it)
static constexpr const char *const & columnLabel()
ColumnIterator< T > const & getIterator() const
Column & operator=(Column const &)=default
Column(Column &&)=default
static auto asArrowField()
Column & operator=(Column &&)=default
Column(Column const &)=default
ColumnIterator< T > mColumnIterator
table_t::template iterator_template< DefaultIndexPolicy, self_t, Ts... > iterator
Concat(Ts const &... t, uint64_t offset=0)
typename table_t::persistent_columns_t persistent_columns_t
typename table_t::columns_t columns_t
const_iterator unfiltered_const_iterator
iterator unfiltered_iterator
table_t::template iterator_template< FilteredIndexPolicy, self_t, Ts... > filtered_iterator
Concat(std::vector< std::shared_ptr< arrow::Table > > &&tables, uint64_t offset=0)
filtered_iterator filtered_const_iterator
DefaultIndexPolicy(int64_t nRows, uint64_t offset)
friend bool operator==(DefaultIndexPolicy const &lh, DefaultIndexPolicy const &rh)
bool operator==(RowViewSentinel const &sentinel) const
DefaultIndexPolicy(FilteredIndexPolicy const &other)
std::tuple< uint64_t const * > getOffsets() const
DefaultIndexPolicy & operator=(DefaultIndexPolicy &&)=default
void setCursor(int64_t i)
void limitRange(int64_t start, int64_t end)
DefaultIndexPolicy(DefaultIndexPolicy &&)=default
DefaultIndexPolicy(DefaultIndexPolicy const &)=default
DefaultIndexPolicy & operator=(DefaultIndexPolicy const &)=default
std::tuple< int64_t const *, int64_t const * > getIndices() const
DefaultIndexPolicy()=default
Needed to be able to copy the policy.
void moveByIndex(int64_t i)
static constexpr const char *const & columnLabel()
void resetSelection(gsl::span< int64_t const > selection)
FilteredIndexPolicy & operator=(FilteredIndexPolicy &&)=default
std::tuple< int64_t const *, int64_t const * > getIndices() const
FilteredIndexPolicy & operator=(FilteredIndexPolicy const &)=default
auto getSelectionRow() const
FilteredIndexPolicy()=default
friend bool operator==(FilteredIndexPolicy const &lh, FilteredIndexPolicy const &rh)
void setCursor(int64_t i)
FilteredIndexPolicy(FilteredIndexPolicy const &)=default
bool operator==(RowViewSentinel const &sentinel) const
std::tuple< uint64_t const * > getOffsets() const
void limitRange(int64_t start, int64_t end)
FilteredIndexPolicy(gsl::span< int64_t const > selection, int64_t rows, uint64_t offset=0)
FilteredIndexPolicy(FilteredIndexPolicy &&)=default
void moveByIndex(int64_t i)
static constexpr bool chunked
static constexpr const char *const & columnLabel()
uint64_t mOffset
Offset within a larger table.
int64_t mRowIndex
Position inside the current table.
IndexTable(std::vector< std::shared_ptr< arrow::Table > > tables, uint64_t offset=0)
IndexTable(std::shared_ptr< arrow::Table > table, uint64_t offset=0)
typename base_t::template iterator_template_o< DefaultIndexPolicy, self_t > iterator
filtered_iterator const_filtered_iterator
IndexTable(IndexTable &&)=default
IndexTable & operator=(IndexTable const &)=default
IndexTable & operator=(IndexTable &&)=default
typename H::binding_t first_t
typename base_t::template iterator_template_o< FilteredIndexPolicy, self_t > filtered_iterator
IndexTable(IndexTable const &)=default
Index(Index const &)=default
void setIndices(std::tuple< int64_t const *, int64_t const * > indices)
Index & operator=(Index &&)=default
Index(arrow::ChunkedArray const *)
int64_t filteredIndex() const
constexpr int64_t rangeEnd()
constexpr int64_t rangeStart()
Index & operator=(Index const &)=default
int64_t globalIndex() const
std::tuple< int64_t const *, int64_t const * > rowIndices
void setOffsets(std::tuple< uint64_t const * > offsets)
static constexpr const char * mLabel
std::tuple< uint64_t const * > rowOffsets
iterator unfiltered_iterator
auto sliceBy(o2::framework::PresliceBase< T1, Policy, OPT > const &container, int value) const
auto rawSlice(uint64_t start, uint64_t end) const
auto sliceByCachedUnsorted(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
JoinFull(std::vector< std::shared_ptr< arrow::Table > > &&tables, uint64_t offset=0)
const_iterator unfiltered_const_iterator
filtered_iterator filtered_const_iterator
static consteval bool contains()
iterator iteratorAt(uint64_t i) const
typename table_t::columns_t columns_t
table_t::template iterator_template< DefaultIndexPolicy, self_t, Ts... > iterator
table_t::template iterator_template< FilteredIndexPolicy, self_t, Ts... > filtered_iterator
static constexpr const auto originals
JoinFull< D, Ts... > self_t
const_iterator begin() const
typename table_t::persistent_columns_t persistent_columns_t
iterator rawIteratorAt(uint64_t i) const
Table< o2::aod::Hash<"JOIN"_h >, D, o2::aod::Hash<"JOIN"_h >, Ts... > base
JoinFull(std::shared_ptr< arrow::Table > &&table, uint64_t offset=0)
auto sliceByCached(framework::expressions::BindingNode const &node, int value, o2::framework::SliceCache &cache) const
static constexpr const char *const & columnLabel()
Marker & operator=(Marker const &)=default
static constexpr auto value
static constexpr const char * mLabel
Marker(arrow::ChunkedArray const *)
Marker(Marker const &)=default
Marker & operator=(Marker &&)=default
Marker(Marker &&)=default
SmallGroupsBase(std::vector< std::shared_ptr< arrow::Table > > &&tables, SelectionVector &&selection, uint64_t offset=0)
SmallGroupsBase(std::vector< std::shared_ptr< arrow::Table > > &&tables, gsl::span< int64_t const > const &selection, uint64_t offset=0)
SmallGroupsBase(std::vector< std::shared_ptr< arrow::Table > > &&tables, gandiva::Selection const &selection, uint64_t offset=0)
framework::selected_pack< soa::is_persistent_column_t, C... > persistent_columns_t
void doSetCurrentIndexRaw(framework::pack< Cs... > p, std::vector< o2::soa::Binding > &&ptrs)
void bindInternalIndices(I const *table)
TableIterator(TableIterator< D, O, FilteredIndexPolicy, C... > const &other)
TableIterator(self_t const &other)
TableIterator operator-(int64_t dec) const
TableIterator(arrow::ChunkedArray *columnData[sizeof...(C)], IP &&policy)
TableIterator & operator=(TableIterator other)
TableIterator & operator++()
void doSetCurrentInternal(framework::pack< Cs... >, I const *ptr)
auto getIndexBindingsImpl(framework::pack< Cs... >) const
TableIterator operator--(int)
void bindExternalIndicesRaw(std::vector< o2::soa::Binding > &&ptrs)
TableIterator(arrow::ChunkedArray *columnData[sizeof...(C)], IP &&policy)
decltype([]< typename... Cs >(framework::pack< Cs... >) -> framework::pack< typename Cs::binding_t... > {}(external_index_columns_t{})) bindings_pack_t
void bindExternalIndices(TA *... current)
TableIterator & operator--()
framework::selected_pack< soa::is_external_index_t, C... > external_index_columns_t
TableIterator const & operator*() const
TableIterator operator++(int)
framework::selected_pack< soa::is_self_index_t, C... > internal_index_columns_t
auto getIndexBindings() const
void doSetCurrentIndex(framework::pack< CL... >, TA *current)
TableIterator operator+(int64_t inc) const
Allow incrementing by more than one the iterator.
Generic identifier for a table type.
constexpr TableRef & operator=(TableRef const &)=default
constexpr bool descriptionCompatible(uint32_t _desc_hash) const noexcept
constexpr bool operator==(TableRef const &other) const noexcept
constexpr TableRef(TableRef &&)=default
constexpr TableRef(TableRef const &)=default
consteval TableRef(uint32_t _label, uint32_t _desc, uint32_t _origin, uint32_t _version)
constexpr bool descriptionCompatible(TableRef const &other) const noexcept
constexpr TableRef & operator=(TableRef &&)=default
TableIteratorBase const & operator*() const
TableIteratorBase(TableIteratorBase< IP, P, T... > const &other)
typename Parent::columns_t columns_t
TableIteratorBase(TableIteratorBase< IP, P, O1, Os... > const &other)
typename Parent::external_index_columns_t external_index_columns_t
TableIteratorBase operator-(int64_t dec) const
void matchTo(TableIteratorBase< IP, P, T... > const &other)
auto getDynamicColumn() const
TableIteratorBase()=default
void matchTo(TableIteratorBase< IP, P, Os... > const &other)
TableIteratorBase(TableIteratorBase< FilteredIndexPolicy, P, T... > other)
std::array< B, sizeof...(CCs)> getValues() const
static constexpr auto originals
TableIteratorBase(TableIteratorBase< IP, P, T... > &&other) noexcept
decltype([]< typename... C >(framework::pack< C... >) -> framework::pack< typename C::binding_t... > {}(external_index_columns_t{})) bindings_pack_t
TableIteratorBase & operator=(TableIteratorBase< IP, P, Os... > other)
TableIteratorBase(TableIteratorBase< IP, P, O1, Os... > &&other) noexcept
TableIteratorBase & operator=(RowViewSentinel const &other)
TableIteratorBase(arrow::ChunkedArray *columnData[framework::pack_size(columns_t{})], IP &&policy)
TableIteratorBase & operator=(TableIteratorBase< IP, P, T... > other)
TableIteratorBase operator+(int64_t inc) const
Allow incrementing by more than one the iterator.
TableIteratorBase & operator=(TableIteratorBase< FilteredIndexPolicy, P, T... > other)
VectorOfTObjectPtrs other
std::vector< ReadoutWindowData > rows