blob: f9a0b0951928b644aa59c51ed3b2e42b8bb370b9 [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.
#ifndef PERIDOT_BIN_SESSIONMGR_PUPPET_MASTER_STORY_PUPPET_MASTER_IMPL_H_
#define PERIDOT_BIN_SESSIONMGR_PUPPET_MASTER_STORY_PUPPET_MASTER_IMPL_H_
#include <memory>
#include <fuchsia/modular/cpp/fidl.h>
#include <lib/async/cpp/operation.h>
#include <lib/fidl/cpp/binding_set.h>
#include <lib/fxl/memory/weak_ptr.h>
namespace modular {
class SessionStorage;
class StoryCommandExecutor;
// An implementation of fuchsia::modular::StoryPuppetMaster which delegates
// story command execution to a StoryCommandExecutor.
class StoryPuppetMasterImpl : public fuchsia::modular::StoryPuppetMaster {
public:
StoryPuppetMasterImpl(std::string story_name,
OperationContainer* operations,
SessionStorage* session_storage,
StoryCommandExecutor* executor);
~StoryPuppetMasterImpl() override;
private:
// |StoryPuppetMaster|
void Enqueue(
std::vector<fuchsia::modular::StoryCommand> commands) override;
// |StoryPuppetMaster|
void Execute(ExecuteCallback done) override;
// |StoryPuppetMaster|
void SetCreateOptions(fuchsia::modular::StoryOptions story_options) override;
std::string story_name_;
SessionStorage* const session_storage_; // Not owned.
StoryCommandExecutor* const executor_; // Not owned.
std::vector<fuchsia::modular::StoryCommand> enqueued_commands_;
OperationContainer* const operations_; // Not owned.
fuchsia::modular::StoryOptions story_options_;
FXL_DISALLOW_COPY_AND_ASSIGN(StoryPuppetMasterImpl);
};
} // namespace modular
#endif // PERIDOT_BIN_SESSIONMGR_PUPPET_MASTER_STORY_PUPPET_MASTER_IMPL_H_