1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
//! MTG Arena log file parser.
//!
//! This library crate reads Arena's `Player.log`, parses raw log entries
//! into typed game events, and distributes them via an async broadcast
//! channel. It is designed to run on the caller's Tokio runtime — it does
//! not initialize its own runtime or logger.
//!
//! # Quick start (async, desktop)
//!
//! Requires the `tailer` feature (enabled by default):
//!
//! ```rust,no_run,ignore
//! use std::path::Path;
//! use manasight_parser::MtgaEventStream;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let (stream, mut subscriber) = MtgaEventStream::start(Path::new("Player.log")).await?;
//!
//! while let Some(event) = subscriber.recv().await {
//! println!("got event: {event:?}");
//! }
//! # Ok(())
//! # }
//! ```
//!
//! # Quick start (sync, WASM)
//!
//! With `--no-default-features --features brace_depth_flush` (no `tailer`),
//! only the pure-sync subset of the crate is available:
//!
//! ```rust
//! use manasight_parser::parse_whole_log;
//!
//! let input = ""; // replace with actual Player.log content
//! let events = parse_whole_log(input);
//! println!("parsed {} events", events.len());
//! ```
//!
//! # Architecture
//!
//! ```text
//! Player.log → File Tailer → Entry Buffer → Router → Parsers → Event Bus
//! ```
//!
//! - **`log`** module: file discovery, polling tailer, entry accumulation, timestamps
//! - **`router`**: dispatches raw entries to the correct category parser
//! - **`parsers`**: one sub-module per event category
//! - **`events`**: public event type enums/structs (the parser's output contract)
//! - **`event_bus`**: `tokio::broadcast` channel for fan-out to subscribers (requires `tailer` feature)
//! - **`stream`**: public entry point ([`MtgaEventStream`]) (requires `tailer` feature)
// ---------------------------------------------------------------------------
// Re-exports — public API surface
// ---------------------------------------------------------------------------
pub use Subscriber;
pub use ;
pub use ;
pub use ;
pub use ;
// ---------------------------------------------------------------------------
// Sync entry point — WASM-compatible
// ---------------------------------------------------------------------------
/// Parses an entire MTG Arena `Player.log` string into a [`Vec`] of [`GameEvent`]s.
///
/// This is a pure, synchronous function with no I/O and no async dependencies.
/// It is suitable for use in WASM environments or any context where the file
/// content has already been loaded into memory.
///
/// # How it works
///
/// Lines are fed through [`log::entry::LineBuffer`] to reassemble log entries,
/// then dispatched via [`router::Router`] — the same core pipeline the async
/// desktop path uses. A final [`LineBuffer::flush`](log::entry::LineBuffer::flush)
/// drains any trailing entry that was not followed by a new header.
///
/// # Example
///
/// ```rust
/// use manasight_parser::parse_whole_log;
///
/// let input = "DETAILED LOGS: ENABLED\n";
/// let events = parse_whole_log(input);
/// assert_eq!(events.len(), 1);
/// ```