View Javadoc
1   package org.apache.maven.toolchain;
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.Reader;
24  
25  import org.apache.maven.toolchain.model.PersistedToolchains;
26  import org.apache.maven.toolchain.model.io.xpp3.MavenToolchainsXpp3Reader;
27  import org.codehaus.plexus.component.annotations.Component;
28  import org.codehaus.plexus.component.annotations.Requirement;
29  import org.codehaus.plexus.logging.Logger;
30  import org.codehaus.plexus.util.IOUtil;
31  import org.codehaus.plexus.util.ReaderFactory;
32  
33  /**
34   * @author Benjamin Bentmann
35   * 
36   * @deprecated instead use {@link org.apache.maven.toolchain.building.DefaultToolchainsBuilder}
37   */
38  @Deprecated
39  @Component( role = ToolchainsBuilder.class, hint = "default" )
40  public class DefaultToolchainsBuilder
41      implements ToolchainsBuilder
42  {
43  
44      @Requirement
45      private Logger logger;
46  
47      public PersistedToolchains build( File userToolchainsFile )
48          throws MisconfiguredToolchainException
49      {
50          PersistedToolchains toolchains = null;
51  
52          if ( userToolchainsFile != null && userToolchainsFile.isFile() )
53          {
54              Reader in = null;
55              try
56              {
57                  in = ReaderFactory.newXmlReader( userToolchainsFile );
58                  toolchains = new MavenToolchainsXpp3Reader().read( in );
59              }
60              catch ( Exception e )
61              {
62                  throw new MisconfiguredToolchainException( "Cannot read toolchains file at "
63                      + userToolchainsFile.getAbsolutePath(), e );
64              }
65              finally
66              {
67                  IOUtil.close( in );
68              }
69          }
70          else if ( userToolchainsFile != null )
71          {
72              logger.debug( "Toolchains configuration was not found at " + userToolchainsFile );
73          }
74  
75          return toolchains;
76      }
77  
78  }