applet not anymore used in new ui so remove from build.

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1417927 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-12-06 15:01:07 +00:00
parent 21bb85c936
commit caf1092e6e
2 changed files with 0 additions and 233 deletions

View File

@ -1,89 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.archiva</groupId>
<artifactId>archiva-web</artifactId>
<version>1.4-M4-SNAPSHOT</version>
</parent>
<artifactId>archiva-applet</artifactId>
<name>Archiva Web :: Applet</name>
<description>
Applet for performing local operations on files such as creating a checksum of an artifact
before uploading it.
</description>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>keytool-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>clean</goal>
<goal>genkey</goal>
</goals>
</execution>
</executions>
<configuration>
<keystore>${basedir}/target/keystore</keystore>
<dname>cn=Brett Porter, ou=Archiva, L=Sydney, ST=NSW, o=Apache Software Foundation, c=AU</dname>
<keypass>password</keypass>
<storepass>password</storepass>
<validity>10000</validity>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jarsigner-plugin</artifactId>
<version>1.2</version>
<configuration>
<keystore>${basedir}/target/keystore</keystore>
<alias>mykey</alias>
<storepass>password</storepass>
<keypass>password</keypass>
</configuration>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<instrumentation>
<!-- TODO: should this module have tests? -->
<excludes>
<exclude>**/**</exclude>
</excludes>
</instrumentation>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,144 +0,0 @@
package org.apache.archiva.applet;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.applet.Applet;
import java.awt.BorderLayout;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.security.AccessController;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.PrivilegedAction;
import javax.swing.JLabel;
import javax.swing.JProgressBar;
/**
* Applet that takes a file on the local filesystem and checksums it for sending to the server.
*
*/
public class ChecksumApplet
extends Applet
{
private static final int CHECKSUM_BUFFER_SIZE = 8192;
private static final int BYTE_MASK = 0xFF;
private JProgressBar progressBar;
public void init()
{
setLayout( new BorderLayout() );
progressBar = new JProgressBar();
progressBar.setStringPainted( true );
add( progressBar, BorderLayout.CENTER );
JLabel label = new JLabel( "Checksum progress: " );
add( label, BorderLayout.WEST );
}
public String generateMd5( final String file )
throws IOException, NoSuchAlgorithmException
{
return AccessController.doPrivileged( new PrivilegedAction<String>()
{
public String run()
{
try
{
return checksumFile( file );
}
catch ( NoSuchAlgorithmException e )
{
return "Error checksumming file: " + e.getMessage();
}
catch ( FileNotFoundException e )
{
return "Couldn't find the file: " + e.getMessage();
}
catch ( IOException e )
{
return "Error reading file: " + e.getMessage();
}
}
} );
}
protected String checksumFile( String file )
throws NoSuchAlgorithmException, IOException
{
MessageDigest digest = MessageDigest.getInstance( "MD5" );
File f = new File( file );
long total = f.length();
InputStream fis = new FileInputStream( f );
try
{
long totalRead = 0;
byte[] buffer = new byte[CHECKSUM_BUFFER_SIZE];
int numRead;
do
{
numRead = fis.read( buffer );
if ( numRead > 0 )
{
digest.update( buffer, 0, numRead );
totalRead += numRead;
progressBar.setValue( (int) ( totalRead * progressBar.getMaximum() / total ) );
}
}
while ( numRead != -1 );
}
finally
{
fis.close();
}
return byteArrayToHexStr( digest.digest() );
}
protected static String byteArrayToHexStr( byte[] data )
{
StringBuilder output = new StringBuilder( "" );
for ( int cnt = 0; cnt < data.length; cnt++ )
{
//Deposit a byte into the 8 lsb of an int.
int tempInt = data[cnt] & BYTE_MASK;
//Get hex representation of the int as a string.
String tempStr = Integer.toHexString( tempInt );
//Append a leading 0 if necessary so that each hex string will contain 2 characters.
if ( tempStr.length() == 1 )
{
tempStr = "0" + tempStr;
}
//Concatenate the two characters to the output string.
output.append( tempStr );
}
return output.toString().toUpperCase();
}
}