rust/src/liballoc/lib.rs

181 lines
5.6 KiB
Rust
Raw Normal View History

2017-06-13 15:52:59 -07:00
//! # The Rust core allocation and collections library
//!
2017-06-13 15:52:59 -07:00
//! This library provides smart pointers and collections for managing
//! heap-allocated values.
//!
//! This library, like libcore, normally doesnt need to be used directly
//! since its contents are re-exported in the [`std` crate](../std/index.html).
//! Crates that use the `#![no_std]` attribute however will typically
//! not depend on `std`, so theyd use this crate instead.
//!
//! ## Boxed values
//!
2019-07-07 08:31:50 -07:00
//! The [`Box`] type is a smart pointer type. There can only be one owner of a
//! [`Box`], and the owner can decide to mutate the contents, which live on the
//! heap.
//!
//! This type can be sent among threads efficiently as the size of a `Box` value
2014-08-04 22:48:39 +12:00
//! is the same as that of a pointer. Tree-like data structures are often built
//! with boxes because each node often has only one owner, the parent.
//!
//! ## Reference counted pointers
//!
2019-07-07 08:31:50 -07:00
//! The [`Rc`] type is a non-threadsafe reference-counted pointer type intended
//! for sharing memory within a thread. An [`Rc`] pointer wraps a type, `T`, and
//! only allows access to `&T`, a shared reference.
//!
2019-07-07 08:31:50 -07:00
//! This type is useful when inherited mutability (such as using [`Box`]) is too
//! constraining for an application, and is often paired with the [`Cell`] or
//! [`RefCell`] types in order to allow mutation.
//!
//! ## Atomically reference counted pointers
//!
2019-07-07 08:31:50 -07:00
//! The [`Arc`] type is the threadsafe equivalent of the [`Rc`] type. It
//! provides all the same functionality of [`Rc`], except it requires that the
//! contained type `T` is shareable. Additionally, [`Arc<T>`][`Arc`] is itself
//! sendable while [`Rc<T>`][`Rc`] is not.
//!
2017-01-28 22:16:16 +00:00
//! This type allows for shared access to the contained data, and is often
//! paired with synchronization primitives such as mutexes to allow mutation of
//! shared resources.
//!
2017-06-13 15:52:59 -07:00
//! ## Collections
//!
//! Implementations of the most common general purpose data structures are
//! defined in this library. They are re-exported through the
2017-06-13 15:52:59 -07:00
//! [standard collections library](../std/collections/index.html).
//!
//! ## Heap interfaces
//!
//! The [`alloc`](alloc/index.html) module defines the low-level interface to the
//! default global allocator. It is not compatible with the libc allocator API.
2019-07-07 08:31:50 -07:00
//!
//! [`Arc`]: sync/index.html
//! [`Box`]: boxed/index.html
//! [`Cell`]: ../core/cell/index.html
//! [`Rc`]: rc/index.html
//! [`RefCell`]: ../core/cell/index.html
#![allow(unused_attributes)]
#![stable(feature = "alloc", since = "1.36.0")]
2019-12-22 17:42:04 -05:00
#![doc(
html_root_url = "https://doc.rust-lang.org/nightly/",
html_playground_url = "https://play.rust-lang.org/",
2019-12-22 17:42:04 -05:00
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
test(no_crate_inject, attr(allow(unused_variables), deny(warnings)))
)]
#![no_std]
#![needs_allocator]
2018-12-21 11:22:18 +01:00
#![warn(deprecated_in_future)]
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
#![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings
2019-04-14 10:16:23 +02:00
#![allow(explicit_outlives_requirements)]
2019-08-11 12:55:14 -04:00
#![allow(incomplete_features)]
2017-07-07 15:31:03 -07:00
#![cfg_attr(not(test), feature(generator_trait))]
2018-07-25 14:27:27 +01:00
#![cfg_attr(test, feature(test))]
#![feature(allocator_api)]
2017-06-13 15:52:59 -07:00
#![feature(allow_internal_unstable)]
2018-06-08 16:45:27 -04:00
#![feature(arbitrary_self_types)]
#![feature(box_into_raw_non_null)]
2017-06-13 15:52:59 -07:00
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(cfg_sanitize)]
#![feature(cfg_target_has_atomic)]
#![feature(coerce_unsized)]
#![feature(const_generic_impls_guard)]
#![feature(const_generics)]
2019-08-11 12:55:14 -04:00
#![feature(const_in_array_repeat_expressions)]
2019-12-18 12:04:47 -06:00
#![feature(const_if_match)]
2019-10-05 18:23:37 -04:00
#![feature(cow_is_borrowed)]
#![feature(dispatch_from_dyn)]
#![feature(core_intrinsics)]
#![feature(container_error_extra)]
#![feature(dropck_eyepatch)]
2017-06-13 15:52:59 -07:00
#![feature(exact_size_is_empty)]
#![feature(fmt_internals)]
#![feature(fn_traits)]
#![feature(fundamental)]
#![feature(internal_uninit_const)]
2015-04-27 14:10:49 -07:00
#![feature(lang_items)]
#![feature(libc)]
#![cfg_attr(not(bootstrap), feature(negative_impls))]
#![feature(nll)]
2015-01-11 11:09:53 +01:00
#![feature(optin_builtin_traits)]
2017-06-13 15:52:59 -07:00
#![feature(pattern)]
#![feature(ptr_internals)]
#![feature(ptr_offset_from)]
#![feature(rustc_attrs)]
#![feature(receiver_trait)]
2017-06-13 15:52:59 -07:00
#![feature(specialization)]
#![feature(staged_api)]
#![feature(std_internals)]
2017-06-13 15:52:59 -07:00
#![feature(str_internals)]
#![feature(trusted_len)]
#![feature(try_reserve)]
#![feature(unboxed_closures)]
#![feature(unicode_internals)]
#![feature(unsize)]
2018-10-28 15:28:15 +09:00
#![feature(unsized_locals)]
#![feature(allocator_internals)]
#![feature(slice_partition_dedup)]
2019-08-11 12:55:14 -04:00
#![feature(maybe_uninit_extra, maybe_uninit_slice)]
#![feature(alloc_layout_extra)]
2019-01-29 16:15:02 +01:00
#![feature(try_trait)]
#![feature(associated_type_bounds)]
// Allow testing this library
2015-09-24 10:00:54 +12:00
#[cfg(test)]
#[macro_use]
extern crate std;
2017-06-13 15:52:59 -07:00
#[cfg(test)]
extern crate test;
2016-10-15 16:32:14 +01:00
// Module with internal macros used by other modules (needs to be included before other modules).
#[macro_use]
mod macros;
// Heaps provided for low-level allocation strategies
pub mod alloc;
// Primitive types using the heaps above
// Need to conditionally define the mod from `boxed.rs` to avoid
// duplicating the lang-items when building in test cfg; but also need
// to allow code to have `use boxed::Box;` declarations.
#[cfg(not(test))]
pub mod boxed;
#[cfg(test)]
2015-09-24 10:00:54 +12:00
mod boxed {
pub use std::boxed::Box;
2015-09-24 10:00:54 +12:00
}
2017-06-13 15:52:59 -07:00
pub mod borrow;
2019-12-22 17:42:04 -05:00
pub mod collections;
2017-06-13 15:52:59 -07:00
pub mod fmt;
2019-12-22 17:42:04 -05:00
pub mod prelude;
pub mod raw_vec;
pub mod rc;
2017-06-13 15:52:59 -07:00
pub mod slice;
pub mod str;
pub mod string;
2019-12-22 17:42:04 -05:00
#[cfg(target_has_atomic = "ptr")]
pub mod sync;
2020-02-02 16:51:54 +01:00
#[cfg(target_has_atomic = "ptr")]
Add Wake trait for safe construction of Wakers. Currently, constructing a waker requires calling the unsafe `Waker::from_raw` API. This API requires the user to manually construct a vtable for the waker themself - which is both cumbersome and very error prone. This API would provide an ergonomic, straightforward and guaranteed memory-safe way of constructing a waker. It has been our longstanding intention that the `Waker` type essentially function as an `Arc<dyn Wake>`, with a `Wake` trait as defined here. Two considerations prevented the original API from being shipped as simply an `Arc<dyn Wake>`: - We want to support futures on embedded systems, which may not have an allocator, and in optimized executors for which this API may not be best-suited. Therefore, we have always explicitly supported the maximally-flexible (but also memory-unsafe) `RawWaker` API, and `Waker` has always lived in libcore. - Because `Waker` lives in libcore and `Arc` lives in liballoc, it has not been feasible to provide a constructor for `Waker` from `Arc<dyn Wake>`. Therefore, the Wake trait was left out of the initial version of the task waker API. However, as Rust 1.41, it is possible under the more flexible orphan rules to implement `From<Arc<W>> for Waker where W: Wake` in liballoc. Therefore, we can now define this constructor even though `Waker` lives in libcore. This PR adds these APIs: - A `Wake` trait, which contains two methods - A required method `wake`, which is called by `Waker::wake` - A provided method `wake_by_ref`, which is called by `Waker::wake_by_ref` and which implementors can override if they can optimize this use case. - An implementation of `From<Arc<W>> for Waker where W: Wake + Send + Sync + 'static` - A similar implementation of `From<Arc<W>> for RawWaker`.
2020-01-31 14:26:24 +01:00
pub mod task;
2019-12-22 17:42:04 -05:00
#[cfg(test)]
mod tests;
2017-06-13 15:52:59 -07:00
pub mod vec;
#[cfg(not(test))]
mod std {
pub use core::ops; // RangeFull
2017-06-13 15:52:59 -07:00
}
2019-09-01 14:10:50 +03:00
#[doc(hidden)]
#[unstable(feature = "liballoc_internals", issue = "none", reason = "implementation detail")]
2019-09-01 14:10:50 +03:00
pub mod __export {
pub use core::format_args;
}