diff --git a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/StateHolder.java b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/StateHolder.java
new file mode 100644
index 000000000..308160dc4
--- /dev/null
+++ b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/StateHolder.java
@@ -0,0 +1,41 @@
+/*
+ * ====================================================================
+ * 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.
+ * ====================================================================
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals on behalf of the Apache Software Foundation. For more
+ * information on the Apache Software Foundation, please see
+ * .
+ *
+ */
+package org.apache.hc.client5.http.impl;
+
+import org.apache.hc.core5.annotation.Internal;
+
+/**
+ * @since 5.4
+ */
+@Internal
+public interface StateHolder {
+
+ T store();
+
+ void restore(T state);
+
+}
diff --git a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/auth/BasicAuthCache.java b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/auth/BasicAuthCache.java
index 7450a401f..659fe532b 100644
--- a/httpclient5/src/main/java/org/apache/hc/client5/http/impl/auth/BasicAuthCache.java
+++ b/httpclient5/src/main/java/org/apache/hc/client5/http/impl/auth/BasicAuthCache.java
@@ -26,12 +26,6 @@
*/
package org.apache.hc.client5.http.impl.auth;
-import java.io.ByteArrayInputStream;
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
-import java.io.ObjectInputStream;
-import java.io.ObjectOutputStream;
-import java.io.Serializable;
import java.util.Locale;
import java.util.Map;
import java.util.Objects;
@@ -41,6 +35,7 @@ import org.apache.hc.client5.http.SchemePortResolver;
import org.apache.hc.client5.http.auth.AuthCache;
import org.apache.hc.client5.http.auth.AuthScheme;
import org.apache.hc.client5.http.impl.DefaultSchemePortResolver;
+import org.apache.hc.client5.http.impl.StateHolder;
import org.apache.hc.core5.annotation.Contract;
import org.apache.hc.core5.annotation.ThreadingBehavior;
import org.apache.hc.core5.http.HttpHost;
@@ -123,7 +118,19 @@ public class BasicAuthCache implements AuthCache {
}
}
- private final Map map;
+ static class AuthData {
+
+ final Class extends AuthScheme> clazz;
+ final Object state;
+
+ public AuthData(final Class extends AuthScheme> clazz, final Object state) {
+ this.clazz = clazz;
+ this.state = state;
+ }
+
+ }
+
+ private final Map map;
private final SchemePortResolver schemePortResolver;
/**
@@ -145,6 +152,10 @@ public class BasicAuthCache implements AuthCache {
return new Key(scheme, authority.getHostName(), schemePortResolver.resolve(scheme, authority), pathPrefix);
}
+ private AuthData data(final AuthScheme authScheme) {
+ return new AuthData(authScheme.getClass(), ((StateHolder) authScheme).store());
+ }
+
@Override
public void put(final HttpHost host, final AuthScheme authScheme) {
put(host, null, authScheme);
@@ -166,42 +177,28 @@ public class BasicAuthCache implements AuthCache {
if (authScheme == null) {
return;
}
- if (authScheme instanceof Serializable) {
- try {
- final ByteArrayOutputStream buf = new ByteArrayOutputStream();
- try (final ObjectOutputStream out = new ObjectOutputStream(buf)) {
- out.writeObject(authScheme);
- }
- this.map.put(key(host.getSchemeName(), host, pathPrefix), buf.toByteArray());
- } catch (final IOException ex) {
- if (LOG.isWarnEnabled()) {
- LOG.warn("Unexpected I/O error while serializing auth scheme", ex);
- }
- }
+ if (authScheme instanceof StateHolder) {
+ this.map.put(key(host.getSchemeName(), host, pathPrefix), data(authScheme));
} else {
if (LOG.isDebugEnabled()) {
- LOG.debug("Auth scheme {} is not serializable", authScheme.getClass());
+ LOG.debug("Auth scheme {} cannot be cached", authScheme.getClass());
}
}
}
@Override
+ @SuppressWarnings("unchecked")
public AuthScheme get(final HttpHost host, final String pathPrefix) {
Args.notNull(host, "HTTP host");
- final byte[] bytes = this.map.get(key(host.getSchemeName(), host, pathPrefix));
- if (bytes != null) {
+ final AuthData authData = this.map.get(key(host.getSchemeName(), host, pathPrefix));
+ if (authData != null) {
try {
- final ByteArrayInputStream buf = new ByteArrayInputStream(bytes);
- try (final ObjectInputStream in = new ObjectInputStream(buf)) {
- return (AuthScheme) in.readObject();
- }
- } catch (final IOException ex) {
+ final AuthScheme authScheme = authData.clazz.newInstance();
+ ((StateHolder