blob: c1fb9bc8f42ab8b4361620aedbbb0815c740b57f [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/component/cpp/outgoing.h"
#include <lib/async/default.h>
#include <lib/fdio/util.h>
#include <zircon/process.h>
#include <zircon/processargs.h>
namespace component {
Outgoing::Outgoing()
: vfs_(async_get_default_dispatcher()),
root_dir_(fbl::AdoptRef(new fs::PseudoDir())),
public_dir_(fbl::AdoptRef(new fs::PseudoDir())),
debug_dir_(fbl::AdoptRef(new fs::PseudoDir())),
ctrl_dir_(fbl::AdoptRef(new fs::PseudoDir())),
deprecated_outgoing_services_(public_dir_) {
root_dir_->AddEntry("public", public_dir_);
root_dir_->AddEntry("debug", debug_dir_);
root_dir_->AddEntry("ctrl", ctrl_dir_);
auto objects = fbl::MakeRefCounted<Object>("objects");
object_dir_ = std::make_unique<ObjectDir>(objects);
root_dir_->AddEntry("objects", objects);
}
Outgoing::~Outgoing() = default;
zx_status_t Outgoing::Serve(zx::channel dir_request) {
if (!dir_request)
return ZX_ERR_BAD_HANDLE;
return vfs_.ServeDirectory(root_dir_, std::move(dir_request));
}
zx_status_t Outgoing::ServeFromStartupInfo() {
zx_handle_t dir_request = zx_take_startup_handle(PA_DIRECTORY_REQUEST);
return Serve(zx::channel(dir_request));
}
} // namespace component