blob: ab088571e47d973f55144c43ee063c37a7bfa4a6 [file] [log] [blame]
// Copyright 2016 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.
#include <lib/async-loop/cpp/loop.h>
#include <lib/zx/channel.h>
#include <fuchsia/ui/app/cpp/fidl.h>
#include <fuchsia/ui/policy/cpp/fidl.h>
#include <fuchsia/ui/viewsv1/cpp/fidl.h>
#include "lib/component/cpp/startup_context.h"
#include "lib/fxl/command_line.h"
#include "lib/fxl/log_settings_command_line.h"
#include "lib/fxl/logging.h"
#include "lib/svc/cpp/services.h"
int main(int argc, const char** argv) {
auto command_line = fxl::CommandLineFromArgcArgv(argc, argv);
if (!fxl::SetLogSettingsFromCommandLine(command_line))
return 1;
FXL_LOG(WARNING) << "BE ADVISED: The present_view tool takes the URL to an "
"app that provided the ViewProvider interface and makes "
"its view the root view.";
FXL_LOG(WARNING)
<< "This tool is intended for testing and debugging purposes "
"only and may cause problems if invoked incorrectly.";
FXL_LOG(WARNING)
<< "Do not invoke present_view if a view tree already exists "
"(i.e. if any process that creates a view is already "
"running).";
FXL_LOG(WARNING)
<< "If scenic is already running on your system you "
"will probably want to kill it before invoking this tool.";
const auto& positional_args = command_line.positional_args();
if (positional_args.empty()) {
FXL_LOG(ERROR)
<< "present_view requires the url of a view provider application "
"to present_view.";
return 1;
}
async::Loop loop(&kAsyncLoopConfigAttachToThread);
auto startup_context_ = component::StartupContext::CreateFromStartupInfo();
// Launch application.
component::Services services;
fuchsia::sys::LaunchInfo launch_info;
launch_info.url = positional_args[0];
for (size_t i = 1; i < positional_args.size(); ++i)
launch_info.arguments.push_back(positional_args[i]);
launch_info.directory_request = services.NewRequest();
fuchsia::sys::ComponentControllerPtr controller;
startup_context_->launcher()->CreateComponent(std::move(launch_info),
controller.NewRequest());
controller.set_error_handler([&loop] {
FXL_LOG(INFO) << "Launched application terminated.";
loop.Quit();
});
// Create the tokens.
zx::eventpair view_holder_token, view_token;
if (ZX_OK != zx::eventpair::create(0u, &view_holder_token, &view_token)) {
FXL_LOG(ERROR) << "present_view: failed to create tokens.";
return 1;
}
// Create the view.
fidl::InterfacePtr<::fuchsia::ui::app::ViewProvider> view_provider;
services.ConnectToService(view_provider.NewRequest());
view_provider->CreateView(std::move(view_token), nullptr, nullptr);
// Ask the presenter to display it.
auto presenter =
startup_context_
->ConnectToEnvironmentService<fuchsia::ui::policy::Presenter2>();
presenter->PresentView(std::move(view_holder_token), nullptr);
// Done!
loop.Run();
return 0;
}