Add AbstractPipelineContext

This commit is contained in:
Him188 2021-08-16 16:04:58 +08:00
parent 93ae89500a
commit a86c0384d4

View File

@ -137,20 +137,7 @@ internal interface PipelineContext : BotAware {
}
}
internal inline val PipelineContext.context get() = this
internal open class NoticeProcessorPipelineImpl private constructor() : NoticeProcessorPipeline {
/**
* Must be ordered
*/
private val processors = ConcurrentLinkedQueue<NoticeProcessor>()
override fun registerProcessor(processor: NoticeProcessor) {
processors.add(processor)
}
inner class ContextImpl(
internal abstract class AbstractPipelineContext(
override val bot: QQAndroidBot, override val attributes: TypeSafeMap,
) : PipelineContext {
private val consumers: Stack<Any> = Stack()
@ -176,6 +163,26 @@ internal open class NoticeProcessorPipelineImpl private constructor() : NoticePr
this.collected.data.addAll(packets)
}
abstract override suspend fun processAlso(data: ProtocolStruct, attributes: TypeSafeMap): ProcessResult
}
internal inline val PipelineContext.context get() = this
internal open class NoticeProcessorPipelineImpl private constructor() : NoticeProcessorPipeline {
/**
* Must be ordered
*/
private val processors = ConcurrentLinkedQueue<NoticeProcessor>()
override fun registerProcessor(processor: NoticeProcessor) {
processors.add(processor)
}
inner class ContextImpl(
bot: QQAndroidBot, attributes: TypeSafeMap,
) : AbstractPipelineContext(bot, attributes) {
override suspend fun processAlso(data: ProtocolStruct, attributes: TypeSafeMap): ProcessResult {
return process(bot, data, this.attributes + attributes)
}