com.exactpro.th2.codec.util.ErrorMessageUtil.kt Maven / Gradle / Ivy
/*
* Copyright 2022-2022 Exactpro (Exactpro Systems Limited)
*
* 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 com.exactpro.th2.codec.util
import com.exactpro.th2.common.grpc.EventID
import com.exactpro.th2.common.grpc.MessageGroup
import com.exactpro.th2.common.grpc.MessageMetadata
import com.exactpro.th2.common.grpc.RawMessage
import com.exactpro.th2.common.message.message
import com.exactpro.th2.common.message.plusAssign
import com.exactpro.th2.common.message.set
const val ERROR_TYPE_MESSAGE = "th2-codec-error"
const val ERROR_CONTENT_FIELD = "content"
const val ERROR_EVENT_ID = "error_event_id"
fun RawMessage.toErrorMessage(protocols: Collection, errorEventId: EventID, errorMessage: String) = message().also {
val protocol = metadata.protocol.ifBlank(protocols::singleOrNull) ?: protocols.toString()
it.metadata = MessageMetadata.newBuilder()
.setId(metadata.id)
.setTimestamp(metadata.timestamp)
.setProtocol(protocol)
.putAllProperties(metadata.propertiesMap)
.setMessageType(ERROR_TYPE_MESSAGE)
.build()
it[ERROR_CONTENT_FIELD] = errorMessage
it[ERROR_EVENT_ID] = errorEventId
}
fun MessageGroup.toErrorGroup(
infoMessage: String,
protocols: Collection,
throwable: Throwable,
errorEventID: String
): MessageGroup {
val content = buildString {
appendLine("Error: $infoMessage")
appendLine("For messages: [${messageIds.joinToString { it.toDebugString() }}] with protocols: $protocols")
appendLine("Due to the following errors: ")
generateSequence(throwable, Throwable::cause).forEachIndexed { index, cause ->
appendLine("$index: ${cause.message}")
}
}
return MessageGroup.newBuilder().also { batchBuilder ->
for (anyMessage in this.messagesList) {
if (anyMessage.hasRawMessage() && anyMessage.rawMessage.metadata.protocol.run { isBlank() || this in protocols } ) {
batchBuilder += anyMessage.rawMessage.toErrorMessage(protocols, EventID.newBuilder().setId(errorEventID).build(), content)
} else {
batchBuilder.addMessages(anyMessage)
}
}
}.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy