1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
// 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. //! Main entrypoint for working with Parquet API. //! //! Provides access to file and row group readers and writers, record API, metadata, etc. //! //! See [`reader::SerializedFileReader`] or [`writer::SerializedFileWriter`] for a //! starting reference, [`metadata::ParquetMetaData`] for file metadata, //! and [`statistics`] for working with statistics. //! //! # Example of reading an existing file //! //! ```rust //! use std::fs::File; //! use std::path::Path; //! use parquet::file::reader::{FileReader, SerializedFileReader}; //! //! let path = Path::new("data/alltypes_plain.parquet"); //! let file = File::open(&path).unwrap(); //! let reader = SerializedFileReader::new(file).unwrap(); //! //! let parquet_metadata = reader.metadata(); //! assert_eq!(parquet_metadata.num_row_groups(), 1); //! //! let row_group_reader = reader.get_row_group(0).unwrap(); //! assert_eq!(row_group_reader.num_columns(), 11); //! ``` //! //! # Example of writing a new file //! //! ```rust //!use std::fs; //! use std::path::Path; //! use std::rc::Rc; //! //! use parquet::file::properties::WriterProperties; //! use parquet::file::writer::{FileWriter, SerializedFileWriter}; //! use parquet::schema::parser::parse_message_type; //! //! let path = Path::new("target/debug/examples/sample.parquet"); //! //! let message_type = " //! message schema { //! REQUIRED INT32 b; //! } //! "; //! let schema = Rc::new(parse_message_type(message_type).unwrap()); //! let props = Rc::new(WriterProperties::builder().build()); //! let file = fs::File::create(&path).unwrap(); //! let mut writer = SerializedFileWriter::new(file, schema, props).unwrap(); //! let mut row_group_writer = writer.next_row_group().unwrap(); //! while let Some(mut col_writer) = row_group_writer.next_column().unwrap() { //! // ... write values to a column writer //! row_group_writer.close_column(col_writer).unwrap(); //! } //! writer.close_row_group(row_group_writer).unwrap(); //! writer.close().unwrap(); //! //! let bytes = fs::read(&path).unwrap(); //! assert_eq!(&bytes[0..4], &[b'P', b'A', b'R', b'1']); //! ``` pub mod metadata; pub mod properties; pub mod reader; pub mod writer; pub mod statistics; const FOOTER_SIZE: usize = 8; const PARQUET_MAGIC: [u8; 4] = [b'P', b'A', b'R', b'1'];