All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bdgenomics.utils.parquet.index.ParquetFileMetadata.scala Maven / Gradle / Ivy

The newest version!
/**
 * Licensed to Big Data Genomics (BDG) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The BDG 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.
 */
package org.bdgenomics.utils.parquet.index

import org.apache.avro.Schema
import org.bdgenomics.utils.parquet.io.FileLocator
import org.bdgenomics.utils.parquet.{ ParquetPartition, ParquetSchemaType }
import org.bdgenomics.utils.parquet.rdd.{ ParquetCommon, Footer }
import parquet.avro.AvroSchemaConverter
import parquet.format.FileMetaData
import parquet.schema.MessageType

case class ParquetFileMetadata(locator: FileLocator,
                               footer: Footer,
                               metadata: FileMetaData,
                               requested: ParquetSchemaType,
                               actualSchema: ParquetSchemaType) {

  def partition(index: Int): ParquetPartition = {
    val rowGroup = footer.rowGroups(index)
    new ParquetPartition(locator, index, rowGroup, requested, actualSchema)
  }
}

object AvroParquetFileMetadata {

  def convertAvroSchema(schema: Option[Schema], fileMessageType: MessageType): MessageType =
    schema match {
      case None    => fileMessageType
      case Some(s) => new AvroSchemaConverter().convert(s)
    }

  def apply(parquetLocator: FileLocator, requestedSchema: Option[Schema]): ParquetFileMetadata = {

    val fileMetadata = ParquetCommon.readFileMetadata(parquetLocator.bytes)
    val footer = new Footer(fileMetadata)
    val fileMessageType = ParquetCommon.parseMessageType(fileMetadata)

    // TODO: is this actually necessary?  do we actually just want to re-use the fileMessageType here?
    val requestedMessage = convertAvroSchema(requestedSchema, fileMessageType)
    val requested = new ParquetSchemaType(requestedMessage)
    val actual = new ParquetSchemaType(fileMessageType)

    ParquetFileMetadata(parquetLocator, footer, fileMetadata, requested, actual)
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy