spring-batch-rs 0.3.4

A toolkit for building enterprise-grade batch applications
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
//! # ORM Processing Examples (SeaORM)
//!
//! Demonstrates reading from and writing to databases using SeaORM with Spring Batch RS.
//! Uses SQLite in-memory database (no external database required).
//!
//! ## Features Demonstrated
//! - Reading entities with SeaORM queries
//! - Pagination for large datasets
//! - Filtering and ordering with SeaORM
//! - Writing entities directly to database
//! - Converting between business DTOs and ORM entities
//!
//! ## Run
//! ```bash
//! cargo run --example orm_processing --features orm,csv,json
//! ```

use sea_orm::{
    ActiveValue::Set, Database, DatabaseConnection, EntityTrait, QueryFilter, QueryOrder,
    entity::prelude::*,
};
use serde::{Deserialize, Serialize};
use spring_batch_rs::{
    BatchError,
    core::{
        item::{ItemProcessor, ItemReader, PassThroughProcessor},
        job::{Job, JobBuilder},
        step::StepBuilder,
    },
    item::{
        csv::csv_writer::CsvItemWriterBuilder,
        json::json_writer::JsonItemWriterBuilder,
        orm::{OrmItemReaderBuilder, OrmItemWriterBuilder},
    },
};
use std::env::temp_dir;

// =============================================================================
// ORM Entity Definition
// =============================================================================

/// SeaORM entity for the `products` table.
mod products {
    use sea_orm::entity::prelude::*;
    use serde::{Deserialize, Serialize};

    #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Deserialize, Serialize)]
    #[sea_orm(table_name = "products")]
    pub struct Model {
        #[sea_orm(primary_key)]
        pub id: i32,
        pub name: String,
        pub category: String,
        pub price: f64,
        pub in_stock: bool,
    }

    #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
    pub enum Relation {}

    impl ActiveModelBehavior for ActiveModel {}
}

// =============================================================================
// Data Structures
// =============================================================================

/// A business DTO for product data.
#[derive(Debug, Clone, Deserialize, Serialize)]
struct ProductDto {
    id: i32,
    name: String,
    category: String,
    price: f64,
    in_stock: bool,
}

/// A CSV-friendly product record.
#[derive(Debug, Clone, Serialize)]
struct ProductCsv {
    id: i32,
    name: String,
    category: String,
    price: f64,
}

/// Processor that converts Product Model to CSV format.
struct ProductToCsvProcessor;

impl ItemProcessor<products::Model, ProductCsv> for ProductToCsvProcessor {
    fn process(&self, item: &products::Model) -> Result<Option<ProductCsv>, BatchError> {
        Ok(Some(ProductCsv {
            id: item.id,
            name: item.name.clone(),
            category: item.category.clone(),
            price: item.price,
        }))
    }
}

/// Processor that converts ProductDto to SeaORM ActiveModel.
struct DtoToActiveModelProcessor;

impl ItemProcessor<ProductDto, products::ActiveModel> for DtoToActiveModelProcessor {
    fn process(&self, item: &ProductDto) -> Result<Option<products::ActiveModel>, BatchError> {
        Ok(Some(products::ActiveModel {
            id: Set(item.id),
            name: Set(item.name.clone()),
            category: Set(item.category.clone()),
            price: Set(item.price),
            in_stock: Set(item.in_stock),
        }))
    }
}

// =============================================================================
// Database Setup
// =============================================================================

/// Creates and seeds the SQLite in-memory database.
async fn setup_database() -> Result<DatabaseConnection, DbErr> {
    let db = Database::connect("sqlite::memory:").await?;

    // Create products table
    db.execute_unprepared(
        r#"
        CREATE TABLE products (
            id INTEGER PRIMARY KEY,
            name TEXT NOT NULL,
            category TEXT NOT NULL,
            price REAL NOT NULL,
            in_stock BOOLEAN NOT NULL DEFAULT 1
        )
        "#,
    )
    .await?;

    // Seed products
    db.execute_unprepared(
        r#"
        INSERT INTO products (id, name, category, price, in_stock) VALUES
        (1, 'Laptop Pro', 'Electronics', 1299.99, 1),
        (2, 'Wireless Mouse', 'Electronics', 49.99, 1),
        (3, 'USB-C Hub', 'Electronics', 79.99, 0),
        (4, 'Desk Chair', 'Furniture', 299.99, 1),
        (5, 'Standing Desk', 'Furniture', 599.99, 1),
        (6, 'Monitor Arm', 'Furniture', 129.99, 0),
        (7, 'Notebook Set', 'Office', 24.99, 1),
        (8, 'Pen Collection', 'Office', 39.99, 1),
        (9, 'Desk Organizer', 'Office', 44.99, 1),
        (10, 'Webcam HD', 'Electronics', 89.99, 1)
        "#,
    )
    .await?;

    Ok(db)
}

// =============================================================================
// Example 1: Read All Products
// =============================================================================

/// Reads all products and exports to JSON.
fn example_read_all_to_json(db: &DatabaseConnection) -> Result<(), BatchError> {
    println!("=== Example 1: Read All Products to JSON ===");

    let query = products::Entity::find().order_by_asc(products::Column::Id);

    let reader = OrmItemReaderBuilder::new()
        .connection(db)
        .query(query)
        .page_size(5)
        .build();

    let output_path = temp_dir().join("all_products.json");
    let writer = JsonItemWriterBuilder::<products::Model>::new()
        .pretty_formatter(true)
        .from_path(&output_path);

    let processor = PassThroughProcessor::<products::Model>::new();

    let step = StepBuilder::new("read-all-products")
        .chunk::<products::Model, products::Model>(5)
        .reader(&reader)
        .processor(&processor)
        .writer(&writer)
        .build();

    let job = JobBuilder::new().start(&step).build();
    let result = job.run()?;

    let step_exec = job.get_step_execution("read-all-products").unwrap();
    println!("  Products read: {}", step_exec.read_count);
    println!("  Output: {}", output_path.display());
    println!("  Duration: {:?}", result.duration);
    Ok(())
}

// =============================================================================
// Example 2: Read with Filter
// =============================================================================

/// Reads only in-stock electronics and exports to CSV.
fn example_read_filtered_to_csv(db: &DatabaseConnection) -> Result<(), BatchError> {
    println!("\n=== Example 2: Read Filtered to CSV ===");

    let query = products::Entity::find()
        .filter(products::Column::Category.eq("Electronics"))
        .filter(products::Column::InStock.eq(true))
        .order_by_asc(products::Column::Name);

    let reader = OrmItemReaderBuilder::new()
        .connection(db)
        .query(query)
        .build();

    let output_path = temp_dir().join("electronics_in_stock.csv");
    let writer = CsvItemWriterBuilder::<ProductCsv>::new()
        .has_headers(true)
        .from_path(&output_path);

    let processor = ProductToCsvProcessor;

    let step = StepBuilder::new("filter-electronics")
        .chunk::<products::Model, ProductCsv>(10)
        .reader(&reader)
        .processor(&processor)
        .writer(&writer)
        .build();

    let job = JobBuilder::new().start(&step).build();
    job.run()?;

    println!("  Exported in-stock electronics to CSV");
    println!("  Output: {}", output_path.display());
    Ok(())
}

// =============================================================================
// Example 3: Read with Complex Query
// =============================================================================

/// Reads products over a price threshold.
fn example_read_expensive_products(db: &DatabaseConnection) -> Result<(), BatchError> {
    println!("\n=== Example 3: Read Expensive Products (price >= $100) ===");

    let query = products::Entity::find()
        .filter(products::Column::Price.gte(100.0))
        .order_by_desc(products::Column::Price);

    let reader = OrmItemReaderBuilder::new()
        .connection(db)
        .query(query)
        .page_size(3)
        .build();

    let output_path = temp_dir().join("expensive_products.json");
    let writer = JsonItemWriterBuilder::<products::Model>::new()
        .pretty_formatter(true)
        .from_path(&output_path);

    let processor = PassThroughProcessor::<products::Model>::new();

    let step = StepBuilder::new("expensive-products")
        .chunk::<products::Model, products::Model>(10)
        .reader(&reader)
        .processor(&processor)
        .writer(&writer)
        .build();

    let job = JobBuilder::new().start(&step).build();
    let result = job.run()?;

    let step_exec = job.get_step_execution("expensive-products").unwrap();
    println!("  Expensive products found: {}", step_exec.read_count);
    println!("  Output: {}", output_path.display());
    println!("  Duration: {:?}", result.duration);
    Ok(())
}

// =============================================================================
// Example 4: Write to Database
// =============================================================================

/// Writes new products to the database from DTOs.
fn example_write_to_database(db: &DatabaseConnection) -> Result<(), BatchError> {
    println!("\n=== Example 4: Write Products to Database ===");

    // Create a simple in-memory reader for new products
    let new_products = vec![
        ProductDto {
            id: 11,
            name: "Mechanical Keyboard".to_string(),
            category: "Electronics".to_string(),
            price: 149.99,
            in_stock: true,
        },
        ProductDto {
            id: 12,
            name: "Monitor Stand".to_string(),
            category: "Furniture".to_string(),
            price: 79.99,
            in_stock: true,
        },
        ProductDto {
            id: 13,
            name: "Cable Management Kit".to_string(),
            category: "Office".to_string(),
            price: 29.99,
            in_stock: true,
        },
    ];

    // Use a simple wrapper reader
    let reader = InMemoryReader::new(new_products);

    let writer = OrmItemWriterBuilder::<products::ActiveModel>::new()
        .connection(db)
        .build();

    let processor = DtoToActiveModelProcessor;

    let step = StepBuilder::new("write-products")
        .chunk::<ProductDto, products::ActiveModel>(2)
        .reader(&reader)
        .processor(&processor)
        .writer(&writer)
        .build();

    let job = JobBuilder::new().start(&step).build();
    let result = job.run()?;

    let step_exec = job.get_step_execution("write-products").unwrap();
    println!("  Products written: {}", step_exec.write_count);
    println!("  Duration: {:?}", result.duration);
    Ok(())
}

// =============================================================================
// Example 5: Verify Written Data
// =============================================================================

/// Verifies the data written in Example 4.
fn example_verify_written_data(db: &DatabaseConnection) -> Result<(), BatchError> {
    println!("\n=== Example 5: Verify Written Data ===");

    let query = products::Entity::find()
        .filter(products::Column::Id.gte(11))
        .order_by_asc(products::Column::Id);

    let reader = OrmItemReaderBuilder::new()
        .connection(db)
        .query(query)
        .build();

    let output_path = temp_dir().join("new_products.json");
    let writer = JsonItemWriterBuilder::<products::Model>::new()
        .pretty_formatter(true)
        .from_path(&output_path);

    let processor = PassThroughProcessor::<products::Model>::new();

    let step = StepBuilder::new("verify-written")
        .chunk::<products::Model, products::Model>(10)
        .reader(&reader)
        .processor(&processor)
        .writer(&writer)
        .build();

    let job = JobBuilder::new().start(&step).build();
    let result = job.run()?;

    let step_exec = job.get_step_execution("verify-written").unwrap();
    println!("  New products found: {}", step_exec.read_count);
    println!("  Output: {}", output_path.display());
    println!("  Duration: {:?}", result.duration);
    Ok(())
}

// =============================================================================
// Helper: In-Memory Reader
// =============================================================================

/// A simple in-memory reader for demonstration purposes.
struct InMemoryReader<T> {
    items: std::cell::RefCell<std::collections::VecDeque<T>>,
}

impl<T: Clone> InMemoryReader<T> {
    fn new(items: Vec<T>) -> Self {
        Self {
            items: std::cell::RefCell::new(items.into()),
        }
    }
}

impl<T: Clone> ItemReader<T> for InMemoryReader<T> {
    fn read(&self) -> Result<Option<T>, BatchError> {
        Ok(self.items.borrow_mut().pop_front())
    }
}

// =============================================================================
// Main
// =============================================================================

#[tokio::main]
async fn main() -> Result<(), BatchError> {
    env_logger::init();

    println!("ORM Processing Examples (SeaORM + SQLite)");
    println!("=========================================\n");

    // Setup database
    let db = setup_database()
        .await
        .map_err(|e| BatchError::ItemReader(format!("Failed to setup database: {}", e)))?;

    println!("Database initialized with sample products.\n");

    // Run examples
    example_read_all_to_json(&db)?;
    example_read_filtered_to_csv(&db)?;
    example_read_expensive_products(&db)?;
    example_write_to_database(&db)?;
    example_verify_written_data(&db)?;

    println!("\n✓ All ORM examples completed successfully!");
    Ok(())
}