All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.love.forte.simbot.component.Components.kt Maven / Gradle / Ivy

Go to download

Simple Robot,一个通用的bot风格事件调度框架,以灵活的统一标准来编写bot应用。

The newest version!
/*
 *     Copyright (c) 2024. ForteScarlet.
 *
 *     Project    https://github.com/simple-robot/simpler-robot
 *     Email      [email protected]
 *
 *     This file is part of the Simple Robot Library (Alias: simple-robot, simbot, etc.).
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU Lesser General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     Lesser GNU General Public License for more details.
 *
 *     You should have received a copy of the Lesser GNU General Public License
 *     along with this program.  If not, see .
 *
 */

@file:JvmName("ComponentUtil")
@file:JvmMultifileClass

package love.forte.simbot.component

import kotlinx.serialization.modules.EmptySerializersModule
import kotlinx.serialization.modules.SerializersModule
import kotlinx.serialization.modules.SerializersModuleBuilder
import kotlinx.serialization.modules.overwriteWith
import love.forte.simbot.application.ApplicationConfiguration
import love.forte.simbot.common.collection.toImmutable
import kotlin.jvm.JvmMultifileClass
import kotlin.jvm.JvmName
import kotlin.jvm.JvmOverloads

/**
 * 用于表示一组 [Component] 。
 */
public interface Components : Collection {
    /**
     * 根据 [id] 寻找第一个匹配的 [Component]。
     */
    public fun findById(id: String): Component? = find { it.id == id }

    /**
     * 当前所有的组件内 [Component.serializersModule] 的聚合产物。
     *
     * [serializersModule] 的内容来自所有组件的
     * [Component.serializersModule] 的聚合 (使用 [include][SerializersModuleBuilder.include]),
     * 以及最终与 [ApplicationConfiguration.serializersModule] 的合并
     * (使用 [overwriteWith][SerializersModule.overwriteWith],
     * 后者可能会覆盖来自 [Component.serializersModule] 的配置)。
     *
     */
    public val serializersModule: SerializersModule
}

/**
 * 根据类型寻找某个 [Component]。
 */
public inline fun  Components.find(): C? = find { it is C } as C?

/**
 * 根据类型寻找某个 [Component],如果找不到则抛出 [NoSuchElementException]。
 *
 * @throws NoSuchElementException 如果没找到匹配的类型
 */
public inline fun  Components.get(): C =
    find() ?: throw NoSuchElementException(C::class.toString())


/**
 * 将一个 [Component] 的集合转化为 [Components]。
 */
@JvmOverloads
public fun Collection.toComponents(
    parentSerializersModule: SerializersModule = EmptySerializersModule()
): Components =
    CollectionComponents(toImmutable(), parentSerializersModule)

/**
 * @see Components
 */
private class CollectionComponents(
    private val collections: Collection,
    parentSerializersModule: SerializersModule
) : Components,
    Collection by collections {
    override val serializersModule: SerializersModule =
        SerializersModule {
            collections.forEach { include(it.serializersModule) }
        } overwriteWith parentSerializersModule

    override fun toString(): String = "Components(values=$collections)"
    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other !is CollectionComponents) return false

        if (collections != other.collections) return false

        return true
    }

    override fun hashCode(): Int {
        return collections.hashCode()
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy