aboutsummaryrefslogtreecommitdiffstats
path: root/archiva-modules/archiva-base
diff options
context:
space:
mode:
authorMartin Stockhammer <martin_s@apache.org>2019-06-10 23:33:34 +0200
committerMartin Stockhammer <martin_s@apache.org>2019-06-10 23:34:13 +0200
commit42257e90337da35c472d87f65aab065a6ec6f07d (patch)
tree332cfed1918c31d2810902eb6f15c937e80c8ef7 /archiva-modules/archiva-base
parentdac24551d0b9e31b21d23db1b1bb96c2e3a657e1 (diff)
downloadarchiva-42257e90337da35c472d87f65aab065a6ec6f07d.tar.gz
archiva-42257e90337da35c472d87f65aab065a6ec6f07d.zip
Using asset API in DAV
Diffstat (limited to 'archiva-modules/archiva-base')
-rw-r--r--archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/StreamingChecksum.java65
1 files changed, 65 insertions, 0 deletions
diff --git a/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/StreamingChecksum.java b/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/StreamingChecksum.java
new file mode 100644
index 000000000..5e4aa7cfd
--- /dev/null
+++ b/archiva-modules/archiva-base/archiva-checksum/src/main/java/org/apache/archiva/checksum/StreamingChecksum.java
@@ -0,0 +1,65 @@
+package org.apache.archiva.checksum;
+
+/*
+ * 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.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.util.List;
+import java.util.stream.Collectors;
+
+/**
+ *
+ * Class that handles checksums with streams.
+ *
+ * @author Martin Stockhammer <martin_s@apache.org>
+ */
+public class StreamingChecksum
+{
+ static final int BUFFER_SIZE=4096;
+
+ public static void updateChecksums( InputStream input, List<ChecksumAlgorithm> algorithms, List<OutputStream> checksumOutput) {
+ List<Checksum> checksums = algorithms.stream().map(a -> new Checksum( a )).collect( Collectors.toList());
+ byte[] buffer = new byte[BUFFER_SIZE];
+ int read;
+ try
+ {
+ while ( ( read = input.read( buffer ) ) >= 0 )
+ {
+ for (Checksum cs : checksums ) {
+ cs.update( buffer, 0, read );
+ }
+ }
+ int minIndex = Math.min(algorithms.size(), checksums.size());
+ for (int csIndex = 0; csIndex<minIndex; csIndex++) {
+ Checksum cs = checksums.get(csIndex);
+ cs.finish();
+ OutputStream os =checksumOutput.get(csIndex);
+ if (os!=null)
+ {
+ os.write( cs.getChecksum( ).getBytes( ) );
+ }
+ }
+
+ } catch ( IOException e ) {
+
+ }
+ }
+}