]> source.dussan.org Git - archiva.git/blob
8d20239a6ecfabd2c4da35f8cc370c05a2c4e1b8
[archiva.git] /
1 package org.apache.archiva.checksum;
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
23 import org.apache.commons.io.FilenameUtils;
24
25 import java.nio.file.Path;
26
27 /**
28  * Enumeration of available ChecksumAlgorithm techniques.
29  *
30  *
31  */
32 public enum ChecksumAlgorithm {
33     SHA1("SHA-1", "sha1", "SHA1"),
34     MD5("MD5", "md5", "MD5");
35
36     public static ChecksumAlgorithm getByExtension( Path file )
37     {
38         String ext = FilenameUtils.getExtension( file.getFileName().toString() ).toLowerCase();
39         if ( ChecksumAlgorithm.SHA1.getExt().equals( ext ) )
40         {
41             return ChecksumAlgorithm.SHA1;
42         }
43         else if ( ChecksumAlgorithm.MD5.getExt().equals( ext ) )
44         {
45             return ChecksumAlgorithm.MD5;
46         }
47
48         throw new IllegalArgumentException( "Filename " + file.getFileName() + " has no associated extension." );
49     }
50
51     /**
52      * The MessageDigest algorithm for this hash.
53      */
54     private final String algorithm;
55
56     /**
57      * The file extension for this ChecksumAlgorithm.
58      */
59     private final String ext;
60
61     /**
62      * The checksum type, the key that you see in checksum files.
63      */
64     private final String type;
65
66     /**
67      * Construct a ChecksumAlgorithm
68      * 
69      * @param algorithm the MessageDigest algorithm
70      * @param ext the file extension.
71      * @param type the checksum type.
72      */
73     private ChecksumAlgorithm( String algorithm, String ext, String type )
74     {
75         this.algorithm = algorithm;
76         this.ext = ext;
77         this.type = type;
78     }
79
80     public String getAlgorithm()
81     {
82         return algorithm;
83     }
84
85     public String getExt()
86     {
87         return ext;
88     }
89
90     public String getType()
91     {
92         return type;
93     }
94     
95     
96 }