/* * Copyright 2012 Jason Miller * * 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 jj.http.server.resource; import java.io.IOException; import java.io.RandomAccessFile; import java.nio.channels.FileChannel; import java.nio.file.Path; import javax.inject.Inject; import jj.http.server.TransferableResource; import jj.resource.AbstractFileResource; import jj.resource.ResourceThread; /** * Basic representation of a file. no assumptions are made about content, and the bytes are * not loaded. Mainly a bridge from filesystem elements to the serving system * * @author jason * */ public class StaticResource extends AbstractFileResource<Void> implements TransferableResource { @Inject StaticResource( final Dependencies dependencies, final Path path ) throws IOException { super(dependencies, path, false); } @Override public String contentType() { return settings.contentType(); } @Override public boolean compressible() { return settings.compressible(); } @Override @ResourceThread public FileChannel fileChannel() throws IOException { return FileChannel.open(path); } @Override @ResourceThread public RandomAccessFile randomAccessFile() throws IOException { return new RandomAccessFile(path.toFile(), "r"); } }