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
//! # Getting started guide
//! Note: This getting started guide focuses on components, which live for the lifetime of the
//! application (or, technically, the module). After reading this getting started guide, check
//! out the advanced guides:
//! - [Getting started with providers][provider guide]: Learn how to create services with shorter
//!   lifetimes.
//! - [Getting started with submodules][submodule guide]: Learn how to organize and abstract
//!   components into multiple modules.
//!
//! ## Structure your application
//! Start with your application's structs and traits. Use `Arc<dyn T>` for dependencies.
//!
//! ```
//! use std::sync::Arc;
//!
//! trait Logger {
//!     fn log(&self, content: &str);
//! }
//!
//! trait DateLogger {
//!     fn log_date(&self);
//! }
//!
//! struct LoggerImpl;
//!
//! impl Logger for LoggerImpl {
//!     fn log(&self, content: &str) {
//!         println!("{}", content);
//!     }
//! }
//!
//! struct DateLoggerImpl {
//!     logger: Arc<dyn Logger>,
//!     today: String,
//!     year: usize,
//! }
//!
//! impl DateLogger for DateLoggerImpl {
//!     fn log_date(&self) {
//!         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//!     }
//! }
//! ```
//!
//! ## Inherit "Interface" for the interface traits
//!
//! Interface traits require certain bounds, such as `'static` and optionally `Send + Sync` if using
//! the `thread_safe` feature. The [`Interface`] trait acts as a trait alias for these bounds, and is
//! automatically implemented on types which implement the bounds.
//!
//! In our example, the two interface traits would become:
//!
//! ```
//! use shaku::Interface;
//!
//! trait Logger: Interface {
//!     fn log(&self, content: &str);
//! }
//!
//! trait DateLogger: Interface {
//!     fn log_date(&self);
//! }
//! ```
//!
//! ## Implement Component
//! A component is a struct that implements an [`Interface`] trait. In our example, we have 2
//! components:
//!
//! - `DateLoggerImpl` of type `DateLogger`
//! - `LoggerImpl` of type `Logger`
//!
//! These components must implement [`Component`], which can either be done manually or through a
//! derive macro (using the `derive` feature):
//!
//! ```
//! # use shaku::Interface;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! #
//! # impl Logger for LoggerImpl {
//! #     fn log(&self, content: &str) { println!("{}", content); }
//! # }
//! #
//! use shaku::Component;
//!
//! #[derive(Component)]
//! #[shaku(interface = Logger)]
//! struct LoggerImpl;
//! ```
//!
//! ## Express dependencies
//! Components can depend on other components. In our example, `DateLoggerImpl` requires an `Logger`
//! component.
//!
//! To express this dependency, first make sure the property is declared as a
//! [trait object](https://doc.rust-lang.org/book/ch17-02-trait-objects.html) wrapped in an [`Arc`].
//! Then (when using the derive macro) use the `#[shaku(inject)]` attribute on the property to tell
//! shaku to inject the dependency.
//!
//! In our example:
//!
//! ```
//! # use shaku::Interface;
//! # use std::sync::Arc;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! # trait DateLogger: Interface { fn log_date(&self); }
//! #
//! # impl DateLogger for DateLoggerImpl {
//! #     fn log_date(&self) {
//! #         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//! #     }
//! # }
//! #
//! use shaku::Component;
//!
//! #[derive(Component)]
//! #[shaku(interface = DateLogger)]
//! struct DateLoggerImpl {
//!     #[shaku(inject)]
//!     logger: Arc<dyn Logger>,
//!     #[shaku(default)]
//!     today: String,
//!     #[shaku(default)]
//!     year: usize,
//! }
//! ```
//!
//! (note: `#[shaku(default)]` will use the `Default` trait if no value is given for the property)
//!
//! If you don't use the derive macro, add [`HasComponent`] bounds to your module generic and inject
//! the dependencies manually with [`HasComponent::build_component`].
//!
//! ## Define a module
//! Modules link together components and providers, and are core to providing shaku's compile time
//! guarentees. A [`Module`] can be defined manually or via the [`module`][module macro] macro
//! (using the `derive` feature):
//!
//! ```
//! # use shaku::{Component, Interface};
//! # use std::sync::Arc;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! # trait DateLogger: Interface { fn log_date(&self); }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = Logger)]
//! # struct LoggerImpl;
//! # impl Logger for LoggerImpl {
//! #     fn log(&self, content: &str) { println!("{}", content); }
//! # }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = DateLogger)]
//! # struct DateLoggerImpl {
//! #     #[shaku(inject)]
//! #     logger: Arc<dyn Logger>,
//! #     #[shaku(default)]
//! #     today: String,
//! #     #[shaku(default)]
//! #     year: usize,
//! # }
//! # impl DateLogger for DateLoggerImpl {
//! #     fn log_date(&self) {
//! #         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//! #     }
//! # }
//! # fn main() {}
//! #
//! use shaku::module;
//!
//! module! {
//!     MyModule {
//!         components = [LoggerImpl, DateLoggerImpl],
//!         providers = []
//!     }
//! }
//! ```
//!
//! This module implements `HasComponent<dyn Logger>` and `HasComponent<dyn DateLogger>` using the
//! provided component implementations.
//!
//! ## Build the module
//! At application startup, start building the module using the generated `builder` method (created
//! by the [`module`][module macro] macro). Alternatively, use [`ModuleBuilder::with_submodules`] to
//! create the builder. Then, call [`ModuleBuilder::build`] to get the module instance.
//!
//! ```
//! # use shaku::{module, Component, Interface};
//! # use std::sync::Arc;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! # trait DateLogger: Interface { fn log_date(&self); }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = Logger)]
//! # struct LoggerImpl;
//! # impl Logger for LoggerImpl {
//! #     fn log(&self, content: &str) { println!("{}", content); }
//! # }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = DateLogger)]
//! # struct DateLoggerImpl {
//! #     #[shaku(inject)]
//! #     logger: Arc<dyn Logger>,
//! #     #[shaku(default)]
//! #     today: String,
//! #     #[shaku(default)]
//! #     year: usize,
//! # }
//! # impl DateLogger for DateLoggerImpl {
//! #     fn log_date(&self) {
//! #         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//! #     }
//! # }
//! #
//! # module! {
//! #     MyModule {
//! #         components = [LoggerImpl, DateLoggerImpl],
//! #         providers = []
//! #     }
//! # }
//! # fn main() {
//! let module = MyModule::builder().build();
//! # }
//! ```
//!
//! ### Passing parameters
//! In many cases you need to pass parameters to a component. This can be done during module
//! creation. Each component has an associated parameters type, and the derive generates a
//! `*Parameters` struct for you (named after the component struct). Use this struct and
//! [`with_component_parameters`] to pass in the parameters.
//!
//! Note that if you don't pass in parameters, the parameters' default values will be used. You can
//! override the default value by annotating the property with `#[shaku(default = ...)]`. If the
//! parameter should not have a default value, annotate it with `#[shaku(no_default)]`. This will
//! cause module creation to panic if no value is provided for the parameter.
//!
//! ```
//! # use shaku::{module, Component, Interface};
//! # use std::sync::Arc;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! # trait DateLogger: Interface { fn log_date(&self); }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = Logger)]
//! # struct LoggerImpl;
//! # impl Logger for LoggerImpl {
//! #     fn log(&self, content: &str) { println!("{}", content); }
//! # }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = DateLogger)]
//! # struct DateLoggerImpl {
//! #     #[shaku(inject)]
//! #     logger: Arc<dyn Logger>,
//! #     #[shaku(default)]
//! #     today: String,
//! #     #[shaku(default)]
//! #     year: usize,
//! # }
//! # impl DateLogger for DateLoggerImpl {
//! #     fn log_date(&self) {
//! #         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//! #     }
//! # }
//! #
//! # module! {
//! #     MyModule {
//! #         components = [LoggerImpl, DateLoggerImpl],
//! #         providers = []
//! #     }
//! # }
//! #
//! # fn main() {
//! let module = MyModule::builder()
//!     .with_component_parameters::<DateLoggerImpl>(DateLoggerImplParameters {
//!         today: "Jan 26".to_string(),
//!         year: 2020
//!     })
//!     .build();
//! # }
//! ```
//!
//! ## Resolve components
//! Once you created the module, you can resolve the components using the module's [`HasComponent`]
//! methods.
//!
//! ```
//! # use shaku::{module, Component, Interface};
//! # use std::sync::Arc;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! # trait DateLogger: Interface { fn log_date(&self); }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = Logger)]
//! # struct LoggerImpl;
//! # impl Logger for LoggerImpl {
//! #     fn log(&self, content: &str) { println!("{}", content); }
//! # }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = DateLogger)]
//! # struct DateLoggerImpl {
//! #     #[shaku(inject)]
//! #     logger: Arc<dyn Logger>,
//! #     #[shaku(default)]
//! #     today: String,
//! #     #[shaku(default)]
//! #     year: usize,
//! # }
//! # impl DateLogger for DateLoggerImpl {
//! #     fn log_date(&self) {
//! #         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//! #     }
//! # }
//! #
//! # module! {
//! #     MyModule {
//! #         components = [LoggerImpl, DateLoggerImpl],
//! #         providers = []
//! #     }
//! # }
//! #
//! # fn main() {
//! #     let module = MyModule::builder()
//! #         .with_component_parameters::<DateLoggerImpl>(DateLoggerImplParameters {
//! #             today: "Jan 26".to_string(),
//! #             year: 2020
//! #         })
//! #         .build();
//! #
//! use shaku::HasComponent;
//!
//! let date_logger: &dyn DateLogger = module.resolve_ref();
//! date_logger.log_date(); // Prints "Today is Jan 26, 2020"
//! # }
//! ```
//!
//! ## Overriding components
//! Although shaku is a compile time DI library, you can override the implementation of a service
//! during the module build. This can be useful during testing, for example using an in-memory
//! database while doing integration tests. For components, simply pass in a struct instance which
//! implements the interface you want to override to [`with_component_override`]\:
//!
//! ```
//! # use shaku::{module, Component, Interface, HasComponent};
//! # use std::sync::Arc;
//! #
//! # trait Logger: Interface { fn log(&self, content: &str); }
//! # trait DateLogger: Interface { fn log_date(&self); }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = Logger)]
//! # struct LoggerImpl;
//! # impl Logger for LoggerImpl {
//! #     fn log(&self, content: &str) { println!("{}", content); }
//! # }
//! #
//! # #[derive(Component)]
//! # #[shaku(interface = DateLogger)]
//! # struct DateLoggerImpl {
//! #     #[shaku(inject)]
//! #     logger: Arc<dyn Logger>,
//! #     #[shaku(default)]
//! #     today: String,
//! #     #[shaku(default)]
//! #     year: usize,
//! # }
//! # impl DateLogger for DateLoggerImpl {
//! #     fn log_date(&self) {
//! #         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//! #     }
//! # }
//! #
//! # module! {
//! #     MyModule {
//! #         components = [LoggerImpl, DateLoggerImpl],
//! #         providers = []
//! #     }
//! # }
//! #
//! #[derive(Component)]
//! #[shaku(interface = Logger)]
//! struct FakeOutput;
//!
//! impl Logger for FakeOutput {
//!     fn log(&self, _content: &str) {
//!         // We don't want to actually log stuff during tests
//!     }
//! }
//!
//! # fn main() {
//! let module = MyModule::builder()
//!     .with_component_override::<dyn Logger>(Box::new(FakeOutput))
//!     .with_component_parameters::<DateLoggerImpl>(DateLoggerImplParameters {
//!         today: "Jan 26".to_string(),
//!         year: 2020
//!     })
//!     .build();
//!
//! let date_logger: &dyn DateLogger = module.resolve_ref();
//! date_logger.log_date(); // Nothing will be printed
//! # }
//! ```
//!
//! ## The full example
//! ```
//! use shaku::{module, Component, Interface, HasComponent};
//! use std::sync::Arc;
//!
//! trait Logger: Interface {
//!     fn log(&self, content: &str);
//! }
//!
//! trait DateLogger: Interface {
//!     fn log_date(&self);
//! }
//!
//! #[derive(Component)]
//! #[shaku(interface = Logger)]
//! struct LoggerImpl;
//!
//! impl Logger for LoggerImpl {
//!     fn log(&self, content: &str) {
//!         println!("{}", content);
//!     }
//! }
//!
//! #[derive(Component)]
//! #[shaku(interface = DateLogger)]
//! struct DateLoggerImpl {
//!     #[shaku(inject)]
//!     logger: Arc<dyn Logger>,
//!     #[shaku(default)]
//!     today: String,
//!     #[shaku(default)]
//!     year: usize,
//! }
//!
//! impl DateLogger for DateLoggerImpl {
//!     fn log_date(&self) {
//!         self.logger.log(&format!("Today is {}, {}", self.today, self.year));
//!     }
//! }
//!
//! module! {
//!     MyModule {
//!         components = [LoggerImpl, DateLoggerImpl],
//!         providers = []
//!     }
//! }
//!
//! fn main() {
//!     let module = MyModule::builder()
//!         .with_component_parameters::<DateLoggerImpl>(DateLoggerImplParameters {
//!             today: "Jan 26".to_string(),
//!             year: 2020
//!         })
//!         .build();
//!
//!     let date_logger: &dyn DateLogger = module.resolve_ref();
//!     date_logger.log_date();
//! }
//! ```
//!
//! [provider guide]: provider/index.html
//! [submodule guide]: submodules/index.html
//! [`Interface`]: ../trait.Interface.html
//! [`Component`]: ../trait.Component.html
//! [`Arc`]: https://doc.rust-lang.org/std/sync/struct.Arc.html
//! [`HasComponent`]: ../trait.HasComponent.html
//! [`HasComponent::build_component`]: ../trait.HasComponent.html#tymethod.build_component
//! [`Module`]: ../trait.Module.html
//! [module macro]: ../macro.module.html
//! [`ModuleBuilder::with_submodules`]: ../struct.ModuleBuilder.html#method.with_submodules
//! [`ModuleBuilder::build`]: ../struct.ModuleBuilder.html#method.build
//! [`with_component_parameters`]: ../struct.ModuleBuilder.html#method.with_component_parameters
//! [`with_component_override`]: ../struct.ModuleBuilder.html#method.with_component_override

pub mod provider;
pub mod submodules;