diff options
author | Linnea Gräf <nea@nea.moe> | 2024-07-20 14:46:34 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-07-20 14:46:34 +0200 |
commit | 9b1b1446814f971e914c034aab00c95fdae87163 (patch) | |
tree | df5d714b41faf0259829ae4deb3f35ff21dc95e7 /src/main | |
parent | 830f3db26a72ec48314c8938fdedf9c58e2c240d (diff) | |
download | Firmament-9b1b1446814f971e914c034aab00c95fdae87163.tar.gz Firmament-9b1b1446814f971e914c034aab00c95fdae87163.tar.bz2 Firmament-9b1b1446814f971e914c034aab00c95fdae87163.zip |
Remove dbus integration
[no changelog]
Diffstat (limited to 'src/main')
3 files changed, 0 insertions, 59 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/Firmament.kt b/src/main/kotlin/moe/nea/firmament/Firmament.kt index 9a04db1..e2b904f 100644 --- a/src/main/kotlin/moe/nea/firmament/Firmament.kt +++ b/src/main/kotlin/moe/nea/firmament/Firmament.kt @@ -30,8 +30,6 @@ import net.fabricmc.loader.api.Version import net.fabricmc.loader.api.metadata.ModMetadata import org.apache.logging.log4j.LogManager import org.apache.logging.log4j.Logger -import org.freedesktop.dbus.connections.impl.DBusConnectionBuilder -import org.freedesktop.dbus.exceptions.DBusException import kotlinx.coroutines.CoroutineName import kotlinx.coroutines.CoroutineScope import kotlinx.coroutines.Job @@ -43,7 +41,6 @@ import kotlin.coroutines.EmptyCoroutineContext import net.minecraft.command.CommandRegistryAccess import net.minecraft.util.Identifier import moe.nea.firmament.commands.registerFirmamentCommand -import moe.nea.firmament.dbus.FirmamentDbusObject import moe.nea.firmament.events.ClientStartedEvent import moe.nea.firmament.events.CommandEvent import moe.nea.firmament.events.ItemTooltipEvent @@ -97,12 +94,6 @@ object Firmament { } val globalJob = Job() - val dbusConnection = try { - DBusConnectionBuilder.forSessionBus() - .build() - } catch (e: Exception) { - null - } val coroutineScope = CoroutineScope(EmptyCoroutineContext + CoroutineName("Firmament")) + SupervisorJob(globalJob) @@ -121,12 +112,6 @@ object Firmament { @JvmStatic fun onClientInitialize() { - try { - dbusConnection?.exportObject(FirmamentDbusObject) - dbusConnection?.requestBusName("moe.nea.firmament") - } catch (e: DBusException) { - // :( - } var tick = 0 ClientTickEvents.END_CLIENT_TICK.register(ClientTickEvents.EndTick { instance -> TickEvent.publish(TickEvent(tick++)) diff --git a/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusInterface.kt b/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusInterface.kt deleted file mode 100644 index 9af968d..0000000 --- a/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusInterface.kt +++ /dev/null @@ -1,17 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe> - * - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -package moe.nea.firmament.dbus - -import org.freedesktop.dbus.annotations.DBusInterfaceName -import org.freedesktop.dbus.interfaces.DBusInterface - -@DBusInterfaceName("moe.nea.Firmament") -interface FirmamentDbusInterface : DBusInterface { - fun sayHello(): String - fun getCurrentRepoCommit(): String - fun requestRepoReDownload() -} diff --git a/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusObject.kt b/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusObject.kt deleted file mode 100644 index 4a7e008..0000000 --- a/src/main/kotlin/moe/nea/firmament/dbus/FirmamentDbusObject.kt +++ /dev/null @@ -1,27 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe> - * - * SPDX-License-Identifier: GPL-3.0-or-later - */ - -package moe.nea.firmament.dbus - -import moe.nea.firmament.repo.RepoManager - -object FirmamentDbusObject : FirmamentDbusInterface { - override fun sayHello(): String { - return "Hello from Firmanet" - } - - override fun getCurrentRepoCommit(): String { - return RepoManager.currentDownloadedSha ?: "none" - } - - override fun requestRepoReDownload() { - RepoManager.launchAsyncUpdate() - } - - override fun getObjectPath(): String { - return "/moe/nea/Firmament" - } -} |