dhruv9vats commented on a change in pull request #12162: URL: https://github.com/apache/arrow/pull/12162#discussion_r794508978
########## File path: cpp/src/arrow/compute/kernels/scalar_nested.cc ########## @@ -428,6 +428,271 @@ const FunctionDoc make_struct_doc{"Wrap Arrays into a StructArray", "specified through MakeStructOptions."), {"*args"}, "MakeStructOptions"}; +template <typename KeyType> +struct MapArrayLookupFunctor { + static Result<int64_t> GetOneMatchingIndex(const Array& keys, + const Scalar& query_key_scalar, + const bool* from_back) { + int64_t match_index = -1; + RETURN_NOT_OK( + FindMatchingIndices(keys, query_key_scalar, [&](int64_t index) -> Status { + match_index = index; + if (*from_back) { + return Status::OK(); + } else { + return Status::Cancelled("Found key match for FIRST"); + } + })); + + return match_index; + } + + static Status BuildItemsArray(const Array& keys, const Array& items, + const Scalar& query_key_scalar, + bool* found_at_least_one_key, ArrayBuilder* builder) { + RETURN_NOT_OK( + FindMatchingIndices(keys, query_key_scalar, [&](int64_t index) -> Status { + *found_at_least_one_key = true; + RETURN_NOT_OK(builder->AppendArraySlice(*items.data(), index, 1)); + return Status::OK(); + })); + return Status::OK(); + } + + template <typename FoundItem> + static Status FindMatchingIndices(const Array& keys, const Scalar& query_key_scalar, + FoundItem callback) { + const auto query_key = UnboxScalar<KeyType>::Unbox(query_key_scalar); + int64_t index = 0; + ARROW_UNUSED(VisitArrayValuesInline<KeyType>( + *keys.data(), + [&](decltype(query_key) key) -> Status { + if (key == query_key) { + return callback(index++); + } + ++index; + return Status::OK(); + }, + [&]() -> Status { + ++index; + return Status::OK(); + })); + return Status::OK(); + } + + static Status ExecMapArray(KernelContext* ctx, const ExecBatch& batch, Datum* out) { + const auto& options = OptionsWrapper<MapArrayLookupOptions>::Get(ctx); + const auto& query_key = options.query_key; + const auto& occurrence = options.occurrence; + const MapArray map_array(batch[0].array()); + + std::unique_ptr<ArrayBuilder> builder; + if (occurrence == MapArrayLookupOptions::Occurrence::ALL) { + RETURN_NOT_OK(MakeBuilder(ctx->memory_pool(), + list(map_array.map_type()->item_type()), &builder)); + + for (int64_t map_array_idx = 0; map_array_idx < map_array.length(); + ++map_array_idx) { + if (!map_array.IsValid(map_array_idx)) { + RETURN_NOT_OK(builder->AppendNull()); + continue; + } + + auto map = map_array.value_slice(map_array_idx); + auto keys = checked_cast<const StructArray&>(*map).field(0); + auto items = checked_cast<const StructArray&>(*map).field(1); + bool found_at_least_one_key = false; + std::unique_ptr<ArrayBuilder> list_builder; + RETURN_NOT_OK(MakeBuilder(ctx->memory_pool(), map_array.map_type()->item_type(), + &list_builder)); + + RETURN_NOT_OK(BuildItemsArray(*keys, *items, *query_key, &found_at_least_one_key, + list_builder.get())); + if (!found_at_least_one_key) { + RETURN_NOT_OK(builder->AppendNull()); + } else { + ARROW_ASSIGN_OR_RAISE(auto list_result, list_builder->Finish()); + RETURN_NOT_OK(builder->AppendScalar(ListScalar(list_result))); + } + list_builder->Reset(); + } + ARROW_ASSIGN_OR_RAISE(auto result, builder->Finish()); + out->value = result->data(); + } else { + RETURN_NOT_OK( + MakeBuilder(ctx->memory_pool(), map_array.map_type()->item_type(), &builder)); + + for (int64_t map_array_idx = 0; map_array_idx < map_array.length(); + ++map_array_idx) { + if (!map_array.IsValid(map_array_idx)) { + RETURN_NOT_OK(builder->AppendNull()); + continue; + } + + auto map = map_array.value_slice(map_array_idx); + auto keys = checked_cast<const StructArray&>(*map).field(0); + auto items = checked_cast<const StructArray&>(*map).field(1); + bool from_back = (occurrence == MapArrayLookupOptions::LAST); + ARROW_ASSIGN_OR_RAISE(int64_t key_match_idx, + GetOneMatchingIndex(*keys, *query_key, &from_back)); + + if (key_match_idx != -1) { + RETURN_NOT_OK(builder->AppendArraySlice(*items->data(), key_match_idx, 1)); + } else { + RETURN_NOT_OK(builder->AppendNull()); + } + } + ARROW_ASSIGN_OR_RAISE(auto result, builder->Finish()); + out->value = result->data(); + } + + return Status::OK(); + } + + static Status ExecMapScalar(KernelContext* ctx, const ExecBatch& batch, Datum* out) { + const auto& options = OptionsWrapper<MapArrayLookupOptions>::Get(ctx); + const auto& query_key = options.query_key; + const auto& occurrence = options.occurrence; + + std::shared_ptr<DataType> item_type = + checked_cast<const MapType&>(*batch[0].type()).item_type(); + const auto& map_scalar = batch[0].scalar_as<MapScalar>(); + + if (ARROW_PREDICT_FALSE(!map_scalar.is_valid)) { + if (options.occurrence == MapArrayLookupOptions::Occurrence::ALL) { + out->value = MakeNullScalar(list(item_type)); + } else { + out->value = MakeNullScalar(item_type); + } + return Status::OK(); + } + + const auto& struct_array = checked_cast<const StructArray&>(*map_scalar.value); + const std::shared_ptr<Array> keys = struct_array.field(0); + const std::shared_ptr<Array> items = struct_array.field(1); + + if (occurrence == MapArrayLookupOptions::Occurrence::ALL) { + bool found_at_least_one_key = false; + std::unique_ptr<ArrayBuilder> builder; + RETURN_NOT_OK(MakeBuilder(ctx->memory_pool(), items->type(), &builder)); + RETURN_NOT_OK(BuildItemsArray(*keys, *items, *query_key, &found_at_least_one_key, + builder.get())); + + if (!found_at_least_one_key) { + out->value = MakeNullScalar(list(items->type())); + } else { + ARROW_ASSIGN_OR_RAISE(auto result, builder->Finish()); + ARROW_ASSIGN_OR_RAISE(out->value, MakeScalar(list(items->type()), result)); + } + } else { /* occurrence == FIRST || LAST */ + bool from_back = (occurrence == MapArrayLookupOptions::LAST); + + ARROW_ASSIGN_OR_RAISE(int64_t key_match_idx, + GetOneMatchingIndex(*keys, *query_key, &from_back)); + if (key_match_idx != -1) { + ARROW_ASSIGN_OR_RAISE(out->value, items->GetScalar(key_match_idx)); + } else { + out->value = MakeNullScalar(items->type()); + } + } + return Status::OK(); + } +}; + +Result<ValueDescr> ResolveMapArrayLookupType(KernelContext* ctx, + const std::vector<ValueDescr>& descrs) { + const auto& options = OptionsWrapper<MapArrayLookupOptions>::Get(ctx); + std::shared_ptr<DataType> type = descrs.front().type; + std::shared_ptr<DataType> item_type = checked_cast<const MapType&>(*type).item_type(); + std::shared_ptr<DataType> key_type = checked_cast<const MapType&>(*type).key_type(); + + if (!options.query_key || !options.query_key->type || Review comment: This does the query_key `null` checking part, right? @lidavidm The Errors test also tests for this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org