blob: 914bf168e65c9bfcef53164fb7eeac5f2e5d1c88 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* 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.android.jack.server.tasks;
import com.android.jack.server.JackHttpServer;
import com.android.jack.server.JackHttpServer.ServerClosedException;
import org.simpleframework.http.Request;
import org.simpleframework.http.Response;
import org.simpleframework.http.Status;
import org.simpleframework.http.core.Container;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.annotation.Nonnull;
abstract class SynchronousServiceTask implements Container {
@Nonnull
private static final Logger logger = Logger.getLogger(SynchronousServiceTask.class.getName());
@Nonnull
protected final JackHttpServer jackServer;
SynchronousServiceTask(@Nonnull JackHttpServer jackServer) {
this.jackServer = jackServer;
}
@Override
public void handle(Request request, Response response) {
try {
long taskId = jackServer.startingServiceTask();
handle(taskId, request, response);
} catch (ServerClosedException e) {
response.setContentLength(0);
response.setStatus(Status.SERVICE_UNAVAILABLE);
} catch (Error | RuntimeException e) {
logger.log(Level.SEVERE, e.getMessage(), e);
response.setContentLength(0);
response.setStatus(Status.INTERNAL_SERVER_ERROR);
} finally {
try {
response.close();
} catch (IOException e) {
logger.log(Level.SEVERE, "Exception during close of request: " + request.toString(), e);
}
jackServer.endingServiceTask();
}
}
protected abstract void handle(long taskId, Request request, Response response);
}