grin/util/src/lib.rs

110 lines
2.9 KiB
Rust
Raw Normal View History

// Copyright 2016 The Grin Developers
//
// 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.
//! Logging, as well as various low-level utilities that factor Rust
//! patterns that are frequent within the grin codebase.
#![deny(non_upper_case_globals)]
#![deny(non_camel_case_types)]
#![deny(non_snake_case)]
#![deny(unused_mut)]
#![warn(missing_docs)]
#[macro_use]
extern crate slog;
extern crate slog_async;
extern crate slog_term;
extern crate byteorder;
extern crate rand;
#[macro_use]
extern crate lazy_static;
extern crate serde;
#[macro_use]
extern crate serde_derive;
// Re-export so only has to be included once
pub extern crate secp256k1zkp as secp_;
pub use secp_ as secp;
// Logging related
pub mod logger;
pub use logger::{init_logger, init_test_logger, LOGGER};
// Static secp instance
pub mod secp_static;
pub use secp_static::static_secp_instance;
pub mod types;
pub use types::{LoggingConfig, LogLevel};
// other utils
use std::cell::{Ref, RefCell};
#[allow(unused_imports)]
use std::ops::Deref;
use byteorder::{BigEndian, ByteOrder};
mod hex;
pub use hex::*;
/// Encapsulation of a RefCell<Option<T>> for one-time initialization after
/// construction. This implementation will purposefully fail hard if not used
/// properly, for example if it's not initialized before being first used
/// (borrowed).
#[derive(Clone)]
pub struct OneTime<T> {
/// inner
2017-09-29 21:44:25 +03:00
inner: RefCell<Option<T>>,
}
unsafe impl<T> Sync for OneTime<T> {}
unsafe impl<T> Send for OneTime<T> {}
impl<T> OneTime<T> {
2017-09-29 21:44:25 +03:00
/// Builds a new uninitialized OneTime.
pub fn new() -> OneTime<T> {
OneTime {
inner: RefCell::new(None),
}
2017-09-29 21:44:25 +03:00
}
/// Initializes the OneTime, should only be called once after construction.
pub fn init(&self, value: T) {
let mut inner_mut = self.inner.borrow_mut();
*inner_mut = Some(value);
}
2017-10-17 16:56:47 +03:00
/// Whether the OneTime has been initialized
pub fn is_initialized(&self) -> bool {
match self.inner.try_borrow() {
Ok(inner) => inner.is_some(),
Err(_) => false,
}
}
2017-09-29 21:44:25 +03:00
/// Borrows the OneTime, should only be called after initialization.
pub fn borrow(&self) -> Ref<T> {
Ref::map(self.inner.borrow(), |o| o.as_ref().unwrap())
}
}
/// Construct msg bytes from tx fee and lock_height
pub fn kernel_sig_msg(fee: u64, lock_height: u64) -> [u8; 32] {
let mut bytes = [0; 32];
BigEndian::write_u64(&mut bytes[16..24], fee);
BigEndian::write_u64(&mut bytes[24..], lock_height);
bytes
}