org.openqa.selenium.remote.http.Contents Maven / Gradle / Ivy
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC 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.openqa.selenium.remote.http;
import static java.nio.charset.StandardCharsets.UTF_8;
import com.google.common.io.ByteStreams;
import com.google.common.io.FileBackedOutputStream;
import org.openqa.selenium.internal.Require;
import org.openqa.selenium.json.Json;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.UncheckedIOException;
import java.nio.charset.Charset;
import java.util.function.Supplier;
public class Contents {
private static final Json JSON = new Json();
private Contents() {
// Utility class
}
public static Supplier empty() {
return bytes(new byte[0]);
}
public static Supplier utf8String(CharSequence value) {
Require.nonNull("Value to return", value);
return string(value, UTF_8);
}
public static Supplier string(CharSequence value, Charset charset) {
Require.nonNull("Value to return", value);
Require.nonNull("Character set", charset);
return bytes(value.toString().getBytes(charset));
}
public static Supplier bytes(byte[] bytes) {
Require.nonNull("Bytes to return", bytes, "may be empty");
return () -> new ByteArrayInputStream(bytes);
}
public static byte[] bytes(Supplier supplier) {
Require.nonNull("Supplier of input", supplier);
try (InputStream is = supplier.get();
ByteArrayOutputStream bos = new ByteArrayOutputStream()) {
ByteStreams.copy(is, bos);
return bos.toByteArray();
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
public static String utf8String(Supplier supplier) {
return string(supplier, UTF_8);
}
public static String string(Supplier supplier, Charset charset) {
Require.nonNull("Supplier of input", supplier);
Require.nonNull("Character set", charset);
return new String(bytes(supplier), charset);
}
public static String string(HttpMessage> message) {
return string(message.getContent(), message.getContentEncoding());
}
public static Reader utf8Reader(Supplier supplier) {
Require.nonNull("Supplier", supplier);
return reader(supplier, UTF_8);
}
public static Reader reader(Supplier supplier, Charset charset) {
Require.nonNull("Supplier of input", supplier);
Require.nonNull("Character set", charset);
return new InputStreamReader(supplier.get(), charset);
}
public static Reader reader(HttpMessage> message) {
return reader(message.getContent(), message.getContentEncoding());
}
/**
* @return an {@link InputStream} containing the object converted to a UTF-8 JSON string.
*/
public static Supplier asJson(Object obj) {
return utf8String(JSON.toJson(obj));
}
public static Supplier memoize(Supplier delegate) {
return new MemoizedSupplier(delegate);
}
private static final class MemoizedSupplier implements Supplier {
private volatile boolean initialized;
private volatile FileBackedOutputStream fos;
private Supplier delegate;
private MemoizedSupplier(Supplier delegate) {
this.delegate = delegate;
}
@Override
public InputStream get() {
if (!initialized) {
synchronized (this) {
if (!initialized) {
try (InputStream is = delegate.get()) {
this.fos = new FileBackedOutputStream(3 * 1024 * 1024, true);
ByteStreams.copy(is, fos);
initialized = true;
} catch (IOException e) {
throw new UncheckedIOException(e);
} finally {
try {
this.fos.close();
} catch (IOException ignore) {
}
}
}
}
}
try {
return Require.state("Source", fos.asByteSource()).nonNull().openBufferedStream();
} catch (IOException e) {
throw new UncheckedIOException(e);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy