1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457
//! [](https://docs.rs/async-injector) //! [](https://crates.io/crates/async-injector) //! [](https://github.com/udoprog/async-injector/actions) //! //! Asynchronous reactive dependency injection for Rust. //! //! This crate provides a reactive dependency injection system that can //! reconfigure your application dynamically from changes in dependencies. //! //! It allows for subscribing to changes in application configuration keys using //! asynchronous streams, like this: //! //! ```rust //! use async_injector::Injector; //! use tokio::{stream::StreamExt as _, time}; //! use std::error::Error; //! //! #[derive(Clone)] //! struct Database; //! //! #[tokio::main] //! async fn main() { //! let injector = Injector::new(); //! let (mut database_stream, mut database) = injector.stream::<Database>().await; //! //! // Insert the database dependency in a different task in the background. //! tokio::spawn({ //! let injector = injector.clone(); //! //! async move { //! time::sleep(time::Duration::from_secs(2)); //! injector.update(Database).await; //! } //! }); //! //! assert!(database.is_none()); //! //! // Every update to the stored type will be streamed, allowing you to //! // react to it. //! if let Some(update) = database_stream.next().await { //! database = update; //! } //! //! assert!(database.is_some()); //! } //! ``` //! //! With a bit of glue, this means that your application can be reconfigured //! without restarting it. Providing a richer user experience. //! //! ## Example using `Key` //! //! The following showcases how the injector can be shared across threads, and //! how you can distinguish between different keys of the same type (`u32`) //! using a tag (`Tag`). //! //! The tag used must be serializable with [`serde`]. It must also not use any //! components which [cannot be hashed], like `f32` and `f64` (this will cause //! an error to be raised). //! //! [`serde`]: https://serde.rs //! [cannot be hashed]: https://internals.rust-lang.org/t/f32-f64-should-implement-hash/5436 //! //! ```rust,no_run //! use async_injector::{Key, Injector}; //! use serde::Serialize; //! use std::{error::Error, time::Duration}; //! use tokio::{stream::StreamExt as _, time}; //! //! #[derive(Serialize)] //! enum Tag { //! One, //! Two, //! } //! //! #[tokio::main] //! async fn main() -> Result<(), Box<dyn Error>> { //! let injector = Injector::new(); //! let one = Key::<u32>::tagged(Tag::One)?; //! let two = Key::<u32>::tagged(Tag::Two)?; //! //! tokio::spawn({ //! let injector = injector.clone(); //! let one = one.clone(); //! //! async move { //! let mut interval = time::interval(Duration::from_secs(1)); //! //! for i in 0u32.. { //! interval.tick().await; //! injector.update_key(&one, i).await; //! } //! } //! }); //! //! tokio::spawn({ //! let injector = injector.clone(); //! let two = two.clone(); //! //! async move { //! let mut interval = time::interval(Duration::from_secs(1)); //! //! for i in 0u32.. { //! interval.tick().await; //! injector.update_key(&two, i * 2).await; //! } //! } //! }); //! //! let (mut one_stream, mut one) = injector.stream_key(one).await; //! let (mut two_stream, mut two) = injector.stream_key(two).await; //! //! println!("one: {:?}", one); //! println!("two: {:?}", two); //! //! loop { //! tokio::select! { //! Some(update) = one_stream.next() => { //! one = update; //! println!("one: {:?}", one); //! } //! Some(update) = two_stream.next() => { //! two = update; //! println!("two: {:?}", two); //! } //! } //! } //! } //! ``` //! //! # Example using Provider //! //! The following is an example application that receives configuration changes //! over HTTP. //! //! ```rust,compile_fail //! use anyhow::Error; //! use async_injector::{Provider, Injector, Key, async_trait}; //! use serde::Serialize; //! //! #[derive(Serialize)] //! pub enum Tag { //! DatabaseUrl, //! ConnectionLimit, //! } //! //! /// Provider that describes how to construct a database. //! #[derive(Provider)] //! #[provider(build = "DatabaseProvider::build", output = "Database")] //! struct DatabaseProvider { //! #[dependency(tag = "Tag::DatabaseUrl")] //! url: String, //! #[dependency(tag = "Tag::DatabaseUrl")] //! connection_limit: u32, //! } //! //! impl DatabaseProvider { //! /// Constructor a new database and supply it to the injector. //! async fn build(self) -> Option<Database> { //! match Database::connect(&self.url, self.connection_limit).await { //! Ok(database) => Some(database), //! Err(e) => { //! log::warn!("failed to connect to database: {}: {}", self.url, e); //! None //! } //! } //! } //! } //! //! /// A fake webserver handler. //! /// //! /// Note: there's no real HTTP framework that looks like this. This is just an //! /// example. //! async fn serve(injector: &Injector) -> Result<(), Error> { //! let server = Server::new()?; //! //! // Fake endpoint to set the database URL. //! server.on("POST", "/config/database/url", |url: String| { //! injector.update_key(Key::tagged(Tag::DatabaseUrl)?, url); //! }); //! //! // Fake endpoint to set the database connection limit. //! server.on("POST", "/config/database/connection-limit", |limit: u32| { //! injector.update_key(Key::tagged(Tag::ConnectionLimit)?, limit); //! }); //! //! // Listen for requests. //! server.await?; //! Ok(()) //! } //! //! #[tokio::main] //! async fn main() -> Result<(), Error> { //! let injector = Injector::new(); //! //! /// Setup database provider. //! tokio::spawn({ //! let injector = injector.clone(); //! //! async move { //! DatabaseProvider::run(&injector).await; //! } //! }); //! //! tokio::spawn({ //! let injector = injector.clone(); //! //! async move { //! serve(&injector).await.expect("web server errored"); //! } //! }); //! //! let (database_stream, database) = injector.stream::<Database>().await; //! //! let application = Application::new(database); //! //! loop { //! tokio::select! { //! // receive new databases when available. //! database = database_stream.next() => { //! application.database = database; //! }, //! // run the application to completion. //! _ = &mut application => { //! log::info!("application finished"); //! }, //! } //! } //! } //! ``` #![deny(missing_docs)] use hashbrown::HashMap; use serde_hashkey as hashkey; use std::any::{Any, TypeId}; use std::cmp; use std::error; use std::fmt; use std::future::Future; use std::hash; use std::marker; use std::mem; use std::pin::Pin; use std::ptr; use std::sync::Arc; use std::task::{Context, Poll}; use tokio::sync::{broadcast, mpsc, Mutex, RwLock, RwLockReadGuard, RwLockWriteGuard}; /// Internal type alias for the stream used to receive value updates. type ValueStream = dyn ::futures_util::stream::Stream<Item = Result<Option<Value>, broadcast::error::RecvError>> + Send + Sync; /// re-exports for the Provider derive. #[doc(hidden)] pub mod derive { pub use tokio::{select, stream::StreamExt}; } #[macro_use] #[allow(unused_imports)] extern crate async_injector_derive; #[doc(hidden)] pub use self::async_injector_derive::*; /// Errors that can be raised by various functions in the [`Injector`]. /// /// [`Injector`]: Injector #[derive(Debug)] pub enum Error { /// Failed to perform work due to injector shutting down. Shutdown, /// Unexpected end of driver stream. EndOfDriverStream, /// Driver already configured. DriverAlreadyConfigured, /// Error when serializing key. SerializationError(hashkey::Error), } impl fmt::Display for Error { fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { match *self { Self::Shutdown => "injector is shutting down".fmt(fmt), Self::EndOfDriverStream => "end of driver stream".fmt(fmt), Self::DriverAlreadyConfigured => "driver already configured".fmt(fmt), Self::SerializationError(..) => "serialization error".fmt(fmt), } } } impl error::Error for Error { fn source(&self) -> Option<&(dyn error::Error + 'static)> { match self { Self::SerializationError(e) => Some(e), _ => None, } } } impl From<hashkey::Error> for Error { fn from(value: hashkey::Error) -> Self { Error::SerializationError(value) } } /// A stream of updates for values injected into this injector. pub struct Stream<T> { rxs: ::futures_util::stream::SelectAll<Pin<Box<ValueStream>>>, marker: marker::PhantomData<T>, } impl<T> tokio::stream::Stream for Stream<T> { type Item = Option<T>; fn poll_next(self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> { let mut rxs = unsafe { Pin::map_unchecked_mut(self, |s| &mut s.rxs) }; let value = loop { let value = match rxs.as_mut().poll_next(cx) { Poll::Ready(value) => value, Poll::Pending => return Poll::Pending, }; let value = match value { Some(value) => value, _ => return Poll::Ready(None), }; match value { Ok(value) => break value, // NB: need to poll again. Err(broadcast::error::RecvError::Lagged { .. }) => continue, _ => return Poll::Ready(None), }; }; let value = match value { Some(value) => value, _ => return Poll::Ready(Some(None)), }; // Safety: The expected type parameter is encoded and maintained in the // Stream<T> type. Poll::Ready(Some(Some(unsafe { value.downcast::<T>() }))) } } impl<T> ::futures_util::stream::FusedStream for Stream<T> { fn is_terminated(&self) -> bool { self.rxs.is_terminated() } } /// An opaque value holder, similar to Any, but can be cloned and relies /// entirely on external type information. struct Value { data: *const (), // clone function, to use when cloning the value. value_clone_fn: unsafe fn(*const ()) -> *const (), // drop function, to use when dropping the value. value_drop_fn: unsafe fn(*const ()), } impl Clone for Value { fn clone(&self) -> Self { let data = unsafe { (self.value_clone_fn)(self.data as *const _) }; Self { data, value_clone_fn: self.value_clone_fn, value_drop_fn: self.value_drop_fn, } } } impl Drop for Value { fn drop(&mut self) { unsafe { (self.value_drop_fn)(self.data); } } } impl Value { /// Construct a new opaque value. pub(crate) fn new<T>(data: T) -> Self where T: 'static + Clone + Send + Sync, { return Self { data: Box::into_raw(Box::new(data)) as *const (), value_clone_fn: value_clone_fn::<T>, value_drop_fn: value_drop_fn::<T>, }; /// Clone implementation for a given value. unsafe fn value_clone_fn<T>(data: *const ()) -> *const () where T: Clone, { let data = T::clone(&*(data as *const _)); Box::into_raw(Box::new(data)) as *const () } /// Drop implementation for a given value. unsafe fn value_drop_fn<T>(value: *const ()) { ptr::drop_in_place(value as *mut () as *mut T) } } /// Downcast the given value reference. /// /// # Safety /// /// Assumes that we know the type of the underlying value. pub(crate) unsafe fn downcast_ref<T>(&self) -> &T { &*(self.data as *const T) } /// Downcast the given value to a mutable reference. /// /// # Safety /// /// Assumes that we know the type of the underlying value. pub(crate) unsafe fn downcast_mut<T>(&mut self) -> &mut T { &mut *(self.data as *const T as *mut T) } /// Downcast the given value. /// /// # Safety /// /// Assumes that we know the correct, underlying type of the value. pub(crate) unsafe fn downcast<T>(self) -> T { let value = Box::from_raw(self.data as *const T as *mut T); mem::forget(self); *value } } /// Safety: Send + Sync bound is enforced in all constructors of `Value`. unsafe impl Send for Value {} unsafe impl Sync for Value {} struct Storage { value: Option<Value>, tx: broadcast::Sender<Option<Value>>, count: usize, } impl Default for Storage { fn default() -> Self { let (tx, _) = broadcast::channel(1); Self { value: None, tx, count: 0, } } } struct Inner { storage: RwLock<HashMap<RawKey, Storage>>, /// Channel where new drivers are sent. drivers: mpsc::UnboundedSender<Driver>, /// Receiver for drivers. Used by the run function. drivers_rx: Mutex<Option<mpsc::UnboundedReceiver<Driver>>>, /// Parent injector for the current injector. parent: Option<Injector>, } /// Use for handling injection. #[derive(Clone)] pub struct Injector { inner: Arc<Inner>, } impl Default for Injector { fn default() -> Self { Injector::new() } } impl Injector { /// Create a new injector instance. pub fn new() -> Self { let (drivers, drivers_rx) = mpsc::unbounded_channel(); Self { inner: Arc::new(Inner { storage: Default::default(), drivers, drivers_rx: Mutex::new(Some(drivers_rx)), parent: None, }), } } /// Construct a new child injector. /// /// When a child injector is dropped, all associated listeners are cleaned /// up as well. pub fn child(&self) -> Injector { Self { inner: Arc::new(Inner { storage: Default::default(), drivers: self.inner.drivers.clone(), drivers_rx: Mutex::new(None), parent: Some(self.clone()), }), } } /// Get a value from the injector. /// /// This will cause the clear to be propagated to all streams set up using /// [`stream`]. And for future calls to [`get`] to return the updated value. /// /// [`stream`]: Injector::stream /// [`get`]: Injector::get /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// /// #[tokio::main] /// async fn main() { /// let injector = Injector::new(); /// /// assert_eq!(None, injector.get::<u32>().await); /// injector.update(1u32).await; /// assert_eq!(Some(1u32), injector.get::<u32>().await); /// assert!(injector.clear::<u32>().await.is_some()); /// assert_eq!(None, injector.get::<u32>().await); /// } /// ``` pub async fn clear<T>(&self) -> Option<T> where T: Clone + Any + Send + Sync, { self.clear_key(Key::<T>::of()).await } /// Clear the given value with the given key. /// /// This will cause the clear to be propagated to all streams set up using /// [`stream`]. And for future calls to [`get`] to return the updated value. /// /// [`stream`]: Injector::stream /// [`get`]: Injector::get /// /// # Examples /// /// ```rust /// use async_injector::{Key, Injector}; /// use std::error::Error; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// let k = Key::<u32>::tagged("foo")?; /// /// assert_eq!(None, injector.get_key(&k).await); /// injector.update_key(&k, 1u32).await; /// assert_eq!(Some(1u32), injector.get_key(&k).await); /// assert!(injector.clear_key(&k).await.is_some()); /// assert_eq!(None, injector.get_key(&k).await); /// /// Ok(()) /// } /// ``` pub async fn clear_key<T>(&self, key: impl AsRef<Key<T>>) -> Option<T> where T: Clone + Any + Send + Sync, { let key = key.as_ref().as_raw_key(); let mut storage = self.inner.storage.write().await; let storage = storage.get_mut(key)?; let value = storage.value.take()?; let _ = storage.tx.send(None); Some(unsafe { value.downcast() }) } /// Set the given value and notify any subscribers. /// /// This will cause the update to be propagated to all streams set up using /// [`stream`]. And for future calls to [`get`] to return the updated value. /// /// [`stream`]: Injector::stream /// [`get`]: Injector::get /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// /// #[tokio::main] /// async fn main() { /// let injector = Injector::new(); /// /// assert_eq!(None, injector.get::<u32>().await); /// injector.update(1u32).await; /// assert_eq!(Some(1u32), injector.get::<u32>().await); /// } /// ``` pub async fn update<T>(&self, value: T) -> Option<T> where T: Clone + Any + Send + Sync, { self.update_key(Key::<T>::of(), value).await } /// Update the value associated with the given key. /// /// This will cause the update to be propagated to all streams set up using /// [`stream`]. And for future calls to [`get`] to return the updated value. /// /// [`stream`]: Injector::stream /// [`get`]: Injector::get /// /// # Examples /// /// ```rust /// use async_injector::{Key, Injector}; /// use std::error::Error; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// let k = Key::<u32>::tagged("foo")?; /// /// assert_eq!(None, injector.get_key(&k).await); /// injector.update_key(&k, 1u32).await; /// assert_eq!(Some(1u32), injector.get_key(&k).await); /// /// Ok(()) /// } /// ``` pub async fn update_key<T>(&self, key: impl AsRef<Key<T>>, value: T) -> Option<T> where T: Clone + Any + Send + Sync, { let key = key.as_ref().as_raw_key(); let value = Value::new(T::from(value)); let mut storage = self.inner.storage.write().await; let storage = storage.entry(key.clone()).or_default(); let _ = storage.tx.send(Some(value.clone())); let old = storage.value.replace(value)?; Some(unsafe { old.downcast() }) } /// Test if a given value exists by type. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// /// #[tokio::main] /// async fn main() { /// let injector = Injector::new(); /// /// assert_eq!(false, injector.exists::<u32>().await); /// injector.update(1u32).await; /// assert_eq!(true, injector.exists::<u32>().await); /// } /// ``` pub async fn exists<T>(&self) -> bool where T: Clone + Any + Send + Sync, { self.exists_key(&Key::<T>::of()).await } /// Test if a given value exists by key. /// /// # Examples /// /// ```rust /// use async_injector::{Key, Injector}; /// use std::error::Error; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// let k = Key::<u32>::tagged("foo")?; /// /// assert_eq!(false, injector.exists_key(&k).await); /// injector.update_key(&k, 1u32).await; /// assert_eq!(true, injector.exists_key(&k).await); /// /// Ok(()) /// } /// ``` pub async fn exists_key<T>(&self, key: impl AsRef<Key<T>>) -> bool where T: Clone + Any + Send + Sync, { let key = key.as_ref().as_raw_key(); for c in self.chain() { let storage = c.inner.storage.read().await; if let Some(true) = storage.get(key).map(|s| s.value.is_some()) { return true; } } false } /// Mutate the given value by type. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// /// #[tokio::main] /// async fn main() { /// let injector = Injector::new(); /// /// injector.update(1u32).await; /// /// let old = injector.mutate(|value: &mut u32| { /// let old = *value; /// *value += 1; /// old /// }).await; /// /// assert_eq!(Some(1u32), old); /// } /// ``` pub async fn mutate<T, M, R>(&self, mutator: M) -> Option<R> where T: Clone + Any + Send + Sync, M: FnMut(&mut T) -> R, { self.mutate_key(&Key::<T>::of(), mutator).await } /// Mutate the given value by key. /// /// # Examples /// /// ```rust /// use async_injector::{Key, Injector}; /// use std::error::Error; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// let k = Key::<u32>::tagged("foo")?; /// /// injector.update_key(&k, 1u32).await; /// /// let old = injector.mutate_key(&k, |value| { /// let old = *value; /// *value += 1; /// old /// }).await; /// /// assert_eq!(Some(1u32), old); /// Ok(()) /// } /// ``` pub async fn mutate_key<T, M, R>(&self, key: impl AsRef<Key<T>>, mut mutator: M) -> Option<R> where T: Clone + Any + Send + Sync, M: FnMut(&mut T) -> R, { let key = key.as_ref().as_raw_key(); for c in self.chain() { let mut storage = c.inner.storage.write().await; if let Some(storage) = storage.get_mut(key) { if let Some(value) = &mut storage.value { let output = mutator(unsafe { value.downcast_mut() }); let value = value.clone(); let _ = storage.tx.send(Some(value)); return Some(output); } } } None } /// Get a value from the injector. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// /// #[tokio::main] /// async fn main() { /// let injector = Injector::new(); /// /// assert_eq!(None, injector.get::<u32>().await); /// injector.update(1u32).await; /// assert_eq!(Some(1u32), injector.get::<u32>().await); /// } /// ``` pub async fn get<T>(&self) -> Option<T> where T: Clone + Any + Send + Sync, { self.get_key(&Key::<T>::of()).await } /// Get a value from the injector with the given key. /// /// # Examples /// /// ```rust /// use async_injector::{Injector, Key}; /// use std::error::Error; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let k1 = Key::<u32>::tagged("foo")?; /// let k2 = Key::<u32>::tagged("bar")?; /// /// let injector = Injector::new(); /// /// assert_eq!(None, injector.get_key(&k1).await); /// assert_eq!(None, injector.get_key(&k2).await); /// /// injector.update_key(&k1, 1u32).await; /// /// assert_eq!(Some(1u32), injector.get_key(&k1).await); /// assert_eq!(None, injector.get_key(&k2).await); /// /// Ok(()) /// } /// ``` pub async fn get_key<T>(&self, key: impl AsRef<Key<T>>) -> Option<T> where T: Clone + Any + Send + Sync, { let key = key.as_ref().as_raw_key(); for c in self.chain() { let storage = c.inner.storage.read().await; if let Some(value) = storage.get(key).and_then(|s| s.value.as_ref()) { // Safety: The expected type parameter is encoded and // maintained in the Stream type. return Some(unsafe { value.downcast_ref::<T>().clone() }); } } None } /// Get an existing value and setup a stream for updates at the same time. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// use tokio::stream::StreamExt as _; /// use std::error::Error; /// /// #[derive(Clone)] /// struct Database; /// /// #[tokio::main] /// async fn main() { /// let injector = Injector::new(); /// let (mut database_stream, mut database) = injector.stream::<Database>().await; /// /// // Update the key somewhere else. /// tokio::spawn({ /// let injector = injector.clone(); /// /// async move { /// injector.update(Database).await; /// } /// }); /// /// loop { /// tokio::select! { /// Some(update) = database_stream.next() => { /// database = update; /// break; /// } /// } /// } /// } /// ``` pub async fn stream<T>(&self) -> (Stream<T>, Option<T>) where T: Clone + Any + Send + Sync, { self.stream_key(Key::<T>::of()).await } /// Get an existing value and setup a stream for updates at the same time. /// /// # Examples /// /// ```rust /// use async_injector::{Injector, Key}; /// use tokio::stream::StreamExt as _; /// use std::error::Error; /// /// #[derive(Clone)] /// struct Database; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// let db = Key::<Database>::tagged("foo")?; /// let (mut database_stream, mut database) = injector.stream_key(&db).await; /// /// // Update the key somewhere else. /// tokio::spawn({ /// let db = db.clone(); /// let injector = injector.clone(); /// /// async move { /// injector.update_key(&db, Database).await; /// } /// }); /// /// loop { /// tokio::select! { /// Some(update) = database_stream.next() => { /// database = update; /// break; /// } /// } /// } /// /// Ok(()) /// } /// ``` pub async fn stream_key<T>(&self, key: impl AsRef<Key<T>>) -> (Stream<T>, Option<T>) where T: Clone + Any + Send + Sync, { let key = key.as_ref().as_raw_key(); let mut rxs = ::futures_util::stream::SelectAll::new(); let mut value = None; for c in self.chain() { let mut storage = c.inner.storage.write().await; let storage = storage.entry(key.clone()).or_default(); let rx = storage.tx.subscribe(); storage.count += 1; rxs.push(Box::pin(rx.into_stream()) as Pin<Box<ValueStream>>); value = value.or_else(|| match &storage.value { Some(value) => { // Safety: The expected type parameter is encoded and // maintained in the Stream type. Some(unsafe { value.downcast_ref::<T>().clone() }) } None => None, }); } let stream = Stream { rxs, marker: marker::PhantomData, }; (stream, value) } /// Get a synchronized variable for the given configuration key. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// use tokio::stream::StreamExt as _; /// use std::error::Error; /// /// #[derive(Clone)] /// struct Database; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// /// // Drive variable updates. /// tokio::spawn({ /// let injector = injector.clone(); /// /// async move { /// injector.drive().await.expect("injector driver failed"); /// } /// }); /// /// let database = injector.var::<Database>().await?; /// /// assert!(database.read().await.is_none()); /// injector.update(Database).await; /// /// /// Variable updated in the background by the driver. /// while database.read().await.is_none() { /// } /// /// assert!(database.read().await.is_some()); /// Ok(()) /// } /// ``` pub async fn var<T>(&self) -> Result<Var<Option<T>>, Error> where T: Clone + Any + Send + Sync + Unpin, { self.var_key(&Key::<T>::of()).await } /// Get a synchronized variable for the given configuration key. /// /// # Examples /// /// ```rust /// use async_injector::{Injector, Key}; /// use tokio::stream::StreamExt as _; /// use std::error::Error; /// /// #[derive(Clone)] /// struct Database; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// let db = Key::<Database>::tagged("foo")?; /// /// // Drive variable updates. /// tokio::spawn({ /// let injector = injector.clone(); /// /// async move { /// injector.drive().await.expect("injector driver failed"); /// } /// }); /// /// let database = injector.var_key(&db).await?; /// /// assert!(database.read().await.is_none()); /// injector.update_key(&db, Database).await; /// /// /// Variable updated in the background by the driver. /// while database.read().await.is_none() { /// } /// /// assert!(database.read().await.is_some()); /// Ok(()) /// } /// ``` pub async fn var_key<T>(&self, key: impl AsRef<Key<T>>) -> Result<Var<Option<T>>, Error> where T: Clone + Any + Send + Sync + Unpin, { use tokio::stream::StreamExt as _; let (mut stream, value) = self.stream_key(key).await; let value = Var::new(value); let future_value = value.clone(); let future = async move { while let Some(update) = stream.next().await { *future_value.write().await = update; } }; let result = self.inner.drivers.clone().send(Driver { future: Box::pin(future), }); if result.is_err() { // NB: normally happens when the injector is shutting down. return Err(Error::Shutdown); } Ok(value) } /// Run the injector as a future, making sure all asynchronous processes /// associated with it are driven to completion. /// /// This has to be called for the injector to perform important tasks. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// use tokio::stream::StreamExt as _; /// use std::error::Error; /// /// #[derive(Clone)] /// struct Database; /// /// #[tokio::main] /// async fn main() -> Result<(), Box<dyn Error>> { /// let injector = Injector::new(); /// /// // Drive variable updates. /// tokio::spawn({ /// let injector = injector.clone(); /// /// async move { /// injector.drive().await.expect("injector driver failed"); /// } /// }); /// /// let database = injector.var::<Database>().await?; /// /// assert!(database.read().await.is_none()); /// injector.update(Database).await; /// /// /// Variable updated in the background by the driver. /// while database.read().await.is_none() { /// } /// /// assert!(database.read().await.is_some()); /// Ok(()) /// } /// ``` pub async fn drive(self) -> Result<(), Error> { use tokio::stream::StreamExt as _; let mut rx = self .inner .drivers_rx .lock() .await .take() .ok_or(Error::DriverAlreadyConfigured)?; let mut drivers = ::futures_util::stream::FuturesUnordered::new(); loop { while drivers.is_empty() { drivers.push(rx.next().await.ok_or(Error::EndOfDriverStream)?); } while !drivers.is_empty() { tokio::select! { driver = rx.next() => { drivers.push(driver.ok_or(Error::EndOfDriverStream)?); } _ = drivers.next() => { } } } } } /// Iterate through the chain of injectors. /// /// # Examples /// /// ```rust /// use async_injector::Injector; /// /// let injector = Injector::new(); /// let child = injector.child(); /// /// assert_eq!(1, injector.chain().count()); /// assert_eq!(2, child.chain().count()); /// ``` pub fn chain(&self) -> Chain<'_> { Chain { injector: Some(self), } } } /// A chain of [`Injector`]s. /// /// A chain is composed of a child injector and all of its parents. This is /// created through [Injector::chain]. /// /// [`Injector`]: Injector pub struct Chain<'a> { injector: Option<&'a Injector>, } impl<'a> Iterator for Chain<'a> { type Item = &'a Injector; fn next(&mut self) -> Option<Self::Item> { let injector = self.injector.take()?; self.injector = injector.inner.parent.as_ref(); Some(injector) } } #[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq, Hash)] struct RawKey { type_id: TypeId, tag_type_id: TypeId, tag: hashkey::Key, } impl RawKey { /// Construct a new raw key. fn new<T, K>(tag: hashkey::Key) -> Self where T: Any, K: Any, { Self { type_id: TypeId::of::<T>(), tag_type_id: TypeId::of::<K>(), tag, } } } /// A key used to discriminate a value in the [`Injector`]. /// /// [`Injector`]: Injector #[derive(Clone)] pub struct Key<T> where T: Any, { raw_key: RawKey, _marker: std::marker::PhantomData<T>, } impl<T> fmt::Debug for Key<T> where T: Any, { fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result { fmt::Debug::fmt(&self.raw_key, fmt) } } impl<T> cmp::PartialEq for Key<T> where T: Any, { fn eq(&self, other: &Self) -> bool { self.as_raw_key().eq(other.as_raw_key()) } } impl<T> cmp::Eq for Key<T> where T: Any {} impl<T> cmp::PartialOrd for Key<T> where T: Any, { fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> { self.as_raw_key().partial_cmp(other.as_raw_key()) } } impl<T> cmp::Ord for Key<T> where T: Any, { fn cmp(&self, other: &Self) -> cmp::Ordering { self.as_raw_key().cmp(other.as_raw_key()) } } impl<T> hash::Hash for Key<T> where T: Any, { fn hash<H>(&self, state: &mut H) where H: hash::Hasher, { self.as_raw_key().hash(state); } } impl<T> Key<T> where T: Any, { /// Construct a new key without a tag. /// /// # Examples /// /// ```rust /// use async_injector::Key; /// /// struct Foo; /// /// assert_eq!(Key::<Foo>::of(), Key::<Foo>::of()); /// ``` pub fn of() -> Self { Self { raw_key: RawKey::new::<T, ()>(hashkey::Key::Unit), _marker: std::marker::PhantomData, } } /// Construct a new key. /// /// # Examples /// /// ```rust /// use serde::Serialize; /// use async_injector::Key; /// /// struct Foo; /// /// #[derive(Serialize)] /// enum Tag { /// One, /// Two, /// } /// /// #[derive(Serialize)] /// enum Tag2 { /// One, /// Two, /// } /// /// # fn main() -> Result<(), Box<dyn std::error::Error>> { /// assert_eq!(Key::<Foo>::tagged(Tag::One)?, Key::<Foo>::tagged(Tag::One)?); /// assert_ne!(Key::<Foo>::tagged(Tag::One)?, Key::<Foo>::tagged(Tag::Two)?); /// assert_ne!(Key::<Foo>::tagged(Tag::One)?, Key::<Foo>::tagged(Tag2::One)?); /// # Ok(()) /// # } /// ``` pub fn tagged<K>(tag: K) -> Result<Self, Error> where K: Any + serde::Serialize, { let tag = hashkey::to_key(&tag)?; Ok(Self { raw_key: RawKey::new::<T, K>(tag), _marker: std::marker::PhantomData, }) } /// Convert into a raw key. fn as_raw_key(&self) -> &RawKey { &self.raw_key } } impl<T> AsRef<Key<T>> for Key<T> where T: 'static, { fn as_ref(&self) -> &Self { self } } /// The future that drives a synchronized variable. struct Driver { future: Pin<Box<dyn Future<Output = ()> + Send + Sync + 'static>>, } impl Future for Driver { type Output = (); fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { self.future.as_mut().poll(cx) } } /// Proxy accessor for an injected variable. /// /// This stores a reference to the given variable and provides methods for /// accessing it, similarly to an `RwLock`, but biased towards efficient /// cloning. #[derive(Debug)] pub struct Var<T> { storage: Arc<RwLock<T>>, } impl<T> Clone for Var<T> { fn clone(&self) -> Self { Self { storage: self.storage.clone(), } } } impl<T> Var<T> { /// Construct a new variable holder. pub fn new(value: T) -> Self { Self { storage: Arc::new(RwLock::new(value)), } } } impl<T> Var<T> where T: Clone, { /// Load the given variable, cloning the underlying value while doing so. pub async fn load(&self) -> T { self.storage.read().await.clone() } } impl<T> Var<T> { /// Read referentially from the underlying variable. pub async fn read(&self) -> RwLockReadGuard<'_, T> { self.storage.read().await } /// Write to the underlying variable. pub async fn write(&self) -> RwLockWriteGuard<'_, T> { self.storage.write().await } } #[cfg(test)] mod tests { use super::Value; #[test] fn test_clone() { use std::sync::{ atomic::{AtomicUsize, Ordering}, Arc, }; let count = Arc::new(AtomicUsize::new(0)); let value = Value::new(Foo(count.clone())); assert_eq!(0, count.load(Ordering::SeqCst)); drop(value.clone()); assert_eq!(1, count.load(Ordering::SeqCst)); drop(value); assert_eq!(2, count.load(Ordering::SeqCst)); #[derive(Clone)] struct Foo(Arc<AtomicUsize>); impl Drop for Foo { fn drop(&mut self) { self.0.fetch_add(1, Ordering::SeqCst); } } } }