summer 0.5.0

Rust microservice framework like spring boot in java
Documentation
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
# Component Macro Guide

The `#[component]` macro provides declarative component registration for summer-rs applications, eliminating the need to manually implement the Plugin trait.

## Quick Start

### 1. Add Dependencies

Add `summer` and `summer-macros` to your `Cargo.toml`:

```toml
[dependencies]
summer = "0.4"
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
```

**Note:** You don't need to add `summer-macros`, `async-trait` or `inventory` as direct dependencies.
The `summer` crate re-exports these for you.

### 2. Define Your Component

```rust
#[derive(Clone)]
struct DbConnection {
    pool: sqlx::PgPool,
}
```

### 2. Create Configuration

```rust
use summer::config::Configurable;
use serde::Deserialize;

#[derive(Clone, Configurable, Deserialize)]
#[config_prefix = "database"]
struct DbConfig {
    url: String,
    max_connections: u32,
}
```

### 3. Use `#[component]` Macro

```rust
use summer::config::Config;
use summer::component;

#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    DbConnection {
        pool: sqlx::PgPool::connect(&config.url).await.unwrap(),
    }
}
```

### 4. Register in Application

```rust
use summer::App;

#[tokio::main]
async fn main() {
    App::new()
        .run()
        .await;
}
```

## How It Works

The `#[component]` macro transforms your component creation function into a Plugin implementation:

**Input**

```rust
#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    DbConnection::new(&config)
}
```

**Generated Code (Conceptual)**

```rust
struct __CreateDbConnectionPlugin;

#[async_trait]
impl Plugin for __CreateDbConnectionPlugin {
    async fn build(&self, app: &mut AppBuilder) {
        // Extract configuration
        let config = app.get_config::<DbConfig>()
            .expect("Config DbConfig not found");
        let Config(config) = Config(config);
        
        // Call original function
        let component = create_db_connection(Config(config));
        
        // Register component
        app.add_component(component);
    }
    
    fn name(&self) -> &str {
        "__CreateDbConnectionPlugin"
    }
    
    fn dependencies(&self) -> Vec<&str> {
        vec![]  // No dependencies
    }
}

// Auto-register via inventory
inventory::submit! {
    &__CreateDbConnectionPlugin as &dyn Plugin
}

// Original function is preserved
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    DbConnection::new(&config)
}
```

## Parameter Types

**`Config<T>` - Configuration Injection**

Injects configuration from `config/app.toml`:

```rust
#[component]
fn create_component(
    Config(config): Config<MyConfig>,
) -> MyComponent {
    MyComponent::new(&config)
}
```

**Requirements:**

- `T` must implement `Configurable + Deserialize`
- Configuration must exist in `config/app.toml` under the prefix specified by `#[config_prefix]`

**`Component<T>` - Component Injection**

Injects another component:

```rust
#[component]
fn create_service(
    Component(db): Component<DbConnection>,
) -> MyService {
    MyService::new(db)
}
```

**Requirements:**

- `T` must be a registered component
- The dependency will be automatically added to the plugin's `dependencies()` list

**Multiple Parameters**

You can mix and match parameter types:

```rust
#[component]
fn create_service(
    Config(config): Config<ServiceConfig>,
    Component(db): Component<DbConnection>,
    Component(cache): Component<RedisClient>,
) -> MyService {
    MyService::new(&config, db, cache)
}
```

## Return Types

**Simple Type**

```rust
#[component]
fn create_component() -> MyComponent {
    MyComponent::new()
}
```

**Requirements:**

- Must implement `Clone + Send + Sync + 'static`

**Result Type**

For fallible initialization:

```rust
#[component]
fn create_component(
    Config(config): Config<MyConfig>,
) -> Result<MyComponent, anyhow::Error> {
    let component = MyComponent::try_new(&config)?;
    Ok(component)
}
```

**Note:** If the function returns an error, the application will panic with the error message.

**Async Functions**

For async initialization:

```rust
#[component]
async fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    let pool = sqlx::PgPool::connect(&config.url).await.unwrap();
    DbConnection { pool }
}
```

**Async + Result**

Combine async and Result:

```rust
#[component]
async fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> Result<DbConnection, sqlx::Error> {
    let pool = sqlx::PgPool::connect(&config.url).await?;
    Ok(DbConnection { pool })
}
```

## Dependency Resolution

**Automatic Dependency Detection**

The macro automatically detects dependencies from `Component<T>` parameters:

```rust
#[component]
fn create_repository(
    Component(db): Component<DbConnection>,  // Depends on DbConnection
) -> UserRepository {
    UserRepository { db }
}
```

Generated `dependencies()`:
```rust
fn dependencies(&self) -> Vec<&str> {
    vec!["__CreateDbConnectionPlugin"]
}
```

**Initialization Order**

Components are initialized in dependency order:

```rust
// 1. No dependencies - initialized first
#[component]
fn create_db() -> DbConnection { ... }

// 2. Depends on DbConnection - initialized second
#[component]
fn create_repo(Component(db): Component<DbConnection>) -> UserRepository { ... }

// 3. Depends on UserRepository - initialized third
#[component]
fn create_service(Component(repo): Component<UserRepository>) -> UserService { ... }
```

**Circular Dependencies**

Circular dependencies are **not supported** and will cause a panic:

```rust
// ❌ This will panic!
#[component]
fn create_a(Component(b): Component<B>) -> A { ... }

#[component]
fn create_b(Component(a): Component<A>) -> B { ... }
```

**Solution:** Refactor your design to eliminate the circular dependency.

## Advanced Usage

**Custom Plugin Name**

Use custom names when you need multiple components of the same type:

```rust
#[derive(Clone)]
struct PrimaryDb(DbConnection);

#[derive(Clone)]
struct SecondaryDb(DbConnection);

#[component(name = "PrimaryDatabase")]
fn create_primary_db(
    Config(config): Config<PrimaryDbConfig>,
) -> PrimaryDb {
    PrimaryDb(DbConnection::new(&config))
}

#[component(name = "SecondaryDatabase")]
fn create_secondary_db(
    Config(config): Config<SecondaryDbConfig>,
) -> SecondaryDb {
    SecondaryDb(DbConnection::new(&config))
}
```

**Explicit Dependencies**

Use `#[inject("PluginName")]` to specify explicit dependencies:

```rust
#[component]
fn create_repository(
    #[inject("PrimaryDatabase")] Component(db): Component<PrimaryDb>,
) -> UserRepository {
    UserRepository::new(db.0)
}
```

This is useful when:
- The dependency has a custom name
- You want to be explicit about which plugin to depend on

**NewType Pattern for Multiple Instances**

When you need multiple instances of the same type, use the NewType pattern:

```rust
#[derive(Clone)]
struct PrimaryCache(RedisClient);

#[derive(Clone)]
struct SecondaryCache(RedisClient);

#[component(name = "PrimaryCache")]
fn create_primary_cache(
    Config(config): Config<PrimaryCacheConfig>,
) -> PrimaryCache {
    PrimaryCache(RedisClient::new(&config))
}

#[component(name = "SecondaryCache")]
fn create_secondary_cache(
    Config(config): Config<SecondaryCacheConfig>,
) -> SecondaryCache {
    SecondaryCache(RedisClient::new(&config))
}

#[component]
fn create_service(
    Component(primary): Component<PrimaryCache>,
    Component(secondary): Component<SecondaryCache>,
) -> CacheService {
    CacheService {
        primary: primary.0,
        secondary: secondary.0,
    }
}
```

**Using Arc for Large Components**

For large components, use `Arc` to reduce clone overhead:

```rust
use std::sync::Arc;

#[derive(Clone)]
struct LargeComponent {
    data: Arc<Vec<u8>>,  // Shared data
}

#[component]
fn create_large_component() -> LargeComponent {
    LargeComponent {
        data: Arc::new(vec![0; 1_000_000]),
    }
}
```

## Best Practices

**1. Keep Component Functions Simple**

Component functions should only create and configure the component:

```rust
// ✅ Good
#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    DbConnection::new(&config)
}

// ❌ Bad - too much logic
#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    let conn = DbConnection::new(&config);
    conn.run_migrations();  // Don't do this here
    conn.seed_data();       // Don't do this here
    conn
}
```

**2. Use Configuration for All Configurable Values**

```rust
// ✅ Good
#[component]
fn create_service(
    Config(config): Config<ServiceConfig>,
) -> MyService {
    MyService::new(&config)
}

// ❌ Bad - hardcoded values
#[component]
fn create_service() -> MyService {
    MyService::new("localhost", 8080)
}
```

**3. Prefer Explicit Names for Clarity**

```rust
// ✅ Good - clear intent
#[component(name = "PrimaryDatabase")]
fn create_primary_db(...) -> PrimaryDb { ... }

// ❌ Less clear
#[component]
fn create_db1(...) -> Db1 { ... }
```

**4. Document Component Dependencies**

```rust
/// Creates the UserService component.
///
/// # Dependencies
/// - UserRepository: For data access
/// - RedisClient: For caching
#[component]
fn create_user_service(
    Component(repo): Component<UserRepository>,
    Component(cache): Component<RedisClient>,
) -> UserService {
    UserService::new(repo, cache)
}
```

**5. Use Result for Fallible Initialization**

```rust
// ✅ Good - explicit error handling
#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> Result<DbConnection, anyhow::Error> {
    DbConnection::try_new(&config)
}

// ❌ Bad - hidden panic
#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    DbConnection::try_new(&config).unwrap()  // Will panic on error
}
```

## Troubleshooting

**Error: "Config X not found"**

**Cause:** Configuration is missing from `config/app.toml`

**Solution:** Add the configuration:

```toml
[your-prefix]
key = "value"
```

**Error: "Component X not found"**

**Cause:** The dependency component is not registered

**Solution:** Ensure the dependency is also marked with `#[component]` and registered before this component.

**Error: "Cyclic dependency detected"**

**Cause:** Two or more components depend on each other

**Solution:** Refactor your design to eliminate the circular dependency. Consider:
- Introducing an intermediate component
- Using events/callbacks instead of direct dependencies
- Restructuring your architecture

**Error: "plugin was already added"**

**Cause:** Two components return the same type

**Solution:** Use the NewType pattern or custom names:

```rust
#[derive(Clone)]
struct PrimaryDb(DbConnection);

#[component(name = "PrimaryDatabase")]
fn create_primary_db(...) -> PrimaryDb { ... }
```

**Error: "component was already added"**

**Cause:** The same component type is registered twice

**Solution:** Each component type can only be registered once. Use NewType pattern for multiple instances.

## Migration Guide

**From Manual Plugin to `#[component]`**

**Before:**

```rust
struct DbConnectionPlugin;

#[async_trait]
impl Plugin for DbConnectionPlugin {
    async fn build(&self, app: &mut AppBuilder) {
        let config = app.get_config::<DbConfig>()
            .expect("DbConfig not found");
        
        let db = DbConnection::new(&config);
        app.add_component(db);
    }
    
    fn name(&self) -> &str {
        "DbConnectionPlugin"
    }
}

// In main
App::new()
    .add_plugin(DbConnectionPlugin)
    .run()
    .await;
```

**After:**

```rust
#[component]
fn create_db_connection(
    Config(config): Config<DbConfig>,
) -> DbConnection {
    DbConnection::new(&config)
}

// In main
App::new()
    .run()
    .await;
```

**Migration Steps**

1. **Identify component creation logic** in your Plugin's `build` method
2. **Extract it into a function** with appropriate parameters
3. **Add `#[component]` macro** to the function
4. **Replace `add_plugin`** with `add_auto_plugins` in your main function
5. **Remove the manual Plugin implementation**
6. **Test** to ensure everything works

**Compatibility**

The `#[component]` macro is fully compatible with manual Plugin implementations. You can mix both approaches:

```rust
App::new()
    .add_plugin(ManualPlugin)  // Manual plugin
    .run()
    .await;
```

## See Also

- [summer-rs Documentation]https://summer-rs.github.io/
- [Plugin System]../summer/Plugin.md
- [Dependency Injection]../summer/DI.md
- [Configuration]../summer/Config.md
- [Example Project]../examples/component-macro-example/