| // 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. |
| |
| use std::{ops::Range, sync::Arc}; |
| |
| use base64::{Engine, prelude::BASE64_URL_SAFE_NO_PAD}; |
| use bytes::Bytes; |
| use datafusion::common::Result; |
| use datafusion_ext_commons::{ |
| UninitializedInit, df_execution_err, |
| hadoop_fs::{Fs, FsDataInputWrapper, FsProvider}, |
| }; |
| use object_store::ObjectMeta; |
| use once_cell::sync::OnceCell; |
| |
| pub struct InternalFileReader { |
| fs: Fs, |
| meta: ObjectMeta, |
| path: String, |
| input: OnceCell<Arc<FsDataInputWrapper>>, |
| } |
| |
| impl InternalFileReader { |
| pub fn try_new(fs_provider: Arc<FsProvider>, meta: ObjectMeta) -> Result<Self> { |
| let path = BASE64_URL_SAFE_NO_PAD |
| .decode(meta.location.filename().expect("missing filename")) |
| .map(|bytes| String::from_utf8_lossy(&bytes).to_string()) |
| .or_else(|_| { |
| let filename = meta.location.filename(); |
| df_execution_err!("cannot decode filename: {filename:?}") |
| })?; |
| let fs = fs_provider.provide(&path)?; |
| |
| Ok(Self { |
| fs, |
| meta, |
| path, |
| input: OnceCell::new(), |
| }) |
| } |
| |
| fn get_input(&self) -> Result<Arc<FsDataInputWrapper>> { |
| let input = self |
| .input |
| .get_or_try_init(|| self.fs.open(&self.path)) |
| .or_else(|e| df_execution_err!("cannot get FSDataInputStream: ${e:?}"))?; |
| Ok(input.clone()) |
| } |
| |
| pub fn read_fully(&self, range: Range<u64>) -> Result<Bytes> { |
| let mut bytes = Vec::uninitialized_init((range.end - range.start) as usize); |
| self.get_input()?.read_fully(range.start, &mut bytes)?; |
| Ok(Bytes::from(bytes)) |
| } |
| |
| pub fn get_meta(&self) -> ObjectMeta { |
| self.meta.clone() |
| } |
| } |