View Javadoc
1   /*
2    * Copyright 2016 Codehaus.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.codehaus.plexus.archiver.xz;
17  
18  import javax.inject.Named;
19  
20  import java.io.File;
21  import java.io.IOException;
22  import java.io.InputStream;
23  import java.util.HashMap;
24  
25  import org.codehaus.plexus.archiver.util.Streams;
26  import org.codehaus.plexus.components.io.attributes.FileAttributes;
27  import org.codehaus.plexus.components.io.attributes.PlexusIoResourceAttributes;
28  import org.codehaus.plexus.components.io.resources.PlexusIoCompressedFileResourceCollection;
29  
30  /**
31   * @author lore
32   * @since 3.3
33   */
34  @Named("xz")
35  public class PlexusIoXZResourceCollection extends PlexusIoCompressedFileResourceCollection {
36  
37      @Override
38      protected PlexusIoResourceAttributes getAttributes(File file) throws IOException {
39          return new FileAttributes(file, new HashMap<Integer, String>(), new HashMap<Integer, String>());
40      }
41  
42      @Override
43      protected String getDefaultExtension() {
44          return ".xz";
45      }
46  
47      @Override
48      protected InputStream getInputStream(File file) throws IOException {
49          return XZUnArchiver.getXZInputStream(Streams.fileInputStream(file));
50      }
51  }