-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* store status changes with timestamps, show run time based on those timestamps * fix some bugs * refactor StatusHistory into it's own dataclass * create new file specific to status * add tests for StatusHistory * add pytest to pre-commit * attempt to fix github runner * remove demo_test, accidentally added * update .gitignore * clean up mere commit
- Loading branch information
1 parent
8b6b38d
commit 771b88e
Showing
14 changed files
with
265 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ tmp/ | |
IGNORE-ME* | ||
.pyre/* | ||
.draft | ||
.coverage* | ||
|
||
# local env files | ||
.env*.local | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"site_package_search_strategy": "pep561", | ||
"source_directories": [ | ||
"sidecar" | ||
{"import_root": ".", "source": "sidecar"} | ||
] | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
from __future__ import annotations | ||
|
||
import time | ||
from dataclasses import dataclass, field | ||
from enum import IntEnum, auto | ||
from pathlib import Path | ||
from typing import NamedTuple | ||
|
||
import loguru | ||
|
||
|
||
class Status(IntEnum): | ||
UNKNOWN = auto() | ||
NOT_FOUND = auto() | ||
STARTING = auto() | ||
COMPILING = auto() | ||
WAITING_TO_START = auto() | ||
IN_PROGRESS = auto() | ||
COMPLETE = auto() | ||
KILLED = auto() | ||
CRASHED = auto() | ||
|
||
|
||
StatusChangeEvent = NamedTuple( | ||
"StatusChangeEvent", [("status", Status), ("timestamp", float)] | ||
) | ||
|
||
|
||
@dataclass | ||
class StatusHistory: | ||
file_path: Path = field(init=True, repr=False) | ||
logger: loguru.Logger = field(init=True, repr=False, compare=False) | ||
_status_history: list[StatusChangeEvent] = field( | ||
init=False, default_factory=list, repr=True | ||
) | ||
|
||
def __post_init__(self): | ||
if self.file_path.exists(): | ||
self.logger.debug(f"Loading status history from file {self.file_path}") | ||
with self.file_path.open("r", encoding="utf8") as f: | ||
for line in f: | ||
status_str, timestamp = line.split(",") | ||
self._status_history.append( | ||
StatusChangeEvent( | ||
status=Status[status_str], timestamp=float(timestamp) | ||
) | ||
) | ||
|
||
@property | ||
def locking_status(self): | ||
"""Cannot add to history after this or higher status is reached""" | ||
return Status.COMPLETE | ||
|
||
def add(self, status: Status, timestamp: float = time.time()): | ||
assert status > self.current_status | ||
assert self.current_status < self.locking_status | ||
self._status_history.append( | ||
StatusChangeEvent(status=status, timestamp=timestamp) | ||
) | ||
with self.file_path.open("a", encoding="utf8") as f: | ||
self.logger.debug(f"updating status: {status=}") | ||
f.write(f"{status.name},{timestamp}\n") | ||
|
||
@property | ||
def current_status_event(self): | ||
if not self._status_history: | ||
return StatusChangeEvent(status=Status.UNKNOWN, timestamp=time.time()) | ||
return self._status_history[-1] | ||
|
||
@property | ||
def current_status(self): | ||
return self.current_status_event.status | ||
|
||
@property | ||
def status_event_json(self): | ||
status_event = { | ||
"status": self.current_status_event.status.name, | ||
"start_time": self.current_status_event.timestamp, | ||
} | ||
if self.current_status >= Status.COMPLETE and len(self._status_history) >= 2: | ||
status_event["start_time"] = self._status_history[-2].timestamp | ||
status_event["end_time"] = self.current_status_event.timestamp | ||
return status_event |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.