blob: 73333bb59cd21f39724c21613513363d9d5d4361 [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 SRC_LEDGER_BIN_TESTING_SYNC_PARAMS_H_
#define SRC_LEDGER_BIN_TESTING_SYNC_PARAMS_H_
#include <lib/sys/cpp/component_context.h>
#include <set>
#include <string>
#include "src/ledger/lib/firebase_auth/testing/credentials.h"
#include "src/lib/fxl/command_line.h"
#include "src/lib/fxl/strings/string_view.h"
namespace ledger {
// Parameters needed to configure synchronization against a real server.
struct SyncParams {
SyncParams();
SyncParams(const SyncParams& other);
SyncParams(SyncParams&& other);
SyncParams& operator=(const SyncParams& other);
SyncParams& operator=(SyncParams&& other);
// API key used to access the database.
std::string api_key;
// Credentials for the cloud service.
std::unique_ptr<service_account::Credentials> credentials;
};
// Returns a string listing the command-line parameters which need to be
// provided for a benchmark to connect to a cloud server.
std::string GetSyncParamsUsage();
// Reads the sync parameters from the command-line. Prints a warning and returns
// false if these parameters are missing or cannot be parsed.
bool ParseSyncParamsFromCommandLine(const fxl::CommandLine& command_line,
sys::ComponentContext* component_context,
SyncParams* sync_params);
// Returns the names of the flags parsed from the command line by
// ParseSyncParamsFromCommandLine(), without the leading "--".
std::set<std::string> GetSyncParamFlags();
} // namespace ledger
#endif // SRC_LEDGER_BIN_TESTING_SYNC_PARAMS_H_