transfer_manager 2.0.0
transfer_manager: ^2.0.0 copied to clipboard
A protocol-aware, crash-safe transfer engine for Dart and Flutter.
transfer_manager #
A protocol-aware transfer engine for Dart and Flutter. It provides one task model for uploads and downloads, a persistent queue, retries, progress and ETA, authentication renewal, integrity verification, and pluggable execution engines.
This repository contains the 2.0 transfer core, federated Android/iOS packages, and a zero-configuration Flutter facade. Android background downloads, multipart uploads, and resumable TUS uploads are available as explicit WorkManager engines, including persistent pause/resume notification actions. iOS provides background URLSession downloads and multipart uploads. S3 multipart and Flutter widgets remain future milestones.
What works #
- Streamed HTTP multipart uploads
- TUS 1.0 uploads with persisted sessions and resumable chunks
- HTTP downloads with
.partfiles,RangeandIf-Range - Pause, resume, cancel, manual retry, and exponential automatic retry
- Global, upload/download, and per-host concurrency limits
- Priority ordering with FIFO inside one priority
- Atomic download completion
- SHA-256, SHA-512, and compatibility-only MD5 verification
- Fresh auth headers and single-flight refresh after HTTP 401
- In-memory storage and atomic JSON-file persistence
- Authorization and cookie header redaction in persisted records
- Atomic managed-source staging for uploads that must survive cache eviction
- Throttled progress with exponentially smoothed speed and ETA
- Android WorkManager downloads with foreground progress notifications
- Android WorkManager multipart uploads with managed-source integration
- Android WorkManager TUS uploads with persistent sessions and chunk resumption
- Persistent pause/resume actions on active Android transfer notifications
- Android low-storage preflight protection and device durability tests
- iOS background URLSession downloads and file-backed multipart uploads
- iOS relaunch reconciliation, pause/resume, retries, and notifications
- Platform-neutral file and Downloads destinations
- Platform-neutral warm/cold notification taps
TransferTask.open()andTransferTask.reveal()- One-call
FlutterTransferManager.create()setup
Flutter quick start #
Depend on transfer_manager_flutter, then create one ready manager:
import 'package:transfer_manager_flutter/transfer_manager_flutter.dart';
final transfers = await FlutterTransferManager.create();
if (!await transfers.notificationsEnabled()) {
await transfers.requestNotificationPermission();
}
final task = await transfers.download(
Uri.parse('https://example.com/report.pdf'),
fileName: 'report.pdf',
);
transfers.notificationTaps.listen((tap) {
transfers.task(tap.taskId)?.open();
});
Default downloads use Android MediaStore Downloads and iOS Documents exposed through Files. Explicit paths remain available:
destination: const TransferDestination.file('/app/path/report.pdf')
Android background downloads #
The Android implementation is split into
transfer_manager_platform_interface and transfer_manager_android. Add the
Android engine before the foreground HTTP fallback:
final manager = TransferManager(
engines: [
AndroidBackgroundDownloadEngine(),
AndroidBackgroundTusUploadEngine(),
AndroidBackgroundUploadEngine(),
TusTransferEngine(),
HttpTransferEngine(),
],
);
The current Android capability set includes persistent background downloads,
unmetered-network constraints, process-restart task reconnection, progress
notifications, notification cancellation, range resumption, and atomic
completion. Persisted ETag/Last-Modified validators protect resumed files
from remote-resource changes. Successful downloads post a completion
notification—even while the app is visible—and tapping it opens the file using
the platform-neutral notification-tap stream. Calling task.open() then opens
the file using a temporary FileProvider permission. Multipart uploads can also run in
WorkManager; retrying them restarts the request. Native TUS uploads persist the
server-created URL and acknowledged offset, then reconcile and continue in
bounded chunks after retries or process restarts. Active native transfers can
be paused or resumed from their notification or through the platform API.
On Android 13+, call
TransferManagerAndroid().requestNotificationPermission() from a visible
screen before expecting progress or completion notifications.
Authorization and cookie headers are rejected by the Android worker because WorkManager persists its input. Authenticated background transfers require a future native credential-provider contract rather than storing access tokens.
iOS background transfers #
Add the iOS engines before the foreground fallbacks:
final manager = TransferManager(
engines: [
IosBackgroundDownloadEngine(),
IosBackgroundUploadEngine(),
TusTransferEngine(),
HttpTransferEngine(),
],
);
The iOS plugin automatically registers its Dart and native implementations. It
uses a relaunch-enabled background URLSession, persists task snapshots, and
reconciles native tasks when Flutter reconnects. Downloads are atomically moved
to the requested destination. Multipart uploads are staged as bounded,
file-backed request bodies because iOS background uploads must originate from a
file.
Call TransferManagerIos().requestNotificationPermission() from visible UI
before expecting completion notifications. Tapping a completion notification
opens the application. Use notificationTaps and
takeInitialNotificationTap() to recover the included task identifier, then
call task.open() or task.reveal().
iOS does not advertise native background TUS. Keep TusTransferEngine() after
the iOS native engines to use resumable TUS while the application is active.
Pure Dart quick start #
import 'dart:io';
import 'package:transfer_manager/transfer_manager.dart';
Future<void> main() async {
final manager = TransferManager(
storage: JsonFileTransferStorage(File('.transfers/tasks.json')),
configuration: const TransferConfiguration(maxConcurrentTasks: 3),
);
await manager.initialize();
final task = await manager.enqueue(
DownloadRequest(
source: Uri.parse('https://example.com/report.pdf'),
destination: const TransferDestination.file('downloads/report.pdf'),
checksum: Checksum.sha256,
expectedChecksum: 'hex digest supplied by the server',
),
);
task.events.listen((event) {
print('${event.state}: ${event.progress.fraction}');
});
}
Flutter example #
The complete app in example/ runs the native Android or iOS
background download engine, offers 1 MB, 10 MB, and 50 MB sample downloads,
shows task controls and progress, restores persisted tasks, and requests
notification permission before enqueueing.
On Android 10 and newer the example publishes completed files to the system Downloads collection through MediaStore. On iOS it exposes its Documents directory through the Files app.
cd example
flutter pub get
flutter run
For a resumable upload, point TusUploadRequest at the server's TUS creation
endpoint. The engine records the returned upload URL and reconciles
Upload-Offset before resuming:
final task = await manager.enqueue(
TusUploadRequest(
sourcePath: 'videos/large.mp4',
endpoint: Uri.parse('https://uploads.example.com/files'),
chunkSize: 8 * 1024 * 1024,
metadata: const {'contentType': 'video/mp4'},
authScope: 'current-user',
),
);
Use authScope to persist an opaque credential lookup key. Do not put
short-lived credentials in request headers. A TransferAuthProvider is asked
for fresh headers immediately before execution and again after a 401.
Uploads selected from a cache or temporary picker location can be staged before enqueueing. The original remains untouched, while the managed copy is retained after failure and removed after completion or cancellation:
final manager = TransferManager(
configuration: const TransferConfiguration(
managedStoragePath: '/app-support/transfer_manager',
),
);
await manager.enqueue(
UploadRequest(
sourcePath: '/temporary-picker/video.mp4',
destination: Uri.parse('https://example.com/upload'),
sourcePolicy: UploadSourcePolicy.copyToManagedStorage,
),
);
Persistence and recovery #
Every meaningful transition is saved before its event is emitted. On
initialization, tasks interrupted in queued, preparing, running,
retryWaiting, or verifying are returned to the queue. Downloads retain
their .part file and continue with an HTTP range request when supported.
The bundled JSON store is intentionally simple and atomically replaces its
database file. Production Flutter integrations can implement TransferStorage
with SQLite without changing the manager API.
Platform boundary #
The federated platform interface reports each native engine independently. Android advertises durable background downloads, multipart and TUS uploads, notifications, and notification cancellation. iOS advertises background downloads, multipart uploads, notifications, pause/resume, and relaunch reconciliation; native TUS and notification cancellation are not advertised.
See ROADMAP.md for the staged path to the full federated plugin.