-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chunked log writer that breaks long messages before passing the log o…
…n to a wrapped log writer instance
- Loading branch information
Showing
2 changed files
with
136 additions
and
0 deletions.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
kermit-core/src/commonMain/kotlin/co/touchlab/kermit/ChunkedLogWriter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* Copyright (c) 2024 Touchlab | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package co.touchlab.kermit | ||
|
||
class ChunkedLogWriter( | ||
internal val wrapped: LogWriter, | ||
private val maxMessageLength: Int, | ||
private val minMessageLength: Int | ||
) : LogWriter() { | ||
override fun log(severity: Severity, message: String, tag: String, throwable: Throwable?) { | ||
chunkedLog(severity, message, tag, throwable) | ||
} | ||
|
||
private tailrec fun chunkedLog( | ||
severity: Severity, | ||
message: String, | ||
tag: String, | ||
throwable: Throwable? | ||
) { | ||
if (message.length > maxMessageLength) { | ||
var msgSubstring = message.substring(0, maxMessageLength) | ||
var msgSubstringEndIndex = maxMessageLength | ||
|
||
// Try to find a substring break at a newline char. | ||
msgSubstring.lastIndexOf('\n').let { lastIndex -> | ||
if (lastIndex >= minMessageLength) { | ||
msgSubstring = msgSubstring.substring(0, lastIndex) | ||
// skip over new line char | ||
msgSubstringEndIndex = lastIndex + 1 | ||
} | ||
} | ||
|
||
// Log the substring. | ||
wrapped.log(severity, msgSubstring, tag, throwable) | ||
|
||
// Recursively log the remainder. | ||
chunkedLog(severity, message.substring(msgSubstringEndIndex), tag, throwable) | ||
} else { | ||
wrapped.log(severity, message, tag, throwable) | ||
} | ||
} | ||
} | ||
|
||
fun LogWriter.chunked(maxMessageLength: Int = 4000, minMessageLength: Int = 3000): LogWriter = | ||
ChunkedLogWriter(this, maxMessageLength, minMessageLength) | ||
|
82 changes: 82 additions & 0 deletions
82
kermit-core/src/commonTest/kotlin/co/touchlab/kermit/ChunkedLogWriterTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright (c) 2024 Touchlab | ||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. | ||
*/ | ||
|
||
package co.touchlab.kermit | ||
|
||
import kotlin.test.Test | ||
import kotlin.test.assertEquals | ||
import kotlin.test.assertSame | ||
|
||
@OptIn(ExperimentalKermitApi::class) | ||
class ChunkedLogWriterTest { | ||
private val testLogWriter = TestLogWriter(Severity.Warn) | ||
private val testObject = testLogWriter.chunked(12, 8) as ChunkedLogWriter | ||
|
||
@Test | ||
fun returnsWrappedWriter() { | ||
assertSame(testLogWriter, testObject.wrapped) | ||
} | ||
|
||
@Test | ||
fun nonChunkedOutput() { | ||
testObject.log(Severity.Error, "test", "my-tag") | ||
|
||
assertEquals(1, testLogWriter.logs.size) | ||
|
||
with(testLogWriter.logs[0]) { | ||
assertEquals(Severity.Error, severity) | ||
assertEquals("my-tag", tag) | ||
assertEquals("test", message) | ||
assertEquals(null, throwable) | ||
} | ||
} | ||
|
||
@Test | ||
fun twoChunksNoLinebreak() { | ||
testObject.log(Severity.Error, "test test test test", "my-tag") | ||
|
||
assertEquals(2, testLogWriter.logs.size) | ||
|
||
with(testLogWriter.logs[0]) { | ||
assertEquals(Severity.Error, severity) | ||
assertEquals("my-tag", tag) | ||
assertEquals("test test te", message) | ||
assertEquals(null, throwable) | ||
} | ||
|
||
with(testLogWriter.logs[1]) { | ||
assertEquals(Severity.Error, severity) | ||
assertEquals("my-tag", tag) | ||
assertEquals("st test", message) | ||
assertEquals(null, throwable) | ||
} | ||
} | ||
|
||
@Test | ||
fun twoChunksWithLinebreak() { | ||
testObject.log(Severity.Error, "test test\ntest test", "my-tag") | ||
|
||
assertEquals(2, testLogWriter.logs.size) | ||
|
||
with(testLogWriter.logs[0]) { | ||
assertEquals(Severity.Error, severity) | ||
assertEquals("my-tag", tag) | ||
assertEquals("test test", message) | ||
assertEquals(null, throwable) | ||
} | ||
|
||
with(testLogWriter.logs[1]) { | ||
assertEquals(Severity.Error, severity) | ||
assertEquals("my-tag", tag) | ||
assertEquals("test test", message) | ||
assertEquals(null, throwable) | ||
} | ||
} | ||
} |