libcudf  23.12.00
orc_metadata.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2023, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
22 #pragma once
23 
24 #include <cudf/io/orc_types.hpp>
25 #include <cudf/io/types.hpp>
26 
27 #include <optional>
28 #include <variant>
29 #include <vector>
30 
31 namespace cudf {
32 namespace io {
33 
44  std::vector<std::string> column_names;
45  std::vector<std::string> file_stats;
46  std::vector<std::vector<std::string>> stripes_stats;
47 };
48 
65 
69 using no_statistics = std::monostate;
70 
76 template <typename T>
78  std::optional<T> minimum;
79  std::optional<T> maximum;
80 };
81 
87 template <typename T>
89  std::optional<T> sum;
90 };
91 
95 struct integer_statistics : minmax_statistics<int64_t>, sum_statistics<int64_t> {};
96 
101 
109 struct string_statistics : minmax_statistics<std::string>, sum_statistics<int64_t> {};
110 
117  std::vector<uint64_t> count;
118 };
119 
123 struct decimal_statistics : minmax_statistics<std::string>, sum_statistics<std::string> {};
124 
129 
136 
144  std::optional<int64_t> minimum_utc;
145  std::optional<int64_t> maximum_utc;
146  std::optional<uint32_t> minimum_nanos;
147  std::optional<uint32_t> maximum_nanos;
148 };
149 
150 namespace orc {
151 // forward declare the type that ProtobufReader uses. The `cudf::io::column_statistics` objects,
152 // returned from `read_parsed_orc_statistics`, are constructed from
153 // `cudf::io::orc::column_statistics` objects that `ProtobufReader` initializes.
154 struct column_statistics;
155 } // namespace orc
156 
164  std::optional<uint64_t> number_of_values;
165  std::optional<bool> has_null;
166  std::variant<no_statistics,
176 
182  column_statistics(orc::column_statistics&& detail_statistics);
183 };
184 
193  std::vector<std::string> column_names;
194  std::vector<column_statistics> file_stats;
195  std::vector<std::vector<column_statistics>> stripes_stats;
196 };
197 
208 
213  public:
221  orc_column_schema(std::string_view name,
222  orc::TypeKind type,
223  std::vector<orc_column_schema> children)
224  : _name{name}, _type_kind{type}, _children{std::move(children)}
225  {
226  }
227 
233  [[nodiscard]] auto name() const { return _name; }
234 
240  [[nodiscard]] auto type_kind() const { return _type_kind; }
241 
247  [[nodiscard]] auto const& children() const& { return _children; }
248 
253  [[nodiscard]] auto children() && { return std::move(_children); }
254 
262  [[nodiscard]] auto const& child(int idx) const& { return children().at(idx); }
263 
268  [[nodiscard]] auto child(int idx) && { return std::move(children().at(idx)); }
269 
275  [[nodiscard]] auto num_children() const { return children().size(); }
276 
277  private:
278  std::string _name;
279  orc::TypeKind _type_kind;
280  std::vector<orc_column_schema> _children;
281 };
282 
286 struct orc_schema {
287  public:
293  orc_schema(orc_column_schema root_column_schema) : _root{std::move(root_column_schema)} {}
294 
300  [[nodiscard]] auto const& root() const& { return _root; }
301 
306  [[nodiscard]] auto root() && { return std::move(_root); }
307 
308  private:
309  orc_column_schema _root;
310 };
311 
316  public:
325  : _schema{std::move(schema)}, _num_rows{num_rows}, _num_stripes{num_stripes}
326  {
327  }
328 
334  [[nodiscard]] auto const& schema() const { return _schema; }
335 
337 
344  [[nodiscard]] auto num_rows() const { return _num_rows; }
345 
351  [[nodiscard]] auto num_stripes() const { return _num_stripes; }
352 
353  private:
354  orc_schema _schema;
355  size_type _num_rows;
356  size_type _num_stripes;
357 };
358 
369 
370 } // namespace io
371 } // namespace cudf
Information about content of an ORC file.
auto num_rows() const
Returns the number of rows of the root column.
auto const & schema() const
Returns the ORC schema.
auto num_stripes() const
Returns the number of stripes in the file.
orc_metadata(orc_schema schema, size_type num_rows, size_type num_stripes)
constructor
parsed_orc_statistics read_parsed_orc_statistics(source_info const &src_info)
Reads file-level and stripe-level statistics of ORC dataset.
raw_orc_statistics read_raw_orc_statistics(source_info const &src_info)
Reads file-level and stripe-level statistics of ORC dataset.
orc_metadata read_orc_metadata(source_info const &src_info)
Reads metadata of ORC dataset.
int32_t size_type
Row index type for columns and tables.
Definition: types.hpp:80
cuDF-IO API type definitions
sum_statistics< int64_t > binary_statistics
Statistics for binary columns.
minmax_statistics< int32_t > date_statistics
Statistics for date(time) columns.
std::monostate no_statistics
Monostate type alias for the statistics variant.
cuDF interfaces
Definition: aggregation.hpp:34
Statistics for boolean columns.
std::vector< uint64_t > count
count of true values
Contains per-column ORC statistics.
std::optional< uint64_t > number_of_values
number of statistics
std::optional< bool > has_null
column has any nulls
column_statistics(orc::column_statistics &&detail_statistics)
Construct a new column statistics object.
std::variant< no_statistics, integer_statistics, double_statistics, string_statistics, bucket_statistics, decimal_statistics, date_statistics, binary_statistics, timestamp_statistics > type_specific_stats
type-specific statistics
Statistics for decimal columns.
Statistics for floating point columns.
Statistics for integral columns.
Base class for column statistics that include optional minimum and maximum.
std::optional< T > minimum
Minimum value.
std::optional< T > maximum
Maximum value.
Schema of an ORC column, including the nested columns.
auto const & children() const &
Returns schemas of all child columns.
orc_column_schema(std::string_view name, orc::TypeKind type, std::vector< orc_column_schema > children)
constructor
auto child(int idx) &&
Returns schema of the child with the given index.
auto type_kind() const
Returns ORC type of the column.
auto const & child(int idx) const &
Returns schema of the child with the given index.
auto name() const
Returns ORC column name; can be empty.
auto num_children() const
Returns the number of child columns.
auto children() &&
Returns schemas of all child columns.
Schema of an ORC file.
auto root() &&
Returns the schema of the struct column that contains all columns as fields.
auto const & root() const &
Returns the schema of the struct column that contains all columns as fields.
orc_schema(orc_column_schema root_column_schema)
constructor
Holds column names and parsed file-level and stripe-level statistics.
std::vector< std::vector< column_statistics > > stripes_stats
stripe-level statistics
std::vector< std::string > column_names
column names
std::vector< column_statistics > file_stats
file-level statistics
Holds column names and buffers containing raw file-level and stripe-level statistics.
std::vector< std::vector< std::string > > stripes_stats
Stripe-level statistics for each column.
std::vector< std::string > column_names
Column names.
std::vector< std::string > file_stats
File-level statistics for each column.
Source information for read interfaces.
Definition: io/types.hpp:288
Statistics for string columns.
Base class for column statistics that include an optional sum.
std::optional< T > sum
Sum of values in column.
Statistics for timestamp columns.
std::optional< uint32_t > minimum_nanos
nanoseconds part of the minimum
std::optional< uint32_t > maximum_nanos
nanoseconds part of the maximum
std::optional< int64_t > minimum_utc
minimum in milliseconds
std::optional< int64_t > maximum_utc
maximum in milliseconds