All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foreach.across.modules.filemanager.utils.FileManagerUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 the original author or authors
 *
 * Licensed 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.
 */

package com.foreach.across.modules.filemanager.utils;

import lombok.experimental.UtilityClass;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.channels.Channels;
import java.nio.channels.FileChannel;
import java.nio.channels.ReadableByteChannel;
import java.nio.channels.WritableByteChannel;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;

@UtilityClass
public class FileManagerUtils
{
	public static void fastCopy( InputStream original, File target ) throws IOException {
		try (FileChannel output = FileChannel.open( Paths.get( target.toURI() ), StandardOpenOption.WRITE )) {
			try (ReadableByteChannel input = Channels.newChannel( original )) {
				channelCopy( input, output );
			}
		}
	}

	public static void fastCopy( File original, File target ) throws IOException {
		try (FileChannel output = FileChannel.open( Paths.get( target.toURI() ), StandardOpenOption.WRITE )) {
			try (ReadableByteChannel input = FileChannel.open( Paths.get( original.toURI() ),
			                                                   StandardOpenOption.READ )) {
				channelCopy( input, output );
			}
		}
	}

	public static void channelCopy( ReadableByteChannel src, WritableByteChannel dest ) throws IOException {
		final ByteBuffer buffer = ByteBuffer.allocateDirect( 16 * 1024 );
		while ( src.read( buffer ) != -1 ) {
			// prepare the buffer to be drained
			buffer.flip();
			// write to the channel, may block
			dest.write( buffer );
			// If partial transfer, shift remainder down
			// If buffer is empty, same as doing clear()
			buffer.compact();
		}
		// EOF will leave buffer in fill state
		buffer.flip();
		// make sure the buffer is fully drained.
		while ( buffer.hasRemaining() ) {
			dest.write( buffer );
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy