#include "remoting/host/ipc_constants.h"
#include "base/logging.h"
#include "base/no_destructor.h"
#include "base/path_service.h"
#include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "components/named_mojo_ipc_server/named_mojo_ipc_util.h"
#include "mojo/public/cpp/platform/named_platform_channel.h"
#include "remoting/host/base/username.h"
namespace remoting {
namespace {
#if BUILDFLAG(IS_LINUX)
#if !defined(NDEBUG)
constexpr char kChromotingHostServicesIpcNamePattern[] =
"chromoting.%s.host_services_debug_mojo_ipc";
#else
constexpr char kChromotingHostServicesIpcNamePattern[] =
"chromoting.%s.host_services_mojo_ipc";
#endif
#else
constexpr char kChromotingHostServicesIpcName[] =
"chromoting.host_services_mojo_ipc";
#endif
}
const base::FilePath::CharType kHostBinaryName[] =
FILE_PATH_LITERAL("remoting_host");
const base::FilePath::CharType kDesktopBinaryName[] =
FILE_PATH_LITERAL("remoting_desktop");
const uint64_t kChromotingHostServicesMessagePipeId = 0u;
bool GetInstalledBinaryPath(const base::FilePath::StringType& binary,
base::FilePath* full_path) {
base::FilePath dir_path;
if (!base::PathService::Get(base::DIR_EXE, &dir_path)) {
LOG(ERROR) << "Failed to get the executable file name.";
return false;
}
base::FilePath path = dir_path.Append(binary);
#if BUILDFLAG(IS_WIN)
path = path.ReplaceExtension(FILE_PATH_LITERAL("exe"));
#endif
*full_path = path;
return true;
}
const mojo::NamedPlatformChannel::ServerName&
GetChromotingHostServicesServerName() {
static const base::NoDestructor<mojo::NamedPlatformChannel::ServerName>
server_name(
named_mojo_ipc_server::WorkingDirectoryIndependentServerNameFromUTF8(
#if BUILDFLAG(IS_LINUX)
base::StringPrintf(kChromotingHostServicesIpcNamePattern,
GetUsername().c_str())
#else
kChromotingHostServicesIpcName
#endif
));
return *server_name;
}
}