/* * All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or * its licensors. * * For complete copyright and license terms please see the LICENSE at the root of this * distribution (the "License"). All use of this software is governed by the License, * or, if provided, by the license below or the license accompanying this file. Do not * remove or modify any license notices. This file is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * */ #pragma once #include #include #include #include namespace AzToolsFramework { namespace AssetDatabase { class AssetDatabaseConnection; class FileDatabaseEntry; class ScanFolderDatabaseEntry; class SourceDatabaseEntry; class CombinedDatabaseEntry; class ProductDatabaseEntry; } namespace AssetBrowser { class AssetEntryChange; class AssetEntryChangeset { public: AssetEntryChangeset( AZStd::shared_ptr databaseConnection, AZStd::shared_ptr rootEntry); ~AssetEntryChangeset(); void PopulateEntries(); void Update(); void Synchronize(); void AddFile(const AZ::s64& fileId); void RemoveFile(const AZ::s64& fileId); void AddSource(const AZ::Uuid& sourceUuid); void RemoveSource(const AZ::Uuid& sourceUuid); void AddProduct(const AZ::Data::AssetId& assetId); void RemoveProduct(const AZ::Data::AssetId& assetId); private: AZStd::shared_ptr m_databaseConnection; AZStd::shared_ptr m_rootEntry; //! protects read/write to m_entries AZStd::mutex m_mutex; AZStd::atomic_bool m_fullUpdate; bool m_updated; AZStd::vector m_changes; AZStd::vector m_fileIdsToAdd; AZStd::vector m_sourceUuidsToAdd; AZStd::vector m_productAssetIdsToAdd; AZStd::string m_relativePath; void QueryEntireDatabase(); void QueryChangeset(); }; } // namespace AssetBrowser } // namespace AzToolsFramework