View Javadoc

1   package org.apache.maven.wagon.providers.ssh.knownhost;
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.BufferedReader;
23  import java.io.IOException;
24  import java.io.InputStream;
25  import java.io.StringReader;
26  import java.util.HashSet;
27  import java.util.Set;
28  
29  import org.codehaus.plexus.util.IOUtil;
30  import org.codehaus.plexus.util.StringOutputStream;
31  import org.codehaus.plexus.util.StringUtils;
32  
33  /**
34   * Provides known hosts from a file
35   *
36   * @author Juan F. Codagnone
37   * @since Sep 12, 2005
38   */
39  public class StreamKnownHostsProvider
40      extends AbstractKnownHostsProvider
41  {
42  
43      public StreamKnownHostsProvider( InputStream stream )
44          throws IOException
45      {
46          try
47          {
48              StringOutputStream stringOutputStream = new StringOutputStream();
49              IOUtil.copy( stream, stringOutputStream );
50              this.contents = stringOutputStream.toString();
51              
52              this.knownHosts = this.loadKnownHosts( this.contents );
53          }
54          finally
55          {
56              IOUtil.close( stream );
57          }
58      }
59      
60      protected Set<KnownHostEntry> loadKnownHosts( String contents )
61          throws IOException
62      {
63          Set<KnownHostEntry> hosts = new HashSet<KnownHostEntry>();
64          
65          BufferedReader br = new BufferedReader( new StringReader( contents ) );
66          
67          String line = null;
68          
69          do 
70          {
71              line = br.readLine();
72              if ( line != null )
73              {
74                  String tokens[] = StringUtils.split( line );
75                  if ( tokens.length == 3 )
76                  {
77                      hosts.add( new KnownHostEntry( tokens[0], tokens[1], tokens[2] ) );
78                  }
79              }
80              
81          }
82          while ( line != null );
83          
84          return hosts;
85      }
86  }