| // 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. |
| |
| #pragma once |
| |
| #include <stdint.h> |
| #include <time.h> |
| |
| #include <memory> |
| #include <shared_mutex> |
| |
| #include "common/status.h" |
| #include "io/cache/file_cache.h" |
| #include "io/fs/file_reader.h" |
| #include "io/fs/file_reader_writer_fwd.h" |
| #include "io/fs/file_system.h" |
| #include "io/fs/path.h" |
| #include "util/slice.h" |
| |
| namespace doris { |
| namespace io { |
| class IOContext; |
| |
| class WholeFileCache final : public FileCache { |
| public: |
| WholeFileCache(const Path& cache_dir, int64_t alive_time_sec, |
| io::FileReaderSPtr remote_file_reader); |
| ~WholeFileCache() override; |
| |
| Status close() override { return _remote_file_reader->close(); } |
| |
| const Path& path() const override { return _remote_file_reader->path(); } |
| |
| size_t size() const override { return _remote_file_reader->size(); } |
| |
| bool closed() const override { return _remote_file_reader->closed(); } |
| |
| const Path& cache_dir() const override { return _cache_dir; } |
| |
| io::FileReaderSPtr remote_file_reader() const override { return _remote_file_reader; } |
| |
| Status clean_timeout_cache() override; |
| |
| Status clean_all_cache() override; |
| |
| Status clean_one_cache(size_t* cleaned_size) override; |
| |
| int64_t get_oldest_match_time() const override { return _gc_match_time; } |
| |
| bool is_gc_finish() const override; |
| |
| FileSystemSPtr fs() const override { return _remote_file_reader->fs(); } |
| |
| protected: |
| Status read_at_impl(size_t offset, Slice result, size_t* bytes_read, |
| const IOContext* io_ctx) override; |
| |
| private: |
| Status _generate_cache_reader(size_t offset, size_t req_size); |
| |
| Status _clean_cache_internal(size_t* cleaned_size); |
| |
| void update_last_match_time() { _last_match_time = time(nullptr); } |
| |
| private: |
| Path _cache_dir; |
| int64_t _alive_time_sec; |
| io::FileReaderSPtr _remote_file_reader; |
| |
| int64_t _gc_match_time {0}; |
| int64_t _last_match_time {0}; |
| |
| mutable std::shared_mutex _cache_lock; |
| io::FileReaderSPtr _cache_file_reader; |
| }; |
| |
| } // namespace io |
| } // namespace doris |