add PluginInfo
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 12 Apr 2008 18:07:48 +0000 (18:07 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 12 Apr 2008 18:07:48 +0000 (18:07 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@731 c3eda9e8-030b-0410-8277-bc7414b0a119

TODO
src/net/pterodactylus/util/fcp/FcpAdapter.java
src/net/pterodactylus/util/fcp/FcpConnection.java
src/net/pterodactylus/util/fcp/FcpListener.java
src/net/pterodactylus/util/fcp/PluginInfo.java [new file with mode: 0644]

diff --git a/TODO b/TODO
index cbb8092..c630871 100644 (file)
--- a/TODO
+++ b/TODO
@@ -6,7 +6,6 @@ GetRequestStatus
 ModifyConfig (since 1027)
 ModifyPersistentRequest
 PersistentRequestModified (since 1016)
-PluginInfo (since 1075)
 PutFetchable
 PutSuccessful
 RemovePersistentRequest
index 0854846..491adf3 100644 (file)
@@ -221,6 +221,13 @@ public class FcpAdapter implements FcpListener {
        /**
         * {@inheritDoc}
         */
+       public void receivedPluginInfo(FcpConnection fcpConnection, PluginInfo pluginInfo) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
        public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
                /* empty. */
        }
index 81b5c47..97d3b67 100644 (file)
@@ -525,6 +525,18 @@ public class FcpConnection {
        }
 
        /**
+        * Notifies all listeners that a “PluginInfo” message was received.
+        * 
+        * @param pluginInfo
+        *            The “PluginInfo” message
+        */
+       private void fireReceivedPluginInfo(PluginInfo pluginInfo) {
+               for (FcpListener fcpListener: fcpListeners) {
+                       fcpListener.receivedPluginInfo(this, pluginInfo);
+               }
+       }
+
+       /**
         * Notifies all listeners that a “ProtocolError” message was received.
         * 
         * @param protocolError
@@ -672,6 +684,8 @@ public class FcpConnection {
                        fireReceivedUnknownPeerNoteType(new UnknownPeerNoteType(fcpMessage));
                } else if ("UnknownNodeIdentifier".equals(messageName)) {
                        fireReceivedUnknownNodeIdentifier(new UnknownNodeIdentifier(fcpMessage));
+               } else if ("PluginInfo".equals(messageName)) {
+                       fireReceivedPluginInfo(new PluginInfo(fcpMessage));
                } else if ("NodeData".equals(messageName)) {
                        fireReceivedNodeData(new NodeData(fcpMessage));
                } else if ("TestDDAReply".equals(messageName)) {
index fd5bfad..43967a2 100644 (file)
@@ -322,6 +322,16 @@ public interface FcpListener extends EventListener {
        public void receivedSubscribedUSKUpdate(FcpConnection fcpConnection, SubscribedUSKUpdate subscribedUSKUpdate);
 
        /**
+        * Notifies a listener that a “PluginInfo” message was received.
+        * 
+        * @param fcpConnection
+        *            The connection that received the message
+        * @param pluginInfo
+        *            The “PluginInfo” message
+        */
+       public void receivedPluginInfo(FcpConnection fcpConnection, PluginInfo pluginInfo);
+
+       /**
         * Notifies a listener that a “ProtocolError” was received.
         * 
         * @param fcpConnection
diff --git a/src/net/pterodactylus/util/fcp/PluginInfo.java b/src/net/pterodactylus/util/fcp/PluginInfo.java
new file mode 100644 (file)
index 0000000..b68b123
--- /dev/null
@@ -0,0 +1,77 @@
+/*
+ * jSite2 - PluginInfo.java -
+ * Copyright © 2008 David Roden
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 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
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+package net.pterodactylus.util.fcp;
+
+/**
+ * The “PluginInfo” message is a reply to the {@link GetPluginInfo} request.
+ * 
+ * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
+ * @version $Id$
+ */
+public class PluginInfo extends BaseMessage {
+
+       /**
+        * Creates a new “PluginInfo” message that wraps the received message.
+        * 
+        * @param receivedMessage
+        *            The received message
+        */
+       PluginInfo(FcpMessage receivedMessage) {
+               super(receivedMessage);
+       }
+
+       /**
+        * Returns the name of the plugin.
+        * 
+        * @return The name of the plugin
+        */
+       public String getPluginName() {
+               return getField("PluginName");
+       }
+
+       /**
+        * Returns the identifier of the request.
+        * 
+        * @return The identifier of the request
+        */
+       public String getIdentifier() {
+               return getField("Identifier");
+       }
+
+       /**
+        * Returns the original URI of the plugin.
+        * 
+        * @return The original URI of the plugin
+        */
+       public String getOriginalURI() {
+               return getField("OriginalUri");
+       }
+
+       /**
+        * Returns whether the plugin is started.
+        * 
+        * @return <code>true</code> if the plugin is started, <code>false</code>
+        *         otherwise
+        */
+       public boolean isStarted() {
+               return Boolean.valueOf("Started");
+       }
+
+}