mirror of
https://github.com/nestriness/cdc-file-transfer.git
synced 2026-01-30 12:25:35 +02:00
The tools allow efficient and fast synchronization of large directory trees from a Windows workstation to a Linux target machine. cdc_rsync* support efficient copy of files by using content-defined chunking (CDC) to identify chunks within files that can be reused. asset_stream_manager + cdc_fuse_fs support efficient streaming of a local directory to a remote virtual file system based on FUSE. It also employs CDC to identify and reuse unchanged data chunks.
97 lines
3.0 KiB
C++
97 lines
3.0 KiB
C++
/*
|
|
* Copyright 2022 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef COMMON_SDK_UTIL_H_
|
|
#define COMMON_SDK_UTIL_H_
|
|
|
|
#include <string>
|
|
|
|
#include "absl/status/status.h"
|
|
#include "absl/status/statusor.h"
|
|
#include "common/platform.h"
|
|
|
|
#if !PLATFORM_WINDOWS
|
|
#error SdkUtil only supports Windows so far.
|
|
#endif
|
|
|
|
namespace cdc_ft {
|
|
|
|
// Provides paths to selected files in the Stadia Windows SDK.
|
|
class SdkUtil {
|
|
public:
|
|
SdkUtil();
|
|
~SdkUtil();
|
|
|
|
// Returns the initialization status. Should be OK unless in case of some rare
|
|
// internal error. Should be checked before accessing any members.
|
|
const absl::Status& GetInitStatus() const { return init_status_; }
|
|
|
|
// Returns the path of the SDK user configuration, e.g.
|
|
// %APPDATA%\GGP.
|
|
std::string GetUserConfigPath() const;
|
|
|
|
// Returns the path of the SDK services configuration, e.g.
|
|
// %APPDATA%\GGP\services.
|
|
std::string GetServicesConfigPath() const;
|
|
|
|
// Returns the path of a log file with given |log_base_name|, e.g.
|
|
// %APPDATA%\GGP\logs\log_base_name.20210729-125930.log.
|
|
std::string GetLogPath(const char* log_base_name) const;
|
|
|
|
// Returns the path of the ssh configuration file, e.g.
|
|
// %APPDATA%\GGP\ssh\config.
|
|
std::string GetSshConfigPath() const;
|
|
|
|
// Returns the path of the ssh private key file in the SDK configuration, e.g.
|
|
// %APPDATA%\GGP\ssh\id_rsa.
|
|
std::string GetSshKeyFilePath() const;
|
|
|
|
// Returns the path of the ssh known_hosts file in the SDK configuration, e.g.
|
|
// %APPDATA%\GGP\ssh\known_hosts.
|
|
std::string GetSshKnownHostsFilePath() const;
|
|
|
|
// Returns the path of the installed SDK, e.g.
|
|
// C:\Program Files\GGP SDK.
|
|
std::string GetSDKPath() const;
|
|
|
|
// Returns the path of the dev tools that ship with the SDK, e.g.
|
|
// C:\Program Files\GGP SDK\dev\bin.
|
|
std::string GetDevBinPath() const;
|
|
|
|
// Returns the path of the OpenSSH tools that ship with the SDK, e.g.
|
|
// C:\Program Files\GGP SDK\tools\OpenSSH-Win64.
|
|
std::string GetSshPath() const;
|
|
|
|
// Returns the path of ssh.exe that ships with the SDK, e.g.
|
|
// C:\Program Files\GGP SDK\tools\OpenSSH-Win64\ssh.exe.
|
|
std::string GetSshExePath() const;
|
|
|
|
// Returns the path of scp.exe that ships with the SDK, e.g.
|
|
// C:\Program Files\GGP SDK\tools\OpenSSH-Win64\scp.exe.
|
|
std::string GetScpExePath() const;
|
|
|
|
private:
|
|
std::string roaming_appdata_path_;
|
|
std::string program_files_path_;
|
|
std::string ggp_sdk_path_env_;
|
|
absl::Status init_status_;
|
|
std::string full_sdk_version_;
|
|
};
|
|
|
|
} // namespace cdc_ft
|
|
|
|
#endif // COMMON_SDK_UTIL_H_
|