47b89b32ef
Change-Id: I1b6dcd2ec1fbef6556d70b8af3ccfd5d6a95c59a Signed-off-by: Michael Meeks <michael.meeks@collabora.com>
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* Copyright the Collabora Online contributors.
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
class DocumentBroker;
|
|
|
|
class Quarantine
|
|
{
|
|
public:
|
|
Quarantine(DocumentBroker& docBroker, const std::string& docName);
|
|
|
|
static void initialize(const std::string& path);
|
|
|
|
/// Quarantines a new version of the document.
|
|
bool quarantineFile(const std::string& docName);
|
|
|
|
/// Returns the last quarantined file's path.
|
|
std::string lastQuarantinedFilePath() const;
|
|
|
|
/// Removes the quarantined files for the given DocKey when we unload gracefully.
|
|
void removeQuarantinedFiles();
|
|
|
|
private:
|
|
bool isQuarantineEnabled() const { return !QuarantinePath.empty(); }
|
|
|
|
/// Returns quarantine directory size in bytes.
|
|
std::size_t quarantineSize();
|
|
|
|
void makeQuarantineSpace();
|
|
|
|
void clearOldQuarantineVersions();
|
|
|
|
void removeQuarantine();
|
|
|
|
private:
|
|
static std::unordered_map<std::string, std::vector<std::string>> QuarantineMap;
|
|
/// Protects the shared QuarantineMap from concurrent modification.
|
|
static std::mutex Mutex;
|
|
static std::string QuarantinePath;
|
|
|
|
/// The delimiter used in the quarantine filename.
|
|
static constexpr char Delimiter = '_';
|
|
|
|
const std::string _docKey;
|
|
const std::string _docName;
|
|
/// The quarantined filename is a multi-part string, formed
|
|
/// from the timestamp, pid, docKey, and document filename.
|
|
/// The Delimiter is used to join and later tokenize it.
|
|
/// The document filename is encoded to ensure tokenization.
|
|
const std::string _quarantinedFilename;
|
|
const std::size_t _maxSizeBytes;
|
|
const std::size_t _maxAgeSecs;
|
|
const std::size_t _maxVersions;
|
|
};
|