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.internal.impl;
20  
21  import javax.inject.Named;
22  import javax.inject.Singleton;
23  
24  import java.io.InputStream;
25  import java.io.OutputStream;
26  import java.io.Reader;
27  import java.io.Writer;
28  
29  import org.apache.maven.api.annotations.Nonnull;
30  import org.apache.maven.api.services.xml.SettingsXmlFactory;
31  import org.apache.maven.api.services.xml.XmlReaderException;
32  import org.apache.maven.api.services.xml.XmlReaderRequest;
33  import org.apache.maven.api.services.xml.XmlWriterException;
34  import org.apache.maven.api.services.xml.XmlWriterRequest;
35  import org.apache.maven.api.settings.InputSource;
36  import org.apache.maven.api.settings.Settings;
37  import org.apache.maven.settings.v4.SettingsStaxReader;
38  import org.apache.maven.settings.v4.SettingsStaxWriter;
39  
40  import static org.apache.maven.internal.impl.Utils.nonNull;
41  
42  @Named
43  @Singleton
44  public class DefaultSettingsXmlFactory implements SettingsXmlFactory {
45      @Override
46      public Settings read(@Nonnull XmlReaderRequest request) throws XmlReaderException {
47          nonNull(request, "request");
48          Reader reader = request.getReader();
49          InputStream inputStream = request.getInputStream();
50          if (reader == null && inputStream == null) {
51              throw new IllegalArgumentException("reader or inputStream must be non null");
52          }
53          try {
54              InputSource source = null;
55              if (request.getModelId() != null || request.getLocation() != null) {
56                  source = new InputSource(request.getLocation());
57              }
58              SettingsStaxReader xml = new SettingsStaxReader();
59              xml.setAddDefaultEntities(request.isAddDefaultEntities());
60              if (reader != null) {
61                  return xml.read(reader, request.isStrict(), source);
62              } else {
63                  return xml.read(inputStream, request.isStrict(), source);
64              }
65          } catch (Exception e) {
66              throw new XmlReaderException("Unable to read settings", e);
67          }
68      }
69  
70      @Override
71      public void write(XmlWriterRequest<Settings> request) throws XmlWriterException {
72          nonNull(request, "request");
73          Settings content = nonNull(request.getContent(), "content");
74          OutputStream outputStream = request.getOutputStream();
75          Writer writer = request.getWriter();
76          if (writer == null && outputStream == null) {
77              throw new IllegalArgumentException("writer or outputStream must be non null");
78          }
79          try {
80              if (writer != null) {
81                  new SettingsStaxWriter().write(writer, content);
82              } else {
83                  new SettingsStaxWriter().write(outputStream, content);
84              }
85          } catch (Exception e) {
86              throw new XmlWriterException("Unable to write settings", e);
87          }
88      }
89  }