diff options
| author | Per Larsson <[email protected]> | 2021-05-21 09:52:28 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-05-21 09:52:28 +0200 |
| commit | d795184a5c29727079903298a762c0059362d478 (patch) | |
| tree | 9adb71ee9a42d771eb18fea6c85f515956840650 | |
| parent | Fixed mis-merge (diff) | |
| download | zen-d795184a5c29727079903298a762c0059362d478.tar.xz zen-d795184a5c29727079903298a762c0059362d478.zip | |
Added support for package additional files. Added io hash chunk id to… (#2)
Added support for attaching additional files to oplog entries in project store
| -rw-r--r-- | zenserver/projectstore.cpp | 132 | ||||
| -rw-r--r-- | zenserver/projectstore.h | 21 |
2 files changed, 55 insertions, 98 deletions
diff --git a/zenserver/projectstore.cpp b/zenserver/projectstore.cpp index 0d7ad0f16..8753d50fc 100644 --- a/zenserver/projectstore.cpp +++ b/zenserver/projectstore.cpp @@ -276,9 +276,9 @@ ProjectStore::Oplog::FindChunk(Oid ChunkId) return m_CasStore.FindChunk(ChunkIt->second); } - if (auto FileIt = m_ServerFileMap.find(ChunkId); FileIt != m_ServerFileMap.end()) + if (auto FileIt = m_FileMap.find(ChunkId); FileIt != m_FileMap.end()) { - std::filesystem::path FilePath = m_OuterProject->RootDir / FileIt->second; + std::filesystem::path FilePath = m_OuterProject->RootDir / FileIt->second.ServerPath; return IoBufferBuilder::MakeFromFile(FilePath.native().c_str()); } @@ -296,20 +296,35 @@ ProjectStore::Oplog::IterateFileMap(std::function<void(const Oid&, const std::st { for (const auto& Kv : m_FileMap) { - Fn(Kv.first, Kv.second); + Fn(Kv.first, Kv.second.ClientPath); } } -void -ProjectStore::Oplog::AddFileMapping(Oid FileId, std::string_view Path) +bool +ProjectStore::Oplog::AddFileMapping(Oid FileId, IoHash Hash, std::string_view ServerPath, std::string_view ClientPath) { - m_FileMap.emplace(FileId, Path); -} + if (ServerPath.empty() || ClientPath.empty()) + { + return false; + } -void -ProjectStore::Oplog::AddServerFileMapping(Oid FileId, std::string_view Path) -{ - m_ServerFileMap.emplace(FileId, Path); + if (ServerPath[0] == '/') + { + ServerPath = ServerPath.substr(1); + } + + FileMapEntry Entry; + Entry.ServerPath = ServerPath; + Entry.ClientPath = ClientPath; + + m_FileMap.emplace(FileId, std::move(Entry)); + + if (Hash != IoHash::Zero) + { + m_ChunkMap.emplace(FileId, Hash); + } + + return true; } void @@ -356,93 +371,30 @@ ProjectStore::Oplog::RegisterOplogEntry(CbObject Core, const OplogEntry& OpEntry Log().debug("bulkdata {} -> {}", BulkDataId, BulkDataHash); } - if (CbFieldView FilesArray = Core["files"sv]) + if (Core["files"sv]) { - int FileCount = 0; - int ServerFileCount = 0; - - std::atomic<bool> InvalidOp{false}; - Stopwatch Timer; + int32_t FileCount = 0; - std::future<void> f0 = std::async(std::launch::async, [&] { - for (CbFieldView& Entry : FilesArray) - { - CbObjectView FileObj = Entry.AsObjectView(); - const Oid FileId = FileObj["id"sv].AsObjectId(); - - if (auto PathField = FileObj["path"sv]) - { - AddFileMapping(FileId, PathField.AsString()); - - // Log().debug("file {} -> {}", FileId, PathString); - - ++FileCount; - } - else - { - // Every file entry needs to specify a path - InvalidOp = true; - break; - } - - if (InvalidOp.load(std::memory_order::relaxed)) - { - break; - } - } - }); - - std::future<void> f1 = std::async(std::launch::async, [&] { - CbArrayView ServerFilesArray = Core["serverfiles"sv].AsArrayView(); + for (CbFieldView& Entry : Core["files"sv]) + { + CbObjectView FileObj = Entry.AsObjectView(); + const Oid FileId = FileObj["id"sv].AsObjectId(); + IoHash FileDataHash = FileObj["data"sv].AsBinaryAttachment(); + std::string_view ServerPath = FileObj["serverpath"sv].AsString(); + std::string_view ClientPath = FileObj["clientpath"sv].AsString(); - for (CbFieldView& Entry : ServerFilesArray) + if (AddFileMapping(FileId, FileDataHash, ServerPath, ClientPath)) { - CbObjectView FileObj = Entry.AsObjectView(); - const Oid FileId = FileObj["id"sv].AsObjectId(); - - if (auto PathField = FileObj["path"sv]) - { - AddServerFileMapping(FileId, PathField.AsString()); - - // m_log.debug("file {} -> {}", FileId, PathString); - - ++ServerFileCount; - } - else - { - // Every file entry needs to specify a path - InvalidOp = true; - break; - } - - if (InvalidOp.load(std::memory_order::relaxed)) - { - break; - } + ++FileCount; } - }); - - f0.wait(); - f1.wait(); - - if (InvalidOp) - { - return kInvalidOp; - } - - if (FileCount || ServerFileCount) - { - Log().debug("{} files registered, {} server files (took {})", - FileCount, - ServerFileCount, - NiceTimeSpanMs(Timer.getElapsedTimeMs())); - - if (FileCount != ServerFileCount) + else { - Log().warn("client/server file list mismatch: {} vs {}", FileCount, ServerFileCount); + Log().warn("invalid file"); } } + + Log().debug("added {} file(s) in {}", FileCount, NiceTimeSpanMs(Timer.getElapsedTimeMs())); } for (CbFieldView& Entry : Core["meta"sv]) @@ -1114,7 +1066,7 @@ HttpProjectService::HttpProjectService(CasStore& Store, ProjectStore* Projects) // the prep step rejected the chunk. This should be fixed since there's // a performance cost associated with any file system activity - bool IsValid = true; + bool IsValid = true; std::vector<IoHash> MissingChunks; CbPackage::AttachmentResolver Resolver = [&](const IoHash& Hash) -> SharedBuffer { diff --git a/zenserver/projectstore.h b/zenserver/projectstore.h index 38c53ea6e..72b8a1cd6 100644 --- a/zenserver/projectstore.h +++ b/zenserver/projectstore.h @@ -99,6 +99,12 @@ public: uint64_t Size; }; + struct FileMapEntry + { + std::string ServerPath; + std::string ClientPath; + }; + template<class V> using OidMap = tsl::robin_map<Oid, V, Oid::Hasher>; @@ -108,18 +114,17 @@ public: std::filesystem::path m_BasePath; std::filesystem::path m_TempPath; - OidMap<IoHash> m_ChunkMap; // output data chunk id -> CAS address - OidMap<IoHash> m_MetaMap; // meta chunk id -> CAS address - OidMap<std::string> m_FileMap; // file id -> client file - OidMap<std::string> m_ServerFileMap; // file id -> server file - std::map<int, OplogEntryAddress> m_OpAddressMap; // Index LSN -> op data in ops blob file - OidMap<int> m_LatestOpMap; // op key -> latest op LSN for key + OidMap<IoHash> m_ChunkMap; // output data chunk id -> CAS address + OidMap<IoHash> m_MetaMap; // meta chunk id -> CAS address + OidMap<FileMapEntry> m_FileMap; // file id -> file map entry + int32_t m_ManifestVersion; // File system manifest version + std::map<int, OplogEntryAddress> m_OpAddressMap; // Index LSN -> op data in ops blob file + OidMap<int> m_LatestOpMap; // op key -> latest op LSN for key RefPtr<OplogStorage> m_Storage; std::string m_OplogId; - void AddFileMapping(Oid FileId, std::string_view Path); - void AddServerFileMapping(Oid FileId, std::string_view Path); + bool AddFileMapping(Oid FileId, IoHash Hash, std::string_view ServerPath, std::string_view ClientPath); void AddChunkMapping(Oid ChunkId, IoHash Hash); void AddMetaMapping(Oid ChunkId, IoHash Hash); }; |