Merge pull request #1155 from arik-so/graph_sync_crate
[rust-lightning] / lightning / src / lib.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 #![crate_name = "lightning"]
11
12 //! Rust-Lightning, not Rusty's Lightning!
13 //!
14 //! A full-featured but also flexible lightning implementation, in library form. This allows the
15 //! user (you) to decide how they wish to use it instead of being a fully self-contained daemon.
16 //! This means there is no built-in threading/execution environment and it's up to the user to
17 //! figure out how best to make networking happen/timers fire/things get written to disk/keys get
18 //! generated/etc. This makes it a good candidate for tight integration into an existing wallet
19 //! instead of having a rather-separate lightning appendage to a wallet.
20 //! 
21 //! `default` features are:
22 //!
23 //! * `std` - enables functionalities which require `std`, including `std::io` trait implementations and things which utilize time
24 //! * `grind_signatures` - enables generation of [low-r bitcoin signatures](https://bitcoin.stackexchange.com/questions/111660/what-is-signature-grinding),
25 //! which saves 1 byte per signature in 50% of the cases (see [bitcoin PR #13666](https://github.com/bitcoin/bitcoin/pull/13666))
26 //!
27 //! Available features are:
28 //!
29 //! * `std`
30 //! * `grind_signatures`
31 //! * `no-std ` - exposes write trait implementations from the `core2` crate (at least one of `no-std` or `std` are required)
32 //! * Skip logging of messages at levels below the given log level:
33 //!     * `max_level_off`
34 //!     * `max_level_error`
35 //!     * `max_level_warn`
36 //!     * `max_level_info`
37 //!     * `max_level_debug`
38 //!     * `max_level_trace`
39
40 #![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), deny(missing_docs))]
41 #![cfg_attr(not(any(test, fuzzing, feature = "_test_utils")), forbid(unsafe_code))]
42 #![deny(broken_intra_doc_links)]
43
44 // In general, rust is absolutely horrid at supporting users doing things like,
45 // for example, compiling Rust code for real environments. Disable useless lints
46 // that don't do anything but annoy us and cant actually ever be resolved.
47 #![allow(bare_trait_objects)]
48 #![allow(ellipsis_inclusive_range_patterns)]
49
50 #![cfg_attr(docsrs, feature(doc_auto_cfg))]
51
52 #![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
53
54 #![cfg_attr(all(any(test, feature = "_test_utils"), feature = "_bench_unstable"), feature(test))]
55 #[cfg(all(any(test, feature = "_test_utils"), feature = "_bench_unstable"))] extern crate test;
56
57 #[cfg(not(any(feature = "std", feature = "no-std")))]
58 compile_error!("at least one of the `std` or `no-std` features must be enabled");
59
60 #[cfg(all(fuzzing, test))]
61 compile_error!("Tests will always fail with cfg=fuzzing");
62
63 #[macro_use]
64 extern crate alloc;
65 extern crate bitcoin;
66 #[cfg(any(test, feature = "std"))]
67 extern crate core;
68
69 #[cfg(any(test, feature = "_test_utils"))] extern crate hex;
70 #[cfg(any(test, fuzzing, feature = "_test_utils"))] extern crate regex;
71
72 #[cfg(not(feature = "std"))] extern crate core2;
73
74 #[macro_use]
75 pub mod util;
76 pub mod chain;
77 pub mod ln;
78 pub mod routing;
79
80 #[cfg(feature = "std")]
81 use std::io;
82 #[cfg(not(feature = "std"))]
83 use core2::io;
84
85 #[cfg(not(feature = "std"))]
86 mod io_extras {
87         use core2::io::{self, Read, Write};
88
89         /// A writer which will move data into the void.
90         pub struct Sink {
91                 _priv: (),
92         }
93
94         /// Creates an instance of a writer which will successfully consume all data.
95         pub const fn sink() -> Sink {
96                 Sink { _priv: () }
97         }
98
99         impl core2::io::Write for Sink {
100                 #[inline]
101                 fn write(&mut self, buf: &[u8]) -> core2::io::Result<usize> {
102                         Ok(buf.len())
103                 }
104
105                 #[inline]
106                 fn flush(&mut self) -> core2::io::Result<()> {
107                         Ok(())
108                 }
109         }
110
111         pub fn copy<R: ?Sized, W: ?Sized>(reader: &mut R, writer: &mut W) -> Result<u64, io::Error>
112                 where
113                 R: Read,
114                 W: Write,
115         {
116                 let mut count = 0;
117                 let mut buf = [0u8; 64];
118
119                 loop {
120                         match reader.read(&mut buf) {
121                                 Ok(0) => break,
122                                 Ok(n) => { writer.write_all(&buf[0..n])?; count += n as u64; },
123                                 Err(ref e) if e.kind() == io::ErrorKind::Interrupted => {},
124                                 Err(e) => return Err(e.into()),
125                         };
126                 }
127                 Ok(count)
128         }
129
130         pub fn read_to_end<D: io::Read>(mut d: D) -> Result<alloc::vec::Vec<u8>, io::Error> {
131                 let mut result = vec![];
132                 let mut buf = [0u8; 64];
133                 loop {
134                         match d.read(&mut buf) {
135                                 Ok(0) => break,
136                                 Ok(n) => result.extend_from_slice(&buf[0..n]),
137                                 Err(ref e) if e.kind() == io::ErrorKind::Interrupted => {},
138                                 Err(e) => return Err(e.into()),
139                         };
140                 }
141                 Ok(result)
142         }
143 }
144
145 #[cfg(feature = "std")]
146 mod io_extras {
147         pub fn read_to_end<D: ::std::io::Read>(mut d: D) -> Result<Vec<u8>, ::std::io::Error> {
148                 let mut buf = Vec::new();
149                 d.read_to_end(&mut buf)?;
150                 Ok(buf)
151         }
152
153         pub use std::io::{copy, sink};
154 }
155
156 mod prelude {
157         #[cfg(feature = "hashbrown")]
158         extern crate hashbrown;
159
160         pub use alloc::{vec, vec::Vec, string::String, collections::VecDeque, boxed::Box};
161         #[cfg(not(feature = "hashbrown"))]
162         pub use std::collections::{HashMap, HashSet, hash_map};
163         #[cfg(feature = "hashbrown")]
164         pub use self::hashbrown::{HashMap, HashSet, hash_map};
165
166         pub use alloc::borrow::ToOwned;
167         pub use alloc::string::ToString;
168 }
169
170 #[cfg(all(feature = "std", test))]
171 mod debug_sync;
172 #[cfg(all(feature = "backtrace", feature = "std", test))]
173 extern crate backtrace;
174
175 #[cfg(feature = "std")]
176 mod sync {
177         #[cfg(test)]
178         pub use debug_sync::*;
179         #[cfg(not(test))]
180         pub use ::std::sync::{Arc, Mutex, Condvar, MutexGuard, RwLock, RwLockReadGuard, RwLockWriteGuard};
181         #[cfg(not(test))]
182         pub use crate::util::fairrwlock::FairRwLock;
183 }
184
185 #[cfg(not(feature = "std"))]
186 mod sync;