| // Copyright 2017 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_LEDGER_BIN_TESTING_GET_LEDGER_H_ |
| #define SRC_LEDGER_BIN_TESTING_GET_LEDGER_H_ |
| |
| #include <fuchsia/ledger/cloud/cpp/fidl.h> |
| #include <fuchsia/sys/cpp/fidl.h> |
| #include <lib/fit/function.h> |
| #include <lib/sys/cpp/component_context.h> |
| |
| #include <functional> |
| #include <string> |
| |
| #include "src/ledger/bin/fidl/include/types.h" |
| #include "src/ledger/bin/filesystem/detached_path.h" |
| |
| namespace ledger { |
| |
| // Creates a new Ledger application instance and returns a LedgerPtr connection |
| // to it. This method will call |Sync| on the Repository to ensure that the |
| // Ledger is ready to be used for performance benchmark. |
| Status GetLedger(sys::ComponentContext* context, |
| fidl::InterfaceRequest<fuchsia::sys::ComponentController> |
| controller_request, |
| cloud_provider::CloudProviderPtr cloud_provider, |
| std::string user_id, std::string ledger_name, |
| const DetachedPath& ledger_repository_path, |
| fit::function<void()> error_handler, LedgerPtr* ledger); |
| |
| // Kills the remote ledger process controlled by |controller|. |
| void KillLedgerProcess(fuchsia::sys::ComponentControllerPtr* controller); |
| |
| } // namespace ledger |
| |
| #endif // SRC_LEDGER_BIN_TESTING_GET_LEDGER_H_ |