Pārlūkot izejas kodu

Plugin for the IRC Parser

Fixes issue 3588
Issue 3589

Depends-On: I8db9f60494939f6581dfc2a5fc8bf8b2d216c580
Change-Id: I595bd3e7ffc62ef7f059ae53beb8d6957c22c541
Reviewed-on: http://gerrit.dmdirc.com/1060
Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com>
Reviewed-by: Gregory Holmes <greg@dmdirc.com>
tags/0.6.4
Chris Smith 14 gadus atpakaļ
vecāks
revīzija
e10cd13f1f

+ 61
- 0
src/com/dmdirc/addons/parser_irc/IrcPlugin.java Parādīt failu

@@ -0,0 +1,61 @@
1
+/*
2
+ * Copyright (c) 2006-2010 Chris Smith, Shane Mc Cormack, Gregory Holmes
3
+ *
4
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ * of this software and associated documentation files (the "Software"), to deal
6
+ * in the Software without restriction, including without limitation the rights
7
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ * copies of the Software, and to permit persons to whom the Software is
9
+ * furnished to do so, subject to the following conditions:
10
+ *
11
+ * The above copyright notice and this permission notice shall be included in
12
+ * all copies or substantial portions of the Software.
13
+ *
14
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ * SOFTWARE.
21
+ */
22
+
23
+package com.dmdirc.addons.parser_irc;
24
+
25
+import com.dmdirc.parser.common.MyInfo;
26
+import com.dmdirc.parser.interfaces.Parser;
27
+import com.dmdirc.parser.irc.IRCParser;
28
+import com.dmdirc.plugins.Plugin;
29
+import java.net.URI;
30
+
31
+/**
32
+ * A plugin which provides access to the IRC Parser.
33
+ *
34
+ * @author chris
35
+ */
36
+public class IrcPlugin extends Plugin {
37
+
38
+    /** {@inheritDoc} */
39
+    @Override
40
+    public void onLoad() {
41
+        // Do nothing
42
+    }
43
+
44
+    /** {@inheritDoc} */
45
+    @Override
46
+    public void onUnload() {
47
+        // Do nothing
48
+    }
49
+
50
+    /**
51
+     * Get an IRC parser instance.
52
+     *
53
+     * @param myInfo The client information to use
54
+     * @param address The address of the server to connect to
55
+     * @return An appropriately configured parser
56
+     */
57
+    public Parser getParser(final MyInfo myInfo, final URI address) {
58
+        return new IRCParser(myInfo, address);
59
+    }
60
+
61
+}

+ 29
- 0
src/com/dmdirc/addons/parser_irc/plugin.config Parādīt failu

@@ -0,0 +1,29 @@
1
+# This is a DMDirc configuration file.
2
+
3
+# This section indicates which sections below take key/value
4
+# pairs, rather than a simple list. It should be placed above
5
+# any sections that take key/values.
6
+keysections:
7
+  metadata
8
+  updates
9
+  version
10
+
11
+metadata:
12
+  author=Shane <shane@dmdirc.com>
13
+  mainclass=com.dmdirc.addons.parser_irc.IrcPlugin
14
+  description=Allows DMDirc to communicate with IRC servers
15
+  name=irc
16
+  nicename=IRC Parser
17
+
18
+updates:
19
+  id=57
20
+
21
+version:
22
+  friendly=1.0
23
+
24
+provides:
25
+  irc parser
26
+  ircs parser
27
+
28
+exports:
29
+  getParser in com.dmdirc.addons.parser_irc.IrcPlugin as getParser

Notiek ielāde…
Atcelt
Saglabāt