View Javadoc
1   /**
2    * This file Copyright (c) 2014-2015 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.config.source.yaml;
35  
36  import info.magnolia.resourceloader.Resource;
37  
38  import java.io.IOException;
39  import java.io.Reader;
40  import java.util.Map;
41  
42  import javax.inject.Singleton;
43  
44  import org.yaml.snakeyaml.Yaml;
45  import org.yaml.snakeyaml.constructor.AbstractConstruct;
46  import org.yaml.snakeyaml.constructor.Constructor;
47  import org.yaml.snakeyaml.error.Mark;
48  import org.yaml.snakeyaml.error.MarkedYAMLException;
49  import org.yaml.snakeyaml.error.YAMLException;
50  import org.yaml.snakeyaml.nodes.Node;
51  import org.yaml.snakeyaml.nodes.ScalarNode;
52  import org.yaml.snakeyaml.nodes.Tag;
53  
54  /**
55   * The {@link YamlReader} reads configuration from a yaml file and returns it as a map representing bean properties.
56   */
57  @Singleton
58  public class YamlReader {
59  
60      public YamlReader() {
61      }
62  
63      public Map<String, Object> readToMap(final Resource res) throws IOException {
64          return (Map<String, Object>) readNoCast(res);
65      }
66  
67      protected Object readNoCast(final Resource res) throws IOException {
68          final Yaml yaml = newSnakeYaml(res);
69          try (final Reader reader = res.openReader()) {
70              return yaml.load(new SpaceCleaningReader(reader));
71          } catch (YAMLException ye) {
72              // TODO: (maybe) throw typed exceptions that generalize these syntax errors (location in the source, ref to the resource object etc)
73              throw new RuntimeException(formatYamlExceptionMessage(res, ye), ye);
74          }
75      }
76  
77      protected Yaml newSnakeYaml(Resource res) {
78          return new Yaml(new CustomConstructor(this, res));
79      }
80  
81      protected String formatYamlExceptionMessage(Resource res, YAMLException ye) {
82          final StringBuilder sb = new StringBuilder();
83          sb.append("YAML parsing error in ").append(res);
84          if (ye instanceof MarkedYAMLException) {
85              final Mark mark = ((MarkedYAMLException) ye).getProblemMark();
86              final String snippet = mark != null ? mark.get_snippet() : null;
87              final String problem = ((MarkedYAMLException) ye).getProblem();
88              if (mark != null) {
89                  sb.append(" at line ").append(mark.getLine()).append(", column ").append(mark.getColumn());
90              }
91              if (snippet != null) {
92                  sb.append(":\n");
93                  sb.append(snippet);
94              }
95              if (problem != null) {
96                  // TODO SnakeYaml tends to be a bit nasty about this "problem", e.g org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens() prints the actual char THEN it's representation, so you end up with a big fat actual tab in the message instead of JUST \t(TAB)
97                  // See https://code.google.com/p/snakeyaml/issues/detail?id=209
98                  sb.append(": ").append(problem.replaceAll("\\s*\\t\\s*", " "));
99              }
100         } else {
101             sb.append(": ").append(ye.getMessage());
102         }
103 
104         return sb.toString();
105     }
106 
107     private static class CustomConstructor extends Constructor {
108         public CustomConstructor(YamlReader yamlReader, Resource baseResource) {
109             yamlConstructors.put(new Tag("!include"), new IncludeConstruct(/*yaml,*/ yamlReader, baseResource));
110         }
111     }
112 
113     private static class IncludeConstruct extends AbstractConstruct {
114         private final YamlReader yamlReader;
115         private final Resource baseResource;
116 
117         public IncludeConstruct(YamlReader yamlReader, Resource baseResource) {
118             this.yamlReader = yamlReader;
119             this.baseResource = baseResource;
120         }
121 
122         @Override
123         public Object construct(Node node) {
124             if (!(node instanceof ScalarNode)) {
125                 throw new IllegalArgumentException("Non-scalar !include: " + node.toString());
126             }
127 
128             final ScalarNode scalarNode = (ScalarNode) node;
129             final String path = scalarNode.getValue();
130 
131             final Resource include = baseResource.getOrigin().getByPath(path);
132             try {
133                 return yamlReader.readNoCast(include);
134             } catch (IOException e) {
135                 throw new RuntimeException(e); // TODO
136             }
137         }
138     }
139 }