Kudu C++ client API
partial_row.h
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with 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,
12 // software distributed under the License is distributed on an
13 // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14 // KIND, either express or implied. See the License for the
15 // specific language governing permissions and limitations
16 // under the License.
17 #ifndef KUDU_COMMON_PARTIAL_ROW_H
18 #define KUDU_COMMON_PARTIAL_ROW_H
19 
20 // NOTE: using stdint.h instead of cstdint because this file is supposed
21 // to be processed by a compiler lacking C++11 support.
22 #include <stdint.h>
23 
24 #include <string>
25 
26 #ifdef KUDU_HEADERS_NO_STUBS
27 #include <gtest/gtest_prod.h>
28 
29 #include "kudu/gutil/port.h"
30 #else
31 // This is a poor module interdependency, but the stubs are header-only and
32 // it's only for exported header builds, so we'll make an exception.
33 #include "kudu/client/stubs.h"
34 #endif
35 
36 #include "kudu/util/int128.h"
37 #include "kudu/util/kudu_export.h"
38 #include "kudu/util/slice.h"
39 #include "kudu/util/status.h"
40 
42 namespace kudu {
43 class ColumnSchema;
44 namespace client {
45 class ClientTest_TestProjectionPredicatesFuzz_Test;
46 class KuduWriteOperation;
47 namespace internal {
48 class WriteRpc;
49 } // namespace internal
50 template<typename KeyTypeWrapper> struct SliceKeysTestSetup;// IWYU pragma: keep
51 template<typename KeyTypeWrapper> struct IntKeysTestSetup; // IWYU pragma: keep
52 } // namespace client
53 
54 namespace tablet {
55  template<typename KeyTypeWrapper> struct SliceTypeRowOps; // IWYU pragma: keep
56  template<typename KeyTypeWrapper> struct NumTypeRowOps; // IWYU pragma: keep
57 } // namespace tablet
58 
59 namespace tools {
60 class TableScanner;
61 } // namespace tools
62 
64 
65 class Schema;
66 
72 class KUDU_EXPORT KuduPartialRow {
73  public:
77  explicit KuduPartialRow(const Schema* schema);
78 
79  virtual ~KuduPartialRow();
80 
86 
93 
96 
104  Status SetBool(const Slice& col_name, bool val) WARN_UNUSED_RESULT;
105  Status SetInt8(const Slice& col_name, int8_t val) WARN_UNUSED_RESULT;
106  Status SetInt16(const Slice& col_name, int16_t val) WARN_UNUSED_RESULT;
107  Status SetInt32(const Slice& col_name, int32_t val) WARN_UNUSED_RESULT;
108  Status SetInt64(const Slice& col_name, int64_t val) WARN_UNUSED_RESULT;
116  Status SetUnixTimeMicros(const Slice& col_name,
117  int64_t micros_since_utc_epoch) WARN_UNUSED_RESULT;
125  Status SetDate(const Slice& col_name, int32_t days_since_unix_epoch) WARN_UNUSED_RESULT;
126  Status SetFloat(const Slice& col_name, float val) WARN_UNUSED_RESULT;
127  Status SetDouble(const Slice& col_name, double val) WARN_UNUSED_RESULT;
128 #if KUDU_INT128_SUPPORTED
129  Status SetUnscaledDecimal(const Slice& col_name, int128_t val) WARN_UNUSED_RESULT;
130 #endif
132 
140 
146  Status SetBool(int col_idx, bool val) WARN_UNUSED_RESULT;
147 
148  Status SetInt8(int col_idx, int8_t val) WARN_UNUSED_RESULT;
149  Status SetInt16(int col_idx, int16_t val) WARN_UNUSED_RESULT;
150  Status SetInt32(int col_idx, int32_t val) WARN_UNUSED_RESULT;
151  Status SetInt64(int col_idx, int64_t val) WARN_UNUSED_RESULT;
152 
158  Status SetUnixTimeMicros(int col_idx, int64_t micros_since_utc_epoch) WARN_UNUSED_RESULT;
159 
165  Status SetDate(int col_idx, int32_t days_since_unix_epoch) WARN_UNUSED_RESULT;
166 
167  Status SetFloat(int col_idx, float val) WARN_UNUSED_RESULT;
168  Status SetDouble(int col_idx, double val) WARN_UNUSED_RESULT;
169 #if KUDU_INT128_SUPPORTED
170  Status SetUnscaledDecimal(int col_idx, int128_t val) WARN_UNUSED_RESULT;
171 #endif
173 
176 
190  Status SetBinary(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
191  Status SetString(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
193 
203  Status SetVarchar(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
204 
207 
226  Status SetBinary(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
227  Status SetString(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
229 
243  Status SetVarchar(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
244 
247 
256  Status SetBinaryCopy(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
257  Status SetStringCopy(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
259 
262 
276  Status SetStringCopy(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
277  Status SetBinaryCopy(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
279 
282 
296  Status SetBinaryNoCopy(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
297  Status SetStringNoCopy(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
299 
305 
324  Status SetVarcharNoCopyUnsafe(const Slice& col_name, const Slice& val) WARN_UNUSED_RESULT;
325 
349  Status SetVarcharNoCopyUnsafe(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
351 
354 
373  Status SetBinaryNoCopy(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
374  Status SetStringNoCopy(int col_idx, const Slice& val) WARN_UNUSED_RESULT;
376 
385  Status SetNull(const Slice& col_name) WARN_UNUSED_RESULT;
386 
395  Status SetNull(int col_idx) WARN_UNUSED_RESULT;
396 
404  Status Unset(const Slice& col_name) WARN_UNUSED_RESULT;
405 
413  Status Unset(int col_idx) WARN_UNUSED_RESULT;
414 
420  bool IsColumnSet(const Slice& col_name) const;
421 
427  bool IsColumnSet(int col_idx) const;
428 
434  bool IsNull(const Slice& col_name) const;
435 
441  bool IsNull(int col_idx) const;
442 
445 
457  Status GetBool(const Slice& col_name, bool* val) const WARN_UNUSED_RESULT;
458 
459  Status GetInt8(const Slice& col_name, int8_t* val) const WARN_UNUSED_RESULT;
460  Status GetInt16(const Slice& col_name, int16_t* val) const WARN_UNUSED_RESULT;
461  Status GetInt32(const Slice& col_name, int32_t* val) const WARN_UNUSED_RESULT;
462  Status GetInt64(const Slice& col_name, int64_t* val) const WARN_UNUSED_RESULT;
463 
473  Status GetUnixTimeMicros(const Slice& col_name,
474  int64_t* micros_since_utc_epoch) const WARN_UNUSED_RESULT;
475 
485  Status GetDate(const Slice& col_name, int32_t* days_since_unix_epoch) const WARN_UNUSED_RESULT;
486  Status GetFloat(const Slice& col_name, float* val) const WARN_UNUSED_RESULT;
487  Status GetDouble(const Slice& col_name, double* val) const WARN_UNUSED_RESULT;
488 #if KUDU_INT128_SUPPORTED
489  // NOTE: The non-const version of this function is kept for backwards compatibility.
490  Status GetUnscaledDecimal(const Slice& col_name, int128_t* val) WARN_UNUSED_RESULT;
491  Status GetUnscaledDecimal(const Slice& col_name, int128_t* val) const WARN_UNUSED_RESULT;
492 #endif
494 
502 
514  Status GetBool(int col_idx, bool* val) const WARN_UNUSED_RESULT;
515  Status GetInt8(int col_idx, int8_t* val) const WARN_UNUSED_RESULT;
516  Status GetInt16(int col_idx, int16_t* val) const WARN_UNUSED_RESULT;
517  Status GetInt32(int col_idx, int32_t* val) const WARN_UNUSED_RESULT;
518  Status GetInt64(int col_idx, int64_t* val) const WARN_UNUSED_RESULT;
519 
529  Status GetUnixTimeMicros(int col_idx, int64_t* micros_since_utc_epoch) const WARN_UNUSED_RESULT;
530 
540  Status GetDate(int col_idx, int32_t* days_since_unix_epoch) const WARN_UNUSED_RESULT;
541  Status GetFloat(int col_idx, float* val) const WARN_UNUSED_RESULT;
542  Status GetDouble(int col_idx, double* val) const WARN_UNUSED_RESULT;
543 #if KUDU_INT128_SUPPORTED
544  // NOTE: The non-const version of this function is kept for backwards compatibility.
545  Status GetUnscaledDecimal(int col_idx, int128_t* val) WARN_UNUSED_RESULT;
546  Status GetUnscaledDecimal(int col_idx, int128_t* val) const WARN_UNUSED_RESULT;
547 #endif
549 
552 
566  Status GetString(const Slice& col_name, Slice* val) const WARN_UNUSED_RESULT;
567  Status GetBinary(const Slice& col_name, Slice* val) const WARN_UNUSED_RESULT;
568  Status GetVarchar(const Slice& col_name, Slice* val) const WARN_UNUSED_RESULT;
570 
573 
591  Status GetString(int col_idx, Slice* val) const WARN_UNUSED_RESULT;
592  Status GetBinary(int col_idx, Slice* val) const WARN_UNUSED_RESULT;
593  Status GetVarchar(int col_idx, Slice* val) const WARN_UNUSED_RESULT;
595 
596  //------------------------------------------------------------
597  // Key-encoding related functions
598  //------------------------------------------------------------
599 
611  Status EncodeRowKey(std::string* encoded_key) const;
612 
619  std::string ToEncodedRowKeyOrDie() const;
620 
621  //------------------------------------------------------------
622  // Utility code
623  //------------------------------------------------------------
624 
627  bool IsKeySet() const;
628 
630  bool AllColumnsSet() const;
631 
637  std::string ToString() const;
638 
640  const Schema* schema() const { return schema_; }
641 
642  private:
643  friend class client::KuduWriteOperation; // for row_data_.
644  friend class client::internal::WriteRpc; // for row_data_.
645  friend class KeyUtilTest;
646  friend class PartitionSchema;
647  friend class RowOperationsPBDecoder;
648  friend class RowOperationsPBEncoder;
649  friend class ScanSpec; // for Set(int32_t column_idx, const uint8_t* val)
650  friend class tools::TableScanner;
651  friend class TestScanSpec;
652  template<typename KeyTypeWrapper> friend struct client::SliceKeysTestSetup;
653  template<typename KeyTypeWrapper> friend struct client::IntKeysTestSetup;
654  template<typename KeyTypeWrapper> friend struct tablet::SliceTypeRowOps;
655  template<typename KeyTypeWrapper> friend struct tablet::NumTypeRowOps;
656  FRIEND_TEST(client::ClientTest, TestProjectionPredicatesFuzz);
657  FRIEND_TEST(KeyUtilTest, TestIncrementInt128PrimaryKey);
658  FRIEND_TEST(PartitionPrunerTest, TestIntPartialPrimaryKeyRangePruning);
659  FRIEND_TEST(PartitionPrunerTest, TestPartialPrimaryKeyRangePruning);
660  FRIEND_TEST(PartitionPrunerTest, TestPrimaryKeyRangePruning);
661  FRIEND_TEST(RowOperationsTest, ProjectionTestWholeSchemaSpecified);
662  FRIEND_TEST(RowOperationsTest, TestProjectUpdates);
663  FRIEND_TEST(RowOperationsTest, TestProjectDeletes);
664 
665  template<typename T>
666  Status Set(const Slice& col_name, const typename T::cpp_type& val,
667  bool owned = false);
668 
669  template<typename T>
670  Status Set(int col_idx, const typename T::cpp_type& val,
671  bool owned = false);
672 
673  // Runtime version of the generic setter.
674  Status Set(int32_t column_idx, const uint8_t* val);
675 
676  template<typename T>
677  Status Get(const Slice& col_name, typename T::cpp_type* val) const;
678 
679  template<typename T>
680  Status Get(int col_idx, typename T::cpp_type* val) const;
681 
682  template<typename T>
683  Status SetSliceCopy(const Slice& col_name, const Slice& val);
684 
685  template<typename T>
686  Status SetSliceCopy(int col_idx, const Slice& val);
687 
688  // If the given column is a variable length column whose memory is owned by this instance,
689  // deallocates the value.
690  // NOTE: Does not mutate the isset bitmap.
691  // REQUIRES: col_idx must be a variable length column.
692  void DeallocateStringIfSet(int col_idx, const ColumnSchema& col);
693 
694  // Deallocate any string/binary values whose memory is managed by this object.
695  void DeallocateOwnedStrings();
696 
697  const Schema* schema_;
698 
699  // 1-bit set for any field which has been explicitly set. This is distinct
700  // from NULL -- an "unset" field will take the server-side default on insert,
701  // whereas a field explicitly set to NULL will override the default.
702  uint8_t* isset_bitmap_;
703 
704  // 1-bit set for any variable length columns whose memory is managed by this instance.
705  // These strings need to be deallocated whenever the value is reset,
706  // or when the instance is destructed.
707  uint8_t* owned_strings_bitmap_;
708 
709  // The normal "contiguous row" format row data. Any column whose data is unset
710  // or NULL can have undefined bytes.
711  uint8_t* row_data_;
712 };
713 
714 } // namespace kudu
715 #endif /* KUDU_COMMON_PARTIAL_ROW_H */
A row which may only contain values for a subset of the columns.
Definition: partial_row.h:72
KuduPartialRow & operator=(KuduPartialRow other)
Status GetDate(const Slice &col_name, int32_t *days_since_unix_epoch) const WARN_UNUSED_RESULT
Status SetInt32(const Slice &col_name, int32_t val) WARN_UNUSED_RESULT
Status GetString(const Slice &col_name, Slice *val) const WARN_UNUSED_RESULT
Status SetString(int col_idx, const Slice &val) WARN_UNUSED_RESULT
Status SetUnixTimeMicros(const Slice &col_name, int64_t micros_since_utc_epoch) WARN_UNUSED_RESULT
std::string ToString() const
Status GetFloat(int col_idx, float *val) const WARN_UNUSED_RESULT
Status SetBinaryCopy(int col_idx, const Slice &val) WARN_UNUSED_RESULT
Status SetDate(int col_idx, int32_t days_since_unix_epoch) WARN_UNUSED_RESULT
Status GetBinary(int col_idx, Slice *val) const WARN_UNUSED_RESULT
Status SetStringNoCopy(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
bool IsNull(int col_idx) const
Status GetInt8(const Slice &col_name, int8_t *val) const WARN_UNUSED_RESULT
bool IsKeySet() const
Status SetInt16(const Slice &col_name, int16_t val) WARN_UNUSED_RESULT
Status GetDouble(int col_idx, double *val) const WARN_UNUSED_RESULT
Status EncodeRowKey(std::string *encoded_key) const
Status GetUnixTimeMicros(const Slice &col_name, int64_t *micros_since_utc_epoch) const WARN_UNUSED_RESULT
Status GetInt16(const Slice &col_name, int16_t *val) const WARN_UNUSED_RESULT
Status GetDouble(const Slice &col_name, double *val) const WARN_UNUSED_RESULT
Status SetVarchar(int col_idx, const Slice &val) WARN_UNUSED_RESULT
Status SetInt64(int col_idx, int64_t val) WARN_UNUSED_RESULT
Status SetFloat(const Slice &col_name, float val) WARN_UNUSED_RESULT
Status SetBinaryNoCopy(int col_idx, const Slice &val) WARN_UNUSED_RESULT
Status GetString(int col_idx, Slice *val) const WARN_UNUSED_RESULT
Status SetUnixTimeMicros(int col_idx, int64_t micros_since_utc_epoch) WARN_UNUSED_RESULT
std::string ToEncodedRowKeyOrDie() const
bool IsColumnSet(int col_idx) const
Status SetBinaryNoCopy(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status SetDouble(int col_idx, double val) WARN_UNUSED_RESULT
Status GetBool(const Slice &col_name, bool *val) const WARN_UNUSED_RESULT
Status SetInt8(const Slice &col_name, int8_t val) WARN_UNUSED_RESULT
Status SetBool(int col_idx, bool val) WARN_UNUSED_RESULT
Status GetInt32(int col_idx, int32_t *val) const WARN_UNUSED_RESULT
Status SetString(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status Unset(int col_idx) WARN_UNUSED_RESULT
Status GetInt16(int col_idx, int16_t *val) const WARN_UNUSED_RESULT
bool IsNull(const Slice &col_name) const
Status GetVarchar(int col_idx, Slice *val) const WARN_UNUSED_RESULT
Status GetInt32(const Slice &col_name, int32_t *val) const WARN_UNUSED_RESULT
Status GetFloat(const Slice &col_name, float *val) const WARN_UNUSED_RESULT
Status SetStringCopy(int col_idx, const Slice &val) WARN_UNUSED_RESULT
Status GetInt64(int col_idx, int64_t *val) const WARN_UNUSED_RESULT
KuduPartialRow(const Schema *schema)
Status GetBinary(const Slice &col_name, Slice *val) const WARN_UNUSED_RESULT
Status SetBinary(int col_idx, const Slice &val) WARN_UNUSED_RESULT
bool IsColumnSet(const Slice &col_name) const
Status SetStringCopy(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status GetUnixTimeMicros(int col_idx, int64_t *micros_since_utc_epoch) const WARN_UNUSED_RESULT
KuduPartialRow(const KuduPartialRow &other)
Status SetVarcharNoCopyUnsafe(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status SetDouble(const Slice &col_name, double val) WARN_UNUSED_RESULT
Status SetInt64(const Slice &col_name, int64_t val) WARN_UNUSED_RESULT
Status SetNull(int col_idx) WARN_UNUSED_RESULT
Status SetInt32(int col_idx, int32_t val) WARN_UNUSED_RESULT
Status SetDate(const Slice &col_name, int32_t days_since_unix_epoch) WARN_UNUSED_RESULT
Status SetBinaryCopy(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status SetFloat(int col_idx, float val) WARN_UNUSED_RESULT
Status SetVarchar(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status GetVarchar(const Slice &col_name, Slice *val) const WARN_UNUSED_RESULT
Status GetInt8(int col_idx, int8_t *val) const WARN_UNUSED_RESULT
Status SetInt16(int col_idx, int16_t val) WARN_UNUSED_RESULT
Status Unset(const Slice &col_name) WARN_UNUSED_RESULT
Status SetBinary(const Slice &col_name, const Slice &val) WARN_UNUSED_RESULT
Status GetInt64(const Slice &col_name, int64_t *val) const WARN_UNUSED_RESULT
Status SetStringNoCopy(int col_idx, const Slice &val) WARN_UNUSED_RESULT
bool AllColumnsSet() const
Status SetBool(const Slice &col_name, bool val) WARN_UNUSED_RESULT
Status SetNull(const Slice &col_name) WARN_UNUSED_RESULT
Status SetVarcharNoCopyUnsafe(int col_idx, const Slice &val) WARN_UNUSED_RESULT
Status GetDate(int col_idx, int32_t *days_since_unix_epoch) const WARN_UNUSED_RESULT
Status SetInt8(int col_idx, int8_t val) WARN_UNUSED_RESULT
Status GetBool(int col_idx, bool *val) const WARN_UNUSED_RESULT
const Schema * schema() const
Definition: partial_row.h:640