]> git.proxmox.com Git - ceph.git/blame - ceph/src/arrow/java/adapter/jdbc/src/main/java/org/apache/arrow/adapter/jdbc/consumer/BitConsumer.java
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / java / adapter / jdbc / src / main / java / org / apache / arrow / adapter / jdbc / consumer / BitConsumer.java
CommitLineData
1d09f67e
TL
1/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18package org.apache.arrow.adapter.jdbc.consumer;
19
20import java.sql.ResultSet;
21import java.sql.SQLException;
22
23import org.apache.arrow.vector.BitVector;
24
25/**
26 * Consumer which consume bit type values from {@link ResultSet}.
27 * Write the data to {@link BitVector}.
28 */
29public class BitConsumer {
30
31 /**
32 * Creates a consumer for {@link BitVector}.
33 */
34 public static JdbcConsumer<BitVector> createConsumer(BitVector vector, int index, boolean nullable) {
35 if (nullable) {
36 return new NullableBitConsumer(vector, index);
37 } else {
38 return new NonNullableBitConsumer(vector, index);
39 }
40 }
41
42 /**
43 * Nullable consumer for {@link BitVector}.
44 */
45 static class NullableBitConsumer extends BaseConsumer<BitVector> {
46
47 /**
48 * Instantiate a BitConsumer.
49 */
50 public NullableBitConsumer(BitVector vector, int index) {
51 super(vector, index);
52 }
53
54 @Override
55 public void consume(ResultSet resultSet) throws SQLException {
56 boolean value = resultSet.getBoolean(columnIndexInResultSet);
57 if (!resultSet.wasNull()) {
58 // for fixed width vectors, we have allocated enough memory proactively,
59 // so there is no need to call the setSafe method here.
60 vector.set(currentIndex, value ? 1 : 0);
61 }
62 currentIndex++;
63 }
64 }
65
66 /**
67 * Non-nullable consumer for {@link BitVector}.
68 */
69 static class NonNullableBitConsumer extends BaseConsumer<BitVector> {
70
71 /**
72 * Instantiate a BitConsumer.
73 */
74 public NonNullableBitConsumer(BitVector vector, int index) {
75 super(vector, index);
76 }
77
78 @Override
79 public void consume(ResultSet resultSet) throws SQLException {
80 boolean value = resultSet.getBoolean(columnIndexInResultSet);
81 // for fixed width vectors, we have allocated enough memory proactively,
82 // so there is no need to call the setSafe method here.
83 vector.set(currentIndex, value ? 1 : 0);
84 currentIndex++;
85 }
86 }
87}