blob: e438a252dfc7e045fd21639eef294fd7fb5af209 [file] [log] [blame]
// Copyright 2019 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.
#ifndef BASE_FUCHSIA_STARTUP_CONTEXT_H_
#define BASE_FUCHSIA_STARTUP_CONTEXT_H_
#include <fuchsia/sys/cpp/fidl.h>
#include <lib/sys/cpp/component_context.h>
#include <memory>
#include "base/base_export.h"
#include "base/fuchsia/service_directory.h"
#include "base/fuchsia/service_directory_client.h"
#include "base/macros.h"
namespace base {
namespace fuchsia {
// Helper for unpacking a fuchsia.sys.StartupInfo and creating convenience
// wrappers for the various fields (e.g. the incoming & outgoing service
// directories, resolve launch URL etc).
// Embedders may derived from StartupContext to e.g. add bound pointers to
// embedder-specific services, as required.
class BASE_EXPORT StartupContext {
public:
explicit StartupContext(::fuchsia::sys::StartupInfo startup_info);
virtual ~StartupContext();
// Returns the ComponentContext for the current component.
sys::ComponentContext* component_context() const {
return component_context_.get();
}
// Starts serving outgoing directory in the |component_context()|. Can be
// called at most once. All outgoing services should be published in
// |component_context()->outgoing()| before calling this function.
void ServeOutgoingDirectory();
// TODO(crbug.com/974072): ServiceDirectory and ServiceDirectoryClient are
// deprecated. Remove incoming_services() and public_services() once all
// clients have been migrated to sys::OutgoingDirectory and
// sys::ServiceDirectory.
ServiceDirectoryClient* incoming_services() const {
return service_directory_client_.get();
}
// Legacy ServiceDirectory instance. Also calls |ServeOutgoingDirectory()| if
// it hasn't been called yet, which means outgoing services should be bound
// immediately after the first call to this API.
ServiceDirectory* public_services();
private:
// TODO(https://crbug.com/933834): Remove these when we migrate to the new
// component manager APIs.
::fuchsia::sys::ServiceProviderPtr additional_services_;
std::unique_ptr<sys::OutgoingDirectory> additional_services_directory_;
std::unique_ptr<sys::ComponentContext> component_context_;
// Used to store outgoing directory until ServeOutgoingDirectory() is called.
zx::channel outgoing_directory_request_;
std::unique_ptr<ServiceDirectory> service_directory_;
std::unique_ptr<ServiceDirectoryClient> service_directory_client_;
DISALLOW_COPY_AND_ASSIGN(StartupContext);
};
} // namespace fuchsia
} // namespace base
#endif // BASE_FUCHSIA_STARTUP_CONTEXT_H_