1
0
mirror of https://e.coding.net/circlecloud/RealBackpacks.git synced 2024-12-04 03:49:07 +00:00

fix 1.7.2 lose Reader and update to 0.1.4...

Signed-off-by: j502647092 <jtb1@163.com>
This commit is contained in:
j502647092 2015-05-30 17:26:58 +08:00
parent 2889b376c5
commit e3f38801ac
3 changed files with 74 additions and 58 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>cn.CityCraft</groupId> <groupId>cn.CityCraft</groupId>
<artifactId>RealBackpacks</artifactId> <artifactId>RealBackpacks</artifactId>
<version>0.1.3-SNAPSHOT</version> <version>0.1.4-SNAPSHOT</version>
<name>RealBackpacks</name> <name>RealBackpacks</name>
<build> <build>
<finalName>${project.name}</finalName> <finalName>${project.name}</finalName>

View File

@ -1,5 +1,6 @@
package cn.citycraft.RealBackpacks.config; package cn.citycraft.RealBackpacks.config;
import java.io.BufferedReader;
import java.io.File; import java.io.File;
import java.io.FileInputStream; import java.io.FileInputStream;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
@ -7,6 +8,7 @@ import java.io.FileOutputStream;
import java.io.IOException; import java.io.IOException;
import java.io.InputStreamReader; import java.io.InputStreamReader;
import java.io.OutputStreamWriter; import java.io.OutputStreamWriter;
import java.io.Reader;
import java.io.Writer; import java.io.Writer;
import java.util.logging.Level; import java.util.logging.Level;
@ -25,68 +27,82 @@ import com.google.common.base.Charsets;
import com.google.common.io.Files; import com.google.common.io.Files;
/** /**
* An implementation of {@link Configuration} which saves all files in Yaml. * An implementation of {@link Configuration} which saves all files in Yaml. Note that this
* Note that this implementation is not synchronized. * implementation is not synchronized.
*/ */
public class FileConfig extends YamlConfiguration { public class FileConfig extends YamlConfiguration {
public static FileConfig init(File file) { public static FileConfig init(File file) {
return FileConfig.loadConfiguration(file); return FileConfig.loadConfiguration(file);
}
public static FileConfig loadConfiguration(File file) {
Validate.notNull(file, "File cannot be null");
FileConfig config = new FileConfig();
try {
config.load(file);
} catch (FileNotFoundException ex) {
} catch (IOException ex) {
Bukkit.getLogger().log(Level.SEVERE, "Cannot load " + file, ex);
} catch (InvalidConfigurationException ex) {
Bukkit.getLogger().log(Level.SEVERE, "Cannot load " + file, ex);
} }
return config;
}
protected final DumperOptions yamlOptions = new DumperOptions(); public static FileConfig loadConfiguration(File file) {
Validate.notNull(file, "File cannot be null");
protected final Representer yamlRepresenter = new YamlRepresenter(); FileConfig config = new FileConfig();
try {
protected final Yaml yaml = new Yaml(new YamlConstructor(), config.load(file);
yamlRepresenter, yamlOptions); } catch (FileNotFoundException ex) {
} catch (IOException ex) {
@Override Bukkit.getLogger().log(Level.SEVERE, "Cannot load " + file, ex);
public void load(File file) throws FileNotFoundException, IOException, } catch (InvalidConfigurationException ex) {
InvalidConfigurationException { Bukkit.getLogger().log(Level.SEVERE, "Cannot load " + file, ex);
Validate.notNull(file, "File cannot be null"); }
final FileInputStream stream = new FileInputStream(file); return config;
load(new InputStreamReader(stream, Charsets.UTF_8));
}
@Override
public void save(File file) throws IOException {
Validate.notNull(file, "File cannot be null");
Files.createParentDirs(file);
String data = saveToString();
Writer writer = new OutputStreamWriter(new FileOutputStream(file),
Charsets.UTF_8);
try {
writer.write(data);
} finally {
writer.close();
} }
}
@Override protected final DumperOptions yamlOptions = new DumperOptions();
public String saveToString() {
yamlOptions.setIndent(options().indent()); protected final Representer yamlRepresenter = new YamlRepresenter();
yamlOptions.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
yamlRepresenter.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK); protected final Yaml yaml = new Yaml(new YamlConstructor(), yamlRepresenter, yamlOptions);
String header = buildHeader();
String dump = yaml.dump(getValues(false)); @Override
if (dump.equals(BLANK_CONFIG)) { public void load(File file) throws FileNotFoundException, IOException, InvalidConfigurationException {
dump = ""; Validate.notNull(file, "File cannot be null");
final FileInputStream stream = new FileInputStream(file);
load(new InputStreamReader(stream, Charsets.UTF_8));
}
@Override
public void load(Reader reader) throws IOException, InvalidConfigurationException {
BufferedReader input = (reader instanceof BufferedReader) ? (BufferedReader) reader
: new BufferedReader(reader);
StringBuilder builder = new StringBuilder();
try {
String line;
while ((line = input.readLine()) != null) {
builder.append(line);
builder.append('\n');
}
} finally {
input.close();
}
loadFromString(builder.toString());
}
@Override
public void save(File file) throws IOException {
Validate.notNull(file, "File cannot be null");
Files.createParentDirs(file);
String data = saveToString();
Writer writer = new OutputStreamWriter(new FileOutputStream(file), Charsets.UTF_8);
try {
writer.write(data);
} finally {
writer.close();
}
}
@Override
public String saveToString() {
yamlOptions.setIndent(options().indent());
yamlOptions.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
yamlRepresenter.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
String header = buildHeader();
String dump = yaml.dump(getValues(false));
if (dump.equals(BLANK_CONFIG)) {
dump = "";
}
return header + dump;
} }
return header + dump;
}
} }

View File

@ -1,6 +1,6 @@
name: RealBackpacks name: RealBackpacks
main: cn.citycraft.RealBackpacks.RealBackpacks main: cn.citycraft.RealBackpacks.RealBackpacks
version: 0.1.3 version: 0.1.4
author: Slayr288,喵♂呜 author: Slayr288,喵♂呜
softdepend: [Vault] softdepend: [Vault]
commands: commands: