View Javadoc
1   package org.apache.maven.doxia.sink.impl;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.io.File;
23  import java.io.IOException;
24  import java.io.OutputStream;
25  import java.io.OutputStreamWriter;
26  import java.io.Writer;
27  
28  import org.apache.maven.doxia.sink.Sink;
29  import org.apache.maven.doxia.sink.SinkFactory;
30  import org.codehaus.plexus.util.WriterFactory;
31  
32  /**
33   * An abstract <code>SinkFactory</code> for Text markup syntax. <code>UTF-8</code> is used
34   * when no encoding is specified.
35   *
36   * @author Hervé Boutemy
37   * @author Benjamin Bentmann
38   * @since 1.1
39   */
40  public abstract class AbstractTextSinkFactory
41      implements SinkFactory
42  {
43      /**
44       * Create a text Sink for a given encoding.
45       *
46       * @param writer The writer for the sink output, never <code>null</code>.
47       * @param encoding The character encoding used by the writer.
48       * @return a Sink for text output in the given encoding.
49       */
50      protected abstract Sink createSink( Writer writer, String encoding );
51  
52      /** {@inheritDoc} */
53      public Sink createSink( File outputDir, String outputName )
54          throws IOException
55      {
56          return createSink( outputDir, outputName, WriterFactory.UTF_8 );
57      }
58  
59      /** {@inheritDoc} */
60      public Sink createSink( File outputDir, String outputName, String encoding )
61          throws IOException
62      {
63          if ( outputDir == null )
64          {
65              throw new IllegalArgumentException( "outputDir cannot be null." );
66          }
67  
68          if ( !outputDir.exists() )
69          {
70              outputDir.mkdirs();
71          }
72          else
73          {
74              if ( !outputDir.isDirectory() )
75              {
76                  throw new IllegalArgumentException( "The dir '" + outputDir + "' is not a directory." );
77              }
78          }
79  
80          Writer writer = WriterFactory.newWriter( new File( outputDir, outputName ), encoding );
81  
82          return createSink( writer, encoding );
83      }
84  
85      /** {@inheritDoc} */
86      public Sink createSink( OutputStream out )
87          throws IOException
88      {
89          return createSink( out, WriterFactory.UTF_8 );
90      }
91  
92      /** {@inheritDoc} */
93      public Sink createSink( OutputStream out, String encoding )
94          throws IOException
95      {
96          return createSink( new OutputStreamWriter( out, encoding ), encoding );
97      }
98  }