View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.model.io;
20  
21  import javax.inject.Named;
22  import javax.inject.Singleton;
23  
24  import java.io.File;
25  import java.io.FileInputStream;
26  import java.io.IOException;
27  import java.io.InputStream;
28  import java.io.Reader;
29  import java.util.Map;
30  import java.util.Objects;
31  
32  import org.apache.maven.model.InputSource;
33  import org.apache.maven.model.Model;
34  import org.apache.maven.model.io.xpp3.MavenXpp3Reader;
35  import org.apache.maven.model.io.xpp3.MavenXpp3ReaderEx;
36  import org.codehaus.plexus.util.ReaderFactory;
37  import org.codehaus.plexus.util.xml.XmlStreamReader;
38  import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
39  
40  /**
41   * Handles deserialization of a model from some kind of textual format like XML.
42   *
43   * @author Benjamin Bentmann
44   */
45  @Named
46  @Singleton
47  public class DefaultModelReader implements ModelReader {
48  
49      @Override
50      public Model read(File input, Map<String, ?> options) throws IOException {
51          Objects.requireNonNull(input, "input cannot be null");
52  
53          Model model = read(new FileInputStream(input), options);
54  
55          model.setPomFile(input);
56  
57          return model;
58      }
59  
60      @Override
61      public Model read(Reader input, Map<String, ?> options) throws IOException {
62          Objects.requireNonNull(input, "input cannot be null");
63  
64          try (Reader in = input) {
65              return read(in, isStrict(options), getSource(options));
66          }
67      }
68  
69      @Override
70      public Model read(InputStream input, Map<String, ?> options) throws IOException {
71          Objects.requireNonNull(input, "input cannot be null");
72  
73          try (XmlStreamReader in = ReaderFactory.newXmlReader(input)) {
74              return read(in, isStrict(options), getSource(options));
75          }
76      }
77  
78      private boolean isStrict(Map<String, ?> options) {
79          Object value = (options != null) ? options.get(IS_STRICT) : null;
80          return value == null || Boolean.parseBoolean(value.toString());
81      }
82  
83      private InputSource getSource(Map<String, ?> options) {
84          Object value = (options != null) ? options.get(INPUT_SOURCE) : null;
85          return (InputSource) value;
86      }
87  
88      private Model read(Reader reader, boolean strict, InputSource source) throws IOException {
89          try {
90              if (source != null) {
91                  return new MavenXpp3ReaderEx().read(reader, strict, source);
92              } else {
93                  return new MavenXpp3Reader().read(reader, strict);
94              }
95          } catch (XmlPullParserException e) {
96              throw new ModelParseException(e.getMessage(), e.getLineNumber(), e.getColumnNumber(), e);
97          }
98      }
99  }