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
//! # leadforge
//!
//! High-performance async lead generation engine built in Rust.
//!
//! `leadforge` provides a streaming, concurrent pipeline for fetching,
//! filtering, and returning structured job data from external sources
//! such as Hacker News.
//!
//! The crate is designed around three core ideas:
//!
//! - **Streaming pipelines** → process data as it arrives
//! - **Bounded concurrency** → maximize throughput without overload
//! - **Resilience** → retries, timeouts, and error classification
//!
//! ---
//!
//! ## Architecture Overview
//!
//! The execution model follows a layered pipeline:
//!
//! ```text
//! Command
//! ↓
//! run()
//! ↓
//! source module (e.g. hn)
//! ↓
//! async stream (concurrent requests)
//! ↓
//! retry + timeout handling
//! ↓
//! filtering
//! ↓
//! Vec<Output>
//! ```
//!
//! Each data source (e.g. Hacker News) implements its own ingestion logic,
//! while sharing the same high-level execution pattern.
//!
//! ---
//!
//! ## Example
//!
//! ```no_run
//! use leadforge::{run, LeadForgeCommand};
//! use std::time::Duration;
//!
//! #[tokio::main]
//! async fn main() {
//! let command = LeadForgeCommand::HackerNews {
//! limit: 10,
//! max_concurrency: 50,
//! max_retries: 3,
//! timeout: Duration::from_secs(10),
//! keyword: Some("rust".to_string()),
//! };
//!
//! let results = run(command).await.unwrap();
//!
//! for job in results {
//! println!("{:?}", job);
//! }
//! }
//! ```
//!
//! ---
//!
//! ## Design Goals
//!
//! - **Efficiency**: avoid unnecessary allocations and blocking
//! - **Scalability**: handle large ID ranges and high request volume
//! - **Composability**: expose a clean API usable from CLI or other programs
//! - **Robustness**: gracefully handle unreliable networks and APIs
//!
//! ---
//!
//! ## Modules
//!
//! - `hn` → Hacker News ingestion pipeline
//!
//! Additional sources can be added by following the same pattern.
//!
//! ---
//!
//! ## CLI Usage
//!
//! While `leadforge` is designed as a reusable library, it is primarily
//! consumed through its command-line interface.
//!
//! ### Basic Example
//!
//! ```bash
//! leadforge hacker-news --limit 10
//! ```
//!
//! ### With Filtering
//!
//! ```bash
//! leadforge hacker-news --keyword rust --limit 5
//! ```
//!
//! ### Controlling Concurrency and Retries
//!
//! ```bash
//! leadforge hn \
//! --limit 20 \
//! --max-concurrency 50 \
//! --max-retries 5 \
//! --timeout 5
//! ```
//!
//! ---
//!
//! ## Output Format
//!
//! Results are emitted as **JSON to stdout**, making them easy to
//! integrate with other tools.
//!
//! Example:
//!
//! ```json
//! [
//! {
//! "id": 47251163,
//! "by": "yeldarb",
//! "score": 1,
//! "time": 1772646584,
//! "title": "Roboflow (YC S20) Is Hiring a Security Engineer for AI Infra",
//! "url": "https://roboflow.com/careers",
//! "text": null
//! }
//! ]
//! ```
//!
//! ---
//!
//! ## Shell Integration
//!
//! Because output is written to stdout, `leadforge` composes naturally
//! with standard Unix tools:
//!
//! ```bash
//! leadforge hn --keyword rust | jq
//! ```
//!
//! ```bash
//! leadforge hn --limit 50 > jobs.json
//! ```
//!
//! This makes it suitable for:
//!
//! - automation scripts
//! - data pipelines
//! - lead generation workflows
//!
use Duration;
use Error;
use crateHackerNewsJob;
/// Errors that can occur during lead fetching and processing.
///
/// This type represents failures in external communication and
/// pipeline execution.
///
/// Currently, only network-related errors are exposed, but this
/// enum is designed to grow as new sources and failure modes are added.
/// High-level command describing what data to fetch.
///
/// This enum decouples the *intent* of the operation from its execution,
/// allowing the same API to be used by:
///
/// - CLI interfaces
/// - background jobs
/// - web services
///
/// Each variant represents a different data source.
/// Executes a [`LeadForgeCommand`] and returns collected results.
///
/// This is the main entry point of the library.
///
/// # Behavior
///
/// - Dispatches to the appropriate data source
/// - Executes an async streaming pipeline
/// - Applies concurrency limits and retry logic
/// - Filters results if requested
/// - Collects results into a `Vec`
///
/// # Errors
///
/// Returns [`LeadForgeError`] if:
///
/// - network requests fail
/// - retries are exhausted
/// - the upstream API is unavailable
///
/// # Example
///
/// ```no_run
/// use leadforge::{run, LeadForgeCommand};
/// use std::time::Duration;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let results = run(LeadForgeCommand::HackerNews {
/// limit: 5,
/// max_concurrency: 10,
/// max_retries: 2,
/// timeout: Duration::from_secs(5),
/// keyword: None,
/// }).await?;
///
/// println!("Fetched {} jobs", results.len());
/// # Ok(())
/// # }
/// ```
pub async