| /** |
| * |
| * 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 <map> |
| #include <memory> |
| #include <string> |
| #include <string_view> |
| #include <utility> |
| #include <list> |
| |
| #include "properties/Configure.h" |
| #include "ResourceClaim.h" |
| #include "StreamManager.h" |
| #include "ContentSession.h" |
| #include "core/RepositoryMetricsSource.h" |
| #include "core/Core.h" |
| |
| namespace org::apache::nifi::minifi::core { |
| |
| /** |
| * Content repository definition that extends StreamManager. |
| */ |
| class ContentRepository : public core::CoreComponent, public StreamManager<minifi::ResourceClaim>, public utils::EnableSharedFromThis<ContentRepository>, public core::RepositoryMetricsSource { |
| public: |
| explicit ContentRepository(std::string_view name, const utils::Identifier& uuid = {}) : core::CoreComponent(name, uuid) {} |
| ~ContentRepository() override = default; |
| |
| virtual bool initialize(const std::shared_ptr<Configure> &configure) = 0; |
| |
| std::string getStoragePath() const override; |
| virtual std::shared_ptr<ContentSession> createSession(); |
| void reset(); |
| |
| uint32_t getStreamCount(const minifi::ResourceClaim &streamId) override; |
| void incrementStreamCount(const minifi::ResourceClaim &streamId) override; |
| StreamState decrementStreamCount(const minifi::ResourceClaim &streamId) override; |
| |
| virtual void clearOrphans() = 0; |
| |
| virtual void start() {} |
| virtual void stop() {} |
| |
| bool remove(const minifi::ResourceClaim &streamId) final; |
| |
| std::string getRepositoryName() const override { |
| return getName(); |
| } |
| |
| protected: |
| void removeFromPurgeList(); |
| virtual bool removeKey(const std::string& content_path) = 0; |
| |
| std::string directory_; |
| std::mutex count_map_mutex_; |
| std::mutex purge_list_mutex_; |
| std::map<std::string, uint32_t> count_map_; |
| std::list<std::string> purge_list_; |
| }; |
| |
| } // namespace org::apache::nifi::minifi::core |