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
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
//! Core PDF generation service (framework-agnostic).
//!
//! This module contains the core PDF generation logic that is shared across
//! all web framework integrations. The functions here are **synchronous/blocking**
//! and should be called from within a blocking context (e.g., `tokio::task::spawn_blocking`,
//! `actix_web::web::block`, etc.).
//!
//! # Architecture
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ Framework Integration │
//! │ (Actix-web / Rocket / Axum) │
//! └─────────────────────────┬───────────────────────────────────────┘
//! │ async context
//! ▼
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ spawn_blocking / web::block │
//! └─────────────────────────┬───────────────────────────────────────┘
//! │ blocking context
//! ▼
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ This Module (pdf.rs) │
//! │ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ │
//! │ │generate_pdf_ │ │generate_pdf_ │ │get_pool_stats │ │
//! │ │from_url │ │from_html │ │ │ │
//! │ └────────┬────────┘ └────────┬────────┘ └─────────────────┘ │
//! │ │ │ │
//! │ └──────────┬─────────┘ │
//! │ ▼ │
//! │ ┌─────────────────────┐ │
//! │ │generate_pdf_internal│ │
//! │ └──────────┬──────────┘ │
//! └──────────────────────┼──────────────────────────────────────────┘
//! │
//! ▼
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ BrowserPool │
//! │ (headless_chrome) │
//! └─────────────────────────────────────────────────────────────────┘
//! ```
//!
//! # Thread Safety
//!
//! All functions in this module are designed to be called from multiple threads
//! concurrently. The browser pool is protected by a `Mutex`, and each PDF
//! generation operation acquires a browser, uses it, and returns it to the pool
//! automatically via RAII.
//!
//! # Blocking Behavior
//!
//! **Important:** These functions block the calling thread. In an async context,
//! always wrap calls in a blocking task:
//!
//! ```rust,ignore
//! // ✅ Correct: Using spawn_blocking
//! let result = tokio::task::spawn_blocking(move || {
//! generate_pdf_from_url(&pool, &request)
//! }).await?;
//!
//! // ❌ Wrong: Calling directly in async context
//! // This will block the async runtime!
//! let result = generate_pdf_from_url(&pool, &request);
//! ```
//!
//! # Usage Examples
//!
//! ## Basic URL to PDF Conversion
//!
//! ```rust,ignore
//! use html2pdf_api::service::{generate_pdf_from_url, PdfFromUrlRequest};
//!
//! // Assuming `pool` is a BrowserPool
//! let request = PdfFromUrlRequest {
//! url: "https://example.com".to_string(),
//! ..Default::default()
//! };
//!
//! // In a blocking context:
//! let response = generate_pdf_from_url(&pool, &request)?;
//! println!("Generated PDF: {} bytes", response.data.len());
//! ```
//!
//! ## HTML to PDF Conversion
//!
//! ```rust,ignore
//! use html2pdf_api::service::{generate_pdf_from_html, PdfFromHtmlRequest};
//!
//! let request = PdfFromHtmlRequest {
//! html: "<html><body><h1>Hello World</h1></body></html>".to_string(),
//! filename: Some("hello.pdf".to_string()),
//! ..Default::default()
//! };
//!
//! let response = generate_pdf_from_html(&pool, &request)?;
//! std::fs::write("hello.pdf", &response.data)?;
//! ```
//!
//! ## With Async Web Framework
//!
//! ```rust,ignore
//! use actix_web::{web, HttpResponse};
//! use html2pdf_api::service::{generate_pdf_from_url, PdfFromUrlRequest};
//!
//! async fn handler(
//! pool: web::Data<SharedPool>,
//! query: web::Query<PdfFromUrlRequest>,
//! ) -> HttpResponse {
//! let pool = pool.into_inner();
//! let request = query.into_inner();
//!
//! let result = web::block(move || {
//! generate_pdf_from_url(&pool, &request)
//! }).await;
//!
//! match result {
//! Ok(Ok(pdf)) => HttpResponse::Ok()
//! .content_type("application/pdf")
//! .body(pdf.data),
//! Ok(Err(e)) => HttpResponse::BadRequest().body(e.to_string()),
//! Err(e) => HttpResponse::InternalServerError().body(e.to_string()),
//! }
//! }
//! ```
//!
//! # Performance Considerations
//!
//! | Operation | Typical Duration | Notes |
//! |-----------|------------------|-------|
//! | Pool lock acquisition | < 1ms | Fast, non-blocking |
//! | Browser checkout | < 1ms | If browser available |
//! | Browser creation | 500ms - 2s | If pool needs to create new browser |
//! | Page navigation | 100ms - 10s | Depends on target page |
//! | JavaScript wait | 0 - 15s | Configurable via `waitsecs` |
//! | PDF generation | 100ms - 5s | Depends on page complexity |
//! | Tab cleanup | < 100ms | Best effort, non-blocking |
//!
//! # Error Handling
//!
//! All functions return `Result<T, PdfServiceError>`. Errors are categorized
//! and include appropriate HTTP status codes. See [`PdfServiceError`] for
//! the complete error taxonomy.
//!
//! [`PdfServiceError`]: crate::service::PdfServiceError
use PrintToPdfOptions;
use ;
use crateBrowserHandle;
use crateBrowserPool;
use crate*;
// ============================================================================
// Constants
// ============================================================================
/// Default timeout for the entire PDF generation operation in seconds.
///
/// This timeout encompasses the complete operation including:
/// - Browser acquisition from pool
/// - Page navigation
/// - JavaScript execution wait
/// - PDF rendering
/// - Tab cleanup
///
/// If the operation exceeds this duration, a [`PdfServiceError::Timeout`]
/// error is returned.
///
/// # Default Value
///
/// `60` seconds - sufficient for most web pages, including those with
/// heavy JavaScript and external resources.
///
/// # Customization
///
/// This constant is used by framework integrations for their timeout wrappers.
/// To customize, create your own timeout wrapper around the service functions.
///
/// ```rust,ignore
/// use std::time::Duration;
/// use tokio::time::timeout;
///
/// let custom_timeout = Duration::from_secs(120); // 2 minutes
///
/// let result = timeout(custom_timeout, async {
/// tokio::task::spawn_blocking(move || {
/// generate_pdf_from_url(&pool, &request)
/// }).await
/// }).await;
/// ```
pub const DEFAULT_TIMEOUT_SECS: u64 = 60;
/// Default wait time for JavaScript execution in seconds.
///
/// After page navigation completes, the service waits for JavaScript to finish
/// rendering dynamic content. This constant defines the default wait time when
/// not specified in the request.
///
/// # Behavior
///
/// During the wait period, the service polls every 200ms for `window.isPageDone === true`.
/// If the page sets this flag, PDF generation proceeds immediately. Otherwise,
/// the full wait duration elapses before generating the PDF.
///
/// # Default Value
///
/// `5` seconds - balances between allowing time for JavaScript execution
/// and not waiting unnecessarily for simple pages.
///
/// # Recommendations
///
/// | Page Type | Recommended Wait |
/// |-----------|------------------|
/// | Static HTML | 1-2 seconds |
/// | Light JavaScript (vanilla JS, jQuery) | 3-5 seconds |
/// | Heavy SPA (React, Vue, Angular) | 5-10 seconds |
/// | Complex visualizations (D3, charts) | 10-15 seconds |
/// | Real-time data loading | 10-20 seconds |
pub const DEFAULT_WAIT_SECS: u64 = 5;
/// Polling interval for JavaScript completion check in milliseconds.
///
/// When waiting for JavaScript to complete, the service checks for
/// `window.isPageDone === true` at this interval.
///
/// # Trade-offs
///
/// - **Shorter interval**: More responsive but higher CPU usage
/// - **Longer interval**: Lower CPU usage but may overshoot ready state
///
/// # Default Value
///
/// `200` milliseconds - provides good responsiveness without excessive polling.
const JS_POLL_INTERVAL_MS: u64 = 200;
// ============================================================================
// Public API - Core PDF Generation Functions
// ============================================================================
/// Generate a PDF from a URL.
///
/// Navigates to the specified URL using a browser from the pool, waits for
/// JavaScript execution, and generates a PDF of the rendered page.
///
/// # Thread Safety
///
/// This function is thread-safe and can be called concurrently from multiple
/// threads. The browser pool mutex ensures safe access to shared resources.
///
/// # Blocking Behavior
///
/// **This function blocks the calling thread.** In async contexts, wrap it
/// in `tokio::task::spawn_blocking`, `actix_web::web::block`, or similar.
///
/// # Arguments
///
/// * `pool` - Reference to the browser pool. The pool uses fine-grained internal locks;\n/// browser checkout is fast (~1ms) and concurrent.
/// * `request` - PDF generation parameters. See [`PdfFromUrlRequest`] for details.
///
/// # Returns
///
/// * `Ok(PdfResponse)` - Successfully generated PDF with binary data and metadata
/// * `Err(PdfServiceError)` - Error with details about what went wrong
///
/// # Errors
///
/// | Error | Cause | Resolution |
/// |-------|-------|------------|
/// | [`InvalidUrl`] | URL is empty or malformed | Provide valid HTTP/HTTPS URL |
/// | [`BrowserUnavailable`] | Pool exhausted | Retry or increase pool size |
/// | [`TabCreationFailed`] | Browser issue | Automatic recovery |
/// | [`NavigationFailed`] | URL unreachable | Check URL accessibility |
/// | [`NavigationTimeout`] | Page too slow | Increase timeout or optimize page |
/// | [`PdfGenerationFailed`] | Rendering issue | Simplify page or check content |
///
/// [`InvalidUrl`]: PdfServiceError::InvalidUrl
/// [`BrowserUnavailable`]: PdfServiceError::BrowserUnavailable
/// [`TabCreationFailed`]: PdfServiceError::TabCreationFailed
/// [`NavigationFailed`]: PdfServiceError::NavigationFailed
/// [`NavigationTimeout`]: PdfServiceError::NavigationTimeout
/// [`PdfGenerationFailed`]: PdfServiceError::PdfGenerationFailed
///
/// # Examples
///
/// ## Basic Usage
///
/// ```rust,ignore
/// use html2pdf_api::service::{generate_pdf_from_url, PdfFromUrlRequest};
///
/// let request = PdfFromUrlRequest {
/// url: "https://example.com".to_string(),
/// ..Default::default()
/// };
///
/// let response = generate_pdf_from_url(&pool, &request)?;
/// assert!(response.data.starts_with(b"%PDF-")); // Valid PDF header
/// ```
///
/// ## With Custom Options
///
/// ```rust,ignore
/// let request = PdfFromUrlRequest {
/// url: "https://example.com/report".to_string(),
/// filename: Some("quarterly-report.pdf".to_string()),
/// landscape: Some(true), // Wide tables
/// waitsecs: Some(10), // Complex charts
/// download: Some(true), // Force download
/// print_background: Some(true),
/// };
///
/// let response = generate_pdf_from_url(&pool, &request)?;
/// println!("Generated {} with {} bytes", response.filename, response.size());
/// ```
///
/// ## Error Handling
///
/// ```rust,ignore
/// match generate_pdf_from_url(&pool, &request) {
/// Ok(pdf) => {
/// // Success - use pdf.data
/// }
/// Err(PdfServiceError::InvalidUrl(msg)) => {
/// // Client error - return 400
/// eprintln!("Bad URL: {}", msg);
/// }
/// Err(PdfServiceError::BrowserUnavailable(_)) => {
/// // Transient error - retry
/// std::thread::sleep(Duration::from_secs(1));
/// }
/// Err(e) => {
/// // Other error
/// eprintln!("PDF generation failed: {}", e);
/// }
/// }
/// ```
///
/// # Performance
///
/// Typical execution time breakdown for a moderately complex page:
///
/// ```text
/// ┌────────────────────────────────────────────────────────────────┐
/// │ Browser checkout ~1ms │
/// │ ├─────────────────────────────────────────────────────────────┤
/// │ Tab creation ~50ms │
/// │ ├─────────────────────────────────────────────────────────────┤
/// │ Navigation + page load ~500ms │
/// │ ├─────────────────────────────────────────────────────────────┤
/// │ JavaScript wait (configurable) ~5000ms │
/// │ ├─────────────────────────────────────────────────────────────┤
/// │ PDF rendering ~200ms │
/// │ ├─────────────────────────────────────────────────────────────┤
/// │ Tab cleanup ~50ms │
/// └────────────────────────────────────────────────────────────────┘
/// Total: ~5.8 seconds (dominated by JS wait)
/// ```
/// Generate a PDF from HTML content.
///
/// Loads the provided HTML content into a browser tab using a data URL,
/// waits for any JavaScript execution, and generates a PDF.
///
/// # Thread Safety
///
/// This function is thread-safe and can be called concurrently from multiple
/// threads. See [`generate_pdf_from_url`] for details.
///
/// # Blocking Behavior
///
/// **This function blocks the calling thread.** See [`generate_pdf_from_url`]
/// for guidance on async usage.
///
/// # How It Works
///
/// The HTML content is converted to a data URL:
///
/// ```text
/// data:text/html;charset=utf-8,<encoded-html-content>
/// ```
///
/// This allows loading HTML directly without a web server. The browser
/// renders the HTML as if it were loaded from a regular URL.
///
/// # Arguments
///
/// * `pool` - Reference to the mutex-wrapped browser pool
/// * `request` - HTML content and generation parameters. See [`PdfFromHtmlRequest`].
///
/// # Returns
///
/// * `Ok(PdfResponse)` - Successfully generated PDF
/// * `Err(PdfServiceError)` - Error details
///
/// # Errors
///
/// | Error | Cause | Resolution |
/// |-------|-------|------------|
/// | [`EmptyHtml`] | HTML content is empty/whitespace | Provide HTML content |
/// | [`BrowserUnavailable`] | Pool exhausted | Retry or increase pool size |
/// | [`NavigationFailed`] | HTML parsing issue | Check HTML validity |
/// | [`PdfGenerationFailed`] | Rendering issue | Simplify HTML |
///
/// [`EmptyHtml`]: PdfServiceError::EmptyHtml
/// [`BrowserUnavailable`]: PdfServiceError::BrowserUnavailable
/// [`NavigationFailed`]: PdfServiceError::NavigationFailed
/// [`PdfGenerationFailed`]: PdfServiceError::PdfGenerationFailed
///
/// # Limitations
///
/// ## External Resources
///
/// Since HTML is loaded via data URL, relative URLs don't work:
///
/// ```html
/// <!-- ❌ Won't work - relative URL -->
/// <img src="/images/logo.png">
///
/// <!-- ✅ Works - absolute URL -->
/// <img src="https://example.com/images/logo.png">
///
/// <!-- ✅ Works - inline base64 -->
/// <img src="data:image/png;base64,iVBORw0KGgo...">
/// ```
///
/// ## Size Limits
///
/// Data URLs have browser-specific size limits. For very large HTML documents
/// (> 1MB), consider:
/// - Hosting the HTML on a temporary server
/// - Using [`generate_pdf_from_url`] instead
/// - Splitting into multiple PDFs
///
/// # Examples
///
/// ## Simple HTML
///
/// ```rust,ignore
/// use html2pdf_api::service::{generate_pdf_from_html, PdfFromHtmlRequest};
///
/// let request = PdfFromHtmlRequest {
/// html: "<h1>Hello World</h1><p>This is a test.</p>".to_string(),
/// ..Default::default()
/// };
///
/// let response = generate_pdf_from_html(&pool, &request)?;
/// std::fs::write("output.pdf", &response.data)?;
/// ```
///
/// ## Complete Document with Styling
///
/// ```rust,ignore
/// let html = r#"
/// <!DOCTYPE html>
/// <html>
/// <head>
/// <meta charset="UTF-8">
/// <style>
/// body {
/// font-family: 'Arial', sans-serif;
/// margin: 40px;
/// color: #333;
/// }
/// h1 {
/// color: #0066cc;
/// border-bottom: 2px solid #0066cc;
/// padding-bottom: 10px;
/// }
/// table {
/// width: 100%;
/// border-collapse: collapse;
/// margin-top: 20px;
/// }
/// th, td {
/// border: 1px solid #ddd;
/// padding: 12px;
/// text-align: left;
/// }
/// th {
/// background-color: #f5f5f5;
/// }
/// </style>
/// </head>
/// <body>
/// <h1>Monthly Report</h1>
/// <p>Generated on: 2024-01-15</p>
/// <table>
/// <tr><th>Metric</th><th>Value</th></tr>
/// <tr><td>Revenue</td><td>$50,000</td></tr>
/// <tr><td>Users</td><td>1,234</td></tr>
/// </table>
/// </body>
/// </html>
/// "#;
///
/// let request = PdfFromHtmlRequest {
/// html: html.to_string(),
/// filename: Some("monthly-report.pdf".to_string()),
/// print_background: Some(true), // Include styled backgrounds
/// ..Default::default()
/// };
///
/// let response = generate_pdf_from_html(&pool, &request)?;
/// ```
///
/// ## With Embedded Images
///
/// ```rust,ignore
/// // Base64 encode an image
/// let image_base64 = base64::encode(std::fs::read("logo.png")?);
///
/// let html = format!(r#"
/// <!DOCTYPE html>
/// <html>
/// <body>
/// <img src="data:image/png;base64,{}" alt="Logo">
/// <h1>Company Report</h1>
/// </body>
/// </html>
/// "#, image_base64);
///
/// let request = PdfFromHtmlRequest {
/// html,
/// ..Default::default()
/// };
///
/// let response = generate_pdf_from_html(&pool, &request)?;
/// ```
/// Get current browser pool statistics.
///
/// Returns real-time metrics about the browser pool state including
/// available browsers, active browsers, and total count.
///
/// # Thread Safety
///
/// This function briefly acquires the pool lock to read statistics.
/// It's safe to call frequently for monitoring purposes.
///
/// # Blocking Behavior
///
/// This function is fast (< 1ms) as it reads from the pool's internal
/// state. Safe to call frequently from health check endpoints.
///
/// # Arguments
///
/// * `pool` - Reference to the browser pool
///
/// # Returns
///
/// * `Ok(PoolStatsResponse)` - Current pool statistics
///
/// # Examples
///
/// ## Basic Usage
///
/// ```rust,ignore
/// use html2pdf_api::service::get_pool_stats;
///
/// let stats = get_pool_stats(&pool)?;
/// println!("Available: {}", stats.available);
/// println!("Active: {}", stats.active);
/// println!("Total: {}", stats.total);
/// ```
///
/// ## Monitoring Integration
///
/// ```rust,ignore
/// use prometheus::{Gauge, register_gauge};
///
/// lazy_static! {
/// static ref POOL_AVAILABLE: Gauge = register_gauge!(
/// "browser_pool_available",
/// "Number of available browsers in pool"
/// ).unwrap();
/// static ref POOL_ACTIVE: Gauge = register_gauge!(
/// "browser_pool_active",
/// "Number of active browsers in pool"
/// ).unwrap();
/// }
///
/// fn update_metrics(pool: &Mutex<BrowserPool>) {
/// if let Ok(stats) = get_pool_stats(pool) {
/// POOL_AVAILABLE.set(stats.available as f64);
/// POOL_ACTIVE.set(stats.active as f64);
/// }
/// }
/// ```
///
/// ## Capacity Check
///
/// ```rust,ignore
/// let stats = get_pool_stats(&pool)?;
///
/// if stats.available == 0 {
/// log::warn!("No browsers available, requests may be delayed");
/// }
///
/// let utilization = stats.active as f64 / stats.total.max(1) as f64;
/// if utilization > 0.8 {
/// log::warn!("Pool utilization at {:.0}%, consider scaling", utilization * 100.0);
/// }
/// ```
/// Check if the browser pool is ready to handle requests.
///
/// Returns `true` if the pool has available browsers or capacity to create
/// new ones. This is useful for readiness probes in container orchestration.
///
/// # Readiness Criteria
///
/// The pool is considered "ready" if either:
/// - There are idle browsers available (`available > 0`), OR
/// - There is capacity to create new browsers (`active < max_pool_size`)
///
/// The pool is "not ready" only when:
/// - All browsers are in use AND the pool is at maximum capacity
///
/// # Arguments
///
/// * `pool` - Reference to the browser pool
///
/// # Returns
///
/// * `Ok(true)` - Pool can accept new requests
/// * `Ok(false)` - Pool is at capacity, requests will queue
///
/// # Use Cases
///
/// ## Kubernetes Readiness Probe
///
/// ```yaml
/// readinessProbe:
/// httpGet:
/// path: /ready
/// port: 8080
/// initialDelaySeconds: 5
/// periodSeconds: 10
/// ```
///
/// ## Load Balancer Health Check
///
/// When `is_pool_ready` returns `false`, the endpoint should return
/// HTTP 503 Service Unavailable to remove the instance from rotation.
///
/// # Examples
///
/// ## Basic Check
///
/// ```rust,ignore
/// use html2pdf_api::service::is_pool_ready;
///
/// if is_pool_ready(&pool)? {
/// println!("Pool is ready to accept requests");
/// } else {
/// println!("Pool is at capacity");
/// }
/// ```
///
/// ## Request Gating
///
/// ```rust,ignore
/// async fn handle_request(pool: &Mutex<BrowserPool>, request: PdfFromUrlRequest) -> Result<PdfResponse, Error> {
/// // Quick capacity check before expensive operation
/// if !is_pool_ready(pool)? {
/// return Err(Error::ServiceUnavailable("Pool at capacity, try again later"));
/// }
///
/// // Proceed with PDF generation
/// generate_pdf_from_url(pool, &request)
/// }
/// ```
// ============================================================================
// Internal Helper Functions
// ============================================================================
/// Validate and normalize a URL string.
///
/// Parses the URL using the `url` crate and returns the normalized form.
/// This catches malformed URLs early, before acquiring a browser.
///
/// # Validation Rules
///
/// - URL must not be empty
/// - URL must be parseable by the `url` crate
/// - Scheme must be present (http/https/file/data)
///
/// # Arguments
///
/// * `url` - The URL string to validate
///
/// # Returns
///
/// * `Ok(String)` - The normalized URL
/// * `Err(PdfServiceError::InvalidUrl)` - If validation fails
///
/// # Examples
///
/// ```rust,ignore
/// assert!(validate_url("https://example.com").is_ok());
/// assert!(validate_url("").is_err());
/// assert!(validate_url("not-a-url").is_err());
/// ```
/// Acquire a browser from the pool.
///
/// Locks the pool mutex, retrieves a browser, and returns it. The lock is
/// released immediately after checkout, not held during PDF generation.
///
/// # Browser Lifecycle
///
/// The returned `BrowserHandle` uses RAII to automatically return the
/// browser to the pool when dropped:
///
/// ```text
/// ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
/// │ acquire_browser │ ──▶ │ BrowserHandle │ ──▶ │ PDF Generation │
/// │ (lock, get) │ │ (RAII guard) │ │ (uses browser) │
/// └─────────────────┘ └─────────────────┘ └────────┬────────┘
/// │
/// ▼
/// ┌─────────────────┐ ┌─────────────────┐
/// │ Back to Pool │ ◀── │ Drop Handle │
/// │ (automatic) │ │ (RAII cleanup) │
/// └─────────────────┘ └─────────────────┘
/// ```
///
/// # Arguments
///
/// * `pool` - Reference to the mutex-wrapped browser pool
///
/// # Returns
///
/// * `Ok(BrowserHandle)` - A browser ready for use
/// * `Err(PdfServiceError)` - If pool lock or browser acquisition fails
/// Core PDF generation logic.
///
/// This function performs the actual work of:
/// 1. Creating a new browser tab
/// 2. Navigating to the URL
/// 3. Waiting for JavaScript completion
/// 4. Generating the PDF
/// 5. Cleaning up the tab
///
/// # Arguments
///
/// * `browser` - Browser handle from the pool
/// * `url` - URL to navigate to (can be http/https or data: URL)
/// * `wait_duration` - How long to wait for JavaScript
/// * `landscape` - Whether to use landscape orientation
/// * `print_background` - Whether to include background graphics
///
/// # Returns
///
/// * `Ok(Vec<u8>)` - The raw PDF binary data
/// * `Err(PdfServiceError)` - If any step fails
///
/// # Tab Lifecycle
///
/// A new tab is created for each PDF generation and closed afterward.
/// This ensures clean state and prevents memory leaks from accumulating
/// page resources.
///
/// ```text
/// Browser Instance
/// ├── Tab 1 (new) ◀── Created for this request
/// │ ├── Navigate to URL
/// │ ├── Wait for JS
/// │ ├── Generate PDF
/// │ └── Close tab ◀── Cleanup
/// └── (available for next request)
/// ```
/// Build PDF print options.
///
/// Creates the `PrintToPdfOptions` struct with the specified settings
/// and sensible defaults for margins and other options.
///
/// # Default Settings
///
/// - **Margins**: All set to 0 (full page)
/// - **Header/Footer**: Disabled
/// - **Background**: Configurable (default: true)
/// - **Scale**: 1.0 (100%)
/// Wait for the page to signal it's ready for PDF generation.
///
/// This function implements a polling loop that checks for `window.isPageDone === true`.
/// This allows JavaScript-heavy pages to signal when they've finished rendering,
/// enabling early PDF generation without waiting the full timeout.
///
/// # Behavior Summary
///
/// | Page State | Result |
/// |------------|--------|
/// | `window.isPageDone = true` | Returns **immediately** (early exit) |
/// | `window.isPageDone = false` | Waits **full duration** |
/// | `window.isPageDone` not defined | Waits **full duration** |
/// | JavaScript error during check | Waits **full duration** |
///
/// # Default Behavior (No Flag Set)
///
/// **Important:** If the page does not set `window.isPageDone = true`, this function
/// waits the **full `max_wait` duration** before returning. This is intentional -
/// it gives JavaScript-heavy pages time to render even without explicit signaling.
///
/// For example, with the default `waitsecs = 5`:
/// - A page **with** the flag set immediately: ~0ms wait
/// - A page **without** the flag: full 5000ms wait
///
/// # How It Works
///
/// ```text
/// ┌─────────────────────────────────────────────────────────────────┐
/// │ wait_for_page_ready │
/// │ │
/// │ ┌─────────┐ ┌──────────────┐ ┌─────────────────────┐ │
/// │ │ Start │────▶│ Check flag │────▶│ window.isPageDone? │ │
/// │ └─────────┘ └──────────────┘ └──────────┬──────────┘ │
/// │ │ │
/// │ ┌────────────────────────┼─────────┐ │
/// │ │ │ │ │
/// │ ▼ ▼ │ │
/// │ ┌────────────┐ ┌───────────┐ │ │
/// │ │ true │ │ false / │ │ │
/// │ │ (ready!) │ │ undefined │ │ │
/// │ └─────┬──────┘ └─────┬─────┘ │ │
/// │ │ │ │ │
/// │ ▼ ▼ │ │
/// │ ┌───────────┐ ┌───────────┐ │ │
/// │ │ Return │ │ Sleep │ │ │
/// │ │ early │ │ 200ms │─────┘ │
/// │ └───────────┘ └───────────┘ │
/// │ │ │
/// │ ▼ │
/// │ ┌───────────┐ │
/// │ │ Timeout? │ │
/// │ └─────┬─────┘ │
/// │ │ │
/// │ ┌────────────┴────────────┐ │
/// │ ▼ ▼ │
/// │ ┌───────────┐ ┌──────┐ │
/// │ │ Yes │ │ No │ │
/// │ │ (proceed) │ │(loop)│ │
/// │ └───────────┘ └──────┘ │
/// └─────────────────────────────────────────────────────────────────┘
/// ```
///
/// # Polling Timeline
///
/// The function polls every 200ms (see `JS_POLL_INTERVAL_MS`):
///
/// ```text
/// Time: 0ms 200ms 400ms 600ms 800ms ... 5000ms
/// │ │ │ │ │ │
/// ▼ ▼ ▼ ▼ ▼ ▼
/// Poll Poll Poll Poll Poll ... Timeout
/// │ │ │ │ │ │
/// └───────┴───────┴───────┴───────┴───────────┤
/// ▼
/// Proceed to PDF
///
/// If window.isPageDone = true at any poll → Exit immediately
/// ```
///
/// Each poll executes this JavaScript:
///
/// ```javascript
/// window.isPageDone === true // Returns true, false, or undefined
/// ```
///
/// - `true` → Function returns immediately
/// - `false` / `undefined` / error → Continue polling until timeout
///
/// # Page-Side Implementation (Optional)
///
/// To enable early completion and avoid unnecessary waiting, add this to your
/// page's JavaScript **after** all content is rendered:
///
/// ```javascript
/// // Signal that the page is ready for PDF generation
/// window.isPageDone = true;
/// ```
///
/// ## Framework Examples
///
/// **React:**
/// ```javascript
/// useEffect(() => {
/// fetchData().then((result) => {
/// setData(result);
/// // Signal ready after state update and re-render
/// setTimeout(() => { window.isPageDone = true; }, 0);
/// });
/// }, []);
/// ```
///
/// **Vue:**
/// ```javascript
/// mounted() {
/// this.loadData().then(() => {
/// this.$nextTick(() => {
/// window.isPageDone = true;
/// });
/// });
/// }
/// ```
///
/// **Vanilla JavaScript:**
/// ```javascript
/// document.addEventListener('DOMContentLoaded', async () => {
/// await loadDynamicContent();
/// await renderCharts();
/// window.isPageDone = true; // All done!
/// });
/// ```
///
/// # When to Increase `waitsecs`
///
/// If you cannot modify the target page to set `window.isPageDone`, increase
/// `waitsecs` based on the page complexity:
///
/// | Page Type | Recommended `waitsecs` |
/// |-----------|------------------------|
/// | Static HTML (no JS) | 1 |
/// | Light JS (form validation, simple DOM) | 2-3 |
/// | Moderate JS (API calls, dynamic content) | 5 (default) |
/// | Heavy SPA (React, Vue, Angular) | 5-10 |
/// | Complex visualizations (D3, charts, maps) | 10-15 |
/// | Pages loading external resources | 10-20 |
///
/// # Performance Optimization
///
/// For high-throughput scenarios, implementing `window.isPageDone` on your
/// pages can significantly improve performance:
///
/// ```text
/// Without flag (5s default wait):
/// Request 1: ████████████████████ 5.2s
/// Request 2: ████████████████████ 5.1s
/// Request 3: ████████████████████ 5.3s
/// Average: 5.2s per PDF
///
/// With flag (page ready in 800ms):
/// Request 1: ████ 0.9s
/// Request 2: ████ 0.8s
/// Request 3: ████ 0.9s
/// Average: 0.87s per PDF (6x faster!)
/// ```
///
/// # Arguments
///
/// * `tab` - The browser tab to check. Must have completed navigation.
/// * `max_wait` - Maximum time to wait before proceeding with PDF generation.
/// This is the upper bound; the function may return earlier if the page
/// signals readiness.
///
/// # Returns
///
/// This function returns `()` (unit). It either:
/// - Returns early when `window.isPageDone === true` is detected
/// - Returns after `max_wait` duration has elapsed (timeout)
///
/// In both cases, PDF generation proceeds afterward. This function never fails -
/// timeout is a normal completion path, not an error.
///
/// # Thread Blocking
///
/// This function blocks the calling thread with `std::thread::sleep()`.
/// Always call from within a blocking context (e.g., `spawn_blocking`).
///
/// # Example
///
/// ```rust,ignore
/// // Navigate to page first
/// let page = tab.navigate_to(url)?.wait_until_navigated()?;
///
/// // Wait up to 10 seconds for JavaScript
/// wait_for_page_ready(&tab, Duration::from_secs(10));
///
/// // Now generate PDF - page is either ready or we've waited long enough
/// let pdf_data = page.print_to_pdf(options)?;
/// ```
/// Safely close a browser tab, ignoring errors.
///
/// Tab cleanup is best-effort. If it fails, we log a warning but don't
/// propagate the error since the PDF generation already succeeded.
///
/// # Why Best-Effort?
///
/// - The PDF data is already captured
/// - Tab resources will be cleaned up when the browser is recycled
/// - Failing here would discard a valid PDF
/// - Some errors (e.g., browser already closed) are expected
///
/// # Arguments
///
/// * `tab` - The browser tab to close
/// Truncate a URL for logging purposes.
///
/// Data URLs can be extremely long (containing entire HTML documents).
/// This function truncates them for readable log output.
///
/// # Arguments
///
/// * `url` - The URL to truncate
/// * `max_len` - Maximum length before truncation
///
/// # Returns
///
/// The URL, truncated with "..." if longer than `max_len`.
// ============================================================================
// Unit Tests
// ============================================================================