]> source.dussan.org Git - archiva.git/blob
52b99d44bbeb11167af04ca8a0e32ea9a7e9ea2a
[archiva.git] /
1 package org.apache.maven.archiva.applet;
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 javax.swing.*;
23 import java.applet.Applet;
24 import java.awt.*;
25 import java.io.File;
26 import java.io.FileInputStream;
27 import java.io.FileNotFoundException;
28 import java.io.IOException;
29 import java.io.InputStream;
30 import java.security.AccessController;
31 import java.security.MessageDigest;
32 import java.security.NoSuchAlgorithmException;
33 import java.security.PrivilegedAction;
34
35 /**
36  * Applet that takes a file on the local filesystem and checksums it for sending to the server.
37  *
38  */
39 public class ChecksumApplet
40     extends Applet
41 {
42     private static final int CHECKSUM_BUFFER_SIZE = 8192;
43
44     private static final int BYTE_MASK = 0xFF;
45
46     private JProgressBar progressBar;
47
48     public void init()
49     {
50         setLayout( new BorderLayout() );
51         progressBar = new JProgressBar();
52         progressBar.setStringPainted( true );
53         add( progressBar, BorderLayout.CENTER );
54         JLabel label = new JLabel( "Checksum progress: " );
55         add( label, BorderLayout.WEST );
56     }
57
58     public String generateMd5( final String file )
59         throws IOException, NoSuchAlgorithmException
60     {
61         Object o = AccessController.doPrivileged( new PrivilegedAction()
62         {
63             public Object run()
64             {
65                 try
66                 {
67                     return checksumFile( file );
68                 }
69                 catch ( NoSuchAlgorithmException e )
70                 {
71                     return "Error checksumming file: " + e.getMessage();
72                 }
73                 catch ( FileNotFoundException e )
74                 {
75                     return "Couldn't find the file. " + e.getMessage();
76                 }
77                 catch ( IOException e )
78                 {
79                     return "Error reading file: " + e.getMessage();
80                 }
81             }
82         } );
83         return (String) o;
84     }
85
86     protected String checksumFile( String file )
87         throws NoSuchAlgorithmException, IOException
88     {
89         MessageDigest digest = MessageDigest.getInstance( "MD5" );
90
91         long total = new File( file ).length();
92         InputStream fis = new FileInputStream( file );
93         try
94         {
95             long totalRead = 0;
96             byte[] buffer = new byte[CHECKSUM_BUFFER_SIZE];
97             int numRead;
98             do
99             {
100                 numRead = fis.read( buffer );
101                 if ( numRead > 0 )
102                 {
103                     digest.update( buffer, 0, numRead );
104                     totalRead += numRead;
105                     progressBar.setValue( (int) ( totalRead * progressBar.getMaximum() / total ) );
106                 }
107             }
108             while ( numRead != -1 );
109         }
110         finally
111         {
112             fis.close();
113         }
114
115         return byteArrayToHexStr( digest.digest() );
116     }
117
118     protected static String byteArrayToHexStr( byte[] data )
119     {
120         String output = "";
121
122         for ( int cnt = 0; cnt < data.length; cnt++ )
123         {
124             //Deposit a byte into the 8 lsb of an int.
125             int tempInt = data[cnt] & BYTE_MASK;
126
127             //Get hex representation of the int as a string.
128             String tempStr = Integer.toHexString( tempInt );
129
130             //Append a leading 0 if necessary so that each hex string will contain 2 characters.
131             if ( tempStr.length() == 1 )
132             {
133                 tempStr = "0" + tempStr;
134             }
135
136             //Concatenate the two characters to the output string.
137             output = output + tempStr;
138         }
139
140         return output.toUpperCase();
141     }
142 }