Skip to main content

Whitebox Plugin - Transfer Manager

Manages file transfers from external devices (cameras, etc.) with a two-phase workflow: download from device, then process (transcode/stitch/convert). Tracks persistent state, emits real-time progress to the frontend, and handles retries and crash recovery automatically.

Installation

poetry add whitebox-plugin-transfer-manager

Capabilities

Provides Requires
transfer-manager device

Exposed to Other Plugins

Plugin Classes (get_plugin_classes_map)

Accessible via import_whitebox_plugin_class():

Key Type Description
transfer.TransferManager TransferManager instance Singleton service for queueing, dispatching, and tracking transfers
transfer.TransferAdapter Protocol class Interface that device plugins implement for download/processing
transfer.RemoteFile dataclass class Represents a file on a remote device

Models (model_registry)

Key Model Description
transfer.Transfer Transfer Persistent record for each file transfer

Frontend Components (exposed_component_map)

Category Key Component Description
service-component transfer-service TransferServiceComponent Background service that listens for WebSocket transfer events, updates the Zustand store, and triggers flight session re-fetches on completion
transfer-manager transfer-panel TransferPanel UI panel showing active/completed transfers with progress bars, cancel, and retry actions

Frontend Slots (slot_component_map)

Slot Component
transfer.panel TransferPanel

State Stores (state_store_map)

Key Module Description
transfer stores/transfer Zustand store tracking transfer state (transfers, activeCount, upsertTransfer, removeTransfer, clearCompleted, dismissAll)

Daemon

Command: daemon_transfer_manager

Runs as a BaseDaemonCommand that orchestrates all transfers.

Subscribed Events

Event Action
observation.flight.end Dispatch any pending transfers
observation.device.connection_status.update On reconnect, dispatch pending transfers for that device
command.transfer.cancel Cancel a transfer (sets Redis flag for in-progress workers)
command.transfer.retry Retry a failed/cancelled transfer
command.transfer.queue_batch Create transfer records from a batch of files and dispatch

Periodic Checks (every 5s)

  • Stale transfer recovery: Resets transfers stuck in active states with no DB update for 2+ minutes (worker likely dead)
  • Dispatch pending: Picks up PENDING transfers respecting concurrency limits

Startup Recovery

  • Resets any in-progress transfers (DOWNLOAD_STARTED, DOWNLOAD_COMPLETED, PROCESSING_STARTED) back to PENDING
  • Clears retry_after on PENDING transfers that were in backoff when daemon stopped

Emitted Events

All events are sent to the management WebSocket group.

Event When
observation.transfer.queued Transfer created or reset to pending
observation.transfer.download.started Download begins
observation.transfer.download.progress Download progress (throttled: 1s or 5% delta)
observation.transfer.download.completed Download finished
observation.transfer.processing.started Processing begins
observation.transfer.processing.progress Processing progress (throttled: 1s or 5% delta)
observation.transfer.processing.completed Processing finished, FlightSessionRecording created
observation.transfer.download.failed Download failed permanently
observation.transfer.processing.failed Processing failed permanently
observation.transfer.retry_scheduled Transfer scheduled for retry with backoff
observation.transfer.cancelled User cancelled transfer
observation.transfer.paused User paused transfer

Registering an Adapter

Device plugins expose adapters via their plugin class:

# In device plugin's whitebox plugin class
def get_transfer_adapters(self):
    from .transfer_adapter import MyDeviceTransferAdapter
    return [("my_device_codename", MyDeviceTransferAdapter())]

The daemon discovers these on startup; workers discover lazily on first use.

Process file recording command

Command: process_file_recording [device_codename] [source_path] [destination_path]

This command is used to process a file recording for a transfer manually.

Example:

docker exec backend-dev poetry run python whitebox/manage.py process_file_recording \
  insta360_x4 \
  /opt/whitebox/media/transfers/downloads/VID_001.insv \
  /opt/whitebox/media/transfers/processed/VID_001.m3u8

Running this command will process the specified source path with the transfer adapter defined by the device plugin for the given device_codename, and store it into the destination path, just like the transfer manager would do it.

It can be used for debugging or testing purposes.

TransferManager API

Queueing

from plugin.registry import import_whitebox_plugin_class

transfer_manager = import_whitebox_plugin_class("transfer.TransferManager")
RemoteFile = import_whitebox_plugin_class("transfer.RemoteFile")

# Queue a batch of files (sync, for use in RQ tasks or daemon)
files = [RemoteFile(path="/DCIM/VID_001.insv", size=1_000_000)]
transfers = transfer_manager.queue_batch_sync(
    device_connection=conn,
    files=files,
    download_dir=Path("/media/transfers/downloads"),
    processed_dir=Path("/media/transfers/processed"),
    associate_with=flight_session,
)

Concurrency

Setting Default Description
Max concurrent global 4 Total active transfers across all devices
Max concurrent per device 2 Active transfers per device connection

Retry Logic

  • Transient errors (network, device) retry with exponential backoff: 2s, 4s, 8s, ..., capped at 60s
  • Retry window: 7 days from initial queue time
  • Safety cap: 500 retries max
  • Non-transient errors (disk full, corrupt file) do not retry

Additional Instructions

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

whitebox_plugin_transfer_manager-0.1.10.tar.gz (39.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file whitebox_plugin_transfer_manager-0.1.10.tar.gz.

File metadata

File hashes

Hashes for whitebox_plugin_transfer_manager-0.1.10.tar.gz
Algorithm Hash digest
SHA256 de2e3a6514c4be58009e39f8e9db8826695dabeab3bfbdb8b84304235816ad21
MD5 2d91f531e7f6e1d8d2b0b210927f880a
BLAKE2b-256 3db7f0e245bbcdb43939d450eaa5c2f94428e8f1374ec4a94f9b34c09669c721

See more details on using hashes here.

File details

Details for the file whitebox_plugin_transfer_manager-0.1.10-py3-none-any.whl.

File metadata

File hashes

Hashes for whitebox_plugin_transfer_manager-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 268118440861e12fc869d13f0d8f26fdad1c98768b4cf14b0ca60f2bc7f27dbf
MD5 78ef13cbb325339ca211a4198711bcd5
BLAKE2b-256 c2027579d495720264c0041036a91aec5c52e16a75e4ea4a5a2163d0597fef65

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.10 This release

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page