Spaces:
Sleeping
Sleeping
File size: 67,145 Bytes
a36238b | 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 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 1546 1547 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 1577 1578 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 1706 1707 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 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 | from __future__ import annotations
import html
import json
import os
import re
import shlex
import shutil
import subprocess
import sys
import time
import uuid
from datetime import datetime, timezone
from pathlib import Path
PROJECT_DIR_NAME = ".trackio"
LOGBOOK_SUBDIR = "logbook"
METADATA_FILE = "metadata.json"
SCHEMA_VERSION = 1
ROOT_SLUG = "index"
VIEWER_DIR = Path(__file__).parent / "frontend_templates" / "logbook"
VIEWER_FILES = [
"index.html",
"logbook.css",
"logbook.js",
"trackio-logo.png",
"trackio-logo-light.png",
"trackio-wordmark-dark.png",
"bucket-icon.svg",
]
TOC_HEADING = "## Pages"
TOC_HEADER = "| Page |"
TOC_SEP = "| --- |"
TOC_PLACEHOLDER_TOKENS = ("logbook note", "logbook cell markdown", "logbook page")
STATUS_COL_RE = re.compile(r"\b(status|state)\b", re.I)
LINK_COL_RE = re.compile(r"\b(page|experiment|name|title)\b", re.I)
CELL_TYPES = {"markdown", "code", "figure", "artifact", "dashboard"}
ARTIFACT_URI_PREFIX = "trackio-artifact://"
PATH_ARTIFACT_URI_PREFIX = "trackio-local-path://"
LOCAL_DASHBOARD_PREFIX = "trackio-local-dashboard://"
SPACE_URL_RE = re.compile(r"https://huggingface\.co/spaces/[^\s<>)\"'`]+")
BUCKET_URL_RE = re.compile(r"https://huggingface\.co/buckets/[^\s<>)\"'`]+")
DEFAULT_HEAD = 3
DEFAULT_TAIL = 3
DEFAULT_RAW_LIMIT = 500
FENCE_RE = re.compile(r"(`{3,4}|~{3,4})([^\n]*)\n([\s\S]*?)\n\1")
RUN_OUTPUT_LIMIT = 20_000
RUN_OUTPUT_HEAD = 2_000
RUN_OUTPUT_TAIL = RUN_OUTPUT_LIMIT - RUN_OUTPUT_HEAD
TRY_NUM_PORTS = int(os.getenv("GRADIO_NUM_PORTS", "100"))
CELL_RE = re.compile(
r"(^|\n)---\n<!-- trackio-cell\n([\s\S]*?)\n-->\n([\s\S]*?)(?=\n---\n<!-- trackio-cell\n|\s*$)"
)
class LogbookError(Exception):
pass
def _now_iso() -> str:
return datetime.now(timezone.utc).replace(microsecond=0).isoformat()
def _short_time(iso: str) -> str:
try:
dt = datetime.fromisoformat(iso)
except ValueError:
return iso
return dt.strftime("%Y-%m-%d %H:%M")
def _slugify(text: str) -> str:
slug = re.sub(r"[^a-zA-Z0-9]+", "-", text.strip().lower()).strip("-")
return slug or "page"
# ---- locating the project ----
def find_project_dir(start: str | Path | None = None) -> Path | None:
start = Path(start or Path.cwd()).resolve()
for d in (start, *start.parents):
candidate = d / PROJECT_DIR_NAME
if (candidate / LOGBOOK_SUBDIR / "pages" / "index.md").is_file():
return candidate
return None
def require_project_dir(start: str | Path | None = None) -> Path:
proj = find_project_dir(start)
if proj is None:
raise LogbookError(
"No logbook in this directory (or any parent). "
'Start one with: trackio logbook open --title "..."'
)
return proj
def logbook_root(proj: Path) -> Path:
return proj / LOGBOOK_SUBDIR
def _project_from_space(space_id: str) -> Path:
import tempfile # noqa: PLC0415
import huggingface_hub # noqa: PLC0415
from huggingface_hub.utils import ( # noqa: PLC0415
HfHubHTTPError,
RepositoryNotFoundError,
)
try:
huggingface_hub.utils.disable_progress_bars()
try:
snap = Path(huggingface_hub.snapshot_download(space_id, repo_type="space"))
finally:
huggingface_hub.utils.enable_progress_bars()
except (RepositoryNotFoundError, HfHubHTTPError) as e:
raise LogbookError(f"Could not download Space '{space_id}': {e}") from e
if not (snap / "pages" / "index.md").is_file():
raise LogbookError(f"Space '{space_id}' does not contain a Trackio logbook.")
proj = Path(tempfile.mkdtemp(prefix="trackio-logbook-")) / PROJECT_DIR_NAME
proj.mkdir(parents=True)
link = proj / LOGBOOK_SUBDIR
try:
link.symlink_to(snap)
except OSError:
shutil.copytree(snap, link)
return proj
def _project_from_url(url: str) -> Path:
import tempfile # noqa: PLC0415
import urllib.request # noqa: PLC0415
base = url.rstrip("/")
def fetch(path: str) -> str:
with urllib.request.urlopen(f"{base}/{path}", timeout=15) as response:
return response.read().decode("utf-8")
try:
manifest = json.loads(fetch("logbook.json"))
except Exception as e:
raise LogbookError(f"Could not read a logbook at {url}: {e}") from e
proj = Path(tempfile.mkdtemp(prefix="trackio-logbook-")) / PROJECT_DIR_NAME
root = logbook_root(proj)
root_resolved = root.resolve()
for node in _walk(manifest.get("root") or {}):
file = node.get("file")
if not file:
continue
dest = (root / file).resolve()
if not dest.is_relative_to(root_resolved):
continue
dest.parent.mkdir(parents=True, exist_ok=True)
try:
dest.write_text(fetch(file), encoding="utf-8")
except Exception:
continue
if not (root / "pages" / "index.md").is_file():
raise LogbookError(f"No logbook pages found at {url}")
return proj
def resolve_read_source(source: str | None = None) -> Path:
if source is None:
return require_project_dir()
local = Path(source).expanduser()
if local.exists():
return require_project_dir(local)
if re.match(r"^https?://", source):
space = re.match(r"^https?://huggingface\.co/spaces/([^/?#]+/[^/?#]+)", source)
if space:
return _project_from_space(space.group(1))
return _project_from_url(source)
if re.match(r"^[\w.-]+/[\w.-]+$", source):
return _project_from_space(source)
raise LogbookError(
f"'{source}' is not a local logbook path, HF Space id, or logbook URL."
)
def _pages_dir(proj: Path) -> Path:
return logbook_root(proj) / "pages"
def _metadata_path(proj: Path) -> Path:
return proj / METADATA_FILE
def _manifest_path(proj: Path) -> Path:
return logbook_root(proj) / "logbook.json"
def read_metadata(proj: Path) -> dict:
path = _metadata_path(proj)
if not path.is_file():
return {}
return json.loads(path.read_text(encoding="utf-8"))
def write_metadata(proj: Path, metadata: dict) -> None:
_metadata_path(proj).write_text(
json.dumps(metadata, indent=2, ensure_ascii=False), encoding="utf-8"
)
def _remember_page(proj: Path, slug: str) -> None:
if slug == ROOT_SLUG or _page_file_for_slug(proj, slug) is None:
return
metadata = read_metadata(proj)
metadata["last_page"] = slug
write_metadata(proj, metadata)
# ---- manifest generated by scanning pages/ ----
def _title_of(md_path: Path, fallback: str) -> str:
try:
for line in md_path.read_text(encoding="utf-8").splitlines():
m = re.match(r"#\s+(.+)", line.strip())
if m:
return m.group(1).strip()
except OSError:
pass
return fallback
def _link_order(md_path: Path) -> list[str]:
try:
text = md_path.read_text(encoding="utf-8")
except OSError:
return []
seen = []
for slug in re.findall(r"\(#/([A-Za-z0-9._-]+)\)", text):
if slug not in seen:
seen.append(slug)
return seen
def _scan_children(dir_path: Path, rel_prefix: str, parent_md: Path) -> list[dict]:
subs = [d for d in dir_path.iterdir() if d.is_dir() and (d / "page.md").is_file()]
order = _link_order(parent_md)
def sort_key(d):
idx = order.index(d.name) if d.name in order else len(order)
return (idx, (d / "page.md").stat().st_ctime)
subs.sort(key=sort_key)
children = []
for d in subs:
md = d / "page.md"
children.append(
{
"slug": d.name,
"title": _title_of(md, d.name),
"file": f"{rel_prefix}/{d.name}/page.md",
"children": [],
}
)
return children
def build_manifest(proj: Path) -> dict:
pages = _pages_dir(proj)
metadata = read_metadata(proj)
return {
"schema_version": SCHEMA_VERSION,
"title": _title_of(pages / "index.md", "Logbook"),
"emoji": metadata.get("emoji", "🎯"),
"space_id": metadata.get("space_id"),
"paper": metadata.get("paper"),
"tags": metadata.get("tags") or [],
"updated_at": _now_iso(),
"root": {
"slug": ROOT_SLUG,
"title": _title_of(pages / "index.md", "Logbook"),
"file": "pages/index.md",
"children": _scan_children(pages, "pages", pages / "index.md"),
},
}
def _walk(node: dict):
yield node
for child in node.get("children", []):
yield from _walk(child)
AGENT_VIEW_NOTE = (
"> Agent view: markdown bodies are inline; code cells show the command, a "
"code head, and an output tail; figures inline small raw data. Fetch full "
"payloads with `trackio logbook read cell <id> [--full|--raw|--html]`."
)
def _index_prose(text: str) -> str:
return CELL_RE.sub("", text).strip()
def read_logbook(
proj: Path,
manifest: dict | None = None,
head: int = DEFAULT_HEAD,
tail: int = DEFAULT_TAIL,
raw_limit: int = DEFAULT_RAW_LIMIT,
) -> str:
manifest = manifest or build_manifest(proj)
root = logbook_root(proj)
index_node = manifest["root"]
index_text = (root / index_node["file"]).read_text(encoding="utf-8")
out = [_index_prose(index_text), ""]
index_cells = _parse_cells_from_text(
index_text, index_node["slug"], index_node["title"]
)
for cell in index_cells:
out += _cell_agent_lines(cell, head, tail, raw_limit)
out += [AGENT_VIEW_NOTE, ""]
for node in _walk(manifest["root"]):
if node["slug"] == index_node["slug"]:
continue
text = (root / node["file"]).read_text(encoding="utf-8")
out.append(_page_outline_markdown(node, text, head, tail, raw_limit).strip())
out.append("")
return "\n".join(out)
def _cell_agent_lines(cell: dict, head: int, tail: int, raw_limit: int) -> list[str]:
summary = _cell_public_summary(cell, head=head, tail=tail, raw_limit=raw_limit)
heading = f"### {cell['title']} · {cell['type']} · `{cell['id']}`"
created = cell.get("created_at")
if created:
heading += f" · {_short_time(created)}"
lines = [heading, ""]
preview = summary.get("preview") or ""
if preview:
lines += [preview, ""]
return lines
def _page_outline_markdown(
node: dict,
text: str,
head: int = DEFAULT_HEAD,
tail: int = DEFAULT_TAIL,
raw_limit: int = DEFAULT_RAW_LIMIT,
) -> str:
cells = _parse_cells_from_text(text, node["slug"], node["title"])
lines = [f"## {node['title']} · `{node['slug']}`", ""]
if not cells:
lines.append("No cells.")
return "\n".join(lines)
for cell in cells:
lines += _cell_agent_lines(cell, head, tail, raw_limit)
return "\n".join(lines)
def read_logbook_data(
proj: Path,
head: int = DEFAULT_HEAD,
tail: int = DEFAULT_TAIL,
raw_limit: int = DEFAULT_RAW_LIMIT,
) -> dict:
manifest = build_manifest(proj)
root = logbook_root(proj)
pages = []
for node in _walk(manifest["root"]):
text = (root / node["file"]).read_text(encoding="utf-8")
cells = _parse_cells_from_text(text, node["slug"], node["title"])
entry = {
"slug": node["slug"],
"title": node["title"],
"file": node["file"],
"cells": [
_cell_public_summary(cell, head=head, tail=tail, raw_limit=raw_limit)
for cell in cells
],
}
if node["slug"] == ROOT_SLUG:
entry["markdown"] = _index_prose(text)
pages.append(entry)
return {
"title": manifest["title"],
"space_id": manifest.get("space_id"),
"updated_at": manifest.get("updated_at"),
"pages": pages,
}
def _ensure_viewer_files(proj: Path) -> None:
root = logbook_root(proj)
for fname in VIEWER_FILES:
dest = root / fname
src = VIEWER_DIR / fname
if not src.is_file():
continue
if not dest.exists() or dest.read_bytes() != src.read_bytes():
shutil.copy2(src, dest)
def _estimate_tokens(text: str) -> int:
return max(1, int(len(text) / 3.3))
def write_site_files(proj: Path) -> dict:
_ensure_viewer_files(proj)
manifest = build_manifest(proj)
manifest["agent_view_tokens"] = _estimate_tokens(read_logbook(proj, manifest))
manifest["revision"] = str(time.time_ns())
manifest["updated_at"] = _now_iso()
root = logbook_root(proj)
index_html = root / "index.html"
if index_html.is_file():
text = index_html.read_text(encoding="utf-8")
updated = re.sub(
r"<title>.*?</title>",
f"<title>{html.escape(manifest['title'])}</title>",
text,
count=1,
flags=re.S,
)
if updated != text:
index_html.write_text(updated, encoding="utf-8")
(root / "logbook.json").write_text(
json.dumps(manifest, indent=2, ensure_ascii=False), encoding="utf-8"
)
stale_agent_view = root / "logbook.md"
if stale_agent_view.exists():
stale_agent_view.unlink()
return manifest
# ---- creation ----
def create_logbook(
title: str | None = None, space_id: str | None = None, emoji: str = "🎯"
) -> Path:
proj = find_project_dir() or (Path.cwd() / PROJECT_DIR_NAME)
title = title or proj.parent.name or "Experiment"
root = logbook_root(proj)
if (root / "pages" / "index.md").exists():
raise LogbookError(
f"A logbook already exists at {root}. Attach with `trackio logbook open`."
)
(root / "pages").mkdir(parents=True, exist_ok=True)
(root / "pages" / "index.md").write_text(
f"# {title}\n\n"
f"{TOC_HEADING}\n\n"
f"{TOC_HEADER}\n{TOC_SEP}\n"
'| Add a page with `trackio logbook page "..."` |\n',
encoding="utf-8",
)
write_metadata(
proj, {"space_id": space_id, "emoji": emoji, "created_at": _now_iso()}
)
(proj / ".gitignore").write_text(
"logbook/.sync_lock\nlogbook/.sync_pending\nlogbook/.sync.log\n",
encoding="utf-8",
)
write_site_files(proj)
return proj
def clone_logbook(space_id: str) -> Path | None:
import huggingface_hub # noqa: PLC0415
from huggingface_hub.utils import ( # noqa: PLC0415
HfHubHTTPError,
RepositoryNotFoundError,
)
try:
snap = Path(huggingface_hub.snapshot_download(space_id, repo_type="space"))
except (RepositoryNotFoundError, HfHubHTTPError):
return None
if not (snap / "pages" / "index.md").is_file():
return None
proj = find_project_dir() or (Path.cwd() / PROJECT_DIR_NAME)
root = logbook_root(proj)
if _manifest_path(proj).exists() or (root / "pages" / "index.md").exists():
raise LogbookError(
f"A logbook already exists at {root}; remove it before cloning."
)
shutil.copytree(snap / "pages", root / "pages")
for fname in VIEWER_FILES:
if (snap / fname).is_file():
shutil.copy2(snap / fname, root / fname)
if (snap / "media").is_dir():
shutil.copytree(snap / "media", root / "media")
write_metadata(
proj, {"space_id": space_id, "autosync": True, "created_at": _now_iso()}
)
(proj / ".gitignore").write_text(
"logbook/.sync_lock\nlogbook/.sync_pending\nlogbook/.sync.log\n",
encoding="utf-8",
)
write_site_files(proj)
return proj
# ---- safe append/create helpers ----
def _all_slugs(proj: Path) -> set[str]:
slugs = {ROOT_SLUG}
for d in _pages_dir(proj).iterdir():
if d.is_dir() and (d / "page.md").is_file():
slugs.add(d.name)
return slugs
def _page_dir_for_slug(proj: Path, slug: str) -> Path | None:
if slug == ROOT_SLUG:
return _pages_dir(proj)
for d in _pages_dir(proj).iterdir():
if d.is_dir() and d.name == slug and (d / "page.md").is_file():
return d
return None
def _page_file_for_slug(proj: Path, slug: str) -> Path | None:
if slug == ROOT_SLUG:
return _pages_dir(proj) / "index.md"
d = _page_dir_for_slug(proj, slug)
return (d / "page.md") if d else None
def add_page(proj: Path, title: str) -> str:
existing = _all_slugs(proj)
base = _slugify(title)
slug = base
n = 2
while slug in existing:
slug = f"{base}-{n}"
n += 1
page_dir = _pages_dir(proj) / slug
page_dir.mkdir(parents=True, exist_ok=True)
(page_dir / "page.md").write_text(f"# {title}\n", encoding="utf-8")
write_site_files(proj)
return slug
def _parse_table_cells(line: str) -> list[str]:
s = line.strip()
if s.startswith("|"):
s = s[1:]
if s.endswith("|"):
s = s[:-1]
return [c.strip() for c in s.split("|")]
def _toc_row(header_cells: list[str], name: str, slug: str, status: str | None) -> str:
link = f"[{name}](#/{slug})"
cells = []
link_at = None
for i, header in enumerate(header_cells):
if STATUS_COL_RE.search(header):
cells.append(status or "planned")
elif link_at is None and LINK_COL_RE.search(header):
cells.append(link)
link_at = i
else:
cells.append("")
if link_at is None:
link_at = next(
(i for i, h in enumerate(header_cells) if not STATUS_COL_RE.search(h)),
0,
)
cells[link_at] = link
return "| " + " | ".join(cells) + " |"
def _insert_toc_row(text: str, name: str, slug: str, status: str | None) -> str:
lines = [
ln
for ln in text.split("\n")
if not (
ln.strip().startswith("|")
and any(token in ln for token in TOC_PLACEHOLDER_TOKENS)
)
]
idx = next(
(
i
for i, ln in enumerate(lines)
if ln.strip().lower() in ("## pages", "## experiments")
),
None,
)
if idx is not None:
table_at = None
j = idx + 1
while j < len(lines):
stripped = lines[j].strip()
if stripped.startswith("|"):
table_at = j
break
if stripped.startswith("#"):
break
j += 1
if table_at is not None:
row = _toc_row(_parse_table_cells(lines[table_at]), name, slug, status)
k = table_at
while k < len(lines) and lines[k].strip().startswith("|"):
k += 1
lines.insert(k, row)
return "\n".join(lines)
row = _toc_row(["Page"], name, slug, status)
lines[idx + 1 : idx + 1] = ["", TOC_HEADER, TOC_SEP, row, ""]
return "\n".join(lines)
row = _toc_row(["Page"], name, slug, status)
block = ["", TOC_HEADING, "", TOC_HEADER, TOC_SEP, row, ""]
h1 = next((i for i, ln in enumerate(lines) if ln.strip().startswith("# ")), None)
at = (h1 + 1) if h1 is not None else len(lines)
lines[at:at] = block
return "\n".join(lines)
def set_page_status(proj: Path, slug: str, status: str) -> None:
index = _pages_dir(proj) / "index.md"
lines = index.read_text(encoding="utf-8").split("\n")
row_at = next(
(
i
for i, ln in enumerate(lines)
if f"(#/{slug})" in ln and ln.strip().startswith("|")
),
None,
)
if row_at is None:
return
head_at = row_at
while head_at > 0 and lines[head_at - 1].strip().startswith("|"):
head_at -= 1
col = next(
(
c
for c, header in enumerate(_parse_table_cells(lines[head_at]))
if STATUS_COL_RE.search(header)
),
None,
)
if col is None:
return
cells = _parse_table_cells(lines[row_at])
if col >= len(cells):
return
cells[col] = status
lines[row_at] = "| " + " | ".join(cells) + " |"
index.write_text("\n".join(lines), encoding="utf-8")
def sync_todos_from_stdin() -> None:
import sys # noqa: PLC0415
try:
payload = json.load(sys.stdin)
except Exception:
return
todos = (payload.get("tool_input") or {}).get("todos") or []
proj = find_project_dir(payload.get("cwd"))
if proj is None or not todos:
return
status_map = {
"pending": "planned",
"in_progress": "in-progress",
"completed": "done",
}
changed = False
for todo in todos:
name = (todo.get("content") or todo.get("activeForm") or "").strip()
if not name:
continue
try:
ensure_page(
proj, name, status=status_map.get(todo.get("status"), "planned")
)
changed = True
except Exception:
continue
if changed:
trigger_autosync(proj)
def ensure_page(
proj: Path,
title_or_slug: str,
status: str | None = None,
) -> str:
name = title_or_slug.strip()
if not name:
raise LogbookError("Page title cannot be empty.")
if name == ROOT_SLUG:
raise LogbookError("Cannot target the logbook index page.")
if _page_file_for_slug(proj, name) is not None:
_remember_page(proj, name)
return name
slug = _slugify(name)
if slug in _all_slugs(proj):
if status:
set_page_status(proj, slug, status)
_remember_page(proj, slug)
return slug
slug = add_page(proj, name)
index = _pages_dir(proj) / "index.md"
index.write_text(
_insert_toc_row(index.read_text(encoding="utf-8"), name, slug, status),
encoding="utf-8",
)
_remember_page(proj, slug)
return slug
def resolve_page(proj: Path, page: str | None = None) -> str:
if page:
return ensure_page(proj, page)
slug = read_metadata(proj).get("last_page")
if slug and _page_file_for_slug(proj, slug) is not None:
_remember_page(proj, slug)
return slug
raise LogbookError("No --page given and no recently-updated page found")
def _resolve_existing_page(proj: Path, page: str | None = None) -> str:
if not page:
slug = read_metadata(proj).get("last_page") or ROOT_SLUG
if _page_file_for_slug(proj, slug) is not None:
return slug
return ROOT_SLUG
if page == ROOT_SLUG and _page_file_for_slug(proj, page) is not None:
return page
if _page_file_for_slug(proj, page) is not None:
return page
slug = _slugify(page)
if _page_file_for_slug(proj, slug) is not None:
return slug
manifest = build_manifest(proj)
needle = page.strip().lower()
for node in _walk(manifest["root"]):
if node["title"].strip().lower() == needle:
return node["slug"]
raise LogbookError(f"No page with title or slug '{page}' in this logbook.")
def _node_for_slug(manifest: dict, slug: str) -> dict | None:
for node in _walk(manifest["root"]):
if node["slug"] == slug:
return node
return None
def list_pages(proj: Path) -> list[dict]:
manifest = build_manifest(proj)
root = logbook_root(proj)
pages = []
for node in _walk(manifest["root"]):
text = (root / node["file"]).read_text(encoding="utf-8")
cells = _parse_cells_from_text(text, node["slug"], node["title"])
pages.append(
{
"slug": node["slug"],
"title": node["title"],
"file": node["file"],
"cell_count": len(cells),
}
)
return pages
def _figure_parts(body: str) -> dict:
parts = {"html": "", "raw": ""}
for match in FENCE_RE.finditer(body):
lang = (match.group(2).strip().split() or [""])[0].lower()
if lang in parts and not parts[lang]:
parts[lang] = match.group(3)
return parts
def _parse_fences(body: str) -> list[dict]:
fences = []
for match in FENCE_RE.finditer(body):
info = match.group(2).strip()
lang = (info.split() or [""])[0].lower()
title = re.search(r"title=(\S+)", info)
fences.append(
{
"lang": lang,
"title": title.group(1) if title else None,
"text": match.group(3),
}
)
return fences
def _n_lines(n: int) -> str:
return f"{n} line" if n == 1 else f"{n} lines"
def _human_chars(n: int) -> str:
if n < 1000:
return f"{n} chars"
return f"{n / 1000:.1f}k chars"
def _code_summary(cell: dict, head: int, tail: int) -> dict:
meta = cell["metadata"]
fences = _parse_fences(cell["body"])
output = ""
code_fence = None
attached = []
for fence in fences:
if fence["lang"] in ("output", "result") and not output:
output = fence["text"]
elif fence["title"]:
attached.append((fence["title"], len(fence["text"].split("\n"))))
elif code_fence is None:
code_fence = fence
command = meta.get("command")
preview_lines: list[str] = []
if command:
try:
command_line = shlex.join(command)
except TypeError:
command_line = " ".join(str(token) for token in command)
line = f"$ {command_line}"
if meta.get("exit_code") is not None:
line += f" → exit {meta['exit_code']}"
if meta.get("duration_s") is not None:
line += f" ({meta['duration_s']}s)"
preview_lines.append(line)
if (
code_fence
and code_fence["lang"] == "bash"
and code_fence["text"].lstrip().startswith("$")
):
code_fence = None
if attached:
preview_lines.append(
"Attached: " + ", ".join(f"{name} ({_n_lines(n)})" for name, n in attached)
)
code_head: list[str] = []
code_lines = 0
if code_fence:
source_lines = code_fence["text"].rstrip("\n").split("\n")
code_lines = len(source_lines)
if head > 0:
code_head = source_lines[:head]
label = f"Code ({code_fence['lang'] or 'text'}, {_n_lines(code_lines)}"
label += f"; first {head}):" if code_lines > head else "):"
preview_lines += [label, "````", *code_head, "````"]
output_tail: list[str] = []
output_lines = 0
if output:
all_lines = output.rstrip("\n").split("\n")
output_lines = len(all_lines)
if tail > 0:
output_tail = all_lines[-tail:]
label = f"Output ({_n_lines(output_lines)}"
label += f"; last {tail}):" if output_lines > tail else "):"
preview_lines += [label, "````", *output_tail, "````"]
return {
"command": command,
"exit_code": meta.get("exit_code"),
"duration_s": meta.get("duration_s"),
"language": meta.get("language"),
"attached": [name for name, _ in attached],
"code_lines": code_lines,
"code_head": "\n".join(code_head),
"output_lines": output_lines,
"output_tail": "\n".join(output_tail),
"preview": "\n".join(preview_lines),
}
def _figure_summary(cell: dict, raw_limit: int) -> dict:
parts = _figure_parts(cell["body"])
raw, html = parts["raw"], parts["html"]
summary = {
"has_raw": bool(raw),
"has_html": bool(html),
"raw_chars": len(raw),
"html_chars": len(html),
}
preview_lines: list[str] = []
if raw:
if raw_limit and len(raw) <= raw_limit:
summary["raw"] = raw
preview_lines += [
f"Raw data ({_human_chars(len(raw))}):",
"````",
*raw.rstrip("\n").split("\n"),
"````",
]
else:
preview_lines.append(f"Raw data: {_human_chars(len(raw))} (--raw).")
if html:
preview_lines.append(f"HTML figure: {_human_chars(len(html))} (--html).")
if not preview_lines:
preview_lines.append("No figure payloads.")
summary["preview"] = "\n".join(preview_lines)
return summary
def _artifact_summary(cell: dict) -> dict:
lines = [ln.strip() for ln in cell["body"].split("\n") if ln.strip()]
first = lines[0].replace("**📦 Artifact**", "📦").strip() if lines else "📦"
bucket_match = BUCKET_URL_RE.search(cell["body"])
link = bucket_match.group(0) if bucket_match else None
local = link is None
path = cell["metadata"].get("path")
if link:
preview = f"{first} · {link}"
elif path:
preview = f"{first} · local file (pushed to a Bucket on publish)"
elif local:
preview = f"{first} · local (pushed to a Bucket on publish)"
else:
preview = first
summary = {
"artifact": cell["metadata"].get("artifact"),
"artifact_type": cell["metadata"].get("artifact_type"),
"local": local,
"link": link,
"preview": preview,
}
if path:
summary["path"] = path
return summary
def _dashboard_summary(cell: dict) -> dict:
project = cell["metadata"].get("dashboard_project")
match = SPACE_URL_RE.search(cell["body"])
link = match.group(0) if match else None
if link:
preview = f"🎯 Dashboard `{project}` · {link}"
else:
preview = (
f"🎯 Dashboard `{project}` · local "
"(live in preview; promoted to a Space on publish)"
)
return {
"project": project,
"local": link is None,
"link": link,
"preview": preview,
}
def _strip_duplicate_heading(body: str, title: str) -> str:
match = re.match(r"\s*#{1,6}\s+([^\n]+)\n?", body)
if not match:
return body
def norm(text: str) -> str:
return re.sub(r"\s+", " ", re.sub(r"[*_`#]", "", text)).strip().lower()
if norm(match.group(1)) == norm(title):
return body[match.end() :].lstrip("\n")
return body
def _cell_public_summary(
cell: dict,
head: int = DEFAULT_HEAD,
tail: int = DEFAULT_TAIL,
raw_limit: int = DEFAULT_RAW_LIMIT,
) -> dict:
summary = {
"id": cell["id"],
"type": cell["type"],
"title": cell["title"],
"created_at": cell.get("created_at"),
}
if cell["type"] == "markdown":
summary["body"] = cell["body"]
summary["preview"] = _strip_duplicate_heading(cell["body"], cell["title"])
elif cell["type"] == "artifact":
summary["body"] = cell["body"]
summary.update(_artifact_summary(cell))
elif cell["type"] == "dashboard":
summary["body"] = cell["body"]
summary.update(_dashboard_summary(cell))
elif cell["type"] == "code":
summary.update(_code_summary(cell, head, tail))
elif cell["type"] == "figure":
summary.update(_figure_summary(cell, raw_limit))
return summary
def read_page_outline(
proj: Path,
page: str | None = None,
head: int = DEFAULT_HEAD,
tail: int = DEFAULT_TAIL,
raw_limit: int = DEFAULT_RAW_LIMIT,
) -> dict:
slug = _resolve_existing_page(proj, page)
manifest = build_manifest(proj)
node = _node_for_slug(manifest, slug)
if node is None:
raise LogbookError(f"No page with slug '{slug}' in this logbook.")
text = (logbook_root(proj) / node["file"]).read_text(encoding="utf-8")
cells = _parse_cells_from_text(text, node["slug"], node["title"])
return {
"slug": node["slug"],
"title": node["title"],
"file": node["file"],
"cells": [
_cell_public_summary(cell, head=head, tail=tail, raw_limit=raw_limit)
for cell in cells
],
}
def read_cell(
proj: Path,
cell_id: str,
*,
include_full: bool = False,
include_raw: bool = False,
include_html: bool = False,
) -> dict:
manifest = build_manifest(proj)
root = logbook_root(proj)
for node in _walk(manifest["root"]):
text = (root / node["file"]).read_text(encoding="utf-8")
for cell in _parse_cells_from_text(text, node["slug"], node["title"]):
if cell["id"] == cell_id:
result = {
"id": cell["id"],
"type": cell["type"],
"title": cell["title"],
"created_at": cell.get("created_at"),
"page": cell["page"],
"page_title": cell["page_title"],
"file": node["file"],
"metadata": cell["metadata"],
}
if cell["type"] in ("markdown", "artifact", "dashboard"):
result["body"] = cell["body"]
elif cell["type"] == "code":
if include_full:
result["body"] = cell["body"]
elif cell["type"] == "figure":
parts = _figure_parts(cell["body"])
result["has_html"] = bool(parts["html"])
result["has_raw"] = bool(parts["raw"])
if include_full or include_html:
result["html"] = parts["html"]
if include_full or include_raw:
result["raw"] = parts["raw"]
return result
raise LogbookError(f"No cell with id '{cell_id}' in this logbook.")
def _resolve_slug(proj: Path, page: str) -> str:
"""Resolve a page slug or title to its slug."""
want = _slugify(page)
for node in _walk(build_manifest(proj)["root"]):
if page in (node["slug"], node["title"]) or node["slug"] == want:
return node["slug"]
raise LogbookError(f"No page matching '{page}' in this logbook.")
def last_cell_id(proj: Path, page: str | None = None) -> str | None:
"""Id of the most recent cell on `page` (or the current default page)."""
slug = _resolve_slug(proj, page) if page else read_metadata(proj).get("last_page")
if not slug:
return None
path = _page_file_for_slug(proj, slug)
if path is None or not path.exists():
return None
cells = _parse_cells_from_text(path.read_text(encoding="utf-8"), slug, "")
return cells[-1]["id"] if cells else None
def set_cell_pinned(
proj: Path, cell_id: str, *, pinned: bool = True, page: str | None = None
) -> dict:
"""Pin or unpin a cell by id.
Pinned cells surface in a deck on the logbook intro (the frontend reads the
`pinned` flag from each cell's metadata). Rewrites the owning page in place.
"""
root = logbook_root(proj)
scope = _resolve_slug(proj, page) if page else None
for node in _walk(build_manifest(proj)["root"]):
if scope and node["slug"] != scope:
continue
path = root / node["file"]
text = path.read_text(encoding="utf-8")
state = {"hit": False, "title": None}
def _repl(m):
try:
meta = json.loads(m.group(2))
except json.JSONDecodeError:
return m.group(0)
if meta.get("id") != cell_id:
return m.group(0)
state["hit"] = True
state["title"] = meta.get("title")
if pinned:
meta["pinned"] = True
meta.setdefault("pinned_at", _now_iso())
else:
meta.pop("pinned", None)
meta.pop("pinned_at", None)
marker = (
"<!-- trackio-cell\n" + json.dumps(meta, ensure_ascii=False) + "\n-->"
)
return f"{m.group(1)}---\n{marker}\n{m.group(3)}"
new_text = CELL_RE.sub(_repl, text)
if state["hit"]:
path.write_text(new_text, encoding="utf-8")
write_site_files(proj)
return {
"page": node["slug"],
"page_title": node["title"],
"title": state["title"],
"pinned": pinned,
}
raise LogbookError(f"No cell with id '{cell_id}' in this logbook.")
# ---- auto-note (called from trackio.finish / log_artifact) ----
def _autonote_enabled() -> bool:
return os.environ.get("TRACKIO_LOGBOOK_AUTONOTE", "1").lower() not in (
"0",
"false",
"no",
"off",
)
def _new_cell_id() -> str:
return f"cell_{uuid.uuid4().hex[:12]}"
def _cell_marker(cell_type: str, title: str | None = None, **metadata) -> str:
if cell_type not in CELL_TYPES:
raise LogbookError(f"Unsupported logbook cell type: {cell_type}")
title = (title or "").strip() or "Untitled"
payload = {
"type": cell_type,
"id": metadata.pop("id", _new_cell_id()),
"created_at": metadata.pop("created_at", _now_iso()),
"title": title,
}
payload.update({k: v for k, v in metadata.items() if v not in (None, "", [])})
return "<!-- trackio-cell\n" + json.dumps(payload, ensure_ascii=False) + "\n-->"
def _shorten(text: str, limit: int = 80) -> str:
text = re.sub(r"\s+", " ", text).strip()
if len(text) <= limit:
return text
return text[: limit - 1].rstrip() + "…"
def _strip_markdown_title(text: str) -> str:
text = re.sub(r"!\[([^\]]*)\]\([^)]+\)", r"\1", text)
text = re.sub(r"\[([^\]]+)\]\([^)]+\)", r"\1", text)
text = re.sub(r"[*_`>#]+", "", text)
return text.strip(" -:\t")
def _default_cell_title(cell_type: str, body: str, metadata: dict) -> str:
command = metadata.get("command")
if command:
try:
return _shorten(f"Run: {shlex.join(command)}")
except TypeError:
return "Run"
if cell_type == "code":
titled = re.search(r"^````\w*\s+title=([^\n]+)", body, re.M)
if titled:
return _shorten(f"Code: {titled.group(1).strip()}")
return "Code cell"
if cell_type == "figure":
return "Figure"
for line in body.splitlines():
line = line.strip()
if not line or line.startswith("````") or line.startswith("<!--"):
continue
if line.startswith("#"):
line = line.lstrip("#").strip()
title = _strip_markdown_title(line)
if title:
return _shorten(title)
return "Markdown cell"
def _parse_cell_meta(raw: str, body: str = "") -> dict:
try:
meta = json.loads(raw)
except Exception:
meta = {}
cell_type = meta.get("type") or "markdown"
if cell_type not in CELL_TYPES:
cell_type = "markdown"
meta["type"] = cell_type
meta["id"] = meta.get("id") or _new_cell_id()
meta["title"] = (meta.get("title") or "").strip() or _default_cell_title(
cell_type, body, meta
)
return meta
def _parse_cells_from_text(text: str, page_slug: str, page_title: str) -> list[dict]:
cells = []
for match in CELL_RE.finditer(text):
body = match.group(3).strip()
meta = _parse_cell_meta(match.group(2), body)
cells.append(
{
"id": meta["id"],
"type": meta["type"],
"title": meta["title"],
"created_at": meta.get("created_at"),
"page": page_slug,
"page_title": page_title,
"metadata": meta,
"body": body,
}
)
return cells
def _append_cell(
proj: Path,
page_slug: str,
cell_type: str,
body: str,
title: str | None = None,
**metadata,
) -> None:
page_path = _page_file_for_slug(proj, page_slug)
if page_path is None:
raise LogbookError(f"No page with slug '{page_slug}' in this logbook.")
title = (title or "").strip() or _default_cell_title(cell_type, body, metadata)
block = (
f"\n\n---\n{_cell_marker(cell_type, title=title, **metadata)}\n{body.strip()}\n"
)
with page_path.open("a", encoding="utf-8") as f:
f.write(block)
_remember_page(proj, page_slug)
write_site_files(proj)
def add_markdown_cell(
proj: Path,
page_slug: str,
body: str,
title: str | None = None,
) -> None:
_append_cell(proj, page_slug, "markdown", body.strip(), title=title)
def add_code_cell(
proj: Path,
page_slug: str,
output: str,
title: str | None = None,
code_paths: list[str] | None = None,
code_text: str | None = None,
language: str | None = None,
) -> None:
lines: list[str] = []
for path in code_paths or []:
lines += _code_block_lines(path)
if code_text:
lang = language or ""
lines += ["", f"````{lang}".rstrip(), *code_text.split("\n"), "````", ""]
lines += ["", "````output", *output.split("\n"), "````", ""]
_append_cell(
proj,
page_slug,
"code",
"\n".join(lines),
title=title,
language=language,
)
def _format_size(size: int | None) -> str:
gb = (size or 0) / 1e9
if gb >= 0.01:
return f" · {gb:.2f} GB"
if size and size >= 100_000:
return f" · {size / 1e6:.1f} MB"
if size and size >= 1_000:
return f" · {size / 1e3:.1f} kB"
if size:
return f" · {size} B"
return ""
def _artifact_stats(qualified_name: str) -> tuple[int, int]:
try:
from trackio.sqlite_storage import SQLiteStorage # noqa: PLC0415
project_and_name = qualified_name.split(":")[0]
if "/" not in project_and_name:
return (0, 0)
project, art_name = project_and_name.split("/", 1)
manifest = SQLiteStorage.get_artifact_manifest(project, art_name)
return (sum(entry.get("size", 0) for entry in manifest), len(manifest))
except Exception:
return (0, 0)
def add_artifact_cell(
proj: Path,
page_slug: str,
qualified_name: str,
size: int | None = None,
title: str | None = None,
artifact_type: str | None = None,
) -> None:
files = 0
if size is None:
size, files = _artifact_stats(qualified_name)
register_local(proj, artifact=qualified_name)
line = f"**📦 Artifact** `{qualified_name}`"
if artifact_type and artifact_type != "artifact":
line += f" · {artifact_type}"
if files:
line += f" · {files} files"
line += _format_size(size)
body = f"{line}\n\n{ARTIFACT_URI_PREFIX}{qualified_name}"
_append_cell(
proj,
page_slug,
"artifact",
body,
title=title or f"Artifact: {qualified_name}",
artifact=qualified_name,
artifact_type=artifact_type,
)
def add_dashboard_cell(
proj: Path,
page_slug: str,
project: str,
space_id: str | None = None,
title: str | None = None,
) -> None:
if space_id:
link = f"https://huggingface.co/spaces/{space_id}"
else:
link = f"{LOCAL_DASHBOARD_PREFIX}{project}"
register_local(proj, dashboard_project=project)
body = f"**🎯 Trackio dashboard** `{project}`\n\n{link}"
_append_cell(
proj,
page_slug,
"dashboard",
body,
title=title or f"Dashboard: {project}",
dashboard_project=project,
)
def add_path_artifact_cell(
proj: Path,
page_slug: str,
path: str,
size: int,
artifact_type: str | None = None,
title: str | None = None,
) -> None:
display = _artifact_display_path(path)
shown = display if "`" in display else f"`{display}`"
line = f"**📦 Artifact** {shown}"
if artifact_type:
line += f" · {artifact_type}"
line += _format_size(size)
body = f"{line}\n\n{PATH_ARTIFACT_URI_PREFIX}{display}"
register_local(
proj,
path_artifact={
"path": display,
"abs_path": str(Path(path).resolve()),
"size": size,
"artifact_type": artifact_type,
},
)
_append_cell(
proj,
page_slug,
"artifact",
body,
title=title or f"Artifact: {Path(path).name}",
path=display,
size=size,
artifact_type=artifact_type,
auto=True,
)
def add_figure_cell(
proj: Path,
page_slug: str,
html: str | None = None,
raw: str | None = None,
title: str | None = None,
) -> None:
if not html:
raise LogbookError("Figure cells require HTML content.")
if len(html) > 1_000_000:
print(
f"Note: figure HTML is {len(html) / 1_000_000:.1f} MB and is stored "
"inside the page. For Plotly, export with "
'fig.write_html(..., include_plotlyjs="cdn") to keep pages small.',
file=sys.stderr,
)
lines = ["````html", html, "````", ""]
if raw:
lines += ["````raw", raw, "````", ""]
_append_cell(proj, page_slug, "figure", "\n".join(lines), title=title)
def register_local(
proj: Path,
dashboard_project: str | None = None,
artifact: str | None = None,
path_artifact: dict | None = None,
) -> None:
metadata = read_metadata(proj)
if dashboard_project:
metadata.setdefault("local_dashboards", {}).setdefault(dashboard_project, None)
if artifact:
arts = metadata.setdefault("local_artifacts", [])
if artifact not in arts:
arts.append(artifact)
if path_artifact:
entries = metadata.setdefault("local_path_artifacts", [])
entries[:] = [e for e in entries if e.get("path") != path_artifact["path"]]
entries.append(path_artifact)
write_metadata(proj, metadata)
def _page_has_dashboard_cell(proj: Path, slug: str, project: str) -> bool:
path = _page_file_for_slug(proj, slug)
if path is None or not path.is_file():
return False
text = path.read_text(encoding="utf-8")
if f"{LOCAL_DASHBOARD_PREFIX}{project}" in text:
return True
for cell in _parse_cells_from_text(text, slug, slug):
if (
cell["type"] == "dashboard"
and cell["metadata"].get("dashboard_project") == project
):
return True
return False
def auto_note_dashboard(project: str, space_id: str | None = None) -> None:
if not _autonote_enabled():
return
proj = find_project_dir()
if proj is None:
return
try:
slug = ensure_page(proj, project)
if _page_has_dashboard_cell(proj, slug, project):
return
add_dashboard_cell(proj, slug, project, space_id=space_id)
trigger_autosync(proj)
except Exception:
pass
def auto_note_artifact(
project: str,
qualified_name: str,
size: int = 0,
artifact_type: str | None = None,
) -> None:
if not _autonote_enabled():
return
proj = find_project_dir()
if proj is None:
return
try:
slug = ensure_page(proj, project)
add_artifact_cell(
proj, slug, qualified_name, size=size, artifact_type=artifact_type
)
trigger_autosync(proj)
except Exception:
pass
_LANG_BY_EXT = {
".py": "python",
".sh": "bash",
".bash": "bash",
".json": "json",
".yaml": "yaml",
".yml": "yaml",
".js": "javascript",
".ts": "typescript",
".sql": "sql",
".toml": "toml",
".md": "markdown",
}
_ARTIFACT_TYPE_BY_EXT = {
".pt": "model",
".pth": "model",
".ckpt": "model",
".safetensors": "model",
".gguf": "model",
".onnx": "model",
".pkl": "model",
".joblib": "model",
".h5": "model",
".tflite": "model",
".pb": "model",
".npz": "dataset",
".npy": "dataset",
".parquet": "dataset",
".csv": "dataset",
".tsv": "dataset",
".arrow": "dataset",
".jsonl": "dataset",
".feather": "dataset",
".msgpack": "dataset",
}
_SNAPSHOT_SKIP_DIRS = {"__pycache__", "node_modules", "venv", "env", "site-packages"}
_SNAPSHOT_MAX_ENTRIES = 50_000
_MAX_AUTO_ARTIFACT_CELLS = 10
def _code_block_lines(path: str) -> list[str]:
p = Path(path)
try:
content = p.read_text(encoding="utf-8")
except OSError:
return []
if len(content) > 200_000:
content = content[:200_000] + "\n# … truncated …"
lang = _LANG_BY_EXT.get(p.suffix.lower(), "")
return ["", f"````{lang} title={p.name}", *content.split("\n"), "````", ""]
def _truncate_run_output(output: str) -> str:
if len(output) <= RUN_OUTPUT_LIMIT:
return output
omitted = len(output) - RUN_OUTPUT_HEAD - RUN_OUTPUT_TAIL
marker = f"\n... [{omitted} chars elided] ...\n"
return output[:RUN_OUTPUT_HEAD] + marker + output[-RUN_OUTPUT_TAIL:]
def _detect_code_paths(command: list[str]) -> list[str]:
seen: set[str] = set()
paths: list[str] = []
for token in command:
path = Path(token)
if not path.is_file() or path.suffix.lower() not in _LANG_BY_EXT:
continue
key = str(path.resolve())
if key in seen:
continue
seen.add(key)
paths.append(str(path))
return paths
def _snapshot_output_files(root: Path) -> dict[str, tuple[int, int]] | None:
snapshot: dict[str, tuple[int, int]] = {}
scanned = 0
for dirpath, dirnames, filenames in os.walk(root, followlinks=False):
dirnames[:] = [
d
for d in dirnames
if not d.startswith(".") and d not in _SNAPSHOT_SKIP_DIRS
]
scanned += len(dirnames) + len(filenames)
if scanned > _SNAPSHOT_MAX_ENTRIES:
return None
for name in filenames:
if Path(name).suffix.lower() not in _ARTIFACT_TYPE_BY_EXT:
continue
full = os.path.join(dirpath, name)
try:
if os.path.islink(full):
continue
stat = os.stat(full)
except OSError:
continue
snapshot[full] = (stat.st_mtime_ns, stat.st_size)
return snapshot
def _diff_output_files(
before: dict[str, tuple[int, int]],
after: dict[str, tuple[int, int]],
) -> list[tuple[str, int]]:
changed = [
(path, stat[1])
for path, stat in after.items()
if stat[1] > 0 and before.get(path) != stat
]
changed.sort(key=lambda item: (-item[1], item[0]))
return changed
def _artifact_display_path(path: str) -> str:
try:
rel = os.path.relpath(path)
except ValueError:
return Path(path).as_posix()
if rel.startswith(".."):
return Path(path).as_posix()
return Path(rel).as_posix()
def add_run_cell(
proj: Path,
page_slug: str,
command: list[str],
output: str,
exit_code: int,
duration_s: float,
code_paths: list[str],
title: str | None = None,
artifact_note: str | None = None,
) -> None:
command_line = shlex.join(command)
lines = [
"````bash",
f"$ {command_line}",
"````",
"",
f"exit {exit_code} · {duration_s:.1f}s",
"",
]
if artifact_note:
lines += [artifact_note, ""]
for path in code_paths:
lines += _code_block_lines(path)
lines += ["", "````output", *output.split("\n"), "````", ""]
if title is None:
command_name = Path(command[0]).name
if code_paths:
command_name = f"{command_name} {Path(code_paths[0]).name}"
title = f"Run: {command_name} (exit {exit_code})"
_append_cell(
proj,
page_slug,
"code",
"\n".join(lines),
title=title,
command=command,
exit_code=exit_code,
duration_s=round(duration_s, 3),
)
def run_and_log(
proj: Path,
command: list[str],
page: str | None = None,
title: str | None = None,
capture_artifacts: bool = True,
) -> int:
if not command:
raise LogbookError("No command provided. Use: trackio logbook run -- <command>")
slug = resolve_page(proj, page)
code_paths = _detect_code_paths(command)
before = None
if capture_artifacts and _autonote_enabled():
try:
before = _snapshot_output_files(Path.cwd())
except Exception:
before = None
output_parts: list[str] = []
started = time.monotonic()
interrupted = False
try:
proc = subprocess.Popen(
command,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
bufsize=1,
)
except FileNotFoundError as e:
raise LogbookError(f"Command not found: {command[0]}") from e
try:
assert proc.stdout is not None
for chunk in proc.stdout:
sys.stdout.write(chunk)
sys.stdout.flush()
output_parts.append(chunk)
exit_code = proc.wait()
except KeyboardInterrupt:
interrupted = True
proc.terminate()
try:
proc.wait(timeout=5)
except subprocess.TimeoutExpired:
proc.kill()
proc.wait()
exit_code = 130
marker = "\n[interrupted]\n"
sys.stdout.write(marker)
sys.stdout.flush()
output_parts.append(marker)
duration_s = time.monotonic() - started
output = _truncate_run_output("".join(output_parts))
changed: list[tuple[str, int]] = []
artifact_note = None
if before is not None:
try:
after = _snapshot_output_files(Path.cwd())
changed = _diff_output_files(before, after or {})
except Exception:
changed = []
if len(changed) > _MAX_AUTO_ARTIFACT_CELLS:
artifact_note = (
f"{len(changed)} output files detected; recording the "
f"{_MAX_AUTO_ARTIFACT_CELLS} largest."
)
changed = changed[:_MAX_AUTO_ARTIFACT_CELLS]
add_run_cell(
proj,
slug,
command,
output,
exit_code,
duration_s,
code_paths,
title=title,
artifact_note=artifact_note,
)
for path, size in changed:
try:
add_path_artifact_cell(
proj,
slug,
path,
size,
artifact_type=_ARTIFACT_TYPE_BY_EXT.get(Path(path).suffix.lower()),
)
except Exception:
pass
trigger_autosync(proj)
return 130 if interrupted else exit_code
def status_text(proj: Path) -> str:
manifest = write_site_files(proj)
metadata = read_metadata(proj)
lines = [
f"🎯 {manifest['title']}",
f" dir {logbook_root(proj)}",
]
if metadata.get("space_id"):
state = "auto-syncing" if metadata.get("autosync") else "not published"
lines.append(f" space {metadata['space_id']} ({state})")
def render(node, depth):
marker = "•" if depth else "▸"
lines.append(f" {' ' * depth}{marker} {node['title']} ({node['slug']})")
for child in node.get("children", []):
render(child, depth + 1)
lines.append("")
lines.append(" Pages:")
render(manifest["root"], 0)
return "\n".join(lines)
# ---- serve / publish / sync ----
def _highlight_command(text: str) -> str:
return f"\033[1m\033[38;5;208m{text}\033[0m"
def _find_preview_port(port: int) -> int:
import socket # noqa: PLC0415
if port == 0:
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.bind(("127.0.0.1", 0))
return int(sock.getsockname()[1])
for candidate in range(port, port + TRY_NUM_PORTS):
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock:
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
try:
sock.bind(("127.0.0.1", candidate))
except OSError:
continue
return candidate
raise LogbookError(
f"Cannot find empty port in range: {port}-{port + TRY_NUM_PORTS - 1}. "
"Pass --port to choose another starting port."
)
def start_preview(proj: Path, port: int = 7861, open_browser: bool = True) -> str:
import webbrowser # noqa: PLC0415
write_site_files(proj)
actual_port = _find_preview_port(port)
root = logbook_root(proj)
log_path = root / ".serve.log"
cmd = [
sys.executable,
"-m",
"trackio.cli",
"logbook",
"serve",
str(proj.parent),
"--port",
str(actual_port),
"--no-browser",
]
log = log_path.open("a", encoding="utf-8")
subprocess.Popen(
cmd,
cwd=str(proj.parent),
stdin=subprocess.DEVNULL,
stdout=log,
stderr=subprocess.STDOUT,
start_new_session=True,
)
url = f"http://localhost:{actual_port}/"
print(_highlight_command(f"* Trackio logbook launched at: {url}"))
print(f" Server logs: {log_path}")
if open_browser:
try:
webbrowser.open(url)
except Exception:
pass
return url
def _logbook_static_app(root: Path):
from starlette.applications import Starlette # noqa: PLC0415
from starlette.responses import FileResponse, PlainTextResponse # noqa: PLC0415
from starlette.routing import Route # noqa: PLC0415
root = root.resolve()
async def endpoint(request):
rel = request.path_params.get("path", "") or "index.html"
candidate = (root / rel).resolve()
if not candidate.is_relative_to(root):
return PlainTextResponse("Not found", status_code=404)
if candidate.is_dir():
candidate = candidate / "index.html"
if not candidate.is_file():
return PlainTextResponse("Not found", status_code=404)
return FileResponse(candidate, headers={"Cache-Control": "no-store, max-age=0"})
return Starlette(routes=[Route("/{path:path}", endpoint)])
def _build_preview_app(proj: Path):
from starlette.applications import Starlette # noqa: PLC0415
from starlette.routing import Mount # noqa: PLC0415
from trackio.frontend_config import resolve_frontend_dir # noqa: PLC0415
from trackio.server import build_starlette_app_only # noqa: PLC0415
dashboard_app, _write_token = build_starlette_app_only(
mcp_server=False,
frontend_dir=str(resolve_frontend_dir(None).path),
)
static_app = _logbook_static_app(logbook_root(proj))
return Starlette(
routes=[
Mount("/dashboard", app=dashboard_app),
Mount("/", app=static_app),
]
)
def serve(
path: str | Path | None = None, port: int = 7861, open_browser: bool = True
) -> None:
import time as _time # noqa: PLC0415
import webbrowser # noqa: PLC0415
from trackio.launch import start_server # noqa: PLC0415
proj = require_project_dir(path)
write_site_files(proj)
app = _build_preview_app(proj)
candidates = (
[_find_preview_port(0)] if port == 0 else range(port, port + TRY_NUM_PORTS)
)
server = None
actual_port = None
last_err: Exception | None = None
for candidate_port in candidates:
try:
_name, actual_port, _url, server = start_server(
app, server_name="0.0.0.0", server_port=candidate_port
)
break
except OSError as e:
last_err = e
continue
if server is None:
raise LogbookError(
f"Cannot find empty port in range: {port}-{port + TRY_NUM_PORTS - 1}. "
"Pass --port to choose another starting port."
) from last_err
url = f"http://localhost:{actual_port}/"
print(_highlight_command(f"* Trackio logbook launched at: {url}"))
print(f" Dashboard embedded at: {url}dashboard/")
print("Press Ctrl+C to stop.")
if open_browser:
try:
webbrowser.open(url)
except Exception:
pass
try:
while True:
_time.sleep(0.5)
except KeyboardInterrupt:
print("\nStopped.")
def _readme(manifest: dict) -> str:
emoji = manifest.get("emoji", "🎯")
title = json.dumps(manifest["title"], ensure_ascii=False)
extra_tags = "".join(f" - {tag}\n" for tag in manifest.get("tags") or [])
return (
f"---\ntitle: {title}\nemoji: {emoji}\ncolorFrom: yellow\ncolorTo: red\n"
"sdk: static\npinned: false\ntags:\n - trackio\n - trackio-logbook\n"
f" - open-experiment\n{extra_tags}---\n\n"
f"# {manifest['title']}\n\nAn open experiment logbook, published with "
"[Trackio](https://github.com/gradio-app/trackio).\n"
)
def _push(proj: Path, hf_token: str | None = None, private: bool = False) -> str:
import huggingface_hub # noqa: PLC0415
metadata = read_metadata(proj)
space_id = metadata["space_id"]
manifest = write_site_files(proj)
(logbook_root(proj) / "README.md").write_text(_readme(manifest), encoding="utf-8")
api = huggingface_hub.HfApi(token=hf_token)
huggingface_hub.create_repo(
space_id,
repo_type="space",
space_sdk="static",
exist_ok=True,
private=private,
token=hf_token,
)
api.upload_folder(
repo_id=space_id,
repo_type="space",
folder_path=str(logbook_root(proj)),
commit_message=f"Update logbook: {manifest['title']}",
ignore_patterns=[".sync_lock", ".sync_pending", ".sync.log"],
)
return f"https://huggingface.co/spaces/{space_id}"
def _rewrite_in_pages(proj: Path, old: str, new: str) -> None:
for md in _pages_dir(proj).rglob("*.md"):
text = md.read_text(encoding="utf-8")
if old in text:
md.write_text(text.replace(old, new), encoding="utf-8")
def _promote_local_deps(proj: Path, ns: str, private: bool) -> None:
metadata = read_metadata(proj)
dashboards = metadata.get("local_dashboards", {})
for project, published in list(dashboards.items()):
target = published or f"{ns}/{project}"
if published is None:
try:
from trackio import sync as trackio_sync # noqa: PLC0415
print(f" · promoting dashboard '{project}' → {target}")
trackio_sync(project=project, space_id=target, private=private)
dashboards[project] = target
except Exception as e:
print(f" · could not promote dashboard '{project}': {e}")
continue
_rewrite_in_pages(
proj,
f"{LOCAL_DASHBOARD_PREFIX}{project}",
f"https://huggingface.co/spaces/{target}",
)
metadata["local_dashboards"] = dashboards
arts = metadata.get("local_artifacts", [])
path_arts = metadata.get("local_path_artifacts", [])
if arts or path_arts:
owner, _, name = metadata["space_id"].partition("/")
bucket = metadata.get("artifacts_bucket") or f"{owner}/{name}-artifacts"
try:
from trackio import bucket_storage # noqa: PLC0415
bucket_storage.create_bucket_if_not_exists(bucket, private=private)
metadata["artifacts_bucket"] = bucket
for project in sorted({a.split("/")[0] for a in arts if "/" in a}):
print(f" · pushing artifacts for '{project}' → bucket {bucket}")
bucket_storage.upload_project_to_bucket(project, bucket)
for art in arts:
_rewrite_in_pages(
proj,
f"{ARTIFACT_URI_PREFIX}{art}",
f"https://huggingface.co/buckets/{bucket}#{art}",
)
if path_arts:
print(
f" · pushing {len(path_arts)} local file artifact(s) → bucket {bucket}"
)
uploaded = bucket_storage.upload_logbook_path_artifacts_to_bucket(
bucket, path_arts
)
for rel in uploaded:
_rewrite_in_pages(
proj,
f"{PATH_ARTIFACT_URI_PREFIX}{rel}",
f"https://huggingface.co/buckets/{bucket}#"
f"{bucket_storage.LOGBOOK_FILES_BUCKET_PREFIX}/{rel}",
)
missing = [e["path"] for e in path_arts if e["path"] not in uploaded]
for rel in missing:
print(f" · skipped local file artifact (missing on disk): {rel}")
except Exception as e:
print(f" · could not push artifacts to bucket: {e}")
write_metadata(proj, metadata)
def publish(
space_id: str | None = None, hf_token: str | None = None, private: bool = False
) -> str:
proj = require_project_dir()
metadata = read_metadata(proj)
space_id = space_id or metadata.get("space_id")
if not space_id:
raise LogbookError(
"No Space id. Provide one: trackio logbook publish <username/space>"
)
prior = {key: metadata.get(key) for key in ("space_id", "autosync", "private")}
metadata["space_id"] = space_id
metadata["autosync"] = True
metadata["private"] = private
write_metadata(proj, metadata)
try:
_promote_local_deps(proj, space_id.split("/")[0], private=private)
return _push(proj, hf_token=hf_token, private=private)
except Exception:
metadata = read_metadata(proj)
metadata.update(prior)
write_metadata(proj, metadata)
raise
def is_autosync(proj: Path) -> bool:
metadata = read_metadata(proj)
return bool(metadata.get("autosync") and metadata.get("space_id"))
def trigger_autosync(proj: Path) -> None:
import subprocess # noqa: PLC0415
import sys # noqa: PLC0415
if not is_autosync(proj):
return
(logbook_root(proj) / ".sync_pending").write_text("1", encoding="utf-8")
try:
with open(logbook_root(proj) / ".sync.log", "a", encoding="utf-8") as log:
subprocess.Popen(
[sys.executable, "-m", "trackio.cli", "logbook", "_sync"],
cwd=str(proj.parent),
stdout=log,
stderr=subprocess.STDOUT,
start_new_session=True,
)
except Exception:
pass
def sync_worker(debounce: float = 2.5) -> None:
import time # noqa: PLC0415
try:
import fcntl # noqa: PLC0415
except ImportError:
fcntl = None
proj = find_project_dir()
if proj is None:
return
root = logbook_root(proj)
lock = open(root / ".sync_lock", "w")
try:
if fcntl is not None:
try:
fcntl.flock(lock, fcntl.LOCK_EX | fcntl.LOCK_NB)
except OSError:
return
pending = root / ".sync_pending"
while pending.exists():
pending.unlink()
time.sleep(debounce)
try:
_push(proj)
except Exception:
pass
finally:
if fcntl is not None:
try:
fcntl.flock(lock, fcntl.LOCK_UN)
except OSError:
pass
lock.close()
|