1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
42
43
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 }