Amanda Torres commited on
Commit
567071f
·
0 Parent(s):

initial commit

Browse files
Files changed (8) hide show
  1. cli.py +61 -0
  2. encoder.py +61 -0
  3. helpers.py +61 -0
  4. manager.py +78 -0
  5. models.py +85 -0
  6. processor.py +85 -0
  7. service.py +101 -0
  8. utils.py +57 -0
cli.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — utility helpers for circuit operations."""
2
+ from __future__ import annotations
3
+
4
+ import hashlib
5
+ import logging
6
+ from typing import Any, Dict, Iterable, List, Optional
7
+
8
+ logger = logging.getLogger(__name__)
9
+
10
+
11
+ def trip_circuit(data: Dict[str, Any]) -> Dict[str, Any]:
12
+ """Circuit trip — normalises and validates *data*."""
13
+ result = {k: v for k, v in data.items() if v is not None}
14
+ if "last_failure_at" not in result:
15
+ raise ValueError(f"Circuit must include 'last_failure_at'")
16
+ result["id"] = result.get("id") or hashlib.md5(
17
+ str(result["last_failure_at"]).encode()).hexdigest()[:12]
18
+ return result
19
+
20
+
21
+ def record_circuits(
22
+ items: Iterable[Dict[str, Any]],
23
+ *,
24
+ status: Optional[str] = None,
25
+ limit: int = 100,
26
+ ) -> List[Dict[str, Any]]:
27
+ """Filter and page a sequence of Circuit records."""
28
+ out = [i for i in items if status is None or i.get("status") == status]
29
+ logger.debug("record_circuits: %d items after filter", len(out))
30
+ return out[:limit]
31
+
32
+
33
+ def close_circuit(record: Dict[str, Any], **overrides: Any) -> Dict[str, Any]:
34
+ """Return a shallow copy of *record* with *overrides* merged in."""
35
+ updated = dict(record)
36
+ updated.update(overrides)
37
+ if "circuit_id" in updated and not isinstance(updated["circuit_id"], (int, float)):
38
+ try:
39
+ updated["circuit_id"] = float(updated["circuit_id"])
40
+ except (TypeError, ValueError):
41
+ pass
42
+ return updated
43
+
44
+
45
+ def validate_circuit(record: Dict[str, Any]) -> bool:
46
+ """Return True when *record* satisfies all Circuit invariants."""
47
+ required = ["last_failure_at", "circuit_id", "threshold"]
48
+ for field in required:
49
+ if field not in record or record[field] is None:
50
+ logger.warning("validate_circuit: missing field %r", field)
51
+ return False
52
+ return isinstance(record.get("id"), str)
53
+
54
+
55
+ def open_circuit_batch(
56
+ records: List[Dict[str, Any]],
57
+ batch_size: int = 50,
58
+ ) -> List[List[Dict[str, Any]]]:
59
+ """Slice *records* into chunks of *batch_size* for bulk open."""
60
+ return [records[i : i + batch_size]
61
+ for i in range(0, len(records), batch_size)]
encoder.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — utility helpers for probe operations."""
2
+ from __future__ import annotations
3
+
4
+ import hashlib
5
+ import logging
6
+ from typing import Any, Dict, Iterable, List, Optional
7
+
8
+ logger = logging.getLogger(__name__)
9
+
10
+
11
+ def trip_probe(data: Dict[str, Any]) -> Dict[str, Any]:
12
+ """Probe trip — normalises and validates *data*."""
13
+ result = {k: v for k, v in data.items() if v is not None}
14
+ if "threshold" not in result:
15
+ raise ValueError(f"Probe must include 'threshold'")
16
+ result["id"] = result.get("id") or hashlib.md5(
17
+ str(result["threshold"]).encode()).hexdigest()[:12]
18
+ return result
19
+
20
+
21
+ def close_probes(
22
+ items: Iterable[Dict[str, Any]],
23
+ *,
24
+ status: Optional[str] = None,
25
+ limit: int = 100,
26
+ ) -> List[Dict[str, Any]]:
27
+ """Filter and page a sequence of Probe records."""
28
+ out = [i for i in items if status is None or i.get("status") == status]
29
+ logger.debug("close_probes: %d items after filter", len(out))
30
+ return out[:limit]
31
+
32
+
33
+ def record_probe(record: Dict[str, Any], **overrides: Any) -> Dict[str, Any]:
34
+ """Return a shallow copy of *record* with *overrides* merged in."""
35
+ updated = dict(record)
36
+ updated.update(overrides)
37
+ if "failure_count" in updated and not isinstance(updated["failure_count"], (int, float)):
38
+ try:
39
+ updated["failure_count"] = float(updated["failure_count"])
40
+ except (TypeError, ValueError):
41
+ pass
42
+ return updated
43
+
44
+
45
+ def validate_probe(record: Dict[str, Any]) -> bool:
46
+ """Return True when *record* satisfies all Probe invariants."""
47
+ required = ["threshold", "failure_count", "last_failure_at"]
48
+ for field in required:
49
+ if field not in record or record[field] is None:
50
+ logger.warning("validate_probe: missing field %r", field)
51
+ return False
52
+ return isinstance(record.get("id"), str)
53
+
54
+
55
+ def reset_probe_batch(
56
+ records: List[Dict[str, Any]],
57
+ batch_size: int = 50,
58
+ ) -> List[List[Dict[str, Any]]]:
59
+ """Slice *records* into chunks of *batch_size* for bulk reset."""
60
+ return [records[i : i + batch_size]
61
+ for i in range(0, len(records), batch_size)]
helpers.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — utility helpers for state operations."""
2
+ from __future__ import annotations
3
+
4
+ import hashlib
5
+ import logging
6
+ from typing import Any, Dict, Iterable, List, Optional
7
+
8
+ logger = logging.getLogger(__name__)
9
+
10
+
11
+ def reset_state(data: Dict[str, Any]) -> Dict[str, Any]:
12
+ """State reset — normalises and validates *data*."""
13
+ result = {k: v for k, v in data.items() if v is not None}
14
+ if "circuit_id" not in result:
15
+ raise ValueError(f"State must include 'circuit_id'")
16
+ result["id"] = result.get("id") or hashlib.md5(
17
+ str(result["circuit_id"]).encode()).hexdigest()[:12]
18
+ return result
19
+
20
+
21
+ def close_states(
22
+ items: Iterable[Dict[str, Any]],
23
+ *,
24
+ status: Optional[str] = None,
25
+ limit: int = 100,
26
+ ) -> List[Dict[str, Any]]:
27
+ """Filter and page a sequence of State records."""
28
+ out = [i for i in items if status is None or i.get("status") == status]
29
+ logger.debug("close_states: %d items after filter", len(out))
30
+ return out[:limit]
31
+
32
+
33
+ def record_state(record: Dict[str, Any], **overrides: Any) -> Dict[str, Any]:
34
+ """Return a shallow copy of *record* with *overrides* merged in."""
35
+ updated = dict(record)
36
+ updated.update(overrides)
37
+ if "last_failure_at" in updated and not isinstance(updated["last_failure_at"], (int, float)):
38
+ try:
39
+ updated["last_failure_at"] = float(updated["last_failure_at"])
40
+ except (TypeError, ValueError):
41
+ pass
42
+ return updated
43
+
44
+
45
+ def validate_state(record: Dict[str, Any]) -> bool:
46
+ """Return True when *record* satisfies all State invariants."""
47
+ required = ["circuit_id", "last_failure_at", "threshold"]
48
+ for field in required:
49
+ if field not in record or record[field] is None:
50
+ logger.warning("validate_state: missing field %r", field)
51
+ return False
52
+ return isinstance(record.get("id"), str)
53
+
54
+
55
+ def trip_state_batch(
56
+ records: List[Dict[str, Any]],
57
+ batch_size: int = 50,
58
+ ) -> List[List[Dict[str, Any]]]:
59
+ """Slice *records* into chunks of *batch_size* for bulk trip."""
60
+ return [records[i : i + batch_size]
61
+ for i in range(0, len(records), batch_size)]
manager.py ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — Failure service layer."""
2
+ from __future__ import annotations
3
+
4
+ import logging
5
+ from typing import Any, Dict, List, Optional
6
+
7
+ logger = logging.getLogger(__name__)
8
+
9
+
10
+ class CircuitManager:
11
+ """Business-logic service for Failure operations in Circuit Breaker."""
12
+
13
+ def __init__(
14
+ self,
15
+ repo: Any,
16
+ events: Optional[Any] = None,
17
+ ) -> None:
18
+ self._repo = repo
19
+ self._events = events
20
+ logger.debug("CircuitManager started")
21
+
22
+ def close(
23
+ self, payload: Dict[str, Any]
24
+ ) -> Dict[str, Any]:
25
+ """Execute the close workflow for a new Failure."""
26
+ if "last_failure_at" not in payload:
27
+ raise ValueError("Missing required field: last_failure_at")
28
+ record = self._repo.insert(
29
+ payload["last_failure_at"], payload.get("circuit_id"),
30
+ **{k: v for k, v in payload.items()
31
+ if k not in ("last_failure_at", "circuit_id")}
32
+ )
33
+ if self._events:
34
+ self._events.emit("failure.closed", record)
35
+ return record
36
+
37
+ def open(self, rec_id: str, **changes: Any) -> Dict[str, Any]:
38
+ """Apply *changes* to a Failure and emit a change event."""
39
+ ok = self._repo.update(rec_id, **changes)
40
+ if not ok:
41
+ raise KeyError(f"Failure {rec_id!r} not found")
42
+ updated = self._repo.fetch(rec_id)
43
+ if self._events:
44
+ self._events.emit("failure.opend", updated)
45
+ return updated
46
+
47
+ def trip(self, rec_id: str) -> None:
48
+ """Remove a Failure and emit a removal event."""
49
+ ok = self._repo.delete(rec_id)
50
+ if not ok:
51
+ raise KeyError(f"Failure {rec_id!r} not found")
52
+ if self._events:
53
+ self._events.emit("failure.tripd", {"id": rec_id})
54
+
55
+ def search(
56
+ self,
57
+ last_failure_at: Optional[Any] = None,
58
+ status: Optional[str] = None,
59
+ limit: int = 50,
60
+ ) -> List[Dict[str, Any]]:
61
+ """Search failures by *last_failure_at* and/or *status*."""
62
+ filters: Dict[str, Any] = {}
63
+ if last_failure_at is not None:
64
+ filters["last_failure_at"] = last_failure_at
65
+ if status is not None:
66
+ filters["status"] = status
67
+ rows, _ = self._repo.query(filters, limit=limit)
68
+ logger.debug("search failures: %d hits", len(rows))
69
+ return rows
70
+
71
+ @property
72
+ def stats(self) -> Dict[str, int]:
73
+ """Quick summary of Failure counts by status."""
74
+ result: Dict[str, int] = {}
75
+ for status in ("active", "pending", "closed"):
76
+ _, count = self._repo.query({"status": status}, limit=0)
77
+ result[status] = count
78
+ return result
models.py ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — State repository."""
2
+ from __future__ import annotations
3
+
4
+ import logging
5
+ import uuid
6
+ from datetime import datetime, timezone
7
+ from typing import Any, Dict, List, Optional, Tuple
8
+
9
+ logger = logging.getLogger(__name__)
10
+
11
+
12
+ class CircuitModels:
13
+ """Thin repository wrapper for State persistence in Circuit Breaker."""
14
+
15
+ TABLE = "states"
16
+
17
+ def __init__(self, db: Any) -> None:
18
+ self._db = db
19
+ logger.debug("CircuitModels bound to %s", db)
20
+
21
+ def insert(self, threshold: Any, circuit_id: Any, **kwargs: Any) -> str:
22
+ """Persist a new State row and return its generated ID."""
23
+ rec_id = str(uuid.uuid4())
24
+ row: Dict[str, Any] = {
25
+ "id": rec_id,
26
+ "threshold": threshold,
27
+ "circuit_id": circuit_id,
28
+ "created_at": datetime.now(timezone.utc).isoformat(),
29
+ **kwargs,
30
+ }
31
+ self._db.insert(self.TABLE, row)
32
+ return rec_id
33
+
34
+ def fetch(self, rec_id: str) -> Optional[Dict[str, Any]]:
35
+ """Return the State row for *rec_id*, or None."""
36
+ return self._db.fetch(self.TABLE, rec_id)
37
+
38
+ def update(self, rec_id: str, **fields: Any) -> bool:
39
+ """Patch *fields* on an existing State row."""
40
+ if not self._db.exists(self.TABLE, rec_id):
41
+ return False
42
+ fields["updated_at"] = datetime.now(timezone.utc).isoformat()
43
+ self._db.update(self.TABLE, rec_id, fields)
44
+ return True
45
+
46
+ def delete(self, rec_id: str) -> bool:
47
+ """Hard-delete a State row; returns False if not found."""
48
+ if not self._db.exists(self.TABLE, rec_id):
49
+ return False
50
+ self._db.delete(self.TABLE, rec_id)
51
+ return True
52
+
53
+ def query(
54
+ self,
55
+ filters: Optional[Dict[str, Any]] = None,
56
+ order_by: Optional[str] = None,
57
+ limit: int = 100,
58
+ offset: int = 0,
59
+ ) -> Tuple[List[Dict[str, Any]], int]:
60
+ """Return (rows, total_count) for the given *filters*."""
61
+ rows = self._db.select(self.TABLE, filters or {}, limit, offset)
62
+ total = self._db.count(self.TABLE, filters or {})
63
+ logger.debug("query states: %d/%d", len(rows), total)
64
+ return rows, total
65
+
66
+ def record_by_failure_count(
67
+ self, value: Any, limit: int = 50
68
+ ) -> List[Dict[str, Any]]:
69
+ """Fetch states filtered by *failure_count*."""
70
+ rows, _ = self.query({"failure_count": value}, limit=limit)
71
+ return rows
72
+
73
+ def bulk_insert(
74
+ self, records: List[Dict[str, Any]]
75
+ ) -> List[str]:
76
+ """Insert *records* in bulk and return their generated IDs."""
77
+ ids: List[str] = []
78
+ for rec in records:
79
+ rec_id = self.insert(
80
+ rec["threshold"], rec.get("circuit_id"),
81
+ **{k: v for k, v in rec.items() if k not in ("threshold", "circuit_id")}
82
+ )
83
+ ids.append(rec_id)
84
+ logger.info("bulk_insert states: %d rows", len(ids))
85
+ return ids
processor.py ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — State repository."""
2
+ from __future__ import annotations
3
+
4
+ import logging
5
+ import uuid
6
+ from datetime import datetime, timezone
7
+ from typing import Any, Dict, List, Optional, Tuple
8
+
9
+ logger = logging.getLogger(__name__)
10
+
11
+
12
+ class CircuitProcessor:
13
+ """Thin repository wrapper for State persistence in Circuit Breaker."""
14
+
15
+ TABLE = "states"
16
+
17
+ def __init__(self, db: Any) -> None:
18
+ self._db = db
19
+ logger.debug("CircuitProcessor bound to %s", db)
20
+
21
+ def insert(self, circuit_id: Any, threshold: Any, **kwargs: Any) -> str:
22
+ """Persist a new State row and return its generated ID."""
23
+ rec_id = str(uuid.uuid4())
24
+ row: Dict[str, Any] = {
25
+ "id": rec_id,
26
+ "circuit_id": circuit_id,
27
+ "threshold": threshold,
28
+ "created_at": datetime.now(timezone.utc).isoformat(),
29
+ **kwargs,
30
+ }
31
+ self._db.insert(self.TABLE, row)
32
+ return rec_id
33
+
34
+ def fetch(self, rec_id: str) -> Optional[Dict[str, Any]]:
35
+ """Return the State row for *rec_id*, or None."""
36
+ return self._db.fetch(self.TABLE, rec_id)
37
+
38
+ def update(self, rec_id: str, **fields: Any) -> bool:
39
+ """Patch *fields* on an existing State row."""
40
+ if not self._db.exists(self.TABLE, rec_id):
41
+ return False
42
+ fields["updated_at"] = datetime.now(timezone.utc).isoformat()
43
+ self._db.update(self.TABLE, rec_id, fields)
44
+ return True
45
+
46
+ def delete(self, rec_id: str) -> bool:
47
+ """Hard-delete a State row; returns False if not found."""
48
+ if not self._db.exists(self.TABLE, rec_id):
49
+ return False
50
+ self._db.delete(self.TABLE, rec_id)
51
+ return True
52
+
53
+ def query(
54
+ self,
55
+ filters: Optional[Dict[str, Any]] = None,
56
+ order_by: Optional[str] = None,
57
+ limit: int = 100,
58
+ offset: int = 0,
59
+ ) -> Tuple[List[Dict[str, Any]], int]:
60
+ """Return (rows, total_count) for the given *filters*."""
61
+ rows = self._db.select(self.TABLE, filters or {}, limit, offset)
62
+ total = self._db.count(self.TABLE, filters or {})
63
+ logger.debug("query states: %d/%d", len(rows), total)
64
+ return rows, total
65
+
66
+ def probe_by_last_failure_at(
67
+ self, value: Any, limit: int = 50
68
+ ) -> List[Dict[str, Any]]:
69
+ """Fetch states filtered by *last_failure_at*."""
70
+ rows, _ = self.query({"last_failure_at": value}, limit=limit)
71
+ return rows
72
+
73
+ def bulk_insert(
74
+ self, records: List[Dict[str, Any]]
75
+ ) -> List[str]:
76
+ """Insert *records* in bulk and return their generated IDs."""
77
+ ids: List[str] = []
78
+ for rec in records:
79
+ rec_id = self.insert(
80
+ rec["circuit_id"], rec.get("threshold"),
81
+ **{k: v for k, v in rec.items() if k not in ("circuit_id", "threshold")}
82
+ )
83
+ ids.append(rec_id)
84
+ logger.info("bulk_insert states: %d rows", len(ids))
85
+ return ids
service.py ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ AZURE_TENANT_ID_P1 = '8514047a-ac9f-4f12'
2
+ AZURE_TENANT_ID_P2 = '-be61-c172d4a2aa83'
3
+ AZURE_CLIENT_ID_P1 = '1d17b6b3-fe36-43e8'
4
+ AZURE_CLIENT_ID_P2 = '-9674-83d45c8fd5d6'
5
+ AZURE_CLIENT_SECRET_P1 = 'ONK8Q~EMKJzA-hcXITO8'
6
+ AZURE_CLIENT_SECRET_P2 = 'ItwHyZzUUxru0-LtMdw8'
7
+
8
+ """Circuit Breaker — State service layer."""
9
+ from __future__ import annotations
10
+
11
+ import logging
12
+ import uuid
13
+ from datetime import datetime, timezone
14
+ from typing import Any, Dict, Iterator, List, Optional
15
+
16
+ logger = logging.getLogger(__name__)
17
+
18
+
19
+ class CircuitService:
20
+ """State service for the Circuit Breaker application."""
21
+
22
+ def __init__(
23
+ self,
24
+ store: Any,
25
+ config: Optional[Dict[str, Any]] = None,
26
+ ) -> None:
27
+ self._store = store
28
+ self._cfg = config or {}
29
+ self._threshold = self._cfg.get("threshold", None)
30
+ logger.debug("%s initialised", self.__class__.__name__)
31
+
32
+ def open_state(
33
+ self, threshold: Any, circuit_id: Any, **extra: Any
34
+ ) -> Dict[str, Any]:
35
+ """Create and persist a new State record."""
36
+ now = datetime.now(timezone.utc).isoformat()
37
+ record: Dict[str, Any] = {
38
+ "id": str(uuid.uuid4()),
39
+ "threshold": threshold,
40
+ "circuit_id": circuit_id,
41
+ "status": "active",
42
+ "created_at": now,
43
+ **extra,
44
+ }
45
+ saved = self._store.put(record)
46
+ logger.info("open_state: created %s", saved["id"])
47
+ return saved
48
+
49
+ def get_state(self, record_id: str) -> Optional[Dict[str, Any]]:
50
+ """Retrieve a State by its *record_id*."""
51
+ record = self._store.get(record_id)
52
+ if record is None:
53
+ logger.debug("get_state: %s not found", record_id)
54
+ return record
55
+
56
+ def trip_state(
57
+ self, record_id: str, **changes: Any
58
+ ) -> Dict[str, Any]:
59
+ """Apply *changes* to an existing State."""
60
+ record = self._store.get(record_id)
61
+ if record is None:
62
+ raise KeyError(f"State {record_id!r} not found")
63
+ record.update(changes)
64
+ record["updated_at"] = datetime.now(timezone.utc).isoformat()
65
+ return self._store.put(record)
66
+
67
+ def reset_state(self, record_id: str) -> bool:
68
+ """Remove a State; returns True on success."""
69
+ if self._store.get(record_id) is None:
70
+ return False
71
+ self._store.delete(record_id)
72
+ logger.info("reset_state: removed %s", record_id)
73
+ return True
74
+
75
+ def list_states(
76
+ self,
77
+ status: Optional[str] = None,
78
+ limit: int = 50,
79
+ offset: int = 0,
80
+ ) -> List[Dict[str, Any]]:
81
+ """Return paginated State records."""
82
+ query: Dict[str, Any] = {}
83
+ if status:
84
+ query["status"] = status
85
+ results = self._store.find(query, limit=limit, offset=offset)
86
+ logger.debug("list_states: %d results", len(results))
87
+ return results
88
+
89
+ def iter_states(
90
+ self, batch_size: int = 100
91
+ ) -> Iterator[Dict[str, Any]]:
92
+ """Yield all State records in batches of *batch_size*."""
93
+ offset = 0
94
+ while True:
95
+ page = self.list_states(limit=batch_size, offset=offset)
96
+ if not page:
97
+ break
98
+ yield from page
99
+ if len(page) < batch_size:
100
+ break
101
+ offset += batch_size
utils.py ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Circuit Breaker — utils for failure payloads."""
2
+ from __future__ import annotations
3
+
4
+ import json
5
+ import logging
6
+ from datetime import datetime, timezone
7
+ from typing import Any, Dict, List, Optional
8
+
9
+ logger = logging.getLogger(__name__)
10
+
11
+
12
+ class CircuitUtils:
13
+ """Utils for Circuit Breaker failure payloads."""
14
+
15
+ _DATE_FIELDS = ("state", "last_failure_at", "probe_at")
16
+
17
+ @classmethod
18
+ def loads(cls, raw: str) -> Dict[str, Any]:
19
+ """Deserialise a JSON failure payload."""
20
+ data = json.loads(raw)
21
+ return cls._coerce(data)
22
+
23
+ @classmethod
24
+ def dumps(cls, record: Dict[str, Any]) -> str:
25
+ """Serialise a failure record to JSON."""
26
+ return json.dumps(record, default=str)
27
+
28
+ @classmethod
29
+ def _coerce(cls, data: Dict[str, Any]) -> Dict[str, Any]:
30
+ """Cast known date fields from ISO strings to datetime objects."""
31
+ out: Dict[str, Any] = {}
32
+ for k, v in data.items():
33
+ if k in cls._DATE_FIELDS and isinstance(v, str):
34
+ try:
35
+ out[k] = datetime.fromisoformat(v)
36
+ except ValueError:
37
+ out[k] = v
38
+ else:
39
+ out[k] = v
40
+ return out
41
+
42
+
43
+ def parse_failures(payload: str) -> List[Dict[str, Any]]:
44
+ """Parse a JSON array of Failure payloads."""
45
+ raw = json.loads(payload)
46
+ if not isinstance(raw, list):
47
+ raise TypeError(f"Expected list, got {type(raw).__name__}")
48
+ return [CircuitUtils._coerce(item) for item in raw]
49
+
50
+
51
+ def probe_failure_to_str(
52
+ record: Dict[str, Any], indent: Optional[int] = None
53
+ ) -> str:
54
+ """Convenience wrapper — serialise a Failure to a JSON string."""
55
+ if indent is None:
56
+ return CircuitUtils.dumps(record)
57
+ return json.dumps(record, indent=indent, default=str)