-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
80 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Combinations of different models.""" | ||
|
||
from pydantic import BaseModel, Field | ||
|
||
from .ci_manager import CiManagerSummary | ||
from .flock import FlockSummary | ||
|
||
|
||
class CombinedSummary(BaseModel): | ||
"""Summary of all app state.""" | ||
|
||
flocks: list[FlockSummary] = Field( | ||
..., title="Info about all running flocks" | ||
) | ||
ci_manager: CiManagerSummary | None = Field( | ||
None, title="Info about GitHub CI workers" | ||
) |
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,47 @@ | ||
"""Models for CiManager.""" | ||
|
||
from pydantic import BaseModel, Field, HttpUrl | ||
|
||
from .user import User | ||
|
||
__all__ = [ | ||
"CiJobSummary", | ||
"CiManagerSummary", | ||
"CiWorkerSummary", | ||
] | ||
|
||
|
||
class CiJobSummary(BaseModel): | ||
"""Information about a job.""" | ||
|
||
commit_url: HttpUrl = Field( | ||
..., | ||
title="GitHub URL to the commit being worked on", | ||
) | ||
|
||
|
||
class CiWorkerSummary(BaseModel): | ||
"""Information about a running worker.""" | ||
|
||
user: User = Field(..., title="User that the worker works as") | ||
|
||
num_processed: int = Field( | ||
..., | ||
title="Number of jobs this worker has processed since mobu started", | ||
) | ||
|
||
current_job: CiJobSummary | None = Field( | ||
..., title="The job the worker is currently running, if any" | ||
) | ||
|
||
|
||
class CiManagerSummary(BaseModel): | ||
"""Information about the CiManager.""" | ||
|
||
workers: list[CiWorkerSummary] = Field( | ||
..., title="The workers being managed" | ||
) | ||
|
||
num_queued: int = Field( | ||
..., title="Number of jobs waiting for a free worker" | ||
) |
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