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

org.apache.wicket.util.resource.FileSystemResourceStream Maven / Gradle / Ivy

Go to download

A module that creates a .jar from the classes in wicket, wicket-util and wicket-request modules in order to create a valid OSGi bundle of the wicket framework.

There is a newer version: 10.1.1
Show newest version
/*
 * 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.
 */
package org.apache.wicket.util.resource;

import java.io.IOException;
import java.io.InputStream;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.attribute.BasicFileAttributes;
import java.nio.file.attribute.FileTime;

import org.apache.wicket.util.file.File;
import org.apache.wicket.util.lang.Args;
import org.apache.wicket.util.lang.Bytes;
import org.apache.wicket.util.time.Time;

/**
 * A FileSystemResourceStream is an IResourceStream implementation for Java NIO paths.
 * 
 * @see org.apache.wicket.util.resource.IResourceStream
 * @see org.apache.wicket.util.watch.IModifiable
 * @author Tobias Soloschenko
 */
public class FileSystemResourceStream extends AbstractResourceStream
	implements
		IFixedLocationResourceStream
{
	private static final long serialVersionUID = 1L;

	/** Any associated path */
	private final Path path;

	/** Resource stream */
	private transient InputStream inputStream;

	/**
	 * Constructor.
	 * 
	 * @param path
	 *            {@link Path} containing resource
	 */
	public FileSystemResourceStream(final Path path)
	{
		Args.notNull(path, "path");
		this.path = path;
	}

	/**
	 * Constructor.
	 * 
	 * @param file
	 *            {@link java.io.File} containing resource
	 */
	public FileSystemResourceStream(final java.io.File file)
	{
		Args.notNull(file, "file");
		this.path = file.toPath();
	}

	/**
	 * Constructor.
	 * 
	 * @param file
	 *            {@link File} containing resource
	 */
	public FileSystemResourceStream(final File file)
	{
		Args.notNull(file, "file");
		this.path = file.toPath();
	}

	@Override
	public InputStream getInputStream() throws ResourceStreamNotFoundException
	{
		if (inputStream == null)
		{
			try
			{
				inputStream = Files.newInputStream(path);
			}
			catch (IOException e)
			{
				throw new ResourceStreamNotFoundException("Input stream of path " + path +
					" could not be acquired", e);
			}
		}
		return inputStream;
	}

	@Override
	public void close() throws IOException
	{
		if (inputStream != null)
		{
			inputStream.close();
			inputStream = null;
		}
	}

	@Override
	public String getContentType()
	{
		try
		{
			String contentType = Files.probeContentType(path);
			if (contentType == null)
			{
				contentType = URLConnection.getFileNameMap().getContentTypeFor(
					path.getFileName().toString());
			}
			return contentType;
		}
		catch (IOException e)
		{
			throw new RuntimeException("Content type of path " + path + " could not be acquired", e);
		}
	}

	/**
	 * @return The path this resource resides in, if any.
	 */
	public final Path getPath()
	{
		return path;
	}

	@Override
	public Time lastModifiedTime()
	{
		try
		{
			BasicFileAttributes attributes = Files.readAttributes(path, BasicFileAttributes.class);
			FileTime lastModifiedTime = attributes.lastModifiedTime();
			long millis = lastModifiedTime.toMillis();
			return Time.millis(millis);
		}
		catch (IOException e)
		{
			throw new RuntimeException("Modification time of path " + path +
				" could not be acquired", e);
		}
	}

	@Override
	public Bytes length()
	{
		try
		{
			BasicFileAttributes attributes = Files.readAttributes(path, BasicFileAttributes.class);
			long size = attributes.size();
			return Bytes.bytes(size);
		}
		catch (IOException e)
		{
			throw new RuntimeException("Length of path " + path + " could not be acquired", e);
		}
	}

	@Override
	public String locationAsString()
	{
		return path.toString();
	}

	@Override
	public String toString()
	{
		return locationAsString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy