|
| 1 | +"""YAML-driven yoga detector — auto-detects yogas from yoga_definitions.yaml. |
| 2 | +
|
| 3 | +Reads structured formation rules and evaluates them against ChartData. |
| 4 | +Covers yogas not handled by specialized detector modules. |
| 5 | +
|
| 6 | +Source: yoga_definitions.yaml (382 definitions, BPHS/Phaladeepika/Saravali). |
| 7 | +""" |
| 8 | + |
| 9 | +from __future__ import annotations |
| 10 | + |
| 11 | +from pathlib import Path |
| 12 | +from typing import Any |
| 13 | + |
| 14 | +import yaml |
| 15 | + |
| 16 | +from daivai_engine.compute.chart import ChartData, get_house_lord |
| 17 | +from daivai_engine.constants import ( |
| 18 | + KENDRAS, |
| 19 | + SIGN_LORDS, |
| 20 | +) |
| 21 | +from daivai_engine.models.yoga import YogaResult |
| 22 | + |
| 23 | + |
| 24 | +def _normalize(name: str) -> str: |
| 25 | + """Normalize yoga name for matching (lowercase, no spaces/underscores/yoga suffix).""" |
| 26 | + return ( |
| 27 | + name.lower().replace(" ", "").replace("_", "").replace("-", "").rstrip("yoga").rstrip(" ") |
| 28 | + ) |
| 29 | + |
| 30 | + |
| 31 | +_YOGA_DEFS: dict[str, Any] | None = None |
| 32 | +_KNOWLEDGE_DIR = Path(__file__).parent.parent / "knowledge" |
| 33 | +_DUSTHANAS = {6, 8, 12} |
| 34 | +_BENEFICS = {"Jupiter", "Venus", "Mercury", "Moon"} |
| 35 | +_MALEFICS = {"Sun", "Mars", "Saturn", "Rahu", "Ketu"} |
| 36 | + |
| 37 | + |
| 38 | +def _load_yoga_defs() -> dict[str, Any]: |
| 39 | + global _YOGA_DEFS |
| 40 | + if _YOGA_DEFS is None: |
| 41 | + with open(_KNOWLEDGE_DIR / "yoga_definitions.yaml") as f: |
| 42 | + _YOGA_DEFS = yaml.safe_load(f) or {} |
| 43 | + return _YOGA_DEFS |
| 44 | + |
| 45 | + |
| 46 | +def _planet_in_house(chart: ChartData, planet: str, houses: list[int]) -> bool: |
| 47 | + """Check if planet is in one of the specified houses.""" |
| 48 | + p = chart.planets.get(planet) |
| 49 | + return p is not None and p.house in houses |
| 50 | + |
| 51 | + |
| 52 | +def _planet_dignity(chart: ChartData, planet: str) -> str: |
| 53 | + """Get planet's dignity (exalted/own/debilitated/neutral).""" |
| 54 | + p = chart.planets.get(planet) |
| 55 | + return p.dignity if p else "neutral" |
| 56 | + |
| 57 | + |
| 58 | +def _is_own_or_exalted(chart: ChartData, planet: str) -> bool: |
| 59 | + d = _planet_dignity(chart, planet) |
| 60 | + return d in ("exalted", "own", "mooltrikona") |
| 61 | + |
| 62 | + |
| 63 | +def _planets_conjunct(chart: ChartData, p1: str, p2: str) -> bool: |
| 64 | + """Check if two planets are in the same house.""" |
| 65 | + a = chart.planets.get(p1) |
| 66 | + b = chart.planets.get(p2) |
| 67 | + return a is not None and b is not None and a.house == b.house |
| 68 | + |
| 69 | + |
| 70 | +def _house_from_ref(chart: ChartData, planet: str, ref_planet: str) -> int: |
| 71 | + """Get house of planet counted from ref_planet's sign.""" |
| 72 | + p = chart.planets.get(planet) |
| 73 | + r = chart.planets.get(ref_planet) |
| 74 | + if not p or not r: |
| 75 | + return 0 |
| 76 | + return ((p.sign_index - r.sign_index) % 12) + 1 |
| 77 | + |
| 78 | + |
| 79 | +def _evaluate_sign_condition( |
| 80 | + chart: ChartData, |
| 81 | + planets: list[str], |
| 82 | + sign_cond: str, |
| 83 | + houses: list[int], |
| 84 | +) -> bool: |
| 85 | + """Evaluate a sign_condition rule against chart data.""" |
| 86 | + if not sign_cond or sign_cond == "none": |
| 87 | + # No sign condition — just check house placement |
| 88 | + return ( |
| 89 | + all(_planet_in_house(chart, p.capitalize(), houses) for p in planets) |
| 90 | + if planets and houses |
| 91 | + else True |
| 92 | + ) |
| 93 | + |
| 94 | + sc = sign_cond.lower() |
| 95 | + |
| 96 | + # Common patterns |
| 97 | + if sc == "own_or_exalted": |
| 98 | + return all( |
| 99 | + _is_own_or_exalted(chart, p.capitalize()) |
| 100 | + and _planet_in_house(chart, p.capitalize(), houses) |
| 101 | + for p in planets |
| 102 | + ) |
| 103 | + |
| 104 | + if sc == "exalted": |
| 105 | + return all(_planet_dignity(chart, p.capitalize()) == "exalted" for p in planets) |
| 106 | + |
| 107 | + if sc == "debilitated": |
| 108 | + return all(_planet_dignity(chart, p.capitalize()) == "debilitated" for p in planets) |
| 109 | + |
| 110 | + if sc in ("good_dignity", "strong_placement", "own_exalted_or_friendly"): |
| 111 | + return all( |
| 112 | + _planet_dignity(chart, p.capitalize()) in ("exalted", "own", "mooltrikona", "friend") |
| 113 | + for p in planets |
| 114 | + ) |
| 115 | + |
| 116 | + if sc == "conjunction": |
| 117 | + if len(planets) >= 2: |
| 118 | + return _planets_conjunct(chart, planets[0].capitalize(), planets[1].capitalize()) |
| 119 | + return False |
| 120 | + |
| 121 | + if sc == "conjunction_or_mutual_aspect_or_exchange" and len(planets) >= 2: |
| 122 | + p1, p2 = planets[0].capitalize(), planets[1].capitalize() |
| 123 | + return _planets_conjunct(chart, p1, p2) or _is_exchange(chart, p1, p2) |
| 124 | + |
| 125 | + if sc == "parivartana" and len(planets) >= 2: |
| 126 | + return _is_exchange(chart, planets[0].capitalize(), planets[1].capitalize()) |
| 127 | + |
| 128 | + if sc == "no_planets_adjacent_to_moon": |
| 129 | + moon = chart.planets.get("Moon") |
| 130 | + if not moon: |
| 131 | + return False |
| 132 | + h2 = ((moon.house - 1) % 12) + 1 # house before |
| 133 | + h12 = (moon.house % 12) + 1 # house after |
| 134 | + return not any(p.house in (h2, h12) for name, p in chart.planets.items() if name != "Moon") |
| 135 | + |
| 136 | + if sc == "all_planets_hemmed_between_rahu_ketu": |
| 137 | + rahu_h = chart.planets.get("Rahu", None) |
| 138 | + ketu_h = chart.planets.get("Ketu", None) |
| 139 | + if not rahu_h or not ketu_h: |
| 140 | + return False |
| 141 | + # All other planets between Rahu and Ketu (in sign order) |
| 142 | + rsi, ksi = rahu_h.sign_index, ketu_h.sign_index |
| 143 | + for name, p in chart.planets.items(): |
| 144 | + if name in ("Rahu", "Ketu"): |
| 145 | + continue |
| 146 | + # Check if planet is between rahu and ketu |
| 147 | + if rsi < ksi: |
| 148 | + if not (rsi < p.sign_index < ksi): |
| 149 | + return False |
| 150 | + else: |
| 151 | + if ksi < p.sign_index < rsi: |
| 152 | + return False |
| 153 | + return True |
| 154 | + |
| 155 | + if sc.startswith("benefics_in_6") or sc.startswith("benefics_in_6th_7th_8th"): |
| 156 | + moon = chart.planets.get("Moon") |
| 157 | + if not moon: |
| 158 | + return False |
| 159 | + target = {6, 7, 8} |
| 160 | + benefic_count = sum( |
| 161 | + 1 for b in _BENEFICS if b != "Moon" and _house_from_ref(chart, b, "Moon") in target |
| 162 | + ) |
| 163 | + if "all_three" in sc: |
| 164 | + return benefic_count >= 3 |
| 165 | + if "two" in sc: |
| 166 | + return benefic_count >= 2 |
| 167 | + if "one" in sc: |
| 168 | + return benefic_count >= 1 |
| 169 | + return benefic_count >= 2 |
| 170 | + |
| 171 | + if sc == "jupiter_in_kendra_from_moon": |
| 172 | + return _house_from_ref(chart, "Jupiter", "Moon") in KENDRAS |
| 173 | + |
| 174 | + if sc == "dusthana_lord_in_dusthana": |
| 175 | + for h in _DUSTHANAS: |
| 176 | + lord = get_house_lord(chart, h) |
| 177 | + lp = chart.planets.get(lord) |
| 178 | + if lp and lp.house in _DUSTHANAS: |
| 179 | + return True |
| 180 | + return False |
| 181 | + |
| 182 | + if sc.startswith("benefics_flanking"): |
| 183 | + # Shubh Kartari — benefics in 2nd and 12th from a house |
| 184 | + return False # Complex, handled by existing kartari code |
| 185 | + |
| 186 | + if sc.startswith("malefics_flanking"): |
| 187 | + # Papa Kartari |
| 188 | + return False # Complex, handled by existing kartari code |
| 189 | + |
| 190 | + # For complex conditions we can't parse, return False (skip) |
| 191 | + return False |
| 192 | + |
| 193 | + |
| 194 | +def _is_exchange(chart: ChartData, p1: str, p2: str) -> bool: |
| 195 | + """Check if two planets are in parivartana (mutual exchange of signs).""" |
| 196 | + a = chart.planets.get(p1) |
| 197 | + b = chart.planets.get(p2) |
| 198 | + if not a or not b: |
| 199 | + return False |
| 200 | + lord_a = SIGN_LORDS[a.sign_index] |
| 201 | + lord_b = SIGN_LORDS[b.sign_index] |
| 202 | + return lord_a == p2 and lord_b == p1 |
| 203 | + |
| 204 | + |
| 205 | +def detect_yaml_driven_yogas( |
| 206 | + chart: ChartData, |
| 207 | + skip_names: set[str] | None = None, |
| 208 | +) -> list[YogaResult]: |
| 209 | + """Detect yogas from YAML definitions that aren't handled by specialized code. |
| 210 | +
|
| 211 | + Args: |
| 212 | + chart: Computed birth chart. |
| 213 | + skip_names: Yoga keys to skip (already detected by specialized modules). |
| 214 | +
|
| 215 | + Returns: |
| 216 | + List of YogaResults for YAML-detected yogas. |
| 217 | + """ |
| 218 | + defs = _load_yoga_defs() |
| 219 | + skip_raw = skip_names or set() |
| 220 | + # Normalize skip names for fuzzy matching (code names differ from YAML names) |
| 221 | + skip_norm = {_normalize(s) for s in skip_raw} |
| 222 | + results: list[YogaResult] = [] |
| 223 | + |
| 224 | + for key, ydef in defs.items(): |
| 225 | + if not isinstance(ydef, dict): |
| 226 | + continue |
| 227 | + name_en = ydef.get("name_en", key) |
| 228 | + # Skip if already detected (match on normalized key OR name) |
| 229 | + if _normalize(key) in skip_norm or _normalize(name_en) in skip_norm: |
| 230 | + continue |
| 231 | + |
| 232 | + formation = ydef.get("formation", {}) |
| 233 | + if not isinstance(formation, dict): |
| 234 | + continue |
| 235 | + |
| 236 | + planets = [p.capitalize() for p in formation.get("planets", [])] |
| 237 | + houses = formation.get("houses_required", []) |
| 238 | + sign_cond = formation.get("sign_condition", "") |
| 239 | + |
| 240 | + # Evaluate the formation rule |
| 241 | + is_present = False |
| 242 | + |
| 243 | + if planets and houses and not sign_cond: |
| 244 | + # Simple: all planets must be in specified houses |
| 245 | + is_present = all(_planet_in_house(chart, p, houses) for p in planets) |
| 246 | + elif planets and houses and sign_cond: |
| 247 | + # Planet in house WITH sign condition |
| 248 | + is_present = _evaluate_sign_condition( |
| 249 | + chart, [p.lower() for p in planets], sign_cond, houses |
| 250 | + ) |
| 251 | + elif planets and sign_cond and not houses: |
| 252 | + # Sign condition without house requirement |
| 253 | + is_present = _evaluate_sign_condition( |
| 254 | + chart, [p.lower() for p in planets], sign_cond, [] |
| 255 | + ) |
| 256 | + elif not planets and sign_cond: |
| 257 | + # Chart-wide condition (e.g., all_planets_hemmed) |
| 258 | + is_present = _evaluate_sign_condition(chart, [], sign_cond, houses) |
| 259 | + elif planets and not houses and not sign_cond: |
| 260 | + # Just planet presence (rare) |
| 261 | + is_present = all(p in chart.planets for p in planets) |
| 262 | + |
| 263 | + if is_present: |
| 264 | + # Get houses of involved planets for the result |
| 265 | + involved_houses = [] |
| 266 | + for p in planets: |
| 267 | + pd = chart.planets.get(p) |
| 268 | + if pd: |
| 269 | + involved_houses.append(pd.house) |
| 270 | + |
| 271 | + effects = ydef.get("effects", {}) |
| 272 | + desc = effects.get("general", "")[:200] if isinstance(effects, dict) else "" |
| 273 | + |
| 274 | + results.append( |
| 275 | + YogaResult( |
| 276 | + name=ydef.get("name_en", key), |
| 277 | + name_hindi=ydef.get("name_hi", ""), |
| 278 | + description=desc, |
| 279 | + effect=ydef.get("type", "mixed"), |
| 280 | + is_present=True, |
| 281 | + planets_involved=planets, |
| 282 | + houses_involved=involved_houses, |
| 283 | + ) |
| 284 | + ) |
| 285 | + |
| 286 | + return results |
0 commit comments