blob: 25d96b55dd754b55fe4a7de27e33f32a20912b60 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_SYS_APPMGR_STORAGE_WATCHDOG_H_
#define SRC_SYS_APPMGR_STORAGE_WATCHDOG_H_
#include <fuchsia/io/llcpp/fidl.h>
#include <lib/async/dispatcher.h>
#include <lib/zx/channel.h>
#include <string>
// StorageWatchdog can be used to observe the storage usage on a given
// partition, and when the storage usage reaches 95% the isolated component
// storage under a given path will be deleted.
class StorageWatchdog {
public:
StorageWatchdog(std::string path_to_watch, std::string path_to_clean)
: path_to_watch_(path_to_watch), path_to_clean_(path_to_clean) {}
void Run(async_dispatcher_t* dispatcher);
struct StorageUsage {
size_t avail = 0;
size_t used = 0;
size_t percent() const {
if (avail > 0) {
return used * 100 / avail;
}
return 0;
};
};
StorageUsage GetStorageUsage();
void CheckStorage(async_dispatcher_t* dispatcher,
size_t threshold_purge_percent = kCachePurgeThresholdPct);
void PurgeCache();
static constexpr size_t kCachePurgeThresholdPct = 95;
protected:
virtual zx_status_t GetFilesystemInfo(zx_handle_t directory,
fuchsia_io::wire::FilesystemInfo* out_info);
private:
const std::string path_to_watch_;
const std::string path_to_clean_;
};
#endif // SRC_SYS_APPMGR_STORAGE_WATCHDOG_H_