// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // This is an application of a minimal host process in a Chromoting // system. It serves the purpose of gluing different pieces together // to make a functional host process for testing. // // It peforms the following functionality: // 1. Connect to the GTalk network and register the machine as a host. // 2. Accepts connection through libjingle. // 3. Receive mouse / keyboard events through libjingle. // 4. Sends screen capture through libjingle. #include #include #include #include "build/build_config.h" #include "base/at_exit.h" #include "base/callback.h" #include "base/command_line.h" #include "base/environment.h" #include "base/file_path.h" #include "base/logging.h" #include "base/mac/scoped_nsautorelease_pool.h" #include "base/path_service.h" #include "base/test/mock_chrome_application_mac.h" #include "base/threading/thread.h" #include "crypto/nss_util.h" #include "media/base/media.h" #include "remoting/base/tracer.h" #include "remoting/host/capturer_fake.h" #include "remoting/host/chromoting_host.h" #include "remoting/host/chromoting_host_context.h" #include "remoting/host/curtain.h" #include "remoting/host/desktop_environment.h" #include "remoting/host/event_executor.h" #include "remoting/host/heartbeat_sender.h" #include "remoting/host/json_host_config.h" #include "remoting/host/register_support_host_request.h" #include "remoting/proto/video.pb.h" #if defined(TOOLKIT_USES_GTK) #include "ui/gfx/gtk_util.h" #endif using remoting::ChromotingHost; using remoting::DesktopEnvironment; using remoting::protocol::CandidateSessionConfig; using remoting::protocol::ChannelConfig; using std::string; using std::wstring; #if defined(OS_WIN) const wchar_t kDefaultConfigPath[] = L".ChromotingConfig.json"; const wchar_t kHomeDrive[] = L"HOMEDRIVE"; const wchar_t kHomePath[] = L"HOMEPATH"; // TODO(sergeyu): Use environment utils from base/environment.h. const wchar_t* GetEnvironmentVar(const wchar_t* x) { return _wgetenv(x); } #else const char kDefaultConfigPath[] = ".ChromotingConfig.json"; static char* GetEnvironmentVar(const char* x) { return getenv(x); } #endif void ShutdownTask(MessageLoop* message_loop) { message_loop->PostTask(FROM_HERE, new MessageLoop::QuitTask()); } const char kFakeSwitchName[] = "fake"; const char kMe2MomSwitchName[] = "me2mom"; const char kConfigSwitchName[] = "config"; const char kVideoSwitchName[] = "video"; const char kVideoSwitchValueVerbatim[] = "verbatim"; const char kVideoSwitchValueZip[] = "zip"; const char kVideoSwitchValueVp8[] = "vp8"; const char kVideoSwitchValueVp8Rtp[] = "vp8rtp"; class SimpleHost { public: SimpleHost() : fake_(false), me2mom_(false) { } int Run() { MessageLoopForUI message_loop; remoting::ChromotingHostContext context(&message_loop); context.Start(); base::Thread file_io_thread("FileIO"); file_io_thread.Start(); FilePath config_path = GetConfigPath(); scoped_refptr config = new remoting::JsonHostConfig( config_path, file_io_thread.message_loop_proxy()); if (!config->Read()) { LOG(ERROR) << "Failed to read configuration file " << config_path.value(); context.Stop(); return 1; } // Construct a chromoting host. scoped_refptr host; if (fake_) { remoting::Capturer* capturer = new remoting::CapturerFake(); remoting::EventExecutor* event_executor = remoting::EventExecutor::Create(context.ui_message_loop(), capturer); remoting::Curtain* curtain = remoting::Curtain::Create(); host = ChromotingHost::Create( &context, config, new DesktopEnvironment(capturer, event_executor, curtain)); } else { host = ChromotingHost::Create(&context, config); } if (protocol_config_.get()) { host->set_protocol_config(protocol_config_.release()); } if (me2mom_) { scoped_refptr register_request = new remoting::RegisterSupportHostRequest(); if (!register_request->Init( config, NewCallback(this, &SimpleHost::OnMe2MomHostRegistered))) { return 1; } host->AddStatusObserver(register_request); } else { // Initialize HeartbeatSender. scoped_refptr heartbeat_sender = new remoting::HeartbeatSender(context.network_message_loop(), config); if (!heartbeat_sender->Init()) return 1; host->AddStatusObserver(heartbeat_sender); } // Let the chromoting host run until the shutdown task is executed. host->Start(NewRunnableFunction(&ShutdownTask, &message_loop)); message_loop.MessageLoop::Run(); // And then stop the chromoting context. context.Stop(); file_io_thread.Stop(); return 0; } void set_config_path(const FilePath& config_path) { config_path_ = config_path; } void set_fake(bool fake) { fake_ = fake; } void set_me2mom(bool me2mom) { me2mom_ = me2mom; } void set_protocol_config(CandidateSessionConfig* protocol_config) { protocol_config_.reset(protocol_config); } private: FilePath GetConfigPath() { if (!config_path_.empty()) return config_path_; #if defined(OS_WIN) wstring home_path = GetEnvironmentVar(kHomeDrive); home_path += GetEnvironmentVar(kHomePath); #else string home_path = GetEnvironmentVar(base::env_vars::kHome); #endif return FilePath(home_path).Append(kDefaultConfigPath); } void OnMe2MomHostRegistered(bool successful, const std::string& support_id) { if (successful) { std::cout << "Support host registered with SupportID: " << support_id << std::endl; } else { LOG(ERROR) << "Failed to register support host"; } } FilePath config_path_; bool fake_; bool me2mom_; scoped_ptr protocol_config_; }; int main(int argc, char** argv) { // Needed for the Mac, so we don't leak objects when threads are created. base::mac::ScopedNSAutoreleasePool pool; CommandLine::Init(argc, argv); const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); base::AtExitManager exit_manager; crypto::EnsureNSPRInit(); FilePath media_module_path; PathService::Get(base::DIR_MODULE, &media_module_path); CHECK(media::InitializeMediaLibrary(media_module_path)) << "Cannot load media library"; #if defined(TOOLKIT_USES_GTK) gfx::GtkInitFromCommandLine(*cmd_line); #endif // TOOLKIT_USES_GTK #if defined(OS_MACOSX) mock_cr_app::RegisterMockCrApp(); #endif // OS_MACOSX SimpleHost simple_host; if (cmd_line->HasSwitch(kConfigSwitchName)) { simple_host.set_config_path( cmd_line->GetSwitchValuePath(kConfigSwitchName)); } simple_host.set_fake(cmd_line->HasSwitch(kFakeSwitchName)); simple_host.set_me2mom(cmd_line->HasSwitch(kMe2MomSwitchName)); if (cmd_line->HasSwitch(kVideoSwitchName)) { string video_codec = cmd_line->GetSwitchValueASCII(kVideoSwitchName); scoped_ptr config( CandidateSessionConfig::CreateDefault()); config->mutable_video_configs()->clear(); ChannelConfig::TransportType transport = ChannelConfig::TRANSPORT_STREAM; ChannelConfig::Codec codec; if (video_codec == kVideoSwitchValueVerbatim) { codec = ChannelConfig::CODEC_VERBATIM; } else if (video_codec == kVideoSwitchValueZip) { codec = ChannelConfig::CODEC_ZIP; } else if (video_codec == kVideoSwitchValueVp8) { codec = ChannelConfig::CODEC_VP8; } else if (video_codec == kVideoSwitchValueVp8Rtp) { transport = ChannelConfig::TRANSPORT_SRTP; codec = ChannelConfig::CODEC_VP8; } else { LOG(ERROR) << "Unknown video codec: " << video_codec; return 1; } config->mutable_video_configs()->push_back(ChannelConfig( transport, remoting::protocol::kDefaultStreamVersion, codec)); simple_host.set_protocol_config(config.release()); } return simple_host.Run(); }