groovy.yaml.YamlSlurper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy-yaml Show documentation
Show all versions of groovy-yaml Show documentation
Groovy: A powerful multi-faceted language for the JVM
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package groovy.yaml;
import groovy.json.JsonSlurper;
import org.apache.groovy.yaml.util.YamlConverter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringReader;
import java.nio.file.Files;
import java.nio.file.Path;
/**
* Represents a YAML parser
*
* @since 3.0.0
*/
public class YamlSlurper {
private final JsonSlurper jsonSlurper;
public YamlSlurper() {
this.jsonSlurper = new JsonSlurper();
}
/**
* Parse the content of the specified yaml into a tree of Nodes.
*
* @param yaml the content of yaml
* @return the root node of the parsed tree of Nodes
*/
public Object parseText(String yaml) {
return this.parse(new StringReader(yaml));
}
/**
* Parse the content of the specified reader into a tree of Nodes.
*
* @param reader the reader of yaml
* @return the root node of the parsed tree of Nodes
*/
public Object parse(Reader reader) {
return jsonSlurper.parse(new StringReader(YamlConverter.convertYamlToJson(reader)));
}
/**
* Parse the content of the specified reader into a tree of Nodes.
*
* @param stream the reader of yaml
* @return the root node of the parsed tree of Nodes
*/
public Object parse(InputStream stream) {
return parse(new InputStreamReader(stream));
}
/**
* Parse the content of the specified file into a tree of Nodes.
*
* @param file the reader of yaml
* @return the root node of the parsed tree of Nodes
*/
public Object parse(java.io.File file) throws IOException {
return parse(file.toPath());
}
/**
* Parse the content of the specified path into a tree of Nodes.
*
* @param path the reader of yaml
* @return the root node of the parsed tree of Nodes
*/
public Object parse(Path path) throws IOException {
// note: convert to an input stream to allow the support of foreign file objects
return parse(Files.newInputStream(path));
}
}