This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into basic-client
- Loading branch information
Showing
21 changed files
with
864 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# REF: https://coderefinery.github.io/documentation/gh_workflow/ | ||
|
||
name: Build documentation | ||
|
||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
env: | ||
PYTHON_VERSION: '3.10' | ||
POETRY_VERSION: '1.8.3' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
docs: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Local action that tries to cache as much of python & poetry as possible | ||
- name: Setup environment | ||
uses: ./.github/workflows/setup-python | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
poetry-version: ${{ env.POETRY_VERSION }} | ||
|
||
- name: Sphinx build | ||
run: | | ||
poetry run sphinx-apidoc -f -o docs/source/generated client && | ||
cd docs && | ||
poetry run make html | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: html-docs | ||
path: docs/build/html/ | ||
|
||
- name: Deploy to GitHub pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | ||
with: | ||
publish_branch: gh-pages | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: docs/build/html |
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,50 @@ | ||
# REF: https://github.com/UQComputingSociety/uqcsbot-discord/blob/main/.github/workflows/setup-python/action.yml | ||
|
||
name: Run code checks | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: [] | ||
|
||
env: | ||
PYTHON_VERSION: '3.10' | ||
POETRY_VERSION: '1.8.3' | ||
|
||
jobs: | ||
tests: | ||
name: Run tests | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Local action that tries to cache as much of python & poetry as possible | ||
- name: Setup environment | ||
uses: ./.github/workflows/setup-python | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
poetry-version: ${{ env.POETRY_VERSION }} | ||
|
||
- name: Check with pytest | ||
run: poetry run pytest | ||
|
||
styling: | ||
name: Run code styling | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Local action that tries to cache as much of python & poetry as possible | ||
- name: Setup environment | ||
uses: ./.github/workflows/setup-python | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
poetry-version: ${{ env.POETRY_VERSION }} | ||
|
||
- name: Check with black | ||
run: poetry run black . | ||
|
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,71 @@ | ||
# REF: https://github.com/UQComputingSociety/uqcsbot-discord/blob/main/.github/workflows/setup-python/action.yml | ||
|
||
name: Setup environment | ||
description: Setup python & poetry for running tests & typechecking | ||
|
||
inputs: | ||
python-version: | ||
description: Version of python to use | ||
required: true | ||
poetry-version: | ||
description: Version of poetry to use | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
# ------ | ||
# Get python | ||
# ------ | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
|
||
# ------ | ||
# Get poetry (hopefully from cache) | ||
# ------ | ||
- name: Check for cached poetry binary | ||
id: cached-poetry-binary | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.local | ||
# poetry depends on OS, python version, and poetry version | ||
key: poetry-${{ runner.os }}-${{ inputs.python-version }}-${{ inputs.poetry-version }} | ||
|
||
- name: Install poetry on cache miss | ||
# we don't need an `if:` here because poetry checks if it's already installed | ||
uses: snok/install-poetry@v1 | ||
with: | ||
version: ${{ inputs.poetry-version }} | ||
virtualenvs-create: true | ||
virtualenvs-in-project: true | ||
virtualenvs-path: '**/.venv' | ||
installer-parallel: true | ||
|
||
- name: Ensure poetry is on PATH | ||
run: echo "$HOME/.poetry/bin" >> $GITHUB_PATH | ||
shell: bash | ||
|
||
# ------ | ||
# Get library dependencies (hopefully from cache) | ||
# ------ | ||
- name: Check for cached dependencies | ||
id: cached-poetry-dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: '**/.venv' | ||
# poetry dependencies depend on OS, python version, poetry version, and repository lockfile | ||
key: poetry-deps-${{ runner.os }}-${{ inputs.python-version }}-${{ inputs.poetry-version }}-${{ hashFiles('**/poetry.lock') }} | ||
|
||
- name: Install dependencies on cache miss | ||
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | ||
run: poetry install --no-interaction --no-root | ||
shell: bash | ||
|
||
# ------ | ||
# Finalise install | ||
# ------ | ||
- name: Install main project | ||
run: poetry install --no-interaction | ||
shell: bash |
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,4 +1,9 @@ | ||
client/models/resources | ||
client/data/resources/* | ||
client/models/resources/* | ||
!client/data/resources/database.dbml | ||
docs/build/ | ||
docs/source/generated/ | ||
.ipynb_checkpoints/ | ||
__pycache__/ | ||
*.task | ||
*.egg-info | ||
*.egg-info |
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,20 @@ | ||
POETRY = poetry run | ||
SOURCEDIR = docs/source | ||
BUILDDIR = docs/build | ||
PACKAGEDIR = client | ||
|
||
.PHONY: docs docs-clean docs-live | ||
|
||
# Build documentation | ||
docs: | ||
$(POETRY) sphinx-build -a "$(SOURCEDIR)" "$(BUILDDIR)/html" | ||
|
||
# Remove documentation outputs | ||
# This includes the api dir as it's autogenerated with sphinx-build | ||
docs-clean: | ||
rm -r "$(BUILDDIR)" "$(SOURCEDIR)/api" | ||
|
||
# Spin up a local server to serve documentation pages | ||
# Auto-reloads when code changes in PACKAGEDIR are made | ||
docs-live: | ||
$(POETRY) sphinx-autobuild --open-browser --watch "$(PACKAGEDIR)" -a "$(SOURCEDIR)" "$(BUILDDIR)/html" |
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,21 @@ | ||
Project sitting_desktop_garden { | ||
database_type: "SQLite" | ||
} | ||
|
||
Table user { | ||
id INTEGER [primary key, unique, increment] | ||
} | ||
|
||
Table posture { | ||
id INTEGER [primary key, unique, increment] | ||
user_id INTEGER [ref: > user.id] | ||
|
||
// Proportion of time that posture is good within period | ||
prop_good REAL | ||
|
||
// Proportion of time the user is in the frame | ||
prop_in_frame REAL | ||
|
||
period_start DATETIME | ||
period_end DATETIME | ||
} |
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,52 @@ | ||
"""Data routines that can be integrated into main control flow.""" | ||
|
||
import sqlite3 | ||
from typing import Any | ||
from importlib import resources | ||
from pydbml import PyDBML | ||
|
||
DATABASE_DEFINITION = resources.files("data.resources").joinpath("database.dbml") | ||
DATABASE_RESOURCE = resources.files("data.resources").joinpath("database.db") | ||
|
||
|
||
def init_database() -> None: | ||
"""Initialise SQLite database if it does not already exist""" | ||
# Open connection with database | ||
with resources.as_file(DATABASE_RESOURCE) as database_file: | ||
if database_file.is_file(): | ||
return | ||
|
||
parsed = PyDBML(DATABASE_DEFINITION) | ||
init_script = parsed.sql | ||
|
||
connection = sqlite3.connect(database_file) | ||
|
||
# Run init script | ||
with connection: | ||
cursor = connection.cursor() | ||
cursor.executescript(init_script) | ||
connection.commit() | ||
|
||
|
||
def get_schema_info() -> list[list[tuple[Any]]]: | ||
"""Column information on all tables in database. | ||
Returns: | ||
(list[list[tuple[Any]]]): Outer list contains table information, inner list contains column | ||
information tuples. | ||
""" | ||
with resources.as_file(DATABASE_RESOURCE) as database_file: | ||
connection = sqlite3.connect(database_file) | ||
|
||
with connection: | ||
cursor = connection.cursor() | ||
result = cursor.execute("SELECT name FROM sqlite_schema WHERE type='table'") | ||
tables = result.fetchall() | ||
|
||
table_schemas = [] | ||
for table in tables: | ||
result = cursor.execute(f"PRAGMA table_info({table[0]})") | ||
table_schema = result.fetchall() | ||
table_schemas.append(table_schema) | ||
|
||
return table_schemas |
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,3 @@ | ||
""" | ||
Machine learning models (pose detection and face recognition) | ||
""" |
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,3 @@ | ||
""" | ||
Pose detection module | ||
""" | ||
|
||
from .camera import is_camera_aligned | ||
from .classification import posture_classify |
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
Oops, something went wrong.