summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/configuration/file/YamlConfiguration.java
blob: f9523b39266f3e148287506746fd1d72dd548c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
package org.bukkit.configuration.file;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.logging.Level;
import org.bukkit.Bukkit;
import org.bukkit.configuration.InvalidConfigurationException;
import org.bukkit.configuration.Configuration;
import org.bukkit.configuration.ConfigurationSection;
import org.bukkit.configuration.serialization.ConfigurationSerializable;
import org.bukkit.configuration.serialization.ConfigurationSerialization;
import org.yaml.snakeyaml.DumperOptions;
import org.yaml.snakeyaml.Yaml;
import org.yaml.snakeyaml.constructor.SafeConstructor;
import org.yaml.snakeyaml.error.YAMLException;
import org.yaml.snakeyaml.representer.Representer;

/**
 * An implementation of {@link Configuration} which saves all files in Yaml.
 */
public class YamlConfiguration extends FileConfiguration {
    protected static final String COMMENT_PREFIX = "# ";
    protected static final String BLANK_CONFIG = "{}\n";
    private final DumperOptions yamlOptions = new DumperOptions();
    private final Representer yamlRepresenter = new Representer();
    private final Yaml yaml = new Yaml(new SafeConstructor(), yamlRepresenter, yamlOptions);

    @Override
    public String saveToString() {
        Map<String, Object> output = new LinkedHashMap<String, Object>();
        
        yamlOptions.setIndent(options().indent());
        yamlOptions.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
        yamlRepresenter.setDefaultFlowStyle(DumperOptions.FlowStyle.BLOCK);
        
        serializeValues(output, getValues(false));
        
        String header = buildHeader();
        String dump = yaml.dump(output);
        
        if (dump.equals(BLANK_CONFIG)) {
            dump = "";
        }
        
        return header + dump;
    }

    @Override
    public void loadFromString(String contents) throws InvalidConfigurationException {
        if (contents == null) {
            throw new IllegalArgumentException("Contents cannot be null");
        }
        
        Map<String, Object> input;
        try {
            input = (Map<String, Object>)yaml.load(contents);
        } catch (Throwable ex) {
            throw new InvalidConfigurationException("Specified contents is not a valid Configuration", ex);
        }
        
        String header = parseHeader(contents);
        
        if (header.length() > 0) {
            options().header(header);
        }
        
        deserializeValues(input, this);
    }
    
    protected void deserializeValues(Map<String, Object> input, ConfigurationSection section) throws InvalidConfigurationException {
        if (input == null) {
            return;
        }
        
        for (Map.Entry<String, Object> entry : input.entrySet()) {
            Object value = entry.getValue();
            
            if (value instanceof Map) {
                Map<String, Object> subvalues;
                
                try {
                    subvalues = (Map<String, Object>) value;
                } catch (ClassCastException ex) {
                    throw new InvalidConfigurationException("Map found where type is not <String, Object>", ex);
                }
                
                if (subvalues.containsKey(ConfigurationSerialization.SERIALIZED_TYPE_KEY)) {
                    try {
                        ConfigurationSerializable serializable = ConfigurationSerialization.deserializeObject(subvalues);
                        section.set(entry.getKey(), serializable);
                    } catch (IllegalArgumentException ex) {
                        throw new InvalidConfigurationException("Could not deserialize object", ex);
                    }
                } else {
                    ConfigurationSection subsection = section.createSection(entry.getKey());
                    deserializeValues(subvalues, subsection);
                }
            } else {
                section.set(entry.getKey(), entry.getValue());
            }
        }
    }
    
    protected void serializeValues(Map<String, Object> output, Map<String, Object> input) {
        if (input == null) {
            return;
        }
        
        for (Map.Entry<String, Object> entry : input.entrySet()) {
            Object value = entry.getValue();
            
            if (value instanceof ConfigurationSection) {
                ConfigurationSection subsection = (ConfigurationSection)entry.getValue();
                Map<String, Object> subvalues = new LinkedHashMap<String, Object>();
                
                serializeValues(subvalues, subsection.getValues(false));
                value = subvalues;
            } else if (value instanceof ConfigurationSerializable) {
                ConfigurationSerializable serializable = (ConfigurationSerializable)value;
                Map<String, Object> subvalues = new LinkedHashMap<String, Object>();
                subvalues.put(ConfigurationSerialization.SERIALIZED_TYPE_KEY, ConfigurationSerialization.getAlias(serializable.getClass()));
                
                serializeValues(subvalues, serializable.serialize());
                value = subvalues;
            } else if ((!isPrimitiveWrapper(value)) && (!isNaturallyStorable(value))) {
                throw new IllegalStateException("Configuration contains non-serializable values, cannot process");
            }
            
            if (value != null) {
                output.put(entry.getKey(), value);
            }
        }
    }
    
    protected String parseHeader(String input) {
        String[] lines = input.split("\r?\n", -1);
        StringBuilder result = new StringBuilder();
        boolean readingHeader = true;
        
        for (int i = 0; (i < lines.length) && (readingHeader); i++) {
            String line = lines[i];
            
            if (line.startsWith(COMMENT_PREFIX)) {
                if (i > 0) {
                    result.append("\n");
                }
                
                if (line.length() > COMMENT_PREFIX.length()) {
                    result.append(line.substring(COMMENT_PREFIX.length()));
                }
            } else if (line.length() == 0) {
                result.append("\n");
            } else {
                readingHeader = false;
            }
        }
        
        return result.toString();
    }
    
    protected String buildHeader() {
        String header = options().header();
        
        if (options().copyHeader()) {
            Configuration def = getDefaults();
            
            if ((def != null) && (def instanceof FileConfiguration)) {
                FileConfiguration filedefaults = (FileConfiguration)def;
                String defaultsHeader = filedefaults.buildHeader();
                
                if ((defaultsHeader != null) && (defaultsHeader.length() > 0)) {
                    return defaultsHeader;
                }
            }
        }
        
        if (header == null) {
            return "";
        }
        
        StringBuilder builder = new StringBuilder();
        String[] lines = header.split("\r?\n", -1);
        boolean startedHeader = false;
        
        for (int i = lines.length - 1; i >= 0; i--) {
            builder.insert(0, "\n");
            
            if ((startedHeader) || (lines[i].length() != 0)) {
                builder.insert(0, lines[i]);
                builder.insert(0, COMMENT_PREFIX);
                startedHeader = true;
            }
        }
        
        return builder.toString();
    }

    @Override
    public YamlConfigurationOptions options() {
        if (options == null) {
            options = new YamlConfigurationOptions(this);
        }
        
        return (YamlConfigurationOptions)options;
    }
    
    /**
     * Creates a new {@link YamlConfiguration}, loading from the given file.
     * <p>
     * Any errors loading the Configuration will be logged and then ignored.
     * If the specified input is not a valid config, a blank config will be returned.
     * 
     * @param file Input file
     * @return Resulting configuration
     * @throws IllegalArgumentException Thrown is file is null
     */
    public static YamlConfiguration loadConfiguration(File file) {
        if (file == null) {
            throw new IllegalArgumentException("File cannot be null");
        }
        
        YamlConfiguration config = new YamlConfiguration();
        
        try {
            config.load(file);
        } catch (FileNotFoundException ex) {
        } catch (IOException ex) {
            Bukkit.getLogger().log(Level.SEVERE, "Cannot load " + file, ex);
        } catch (InvalidConfigurationException ex) {
            if (ex.getCause() instanceof YAMLException) {
                Bukkit.getLogger().severe("Config file " + file + " isn't valid! " + ex.getCause());
            } else if ((ex.getCause() == null) || (ex.getCause() instanceof ClassCastException)) {
                Bukkit.getLogger().severe("Config file " + file + " isn't valid!");
            } else {
                Bukkit.getLogger().log(Level.SEVERE, "Cannot load " + file + ": " + ex.getCause().getClass(), ex);
            }
        }
        
        return config;
    }
    
    /**
     * Creates a new {@link YamlConfiguration}, loading from the given stream.
     * <p>
     * Any errors loading the Configuration will be logged and then ignored.
     * If the specified input is not a valid config, a blank config will be returned.
     * 
     * @param stream Input stream
     * @return Resulting configuration
     * @throws IllegalArgumentException Thrown is stream is null
     */
    public static YamlConfiguration loadConfiguration(InputStream stream) {
        if (stream == null) {
            throw new IllegalArgumentException("Stream cannot be null");
        }
        
        YamlConfiguration config = new YamlConfiguration();
        
        try {
            config.load(stream);
        } catch (IOException ex) {
            Bukkit.getLogger().log(Level.SEVERE, "Cannot load configuration", ex);
        } catch (InvalidConfigurationException ex) {
            if (ex.getCause() instanceof YAMLException) {
                Bukkit.getLogger().severe("Config file isn't valid! " + ex.getCause());
            } else if ((ex.getCause() == null) || (ex.getCause() instanceof ClassCastException)) {
                Bukkit.getLogger().severe("Config file isn't valid!");
            } else {
                Bukkit.getLogger().log(Level.SEVERE, "Cannot load configuration: " + ex.getCause().getClass(), ex);
            }
        }
        
        return config;
    }
}