blob: dad94c1ace7b2e162f5b15736101e0ac4237180f [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
// Cast types to boolean
#include "arrow/array/builder_primitive.h"
#include "arrow/compute/kernels/common.h"
#include "arrow/compute/kernels/scalar_cast_internal.h"
#include "arrow/util/value_parsing.h"
namespace arrow {
using internal::ParseValue;
namespace compute {
namespace internal {
struct IsNonZero {
template <typename OutValue, typename Arg0Value>
static OutValue Call(KernelContext*, Arg0Value val, Status*) {
return val != 0;
}
};
struct ParseBooleanString {
template <typename OutValue, typename Arg0Value>
static OutValue Call(KernelContext*, Arg0Value val, Status* st) {
bool result = false;
if (ARROW_PREDICT_FALSE(!ParseValue<BooleanType>(val.data(), val.size(), &result))) {
*st = Status::Invalid("Failed to parse value: ", val);
}
return result;
}
};
std::vector<std::shared_ptr<CastFunction>> GetBooleanCasts() {
auto func = std::make_shared<CastFunction>("cast_boolean", Type::BOOL);
AddCommonCasts(Type::BOOL, boolean(), func.get());
AddZeroCopyCast(Type::BOOL, boolean(), boolean(), func.get());
for (const auto& ty : NumericTypes()) {
ArrayKernelExec exec =
GenerateNumeric<applicator::ScalarUnary, BooleanType, IsNonZero>(*ty);
DCHECK_OK(func->AddKernel(ty->id(), {ty}, boolean(), exec));
}
for (const auto& ty : BaseBinaryTypes()) {
ArrayKernelExec exec = GenerateVarBinaryBase<applicator::ScalarUnaryNotNull,
BooleanType, ParseBooleanString>(*ty);
DCHECK_OK(func->AddKernel(ty->id(), {ty}, boolean(), exec));
}
return {func};
}
} // namespace internal
} // namespace compute
} // namespace arrow