blob: a04790008fce99c80a146a1fd3ef33caf676bf9b [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.
#ifndef LIB_ZX_JOB_H_
#define LIB_ZX_JOB_H_
#include <lib/zx/process.h>
#include <lib/zx/task.h>
#include <zircon/availability.h>
namespace zx {
class process;
class job final : public task<job> {
public:
static constexpr zx_obj_type_t TYPE = ZX_OBJ_TYPE_JOB;
constexpr job() = default;
explicit job(zx_handle_t value) : task(value) {}
explicit job(handle&& h) : task(h.release()) {}
job(job&& other) : task(other.release()) {}
job& operator=(job&& other) {
reset(other.release());
return *this;
}
static zx_status_t create(const zx::job& parent, uint32_t options, job* result)
ZX_AVAILABLE_SINCE(7);
// Provide strongly-typed overloads, in addition to get_child(handle*).
using task<job>::get_child;
zx_status_t get_child(uint64_t koid, zx_rights_t rights, job* result) const
ZX_AVAILABLE_SINCE(7) {
// Allow for |result| and |this| aliasing the same container.
job h;
zx_status_t status = zx_object_get_child(value_, koid, rights, h.reset_and_get_address());
result->reset(h.release());
return status;
}
zx_status_t get_child(uint64_t koid, zx_rights_t rights, process* result) const
ZX_AVAILABLE_SINCE(7);
zx_status_t set_policy(uint32_t options, uint32_t topic, const void* policy, uint32_t count) const
ZX_AVAILABLE_SINCE(7) {
return zx_job_set_policy(get(), options, topic, policy, count);
}
zx_status_t set_critical(uint32_t options, const zx::process& process) const
ZX_AVAILABLE_SINCE(7) {
return zx_job_set_critical(get(), options, process.get());
}
// Ideally this would be called zx::job::default(), but default is a
// C++ keyword and cannot be used as a function name.
static inline unowned<job> default_job() ZX_AVAILABLE_SINCE(7) {
return unowned<job>(zx_job_default());
}
} ZX_AVAILABLE_SINCE(7);
using unowned_job = unowned<job> ZX_AVAILABLE_SINCE(7);
} // namespace zx
#endif // LIB_ZX_JOB_H_