View Javadoc
1   /*
2    * Copyright 2022 The Apache Software Foundation
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.zstd;
17  
18  import javax.inject.Named;
19  
20  import java.io.File;
21  import java.io.IOException;
22  import java.io.InputStream;
23  
24  import org.codehaus.plexus.archiver.util.Streams;
25  import org.codehaus.plexus.components.io.attributes.FileAttributes;
26  import org.codehaus.plexus.components.io.attributes.PlexusIoResourceAttributes;
27  import org.codehaus.plexus.components.io.resources.PlexusIoCompressedFileResourceCollection;
28  
29  /**
30   * Implementation of {@link org.codehaus.plexus.components.io.resources.PlexusIoResourceCollection} for
31   * zstd compressed files.
32   */
33  @Named("zst")
34  public class PlexusIoZstdResourceCollection extends PlexusIoCompressedFileResourceCollection {
35  
36      @Override
37      protected PlexusIoResourceAttributes getAttributes(File file) throws IOException {
38          return new FileAttributes(file);
39      }
40  
41      @Override
42      protected String getDefaultExtension() {
43          return ".zst";
44      }
45  
46      @Override
47      protected InputStream getInputStream(File file) throws IOException {
48          return ZstdUnArchiver.getZstdInputStream(Streams.fileInputStream(file));
49      }
50  }