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

org.eclipse.jetty.util.resource.MemoryResource Maven / Gradle / Ivy

There is a newer version: 12.1.0.alpha0
Show newest version
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.util.resource;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.nio.channels.Channels;
import java.nio.channels.ReadableByteChannel;
import java.nio.file.Path;
import java.time.Instant;
import java.util.Collection;
import java.util.List;
import java.util.Objects;

import org.eclipse.jetty.util.FileID;
import org.eclipse.jetty.util.IO;

/**
 * 

An in memory Resource created from a {@link URL}

*/ public class MemoryResource extends Resource { private final URI _uri; private final Instant _created = Instant.now(); private final byte[] _bytes; MemoryResource(URL url) { try { _uri = Objects.requireNonNull(url).toURI(); try (InputStream in = url.openStream()) { _bytes = IO.readBytes(in); } } catch (IOException | URISyntaxException e) { throw new RuntimeException(e); } } public byte[] getBytes() { return _bytes; } @Override public Path getPath() { // memory resource has no path (it would be problematic for mounting reasons as well) return null; } @Override public boolean isDirectory() { return false; } @Override public boolean isReadable() { return true; } @Override public boolean isContainedIn(Resource container) { // memory resource can never be contained in another memory resource return false; } @Override public URI getURI() { return _uri; } @Override public String getName() { return _uri.toASCIIString(); } @Override public String getFileName() { return FileID.getFileName(_uri); } @Override public Instant lastModified() { return _created; } @Override public long length() { return _bytes.length; } @Override public Resource resolve(String subUriPath) { return null; } @Override public InputStream newInputStream() throws IOException { return new ByteArrayInputStream(_bytes); } @Override public ReadableByteChannel newReadableByteChannel() throws IOException { return Channels.newChannel(newInputStream()); } @Override public boolean exists() { return true; } @Override public List list() { return List.of(); // empty } @Override public Collection getAllResources() { return List.of(); // empty } @Override public String toString() { return getName(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy