Turns the orders table into a queue that empties itself. Bills were only uploaded when a cashier pressed Sync at end of day; a till that was never pressed held a day's takings indefinitely. Drain engine (lib/data/sync/sync_engine.dart) - Triggers on sale committed, network regained, 5-minute poll, head-office request, and the manual button. - Single flight: a busy till firing a trigger per sale would otherwise have several passes reading the same pending rows and send every bill twice. A trigger arriving mid-drain is queued and replayed, so nothing is dropped. - Exponential backoff with +/-20% jitter to a 5-minute ceiling. The jitter matters: a store's terminals all fail at the same instant when the line drops, and would retry in lockstep without it. - Halts rather than loops on a failure retrying cannot fix (bad credential, refused batch). Pressing Sync clears the halt. Transports (lib/data/remote/) - OrderTransport interface; MQTT, HTTP and simulated implementations. The repository does not know which is in use. - MQTT: QoS 1 uplink, application-level ACK correlated by batch_id on a return topic, retained Last Will for terminal-offline detection, downlink for catalogue pushes and remote sync requests. - A broker PUBACK is never treated as acceptance. It means the broker holds the bytes, not that the ledger took the sale. Only ids the back office names are marked synced; silence leaves a bill pending. - HTTP carries a stable idempotency key across retries of the same bills. Retention - Accepted bills are kept 7 days instead of deleted, so a batch the back office later loses can be re-sent in full. Purged after that; archived totals stay forever. - forBusinessDate now reads pending rows only. A retained bill exists in both the orders table and day_archive, and summing both would overstate the day. Fixes found while building this - SyncEngine._refreshPending wrote state.copyWith(pending: await ...). Dart evaluates the receiver before the awaited argument, so a connectivity drop during the wait was silently overwritten by the stale snapshot. Caught by the first run of the new engine tests. - PrinterSettingsController wrote state after four awaits with no mounted check, throwing "used after dispose" when Settings was left mid-load. This was pre-existing and reached the cashier as a red screen. Also - Header pill now reports real sync state: LIVE / n QUEUED / SYNCING / SYNC HALTED, with an explanation of where the bills are. - Settings shows the route, last upload, next retry and retention window. - docs/sync-contract.md states what the back office must implement, including the idempotency requirement that at-least-once delivery makes mandatory. Tests: 90 -> 129 passing. New coverage for backoff shape and jitter band, single flight, halting, ACK correlation and partial acceptance, at-least-once duplicate handling, retention and purge, and no double-counting after a sync. Suite run six times clean. Not addressed: bills already synced by an older build went up overstated and still need server-side reconciliation. Broker credentials have no Settings editor yet. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
100 lines
3.4 KiB
Dart
100 lines
3.4 KiB
Dart
import 'dart:async';
|
|
|
|
/// Raised when a batch could not be handed to the back office.
|
|
///
|
|
/// Distinct from *rejection*: a transport failure means nobody knows whether
|
|
/// the bills arrived, so every row stays pending and is tried again. A
|
|
/// rejection means the back office looked at a bill and refused it, which
|
|
/// retrying will not fix.
|
|
class TransportException implements Exception {
|
|
const TransportException(this.message, {this.retryable = true});
|
|
|
|
final String message;
|
|
|
|
/// Whether trying again could plausibly succeed. A dropped connection is
|
|
/// retryable; a rejected certificate or a bad credential is not, and the
|
|
/// engine should stop rather than hammer the broker.
|
|
final bool retryable;
|
|
|
|
@override
|
|
String toString() => message;
|
|
}
|
|
|
|
/// What the back office said about one batch.
|
|
///
|
|
/// [accepted] is the contract that matters: only ids named here are marked
|
|
/// synced. Anything absent stays pending, whatever the transport reported at
|
|
/// its own layer.
|
|
class PushReceipt {
|
|
const PushReceipt({required this.accepted, this.rejected = const {}});
|
|
|
|
final List<String> accepted;
|
|
|
|
/// Order id → why the back office refused it. Retrying these unchanged will
|
|
/// fail again, so the engine surfaces them instead of looping.
|
|
final Map<String, String> rejected;
|
|
|
|
bool get isEmpty => accepted.isEmpty && rejected.isEmpty;
|
|
}
|
|
|
|
/// Something the cloud pushed down to this terminal.
|
|
///
|
|
/// Only a transport with a live connection can deliver these; request/response
|
|
/// transports expose an empty stream.
|
|
class DownlinkMessage {
|
|
const DownlinkMessage({required this.kind, this.payload = const {}});
|
|
|
|
final DownlinkKind kind;
|
|
final Map<String, Object?> payload;
|
|
}
|
|
|
|
enum DownlinkKind {
|
|
/// The catalogue changed at head office — re-import rather than wait for
|
|
/// tomorrow morning's pull.
|
|
catalogueChanged,
|
|
|
|
/// Head office is asking this terminal to upload now.
|
|
syncRequested,
|
|
|
|
/// Anything this build does not recognise. Kept rather than dropped so a
|
|
/// newer server talking to an older terminal is visible in the events log
|
|
/// instead of silently ignored.
|
|
unknown,
|
|
}
|
|
|
|
/// How completed bills leave the terminal.
|
|
///
|
|
/// The drain engine owns *when* to send and what to do when sending fails;
|
|
/// this owns only the wire. Swapping HTTP for MQTT is a change of
|
|
/// implementation here and nothing else.
|
|
abstract class OrderTransport {
|
|
/// Shown in the events log so a cashier reporting a problem can say which
|
|
/// route the terminal was using.
|
|
String get label;
|
|
|
|
/// Opens the connection. Safe to call when already open.
|
|
///
|
|
/// A request/response transport has nothing to open and returns at once.
|
|
Future<void> connect();
|
|
|
|
/// Hands a batch over and reports what the back office committed.
|
|
///
|
|
/// Implementations must not report an id as accepted until the *application*
|
|
/// has confirmed it. A broker acknowledging receipt of the bytes is not the
|
|
/// back office confirming the sale.
|
|
///
|
|
/// Throws [TransportException] when the outcome is unknown.
|
|
Future<PushReceipt> pushOrders(List<Map<String, Object?>> orders);
|
|
|
|
/// Cloud-initiated messages. Empty for transports that cannot receive.
|
|
Stream<DownlinkMessage> get downlink;
|
|
|
|
/// Whether the route is currently usable. Drives the header's live pill and
|
|
/// wakes the drain engine when it flips to true.
|
|
Stream<bool> get connectionState;
|
|
|
|
bool get isConnected;
|
|
|
|
Future<void> dispose();
|
|
}
|