add bounded history sink (#1)

This commit is contained in:
Nanaloveyuki
2026-08-11 13:30:58 +08:00
committed by GitHub
parent 0b05ee0c94
commit aab7a94ae2
38 changed files with 318 additions and 26 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ BitLogger 的文档按使用路径组织:先完成一个可运行的日志输
```bash ```bash
moon new log-demo moon new log-demo
cd log-demo cd log-demo
moon add Nanaloveyuki/BitLogger@0.7.3 moon add Nanaloveyuki/BitLogger@0.8.0
``` ```
### 2. 写入第一条结构化日志 ### 2. 写入第一条结构化日志
+1 -1
View File
@@ -18,7 +18,7 @@ The documentation is organized around complete usage flows. Start with an execut
```bash ```bash
moon new log-demo moon new log-demo
cd log-demo cd log-demo
moon add Nanaloveyuki/BitLogger@0.7.3 moon add Nanaloveyuki/BitLogger@0.8.0
``` ```
### 2. Import And Log ### 2. Import And Log
+19
View File
@@ -0,0 +1,19 @@
---
name: history-sink-capacity
group: api
category: sink
update-time: 20260811
description: Read the normalized retention capacity of a HistorySink.
key-word:
- sink
- history
- capacity
---
## History-sink-capacity
```moonbit
pub fn HistorySink::capacity(self : HistorySink) -> Int
```
Returns the positive retention limit selected when the sink was constructed.
+20
View File
@@ -0,0 +1,20 @@
---
name: history-sink-clear
group: api
category: sink
update-time: 20260811
description: Clear a HistorySink and reset its eviction counter.
key-word:
- sink
- history
- clear
---
## History-sink-clear
```moonbit
pub fn HistorySink::clear(self : HistorySink) -> Unit
```
Clears all retained records and resets `dropped_count()` to zero. It does not
close the sink; subsequent records begin a new history session.
+19
View File
@@ -0,0 +1,19 @@
---
name: history-sink-count
group: api
category: sink
update-time: 20260811
description: Read the number of records currently retained by a HistorySink.
key-word:
- sink
- history
- count
---
## History-sink-count
```moonbit
pub fn HistorySink::count(self : HistorySink) -> Int
```
Returns the current retained-record count, which never exceeds `capacity()`.
+20
View File
@@ -0,0 +1,20 @@
---
name: history-sink-dropped-count
group: api
category: sink
update-time: 20260811
description: Read the number of oldest records evicted from a HistorySink.
key-word:
- sink
- history
- dropped
---
## History-sink-dropped-count
```moonbit
pub fn HistorySink::dropped_count(self : HistorySink) -> Int
```
Returns the cumulative number of records evicted because the bounded history was
full. `clear()` resets this count for the new history session.
+20
View File
@@ -0,0 +1,20 @@
---
name: history-sink-snapshot
group: api
category: sink
update-time: 20260811
description: Copy the retained records from a HistorySink in chronological order.
key-word:
- sink
- history
- snapshot
---
## History-sink-snapshot
```moonbit
pub fn HistorySink::snapshot(self : HistorySink) -> Array[Record]
```
Returns copied records ordered from oldest to newest. Later writes and mutation
of the returned array do not change the retained history.
+31
View File
@@ -0,0 +1,31 @@
---
name: history-sink-type
group: api
category: sink
update-time: 20260811
description: Public bounded in-memory record sink used for diagnostic history.
key-word:
- sink
- history
- type
---
## History-sink-type
`HistorySink` is the concrete synchronous sink returned by `history_sink(...)`.
It retains copied `Record` values in memory and implements `Sink`.
### Interface
```moonbit
pub struct HistorySink {
records : Ref[Array[Record]]
capacity : Int
dropped_count : Ref[Int]
}
```
### Notes
Use `snapshot()` for retained records and the count helpers for bounded-history
observability. The type does not perform persistence or background work.
+45
View File
@@ -0,0 +1,45 @@
---
name: history-sink
group: api
category: sink
update-time: 20260811
description: Create a bounded in-memory sink that retains the latest structured records.
key-word:
- sink
- history
- memory
- diagnostics
---
## History-sink
Create a synchronous in-memory sink for bounded diagnostic history. It retains
the newest records and does not write to a file, console, or network endpoint.
### Interface
```moonbit
pub fn history_sink(capacity? : Int = 128) -> HistorySink
```
### Explanation
- `capacity` is normalized to at least `1`; the default keeps the latest `128`
records.
- When full, the oldest record is evicted and `dropped_count()` increases.
- `snapshot()` returns records ordered from oldest to newest. `clear()` starts a
new in-memory history session.
### How to Use
```moonbit
let history = history_sink(capacity=64)
let logger = Logger::new(history, target="desktop")
logger.info("runtime ready")
let records = history.snapshot()
```
### Notes
`HistorySink` is synchronous and application-owned. Serialize or persist a
snapshot explicitly when needed.
+15
View File
@@ -0,0 +1,15 @@
## BitLogger Update Changes
version 1.2.0(0.8.0)
### Changes
- Add a bounded in-memory HistorySink for retaining the latest structured records.
### Verification
- Run formatting, warning-denied checks and tests, API generation, documentation build, and packaged-output validation.
### Notes
- HistorySink is synchronous and memory-only; persistence and export remain application-owned.
+1
View File
@@ -2,6 +2,7 @@
Versioned BitLogger change summaries. Versioned BitLogger change summaries.
- [1.2.0](./1.2.0(0.8.0).md)
- [1.1.3](./1.1.3(0.7.3).md) - [1.1.3](./1.1.3(0.7.3).md)
- [1.1.2](./1.1.2(0.7.2).md) - [1.1.2](./1.1.2(0.7.2).md)
- [1.1.1](./1.1.1(0.7.1).md) - [1.1.1](./1.1.1(0.7.1).md)
+1 -1
View File
@@ -5,7 +5,7 @@ Use this flow for command-line tools and services that need a human-readable sta
## Install And Import ## Install And Import
```bash ```bash
moon add Nanaloveyuki/BitLogger@0.7.3 moon add Nanaloveyuki/BitLogger@0.8.0
``` ```
```moonbit ```moonbit
+1 -1
View File
@@ -7,7 +7,7 @@
```bash ```bash
moon new log-demo moon new log-demo
cd log-demo cd log-demo
moon add Nanaloveyuki/BitLogger@0.7.3 moon add Nanaloveyuki/BitLogger@0.8.0
``` ```
在应用的 `moon.pkg` 中加入: 在应用的 `moon.pkg` 中加入:
-1
View File
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/basic"
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/config_build"
// Type aliases // Type aliases
// Traits // Traits
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/console_basic"
// Type aliases // Type aliases
// Traits // Traits
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/file_rotation"
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/presets"
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/style_tags"
// Type aliases // Type aliases
// Traits // Traits
@@ -10,4 +10,3 @@ package "Nanaloveyuki/BitLogger/examples/text_formatter"
// Type aliases // Type aliases
// Traits // Traits
+1 -1
View File
@@ -1,6 +1,6 @@
name = "Nanaloveyuki/BitLogger" name = "Nanaloveyuki/BitLogger"
version = "0.7.3" version = "0.8.0"
import { import {
"moonbitlang/async@0.20.2", "moonbitlang/async@0.20.2",
-1
View File
@@ -156,4 +156,3 @@ pub using @utils {type AsyncRuntimeMode}
pub using @utils {type AsyncRuntimeState} pub using @utils {type AsyncRuntimeState}
// Traits // Traits
-1
View File
@@ -101,4 +101,3 @@ pub fn AsyncRuntimeState::new(AsyncRuntimeMode, Bool) -> Self
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -92,4 +92,3 @@ pub fn TextFormatterConfig::to_formatter(Self) -> @formatting.TextFormatter
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -51,4 +51,3 @@ pub fn TraceContext::new(String, String, trace_flags? : String, trace_state? : S
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -60,4 +60,3 @@ pub fn RuntimeFileState::new(FileSinkState, queued? : Bool, pending_count? : Int
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -50,4 +50,3 @@ pub impl @sink_graph.Sink for FileSink
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -93,4 +93,3 @@ pub struct TextStyle {
pub type RecordFormatter = (@core.Record) -> String pub type RecordFormatter = (@core.Record) -> String
// Traits // Traits
+4 -1
View File
@@ -93,6 +93,8 @@ pub fn global_style_tag_registry() -> @formatting.StyleTagRegistry
pub fn has_field(String) -> (@core.Record) -> Bool pub fn has_field(String) -> (@core.Record) -> Bool
pub fn history_sink(capacity? : Int) -> @sink_graph.HistorySink
pub fn identity_patch() -> (@core.Record) -> @core.Record pub fn identity_patch() -> (@core.Record) -> @core.Record
pub fn info(String, fields? : Array[@core.Field]) -> Unit pub fn info(String, fields? : Array[@core.Field]) -> Unit
@@ -318,6 +320,8 @@ pub using @sink_graph {type FormattedCallbackSink}
pub using @sink_graph {type FormattedConsoleSink} pub using @sink_graph {type FormattedConsoleSink}
pub using @sink_graph {type HistorySink}
pub using @sink_graph {type JsonConsoleSink} pub using @sink_graph {type JsonConsoleSink}
pub using @core {type Level} pub using @core {type Level}
@@ -367,4 +371,3 @@ pub using @core {type TraceContext}
pub using @sink_graph {trait Sink} pub using @sink_graph {trait Sink}
// Traits // Traits
-1
View File
@@ -30,4 +30,3 @@ pub fn with_queue(@config_model.LoggerConfig, max_pending? : Int, overflow? : @q
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -14,4 +14,3 @@ pub(all) enum QueueOverflowPolicy {
// Type aliases // Type aliases
// Traits // Traits
-1
View File
@@ -48,4 +48,3 @@ pub type RecordPatch = (@core.Record) -> @core.Record
pub type RecordPredicate = (@core.Record) -> Bool pub type RecordPredicate = (@core.Record) -> Bool
// Traits // Traits
-1
View File
@@ -83,4 +83,3 @@ pub struct RuntimeSinkProgress {
pub using @file_model {type RuntimeFileState} pub using @file_model {type RuntimeFileState}
// Traits // Traits
+14 -1
View File
@@ -26,6 +26,8 @@ pub fn formatted_callback_sink((@core.Record) -> String, (String) -> Unit) -> Fo
pub fn formatted_console_sink((@core.Record) -> String) -> FormattedConsoleSink pub fn formatted_console_sink((@core.Record) -> String) -> FormattedConsoleSink
pub fn history_sink(capacity? : Int) -> HistorySink
pub fn json_console_sink() -> JsonConsoleSink pub fn json_console_sink() -> JsonConsoleSink
pub fn[S] patch_sink(S, (@core.Record) -> @core.Record) -> PatchSink[S] pub fn[S] patch_sink(S, (@core.Record) -> @core.Record) -> PatchSink[S]
@@ -91,6 +93,18 @@ pub struct FormattedConsoleSink {
} }
pub impl Sink for FormattedConsoleSink pub impl Sink for FormattedConsoleSink
pub struct HistorySink {
records : @ref.Ref[Array[@core.Record]]
capacity : Int
dropped_count : @ref.Ref[Int]
}
pub fn HistorySink::capacity(Self) -> Int
pub fn HistorySink::clear(Self) -> Unit
pub fn HistorySink::count(Self) -> Int
pub fn HistorySink::dropped_count(Self) -> Int
pub fn HistorySink::snapshot(Self) -> Array[@core.Record]
pub impl Sink for HistorySink
pub struct JsonConsoleSink { pub struct JsonConsoleSink {
_dummy : Unit _dummy : Unit
} }
@@ -129,4 +143,3 @@ pub using @queue_model {type QueueOverflowPolicy}
pub(open) trait Sink { pub(open) trait Sink {
fn write(Self, @core.Record) -> Unit fn write(Self, @core.Record) -> Unit
} }
+63
View File
@@ -197,6 +197,69 @@ pub impl Sink for CallbackSink with fn write(self, rec) {
(self.callback)(rec) (self.callback)(rec)
} }
///|
pub struct HistorySink {
records : Ref[Array[Record]]
capacity : Int
dropped_count : Ref[Int]
}
///|
pub fn history_sink(capacity? : Int = 128) -> HistorySink {
let capacity = if capacity <= 0 { 1 } else { capacity }
{ records: Ref([]), capacity, dropped_count: Ref(0) }
}
///|
pub fn HistorySink::capacity(self : HistorySink) -> Int {
self.capacity
}
///|
pub fn HistorySink::count(self : HistorySink) -> Int {
self.records.val.length()
}
///|
pub fn HistorySink::dropped_count(self : HistorySink) -> Int {
self.dropped_count.val
}
///|
fn copy_record(record : Record) -> Record {
Record::new(
record.level,
record.message,
timestamp_ms=record.timestamp_ms,
target=record.target,
fields=record.fields.map(field => Field::with_value(field, field.value)),
)
}
///|
pub fn HistorySink::snapshot(self : HistorySink) -> Array[Record] {
self.records.val.map(copy_record)
}
///|
pub fn HistorySink::clear(self : HistorySink) -> Unit {
self.records.val = []
self.dropped_count.val = 0
}
///|
pub impl Sink for HistorySink with fn write(self, rec) {
let records = self.records.val
if records.length() >= self.capacity {
self.dropped_count.val += 1
let retained = records[1:].to_owned()
retained.push(copy_record(rec))
self.records.val = retained
} else {
records.push(copy_record(rec))
}
}
///| ///|
pub struct BufferedSink[S] { pub struct BufferedSink[S] {
sink : S sink : S
+34
View File
@@ -15,6 +15,40 @@ test "callback sink receives record" {
inspect(captured_message.val, content="hello") inspect(captured_message.val, content="hello")
} }
///|
test "history sink retains the newest copied records" {
let sink = history_sink(capacity=2)
let logger = Logger::new(sink, min_level=Level::Info, target="history")
logger.info("one", fields=[field("position", "first")])
logger.info("two")
logger.info("three")
inspect(sink.capacity(), content="2")
inspect(sink.count(), content="2")
inspect(sink.dropped_count(), content="1")
let snapshot = sink.snapshot()
inspect(snapshot.length(), content="2")
inspect(snapshot[0].message, content="two")
inspect(snapshot[1].message, content="three")
snapshot[0].fields.push(field("mutated", "outside"))
inspect(sink.snapshot()[0].fields.length(), content="0")
}
///|
test "history sink normalizes capacity and clear resets its session" {
let sink = history_sink(capacity=0)
let logger = Logger::new(sink, min_level=Level::Info, target="history")
logger.info("one")
logger.info("two")
inspect(sink.capacity(), content="1")
inspect(sink.count(), content="1")
inspect(sink.dropped_count(), content="1")
sink.clear()
inspect(sink.count(), content="0")
inspect(sink.dropped_count(), content="0")
}
///| ///|
test "split sink routes records by predicate" { test "split sink routes records by predicate" {
let left_messages : Ref[Array[String]] = Ref([]) let left_messages : Ref[Array[String]] = Ref([])
+8
View File
@@ -99,6 +99,14 @@ pub fn callback_sink(callback : (Record) -> Unit) -> CallbackSink {
@sink_graph.callback_sink(callback) @sink_graph.callback_sink(callback)
} }
///|
pub type HistorySink = @sink_graph.HistorySink
///|
pub fn history_sink(capacity? : Int = 128) -> HistorySink {
@sink_graph.history_sink(capacity~)
}
///| ///|
pub type BufferedSink[S] = @sink_graph.BufferedSink[S] pub type BufferedSink[S] = @sink_graph.BufferedSink[S]
-1
View File
@@ -110,4 +110,3 @@ pub using @formatting {type TextFormatter}
pub using @formatting {type TextStyle} pub using @formatting {type TextStyle}
// Traits // Traits