Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,22 @@ This project implements a FireWire audio device daemon that handles:
- Audio subunit plugs
- Stream format discovery

## Branch Work Updates

This branch introduces several architectural changes beyond the `main` branch:

- **Daemon Separation**: Core FireWire interaction now runs in a standalone
daemon written in Objective‑C++/C++. The SwiftUI application communicates
with this daemon through XPC.
- **SwiftUI Control App**: A new SwiftUI front‑end (`FWA-Control`) manages
devices using async `actor` based services (`EngineService` and
`SystemServicesManager`).
- **Driver Installation Utilities**: Helper services can install the HAL driver
via AppleScript and manage the daemon's launch agent.
- **Updated Documentation**: A `docs/ui.md` file contains a mermaid diagram of
the planned GUI and daemon architecture.


### Modern C++ Design

- RAII principles
Expand Down