mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 22:40:21 +01:00
Fixed plugin description loading
No longer hardcoding sample plugin, now uses plugins dir By: Dinnerbone <dinnerbone@dinnerbone.com>
This commit is contained in:
parent
2aeec23737
commit
fa8a72ea5e
3 changed files with 27 additions and 2 deletions
2
paper-api/sample/src/plugin.yml
Normal file
2
paper-api/sample/src/plugin.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
name: Sample Plugin
|
||||
main: com.dinnerbone.bukkit.sample.SamplePlugin
|
|
@ -81,7 +81,7 @@ public final class PluginManager {
|
|||
}
|
||||
}
|
||||
|
||||
return (Plugin[])result.toArray();
|
||||
return result.toArray(new Plugin[result.size()]);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -3,13 +3,18 @@ package org.bukkit.plugin.java;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.lang.reflect.Constructor;
|
||||
import java.net.URL;
|
||||
import java.net.URLClassLoader;
|
||||
import java.util.jar.JarEntry;
|
||||
import java.util.jar.JarFile;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
import org.bukkit.plugin.PluginLoader;
|
||||
import java.util.regex.Pattern;
|
||||
import org.bukkit.Server;
|
||||
import org.bukkit.plugin.InvalidDescriptionException;
|
||||
import org.bukkit.plugin.InvalidPluginException;
|
||||
import org.bukkit.plugin.PluginDescriptionFile;
|
||||
|
||||
|
@ -28,11 +33,29 @@ public final class JavaPluginLoader implements PluginLoader {
|
|||
|
||||
public Plugin loadPlugin(File file) throws InvalidPluginException {
|
||||
JavaPlugin result = null;
|
||||
PluginDescriptionFile description = new PluginDescriptionFile("Sample Plugin", "com.dinnerbone.bukkit.sample.SamplePlugin");
|
||||
PluginDescriptionFile description = null;
|
||||
|
||||
if (!file.exists()) {
|
||||
throw new InvalidPluginException(new FileNotFoundException(String.format("%s does not exist", file.getPath())));
|
||||
}
|
||||
try {
|
||||
JarFile jar = new JarFile(file);
|
||||
JarEntry entry = jar.getJarEntry("plugin.yml");
|
||||
|
||||
if (entry == null) {
|
||||
throw new InvalidPluginException(new FileNotFoundException("Jar does not contain plugin.yml"));
|
||||
}
|
||||
|
||||
InputStream stream = jar.getInputStream(entry);
|
||||
description = new PluginDescriptionFile(stream);
|
||||
|
||||
stream.close();
|
||||
jar.close();
|
||||
} catch (IOException ex) {
|
||||
throw new InvalidPluginException(ex);
|
||||
} catch (InvalidDescriptionException ex) {
|
||||
throw new InvalidPluginException(ex);
|
||||
}
|
||||
|
||||
try {
|
||||
ClassLoader loader = URLClassLoader.newInstance(new URL[]{file.toURI().toURL()}, getClass().getClassLoader());
|
||||
|
|
Loading…
Reference in a new issue