🎨 Replace plugin connector with Kotlin version
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / freenet / plugin / PluginConnector.kt
1 /*
2  * Sone - PluginConnector.kt - Copyright Â© 2010–2019 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sone.freenet.plugin
19
20 import com.google.common.eventbus.*
21 import com.google.inject.*
22 import freenet.pluginmanager.*
23 import freenet.support.*
24 import freenet.support.api.*
25 import net.pterodactylus.sone.freenet.plugin.event.*
26
27 /**
28  * Interface for talking to other plugins. Other plugins are identified by their
29  * name and a unique connection identifier.
30  */
31 @Singleton
32 class PluginConnector @Inject constructor(
33                 private val eventBus: EventBus,
34                 private val pluginRespiratorFacade: PluginRespiratorFacade
35 ) : FredPluginTalker {
36
37         @Throws(PluginException::class)
38         @JvmOverloads
39         fun sendRequest(pluginName: String, identifier: String, fields: SimpleFieldSet, data: Bucket? = null) =
40                         getPluginTalker(pluginName, identifier).send(fields, data)
41
42         private fun getPluginTalker(pluginName: String, identifier: String) =
43                         try {
44                                 pluginRespiratorFacade.getPluginTalker(this, pluginName, identifier)
45                         } catch (pnfe1: PluginNotFoundException) {
46                                 throw PluginException(pnfe1)
47                         }
48
49         override fun onReply(pluginName: String, identifier: String, params: SimpleFieldSet, data: Bucket) =
50                         eventBus.post(ReceivedReplyEvent(this, pluginName, identifier, params, data))
51
52 }