
com.google.cloud.functions.invoker.HttpFunctionExecutor Maven / Gradle / Ivy
// Copyright 2020 Google LLC
//
// 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 com.google.cloud.functions.invoker;
import com.google.cloud.functions.HttpFunction;
import com.google.cloud.functions.invoker.http.HttpRequestImpl;
import com.google.cloud.functions.invoker.http.HttpResponseImpl;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/** Executes the user's method. */
public class HttpFunctionExecutor extends HttpServlet {
private static final Logger logger = Logger.getLogger("com.google.cloud.functions.invoker");
private final HttpFunction function;
private HttpFunctionExecutor(HttpFunction function) {
this.function = function;
}
/**
* Makes a {@link HttpFunctionExecutor} for the given class.
*
* @throws RuntimeException if either the given class does not implement {@link HttpFunction}
* or we are unable to construct an instance using its no-arg constructor.
*/
public static HttpFunctionExecutor forClass(Class> functionClass) {
if (!HttpFunction.class.isAssignableFrom(functionClass)) {
throw new RuntimeException(
"Class " + functionClass.getName() + " does not implement "
+ HttpFunction.class.getName());
}
Class extends HttpFunction> httpFunctionClass = functionClass.asSubclass(HttpFunction.class);
try {
HttpFunction httpFunction = httpFunctionClass.getConstructor().newInstance();
return new HttpFunctionExecutor(httpFunction);
} catch (ReflectiveOperationException e) {
throw new RuntimeException(
"Could not construct an instance of " + functionClass.getName() + ": " + e, e);
}
}
/** Executes the user's method, can handle all HTTP type methods. */
@Override
public void service(HttpServletRequest req, HttpServletResponse res) {
HttpRequestImpl reqImpl = new HttpRequestImpl(req);
HttpResponseImpl respImpl = new HttpResponseImpl(res);
ClassLoader oldContextLoader = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(function.getClass().getClassLoader());
function.service(reqImpl, respImpl);
} catch (Throwable t) {
logger.log(Level.SEVERE, "Failed to execute " + function.getClass().getName(), t);
res.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
} finally {
Thread.currentThread().setContextClassLoader(oldContextLoader);
try {
// We can't use HttpServletResponse.flushBuffer() because we wrap the PrintWriter
// returned by HttpServletResponse in our own BufferedWriter to match our API.
// So we have to flush whichever of getWriter() or getOutputStream() works.
try {
respImpl.getOutputStream().flush();
} catch (IllegalStateException e) {
respImpl.getWriter().flush();
}
} catch (IOException e) {
// Too bad, can't flush.
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy