Context Managers
Bind a :class:PipelineReport to the current context.
Lets nested helpers (e.g., :func:pipeline_step, :func:pipeline_file)
discover the active pipeline via a thread/async-safe context variable,
so you don’t have to pass pr explicitly.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pr
|
PipelineReport
|
The pipeline to bind for the duration of the context. |
required |
Yields:
| Type | Description |
|---|---|
PipelineReport
|
The same report object (convenience). |
Examples:
>>> with bind_pipeline(report):
... # inside, helpers can omit `pr`
... ...
Source code in src/pipeline_watcher/core.py
1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 | |
Context manager for a batch-level step.
Creates a :class:StepReport, times it, captures exceptions (optional
re-raise), and appends it to the provided or bound pipeline. Also supports
updating the pipeline's progress banner on enter/exit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pr
|
PipelineReport or None
|
Pipeline to append the step to. If |
required |
id
|
str
|
Machine-friendly step id (e.g., |
required |
label
|
str
|
Human-friendly label for UI display. |
None
|
banner_stage
|
str
|
Stage label to set on the pipeline banner after appending the step
(or on enter if |
None
|
banner_percent
|
int
|
Percent to set on the banner after appending. If |
None
|
banner_message
|
str
|
Message to set on the banner (falls back to existing message if |
None
|
set_stage_on_enter
|
bool
|
If |
False
|
raise_on_exception
|
bool
|
If |
False
|
save_on_exception
|
bool
|
If an exception occurs and a pipeline is available, attempt to save the pipeline JSON immediately (best-effort). |
True
|
output_path_override
|
str or Path or None
|
When saving on exception, write to this path instead of
|
None
|
Yields:
| Type | Description |
|---|---|
StepReport
|
The live step report to populate within the |
Notes
- Exceptions inside the block are recorded as:
errors += ["{Type}: {message}"]metadata['traceback'] = traceback.format_exc()- status set to
FAILEDviast.fail(...) metadata['duration_ms']is recorded on exit.- If a pipeline is available, the step is finalized via
st.end(), appended with :meth:PipelineReport.append_step, and the banner is optionally updated.
Examples:
Minimal with bound pipeline:
>>> with bind_pipeline(report):
... with pipeline_step(None, "index", label="Index batch") as st:
... st.add_check("manifest_present", ok=True)
Update the banner and save immediately on error:
>>> with pipeline_step(
... report, "extract",
... banner_stage="extract",
... banner_percent=40,
... banner_message="Extracting data…",
... save_on_exception=True,
... ):
... risky_operation()
Source code in src/pipeline_watcher/core.py
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 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 | |
Context manager for a per-file processing block.
Creates a :class:FileReport, times it, captures exceptions (optional
re-raise), appends it to the provided or bound pipeline, and optionally
updates the pipeline banner on enter/exit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pr
|
PipelineReport or None
|
Pipeline to append the file report to. If |
required |
file_id
|
str
|
Stable identifier for the file (preferably unique in the batch). |
required |
path
|
str or None
|
Display/source info for UIs. |
None
|
name
|
str or None
|
Display/source info for UIs. |
None
|
size_bytes
|
int or None
|
File size hint. |
None
|
mime_type
|
str or None
|
MIME type hint for UIs. |
None
|
metadata
|
dict or None
|
Extra metadata merged into the file report. |
None
|
set_stage_on_enter
|
bool
|
If |
False
|
banner_stage
|
str or None
|
Stage to set when updating the banner (on enter if
|
None
|
banner_percent_on_exit
|
int or None
|
Percent to set on the banner after appending the file. If |
None
|
banner_message_on_exit
|
str or None
|
Message to set on the banner after appending. If |
None
|
raise_on_exception
|
bool
|
If |
False
|
save_on_exception
|
bool
|
If an exception occurs and a pipeline is available, attempt to save the pipeline JSON immediately (best effort). |
True
|
output_path_override
|
str or Path or None
|
When saving on exception, write here instead of |
None
|
Yields:
| Type | Description |
|---|---|
FileReport
|
The live file report to populate inside the |
Notes
- Exceptions are recorded on the file report:
errors += ["{Type}: {message}"]metadata['traceback'] = traceback.format_exc()- status set via
fail("Unhandled exception while processing file") metadata['duration_ms']is recorded on exit.- On normal completion, the file is marked
SUCCESSand finalized.
Examples:
>>> with bind_pipeline(report):
... with pipeline_file(None, file_id="f1", path="inputs/a.pdf", name="a.pdf") as fr:
... fr.add_completed_step("Verified file exists")
Source code in src/pipeline_watcher/core.py
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 | |
Context manager for a step inside a file.
Creates a :class:StepReport, times it, captures exceptions (no re-raise),
and appends it to the provided :class:FileReport.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_report
|
FileReport
|
Parent file report to append the step to. |
required |
id
|
str
|
Machine-friendly step id (e.g., |
required |
label
|
str
|
Human-friendly label for UI display. |
None
|
Yields:
| Type | Description |
|---|---|
StepReport
|
The live step to populate within the |
Notes
- Exceptions are recorded on the step and status set to
FAILED, but the exception is not re-raised (so the file can continue recording). metadata['duration_ms']is recorded on exit.
Source code in src/pipeline_watcher/core.py
1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 | |