blob: 9df43a97019ccc0eec91c5b2dae8ed5d8ab69ee1 [file]
// 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 super::backend::*;
use opendal_core::raw::*;
use opendal_core::*;
/// Reader returned by this backend.
pub struct DashmapReader {
backend: DashmapBackend,
path: String,
}
impl DashmapReader {
pub(super) fn new(backend: DashmapBackend, path: &str, _: OpRead) -> Self {
Self {
backend,
path: path.to_string(),
}
}
}
impl oio::StreamRead for DashmapReader {
async fn open(&self, range: BytesRange) -> Result<(RpRead, Box<dyn oio::ReadStreamDyn>)> {
let backend = &self.backend;
let path = self.path.as_str();
let p = build_abs_path(&backend.root, path);
match backend.core.get(&p)? {
Some(value) => {
let total_size = value.content.len() as u64;
let buffer = value
.content
.slice(range.to_content_range(value.content.len())?);
let metadata = Metadata::new(EntryMode::FILE).with_content_length(total_size);
Ok((
RpRead::new(metadata),
Box::new(buffer) as Box<dyn oio::ReadStreamDyn>,
))
}
None => Err(Error::new(ErrorKind::NotFound, "key not found in dashmap")),
}
}
}