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
//! XML stream executor.
use crate::config::{XmlAuth, XmlPagination, XmlStreamConfig};
use crate::convert;
use async_trait::async_trait;
use faucet_core::util::{self, DEFAULT_ERROR_BODY_MAX_LEN};
use faucet_core::{AuthSpec, Credential, FaucetError, SharedAuthProvider};
use faucet_core::{Stream, StreamPage};
use reqwest::Client;
use serde_json::Value;
use std::collections::HashMap;
use std::pin::Pin;
use std::time::Duration;
/// Content fingerprint of a fetched page, used as a pagination loop guard: a
/// server that ignores the page/offset parameter (or clamps to the last page)
/// returns the same non-empty page on every request, which would otherwise loop
/// forever. Stopping when two consecutive pages fingerprint identically mirrors
/// the REST source's body-fingerprint guard (audit #146 H4/H5).
fn page_fingerprint(records: &[Value]) -> u64 {
use std::hash::{Hash, Hasher};
// `serde_json::Value` is not `Hash`; hash its canonical string form.
let mut hasher = std::collections::hash_map::DefaultHasher::new();
records.len().hash(&mut hasher);
for r in records {
r.to_string().hash(&mut hasher);
}
hasher.finish()
}
/// Retries on transient (5xx / connection) failures before giving up.
const RETRY_MAX_ATTEMPTS: u32 = 3;
/// Base exponential-backoff delay between retries.
const RETRY_BASE_BACKOFF: Duration = Duration::from_millis(500);
/// A configured XML API source that handles pagination and extraction.
pub struct XmlStream {
config: XmlStreamConfig,
client: Client,
/// Optional shared auth provider. When present it takes precedence over
/// inline auth, so several sources can share one token with single-flight
/// refresh. Used by the CLI to resolve `auth: { ref }`, and by library
/// callers who construct one provider and inject it into many sources.
auth_provider: Option<SharedAuthProvider>,
/// Retry policy for transient request failures. Defaulted in `new()` to
/// reproduce the legacy `RETRY_MAX_ATTEMPTS` / `RETRY_BASE_BACKOFF`
/// constants; overridable via [`with_retry_policy`](Self::with_retry_policy).
retry_policy: faucet_core::RetryPolicy,
}
/// Attach a mutual-TLS client identity to the HTTP client builder (#495). Only
/// compiled with the `mtls` feature; the stub errors so a `tls:` block on a
/// build without the feature fails loudly instead of silently sending no cert.
#[cfg(feature = "mtls")]
fn apply_client_tls(
builder: reqwest::ClientBuilder,
tls: &faucet_core::TlsClientConfig,
) -> Result<reqwest::ClientBuilder, FaucetError> {
let identity = build_identity(tls)?;
let mut builder = builder.identity(identity).use_native_tls();
if let Some(v) = &tls.min_version {
// `TlsClientConfig::validate` guarantees `v` is "1.2" or "1.3".
let version = if v == "1.3" {
reqwest::tls::Version::TLS_1_3
} else {
reqwest::tls::Version::TLS_1_2
};
builder = builder.min_tls_version(version);
}
Ok(builder)
}
#[cfg(not(feature = "mtls"))]
fn apply_client_tls(
_builder: reqwest::ClientBuilder,
_tls: &faucet_core::TlsClientConfig,
) -> Result<reqwest::ClientBuilder, FaucetError> {
Err(FaucetError::Config(
"a `tls:` (mutual-TLS) block is configured, but this build of \
faucet-source-xml lacks the `mtls` feature; rebuild with `--features mtls`"
.into(),
))
}
/// Build a [`reqwest::Identity`] from the PEM pair or the PKCS#12 file. Errors
/// never echo key material — only the backend's opaque parse message.
#[cfg(feature = "mtls")]
fn build_identity(tls: &faucet_core::TlsClientConfig) -> Result<reqwest::Identity, FaucetError> {
if let Some(p12_path) = &tls.client_identity_pkcs12 {
let der = std::fs::read(p12_path).map_err(|e| {
FaucetError::Config(format!(
"tls: could not read PKCS#12 file {p12_path:?}: {e}"
))
})?;
let password = tls.pkcs12_password.as_deref().unwrap_or("");
reqwest::Identity::from_pkcs12_der(&der, password)
.map_err(|e| FaucetError::Config(format!("tls: invalid PKCS#12 identity: {e}")))
} else {
let cert = tls.client_cert.as_deref().unwrap_or_default();
let key = tls.client_key.as_deref().unwrap_or_default();
reqwest::Identity::from_pkcs8_pem(cert.as_bytes(), key.as_bytes())
.map_err(|e| FaucetError::Config(format!("tls: invalid PEM client identity: {e}")))
}
}
/// Map a [`Credential`] from a shared provider onto the XML [`XmlAuth`]
/// representation so the existing header-application path can be reused.
fn credential_to_auth(cred: Credential) -> XmlAuth {
match cred {
Credential::Bearer(token) => XmlAuth::Bearer { token },
Credential::Token(token) => XmlAuth::Custom {
headers: std::iter::once(("Authorization".to_string(), token)).collect(),
},
Credential::Basic { username, password } => XmlAuth::Basic { username, password },
Credential::Header { name, value } => XmlAuth::Custom {
headers: std::iter::once((name, value)).collect(),
},
}
}
impl XmlStream {
/// Create a new XML stream from the given configuration.
///
/// Infallible for the common case. Prefer [`try_new`](Self::try_new) when the
/// config may carry a `tls:` (mutual-TLS) block: this panics if the client
/// (or the TLS identity) fails to build, matching the pre-existing
/// `Client::new()` behavior.
pub fn new(config: XmlStreamConfig) -> Self {
Self::try_new(config)
.expect("XmlStream::new: client build failed; use try_new() for fallible construction")
}
/// Fallible constructor — builds the HTTP client, including any mutual-TLS
/// client identity. The CLI registry uses this so a bad `tls:` block surfaces
/// as a typed error instead of a panic.
///
/// Note: this does **not** run the full [`XmlStreamConfig::validate`] (SOAP
/// checks) — that stays at fetch time, unchanged — it only validates and
/// applies the `tls:` block, so `new()` remains infallible for non-TLS
/// configs exactly as before.
pub fn try_new(config: XmlStreamConfig) -> Result<Self, FaucetError> {
let mut builder = Client::builder();
if let Some(tls) = &config.tls {
tls.validate()?;
builder = apply_client_tls(builder, tls)?;
}
let client = builder
.build()
.map_err(|e| FaucetError::Config(format!("xml: failed to build HTTP client: {e}")))?;
Ok(Self {
config,
client,
auth_provider: None,
// Reproduce the legacy `execute_with_retry(RETRY_MAX_ATTEMPTS,
// RETRY_BASE_BACKOFF, …)` behavior exactly: `max_retries` is
// retries-after-first, so `max_attempts = RETRY_MAX_ATTEMPTS + 1`.
retry_policy: faucet_core::RetryPolicy {
max_attempts: RETRY_MAX_ATTEMPTS + 1,
backoff: faucet_core::BackoffKind::Exponential,
base: RETRY_BASE_BACKOFF,
max: Duration::from_secs(60),
jitter: true,
retry_on: faucet_core::RetryClassSet::default(),
},
})
}
/// Attach a custom [`RetryPolicy`](faucet_core::RetryPolicy) for transient
/// request failures, replacing the default derived from
/// `RETRY_MAX_ATTEMPTS` / `RETRY_BASE_BACKOFF`. Used by the CLI to inject a
/// pipeline-level `resilience:` policy into the source.
pub fn with_retry_policy(mut self, policy: faucet_core::RetryPolicy) -> Self {
self.retry_policy = policy;
self
}
/// Attach a shared [`AuthProvider`](faucet_core::AuthProvider). When set,
/// the provider supplies the credential for every request (taking precedence
/// over inline auth), so several sources can share one token with
/// single-flight refresh. Used by the CLI to resolve `auth: { ref }`, and by
/// library callers who construct one provider and inject it into many
/// sources.
pub fn with_auth_provider(mut self, provider: SharedAuthProvider) -> Self {
self.auth_provider = Some(provider);
self
}
/// The effective record element path after applying SOAP ergonomics.
///
/// When a `soap:` block is present with `path_relative_to_body` (the
/// default), the configured `records_element_path` is resolved relative to
/// the SOAP body — `Envelope.Body.` is prepended so the user writes
/// `GetUsersResponse.Users.User`. Otherwise the configured path is used
/// verbatim (the non-SOAP behavior).
fn effective_records_path(&self) -> Option<String> {
match (&self.config.soap, &self.config.records_element_path) {
(Some(soap), Some(path)) if soap.path_relative_to_body => {
Some(format!("Envelope.Body.{path}"))
}
(_, path) => path.clone(),
}
}
/// Eagerly convert one HTTP page of XML to JSON and extract its records,
/// applying SOAP fault handling when a `soap:` block is present.
///
/// When `soap` is absent this reproduces the legacy eager path exactly
/// (`xml_to_json` + `extract_at_path`), so non-SOAP behavior is unchanged.
/// When `soap` is present it additionally detects a SOAP `<Fault>` under
/// `Envelope.Body`: with `fault_as_error` it raises
/// [`FaucetError::Source`]; otherwise it emits zero records and logs the
/// fault once (tracked via `fault_logged`).
fn extract_records_eager(
&self,
xml_text: &str,
fault_logged: &mut bool,
) -> Result<Vec<Value>, FaucetError> {
let doc = convert::xml_to_json(xml_text)?;
if let Some(soap) = &self.config.soap
&& let Some(message) = convert::detect_soap_fault(&doc)
{
if soap.fault_as_error {
return Err(FaucetError::Source(format!("SOAP fault: {message}")));
}
if !*fault_logged {
tracing::warn!(
fault = %message,
"SOAP fault in response; emitting zero records (fault_as_error=false)"
);
*fault_logged = true;
}
return Ok(Vec::new());
}
let records = match self.effective_records_path() {
Some(path) => convert::extract_at_path(&doc, &path),
None => vec![doc],
};
Ok(records)
}
/// Fetch all records across all pages.
pub async fn fetch_all(&self) -> Result<Vec<Value>, FaucetError> {
self.fetch_all_with_context(&HashMap::new()).await
}
/// Fetch all records, substituting parent context into path, query_params, and body.
async fn fetch_all_with_context(
&self,
context: &HashMap<String, serde_json::Value>,
) -> Result<Vec<Value>, FaucetError> {
self.config.validate()?;
let mut all_records = Vec::new();
let mut pages_fetched = 0usize;
let mut offset = 0usize;
let mut page_number = None;
let mut prev_fingerprint: Option<u64> = None;
let mut fault_logged = false;
// Body-cursor pagination (#544): the request body for pages after the
// first (the rendered `next_body`), and the last-seen token for the
// loop guard. `None` on the first page → use the configured body/soap.
let mut body_override: Option<String> = None;
let mut prev_token: Option<String> = None;
// Initialize pagination state.
if let Some(XmlPagination::PageNumber { start_page, .. }) = &self.config.pagination {
page_number = Some(*start_page);
}
loop {
if let Some(max) = self.config.max_pages
&& pages_fetched >= max
{
tracing::warn!("max pages ({max}) reached");
break;
}
let mut params = self.config.query_params.clone();
self.apply_pagination_params(&mut params, page_number, offset);
let xml_text = self
.execute_request(¶ms, context, body_override.as_deref())
.await?;
// #540: when a decode pipeline is configured, records come from the
// decoded output (extract → base64/gunzip/unzip → parse) rather than
// navigating `records_element_path` over the raw XML.
let records = if self.config.decode.is_empty() {
self.extract_records_eager(&xml_text, &mut fault_logged)?
} else {
crate::decode::run_decode(xml_text.as_bytes(), &self.config.decode).await?
};
let record_count = records.len();
let fingerprint = page_fingerprint(&records);
pages_fetched += 1;
// Loop guard: a server that ignores the page/offset parameter (or
// clamps to the last page) returns the same non-empty page forever.
// Stop when two consecutive pages are identical (audit #146 H4/H5) —
// and do it BEFORE appending, so the duplicate page's records are
// never emitted to the sink a second time (audit #321 M4).
if record_count > 0 && prev_fingerprint == Some(fingerprint) {
tracing::warn!(
"XML pagination returned an identical page; stopping to avoid an infinite loop"
);
break;
}
prev_fingerprint = Some(fingerprint);
all_records.extend(records);
// Advance pagination or stop.
match &self.config.pagination {
Some(XmlPagination::PageNumber { page_size, .. }) => {
if record_count == 0 {
break;
}
// Stop if page_size is set and we got fewer records than the page size.
if let Some(size) = page_size
&& record_count < *size
{
break;
}
page_number = page_number.map(|p| p + 1);
}
Some(XmlPagination::Offset { limit, .. }) => {
if record_count < *limit {
break;
}
offset += record_count;
}
Some(XmlPagination::BodyCursor {
next_token_path,
next_body,
}) => {
// Read the continuation token from THIS page's response.
match crate::decode::xml_extract_text(xml_text.as_bytes(), next_token_path) {
// Absent/empty token → done. Repeated token → loop guard.
Some(t)
if !t.trim().is_empty()
&& prev_token.as_deref() != Some(t.as_str()) =>
{
body_override = Some(next_body.replace("${next_token}", &t));
prev_token = Some(t);
}
_ => break,
}
}
None => break,
}
}
tracing::info!(
records = all_records.len(),
pages = pages_fetched,
"XML fetch complete"
);
Ok(all_records)
}
fn apply_pagination_params(
&self,
params: &mut HashMap<String, String>,
page_number: Option<usize>,
offset: usize,
) {
match &self.config.pagination {
Some(XmlPagination::PageNumber {
param_name,
page_size,
page_size_param,
..
}) => {
if let Some(page) = page_number {
params.insert(param_name.clone(), page.to_string());
}
if let (Some(size), Some(param)) = (page_size, page_size_param) {
params.insert(param.clone(), size.to_string());
}
}
Some(XmlPagination::Offset {
offset_param,
limit_param,
limit,
}) => {
params.insert(offset_param.clone(), offset.to_string());
params.insert(limit_param.clone(), limit.to_string());
}
// Body-cursor paging carries its token in the request body, not the
// query string — nothing to add here.
Some(XmlPagination::BodyCursor { .. }) => {}
None => {}
}
}
async fn execute_request(
&self,
params: &HashMap<String, String>,
context: &HashMap<String, serde_json::Value>,
body_override: Option<&str>,
) -> Result<String, FaucetError> {
let path = if context.is_empty() {
self.config.path.clone()
} else {
faucet_core::util::substitute_context(&self.config.path, context)
};
let url = format!("{}/{}", self.config.base_url, path.trim_start_matches('/'));
// Substitute context into query parameter values.
let resolved_params: HashMap<String, String> = if context.is_empty() {
params.clone()
} else {
params
.iter()
.map(|(k, v)| (k.clone(), faucet_core::util::substitute_context(v, context)))
.collect()
};
let mut req = self
.client
.request(self.config.method.clone(), &url)
.headers(self.config.headers.clone())
.query(&resolved_params);
// Resolve credentials to concrete auth. A shared auth provider
// (from `auth: { ref }` or injected by a library caller) takes
// precedence; otherwise inline auth is used.
let effective_auth: XmlAuth = if let Some(provider) = &self.auth_provider {
credential_to_auth(provider.credential().await?)
} else {
match &self.config.auth {
AuthSpec::Inline(a) => a.clone(),
AuthSpec::Reference(r) => {
return Err(FaucetError::Auth(format!(
"auth references provider '{}' but no provider was supplied; \
set one via the CLI `auth:` catalog or `with_auth_provider`",
r.name
)));
}
}
};
// Apply auth.
match &effective_auth {
XmlAuth::None => {}
XmlAuth::Bearer { token } => {
req = req.bearer_auth(token);
}
XmlAuth::Basic { username, password } => {
req = req.basic_auth(username, Some(password));
}
XmlAuth::Custom { headers } => {
let mut hm = reqwest::header::HeaderMap::new();
for (name, value) in headers {
let n =
reqwest::header::HeaderName::from_bytes(name.as_bytes()).map_err(|e| {
FaucetError::Auth(format!("invalid custom header name {name:?}: {e}"))
})?;
let v = reqwest::header::HeaderValue::from_str(value).map_err(|e| {
FaucetError::Auth(format!("invalid custom header value for {name:?}: {e}"))
})?;
hm.insert(n, v);
}
req = req.headers(hm);
}
}
// Set the request body for POST (SOAP), with context substitution.
//
// A `soap:` block takes precedence: it assembles the envelope and
// injects the version-appropriate headers (Content-Type + SOAPAction).
// These headers are set here regardless of the `auth` variant, so real
// bearer / basic auth (applied above) is left untouched. Otherwise the
// legacy raw-`body` path is used verbatim (byte-for-byte unchanged).
if let Some(ob) = body_override {
// #544 body-cursor: a rendered `next_body` replaces the request body
// for pages after the first (e.g. Intacct `readMore`). Takes
// precedence over the configured soap/raw body.
let resolved = if context.is_empty() {
ob.to_string()
} else {
faucet_core::util::substitute_context(ob, context)
};
req = req
.header("Content-Type", "text/xml; charset=utf-8")
.body(resolved);
} else if let Some(soap) = &self.config.soap {
let inner = soap.body_inner.as_deref().unwrap_or("");
let resolved_inner = if context.is_empty() {
inner.to_string()
} else {
faucet_core::util::substitute_context(inner, context)
};
let envelope = soap.build_envelope(&resolved_inner);
req = req
.header("Content-Type", soap.content_type())
.body(envelope);
if let Some(action) = soap.soap_action_header() {
req = req.header("SOAPAction", action);
}
} else if let Some(body) = &self.config.body {
let resolved_body = if context.is_empty() {
body.clone()
} else {
faucet_core::util::substitute_context(body, context)
};
req = req
.header("Content-Type", "text/xml; charset=utf-8")
.body(resolved_body);
}
// Retry transient failures (5xx / connection resets) with jittered
// backoff, matching the REST source's reliability layer (#78/#16).
// The request body is a String, so `try_clone` always succeeds.
faucet_core::execute_with_policy(&self.retry_policy, None, || {
let attempt = req.try_clone();
async move {
let req = attempt.ok_or_else(|| {
FaucetError::Source("xml: request is not cloneable for retry".into())
})?;
let resp = req.send().await.map_err(FaucetError::Http)?;
let resp = util::check_http_response(resp, DEFAULT_ERROR_BODY_MAX_LEN).await?;
resp.text().await.map_err(FaucetError::Http)
}
})
.await
}
}
#[async_trait]
impl faucet_core::Source for XmlStream {
async fn fetch_with_context(
&self,
context: &std::collections::HashMap<String, serde_json::Value>,
) -> Result<Vec<Value>, FaucetError> {
self.fetch_all_with_context(context).await
}
/// Stream records from the XML response without materialising the whole
/// document tree. The event-driven parser only builds JSON values for
/// elements matching [`XmlStreamConfig::records_element_path`]; other
/// elements are observed and discarded, so client-side memory is bounded
/// at `O(batch_size * record_size)` regardless of how large the document
/// is.
///
/// Records are accumulated into a buffer of
/// [`XmlStreamConfig::batch_size`] entries and yielded as a
/// [`StreamPage`] once the buffer is full. The trailing partial buffer
/// (if any) is emitted after the parser hits EOF and all pagination
/// rounds drain.
///
/// The trait-level `batch_size` argument is intentionally ignored in
/// favour of the config field — the config is the user-facing knob the
/// README documents, and routing the pipeline-supplied hint through it
/// would silently override an explicit config value. `batch_size = 0`
/// drains every page into a single emitted page.
///
/// Bookmarks are always `None` — the XML source has no
/// incremental-replication mode today; pagination only walks the
/// API's own page-number / offset cursor.
fn stream_pages<'a>(
&'a self,
context: &'a HashMap<String, Value>,
_batch_size: usize,
) -> Pin<Box<dyn Stream<Item = Result<StreamPage, FaucetError>> + Send + 'a>> {
let batch_size = self.config.batch_size;
let owned_context = context.clone();
Box::pin(async_stream::try_stream! {
self.config.validate()?;
// A decode pipeline (#540) and body-cursor paging (#544) both buffer
// the whole payload, so they can't use the event-driven streaming
// parser — fall back to the eager fetch and emit it in chunks.
if !self.config.decode.is_empty()
|| matches!(self.config.pagination, Some(XmlPagination::BodyCursor { .. }))
{
let records = self.fetch_all_with_context(&owned_context).await?;
let chunk = if batch_size == 0 { usize::MAX } else { batch_size };
for c in records.chunks(chunk) {
yield StreamPage { records: c.to_vec(), bookmark: None };
}
return;
}
let chunk = if batch_size == 0 { usize::MAX } else { batch_size };
let initial_capacity = if batch_size == 0 { 1024 } else { batch_size };
let mut buffer: Vec<Value> = Vec::with_capacity(initial_capacity);
let mut total = 0usize;
let mut pages_fetched = 0usize;
let mut offset = 0usize;
let mut page_number = None;
let mut prev_fingerprint: Option<u64> = None;
let mut fault_logged = false;
if let Some(XmlPagination::PageNumber { start_page, .. }) =
&self.config.pagination
{
page_number = Some(*start_page);
}
loop {
if let Some(max) = self.config.max_pages
&& pages_fetched >= max
{
tracing::warn!("max pages ({max}) reached");
break;
}
let mut params = self.config.query_params.clone();
self.apply_pagination_params(&mut params, page_number, offset);
let xml_text = self.execute_request(¶ms, &owned_context, None).await?;
// Event-driven extraction: only the matched subtree is
// ever materialised. The closure pushes into the local
// buffer; once it crosses `chunk`, the surrounding loop
// can flush, but we can't `yield` from inside the closure,
// so we collect this HTTP page's records into a scratch
// Vec and then iterate them after.
//
// A `soap:` block routes through the eager converter so the
// SOAP `<Fault>` check and `Envelope.Body.`-relative path
// resolution apply (SOAP responses are small — the bounded-
// memory streaming path is reserved for the non-SOAP case,
// which stays byte-for-byte unchanged).
let mut page_records: Vec<Value> = Vec::new();
if self.config.soap.is_some() {
page_records = self.extract_records_eager(&xml_text, &mut fault_logged)?;
} else {
convert::stream_extract(
&xml_text,
self.config.records_element_path.as_deref(),
|rec| page_records.push(rec),
)?;
}
let record_count = page_records.len();
let fingerprint = page_fingerprint(&page_records);
pages_fetched += 1;
// Loop guard: stop when two consecutive pages are identical — a
// server ignoring the page/offset parameter (or clamping to the
// last page) returns the same non-empty page forever (#146 H4/H5).
// Check BEFORE buffering/yielding so the duplicate page's records
// are not emitted to the sink a second time (audit #321 M4).
if record_count > 0 && prev_fingerprint == Some(fingerprint) {
tracing::warn!(
"XML pagination returned an identical page; stopping to avoid an infinite loop"
);
break;
}
prev_fingerprint = Some(fingerprint);
for rec in page_records.drain(..) {
buffer.push(rec);
if buffer.len() >= chunk {
let flush = std::mem::replace(&mut buffer, Vec::with_capacity(initial_capacity));
total += flush.len();
yield StreamPage { records: flush, bookmark: None };
}
}
// Advance pagination using the same rules as
// `fetch_all_with_context`.
match &self.config.pagination {
Some(XmlPagination::PageNumber { page_size, .. }) => {
if record_count == 0 {
break;
}
if let Some(size) = page_size
&& record_count < *size
{
break;
}
page_number = page_number.map(|p| p + 1);
}
Some(XmlPagination::Offset { limit, .. }) => {
if record_count < *limit {
break;
}
offset += record_count;
}
// Handled by the buffered fallback above (this streaming
// path is never entered for body-cursor paging).
Some(XmlPagination::BodyCursor { .. }) => break,
None => break,
}
}
if !buffer.is_empty() {
total += buffer.len();
yield StreamPage { records: buffer, bookmark: None };
}
tracing::info!(
records = total,
pages = pages_fetched,
batch_size,
"XML source stream complete",
);
})
}
fn connector_name(&self) -> &'static str {
"xml"
}
fn config_schema(&self) -> serde_json::Value {
serde_json::to_value(faucet_core::schema_for!(XmlStreamConfig))
.expect("schema serialization")
}
fn dataset_uri(&self) -> String {
format!(
"{}{}",
faucet_core::redact_uri_credentials(&self.config.base_url),
self.config.path
)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::config::{SoapConfig, SoapVersion};
use faucet_core::Source;
fn soap_response(records: &str) -> String {
format!(
"<Envelope xmlns=\"http://schemas.xmlsoap.org/soap/envelope/\"><Body>\
<GetUsersResponse><Users>{records}</Users></GetUsersResponse></Body></Envelope>"
)
}
#[test]
fn effective_path_prepends_envelope_body_by_default() {
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc")
.method(reqwest::Method::POST)
.records_element_path("GetUsersResponse.Users.User")
.with_soap(SoapConfig {
body_inner: Some("<Op/>".into()),
..Default::default()
}),
);
assert_eq!(
source.effective_records_path().as_deref(),
Some("Envelope.Body.GetUsersResponse.Users.User")
);
}
#[test]
fn effective_path_absolute_override_when_not_relative() {
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc")
.method(reqwest::Method::POST)
.records_element_path("Envelope.Body.GetUsersResponse.Users.User")
.with_soap(SoapConfig {
body_inner: Some("<Op/>".into()),
path_relative_to_body: false,
..Default::default()
}),
);
assert_eq!(
source.effective_records_path().as_deref(),
Some("Envelope.Body.GetUsersResponse.Users.User")
);
}
#[test]
fn effective_path_unchanged_without_soap() {
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc").records_element_path("root.item"),
);
assert_eq!(
source.effective_records_path().as_deref(),
Some("root.item")
);
}
#[test]
fn extract_records_eager_resolves_relative_soap_path() {
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc")
.method(reqwest::Method::POST)
.records_element_path("GetUsersResponse.Users.User")
.with_soap(SoapConfig {
body_inner: Some("<Op/>".into()),
..Default::default()
}),
);
let xml = soap_response("<User><Name>Alice</Name></User><User><Name>Bob</Name></User>");
let mut logged = false;
let records = source.extract_records_eager(&xml, &mut logged).unwrap();
assert_eq!(records.len(), 2);
assert_eq!(records[0]["Name"], "Alice");
assert_eq!(records[1]["Name"], "Bob");
}
#[test]
fn extract_records_eager_fault_as_error_raises_source_error() {
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc")
.method(reqwest::Method::POST)
.records_element_path("GetUsersResponse.Users.User")
.with_soap(SoapConfig {
body_inner: Some("<Op/>".into()),
..Default::default()
}),
);
let xml = r#"<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"><Body>
<Fault><faultcode>Server</faultcode><faultstring>kaboom</faultstring></Fault>
</Body></Envelope>"#;
let mut logged = false;
let err = source.extract_records_eager(xml, &mut logged).unwrap_err();
assert!(
matches!(&err, FaucetError::Source(m) if m.contains("SOAP fault") && m.contains("kaboom")),
"got {err:?}"
);
}
#[test]
fn extract_records_eager_fault_not_error_yields_zero_records() {
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc")
.method(reqwest::Method::POST)
.records_element_path("GetUsersResponse.Users.User")
.with_soap(SoapConfig {
body_inner: Some("<Op/>".into()),
fault_as_error: false,
..Default::default()
}),
);
let xml = r#"<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/"><Body>
<Fault><faultstring>ignored</faultstring></Fault>
</Body></Envelope>"#;
let mut logged = false;
let records = source.extract_records_eager(xml, &mut logged).unwrap();
assert!(records.is_empty());
assert!(logged, "fault should be recorded as logged");
}
#[test]
fn extract_records_eager_non_soap_matches_legacy_eager_path() {
// Regression: with no soap block, extraction is byte-for-byte the
// legacy xml_to_json + extract_at_path behavior.
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc").records_element_path("root.item"),
);
let xml = "<root><item><id>1</id></item><item><id>2</id></item></root>";
let mut logged = false;
let records = source.extract_records_eager(xml, &mut logged).unwrap();
let legacy = convert::extract_at_path(&convert::xml_to_json(xml).unwrap(), "root.item");
assert_eq!(records, legacy);
assert_eq!(records.len(), 2);
}
#[tokio::test]
async fn fetch_all_rejects_invalid_soap_config() {
// A soap block with the default GET method fails validation before any
// request is attempted.
let source = XmlStream::new(
XmlStreamConfig::new("https://s", "/svc").with_soap(SoapConfig::default()),
);
let err = source.fetch_all().await.unwrap_err();
assert!(matches!(&err, FaucetError::Config(_)), "got {err:?}");
}
#[test]
fn soap12_content_type_used_for_envelope() {
// Sanity: a 1.2 soap block produces the 1.2 content type.
let soap = SoapConfig {
version: SoapVersion::Soap12,
action: Some("urn:Op".into()),
..Default::default()
};
assert!(soap.content_type().starts_with("application/soap+xml"));
}
#[test]
fn dataset_uri_combines_base_and_path() {
let source = XmlStream::new(XmlStreamConfig::new(
"https://soap.example.com",
"/api/v1/service",
));
assert_eq!(
source.dataset_uri(),
"https://soap.example.com/api/v1/service"
);
}
#[test]
fn dataset_uri_redacts_credentials() {
let source = XmlStream::new(XmlStreamConfig::new(
"https://user:pass@soap.example.com",
"/svc",
));
assert_eq!(source.dataset_uri(), "https://soap.example.com/svc");
}
#[test]
fn default_retry_policy_reproduces_legacy_constants() {
let source = XmlStream::new(XmlStreamConfig::new("https://soap.example.com", "/svc"));
assert_eq!(source.retry_policy.max_attempts, RETRY_MAX_ATTEMPTS + 1);
assert_eq!(source.retry_policy.base, RETRY_BASE_BACKOFF);
}
#[test]
fn with_retry_policy_overrides_the_default() {
let policy = faucet_core::RetryPolicy {
max_attempts: 9,
base: Duration::from_secs(7),
..faucet_core::RetryPolicy::default()
};
let source = XmlStream::new(XmlStreamConfig::new("https://soap.example.com", "/svc"))
.with_retry_policy(policy);
assert_eq!(source.retry_policy.max_attempts, 9);
assert_eq!(source.retry_policy.base, Duration::from_secs(7));
}
}
/// Mutual-TLS unit tests (#495) — lib-level for reliable llvm-cov attribution.
#[cfg(all(test, feature = "mtls"))]
mod mtls_tests {
use super::*;
use faucet_core::TlsClientConfig;
const CERT: &str = include_str!("../tests/fixtures/mtls/cert.pem");
const KEY: &str = include_str!("../tests/fixtures/mtls/key.pem");
fn pem() -> TlsClientConfig {
TlsClientConfig {
client_cert: Some(CERT.to_string()),
client_key: Some(KEY.to_string()),
..Default::default()
}
}
#[test]
fn pem_identity_builds() {
let cfg = XmlStreamConfig::new("https://x.test", "/y").tls(pem());
assert!(XmlStream::try_new(cfg).is_ok());
}
#[test]
fn min_version_branches_are_exercised() {
let mut tls = pem();
tls.min_version = Some("1.2".into());
assert!(XmlStream::try_new(XmlStreamConfig::new("https://x.test", "/y").tls(tls)).is_ok());
// 1.3 exercises the other branch; some native-tls backends reject a 1.3
// floor at build time, so only require it not to panic.
let mut tls = pem();
tls.min_version = Some("1.3".into());
let _ = XmlStream::try_new(XmlStreamConfig::new("https://x.test", "/y").tls(tls));
}
#[test]
fn pkcs12_identity_builds() {
let p12 = concat!(
env!("CARGO_MANIFEST_DIR"),
"/tests/fixtures/mtls/identity.p12"
);
let tls = TlsClientConfig {
client_identity_pkcs12: Some(p12.to_string()),
pkcs12_password: Some("changeit".into()),
..Default::default()
};
let cfg = XmlStreamConfig::new("https://x.test", "/y").tls(tls);
assert!(XmlStream::try_new(cfg).is_ok());
}
#[test]
fn invalid_pem_errors_without_leaking_key() {
let tls = TlsClientConfig {
client_cert: Some("-----BEGIN CERTIFICATE-----\nbad\n-----END CERTIFICATE-----".into()),
client_key: Some("SUPERSECRETKEY".into()),
..Default::default()
};
let cfg = XmlStreamConfig::new("https://x.test", "/y").tls(tls);
let err = XmlStream::try_new(cfg)
.map(|_| ())
.expect_err("bad PEM must error");
assert!(!err.to_string().contains("SUPERSECRETKEY"));
}
#[test]
fn invalid_tls_shape_errors() {
// Both PEM and PKCS#12 set → validation error.
let mut tls = pem();
tls.client_identity_pkcs12 = Some("/x.p12".into());
let cfg = XmlStreamConfig::new("https://x.test", "/y").tls(tls);
assert!(XmlStream::try_new(cfg).is_err());
}
#[test]
fn missing_pkcs12_file_errors() {
let tls = TlsClientConfig {
client_identity_pkcs12: Some("/no/such.p12".into()),
pkcs12_password: Some("x".into()),
..Default::default()
};
let cfg = XmlStreamConfig::new("https://x.test", "/y").tls(tls);
assert!(XmlStream::try_new(cfg).is_err());
}
#[test]
fn config_validate_checks_tls() {
assert!(
XmlStreamConfig::new("https://x.test", "/y")
.tls(pem())
.validate()
.is_ok()
);
let mut bad = pem();
bad.client_identity_pkcs12 = Some("/x.p12".into());
assert!(
XmlStreamConfig::new("https://x.test", "/y")
.tls(bad)
.validate()
.is_err()
);
}
}