blob: a0b1d79f6a9781ba1720ee3daa5818d82b1a36ac [file] [log] [blame]
// Copyright 2018 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.
#include "ftl-shell.h"
#include <memory>
bool FtlShell::Init(const ftl::VolumeOptions& options) {
auto driver = std::make_unique<NdmRamDriver>(options);
const char* error = driver->Init();
if (error) {
return false;
}
error = volume_.Init(std::move(driver));
return error ? false : true;
}
bool FtlShell::ReAttach() {
const char* error = volume_.ReAttach();
return error ? false : true;
}
bool FtlShell::OnVolumeAdded(uint32_t page_size, uint32_t num_pages) {
page_size_ = page_size;
num_pages_ = num_pages;
return true;
}