// Licensed to the LF AI & Data foundation 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 #include #include #include #include #include "storage/IndexData.h" #include "storage/FileManager.h" #include "storage/ChunkManager.h" namespace milvus::storage { class MemFileManagerImpl : public FileManagerImpl { public: explicit MemFileManagerImpl(const FileManagerContext& fileManagerContext); virtual bool LoadFile(const std::string& filename) noexcept; virtual bool AddFile(const std::string& filename /* unused */) noexcept; virtual std::optional IsExisted(const std::string& filename) noexcept; virtual bool RemoveFile(const std::string& filename) noexcept; public: virtual std::string GetName() const { return "MemIndexFileManagerImpl"; } std::map LoadIndexToMemory(const std::vector& remote_files); std::vector CacheRawDataToMemory(std::vector remote_files); bool AddFile(const BinarySet& binary_set); std::map GetRemotePathsToFileSize() const { return remote_paths_to_size_; } private: // remote file path std::map remote_paths_to_size_; }; using MemFileManagerImplPtr = std::shared_ptr; } // namespace milvus::storage