2016-06-29 23:56:12 -04:00
|
|
|
// Copyright 2016 Joe Wilm, The Alacritty Project Contributors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2016-12-29 20:39:30 -05:00
|
|
|
use std::cmp;
|
|
|
|
|
2017-01-06 19:32:29 -05:00
|
|
|
#[cfg(not(feature = "nightly"))]
|
|
|
|
#[inline(always)]
|
2017-01-06 23:44:51 -05:00
|
|
|
#[cfg_attr(feature = "clippy", allow(inline_always))]
|
2017-01-06 19:32:29 -05:00
|
|
|
pub unsafe fn unlikely(x: bool) -> bool {
|
|
|
|
x
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "nightly")]
|
|
|
|
pub use ::std::intrinsics::unlikely;
|
|
|
|
|
2016-06-08 00:11:23 -04:00
|
|
|
/// Threading utilities
|
|
|
|
pub mod thread {
|
|
|
|
/// Like `thread::spawn`, but with a `name` argument
|
|
|
|
pub fn spawn_named<F, T, S>(name: S, f: F) -> ::std::thread::JoinHandle<T>
|
|
|
|
where F: FnOnce() -> T,
|
|
|
|
F: Send + 'static,
|
|
|
|
T: Send + 'static,
|
|
|
|
S: Into<String>
|
|
|
|
{
|
2016-12-17 01:48:04 -05:00
|
|
|
::std::thread::Builder::new()
|
|
|
|
.name(name.into())
|
|
|
|
.spawn(f)
|
|
|
|
.expect("thread spawn works")
|
2016-06-08 00:11:23 -04:00
|
|
|
}
|
2016-09-25 22:49:44 -04:00
|
|
|
|
|
|
|
pub use ::std::thread::*;
|
2016-06-08 00:11:23 -04:00
|
|
|
}
|
2016-12-29 20:39:30 -05:00
|
|
|
|
|
|
|
pub fn limit<T: Ord>(value: T, min: T, max: T) -> T {
|
|
|
|
cmp::min(cmp::max(value, min), max)
|
|
|
|
}
|
|
|
|
|
2017-01-01 22:09:27 -05:00
|
|
|
/// Utilities for writing to the
|
|
|
|
pub mod fmt {
|
|
|
|
use std::fmt;
|
|
|
|
|
2017-02-24 11:23:07 -05:00
|
|
|
macro_rules! define_colors {
|
|
|
|
($($(#[$attrs:meta])* pub struct $s:ident => $color:expr;)*) => {
|
|
|
|
$(
|
|
|
|
$(#[$attrs])*
|
|
|
|
pub struct $s<T>(pub T);
|
2017-01-01 22:09:27 -05:00
|
|
|
|
2017-02-24 11:23:07 -05:00
|
|
|
impl<T: fmt::Display> fmt::Display for $s<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "\x1b[{}m{}\x1b[0m", $color, self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: fmt::Debug> fmt::Debug for $s<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "\x1b[{}m{:?}\x1b[0m", $color, self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
2017-01-01 22:09:27 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 11:23:07 -05:00
|
|
|
define_colors! {
|
|
|
|
/// Write a `Display` or `Debug` escaped with Red
|
|
|
|
pub struct Red => "31";
|
|
|
|
|
|
|
|
/// Write a `Display` or `Debug` escaped with Yellow
|
|
|
|
pub struct Yellow => "33";
|
2017-01-01 22:09:27 -05:00
|
|
|
}
|
2017-04-03 23:21:55 -04:00
|
|
|
|
|
|
|
/// Write a `Display` or `Debug` escaped with Red
|
|
|
|
pub struct Green<T>(pub T);
|
|
|
|
|
|
|
|
impl<T: fmt::Display> fmt::Display for Green<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "\x1b[32m{}\x1b[0m", self.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: fmt::Debug> fmt::Debug for Green<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "\x1b[32m{:?}\x1b[0m", self.0)
|
|
|
|
}
|
|
|
|
}
|
2017-01-01 22:09:27 -05:00
|
|
|
}
|
|
|
|
|
2016-12-29 20:39:30 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::limit;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn limit_works() {
|
|
|
|
assert_eq!(10, limit(10, 0, 100));
|
|
|
|
assert_eq!(10, limit(5, 10, 100));
|
|
|
|
assert_eq!(100, limit(1000, 10, 100));
|
|
|
|
}
|
|
|
|
}
|