blob: 01fff114b0c955789c91aaaef226f178bd8d1b07 [file] [log] [blame]
// ***************************************************************************************************************************
// * 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. *
// ***************************************************************************************************************************
package org.apache.juneau.rest;
import static org.apache.juneau.rest.HttpRuntimeException.*;
import java.lang.reflect.*;
import org.apache.juneau.*;
import org.apache.juneau.http.exception.*;
import org.apache.juneau.mstat.*;
import org.apache.juneau.reflect.*;
import org.apache.juneau.utils.*;
/**
* A specialized invoker for methods that are called during a servlet request.
*/
public class RestMethodInvoker extends MethodInvoker {
private final RestParam[] params;
/**
* Constructor.
*
* @param m The method being wrapped.
* @param params The parameter resolvers.
* @param stats The instrumentor.
*/
public RestMethodInvoker(Method m, RestParam[] params, MethodExecStats stats) {
super(m, stats);
this.params = params;
}
/**
* Invokes this method from the specified {@link RestCall}.
*
* @param call The REST call.
* @param resource The REST resource object.
* @return The results of the call.
* @throws HttpException If an error occurred during either parameter resolution or method invocation.
*/
public Object invokeFromCall(RestCall call, Object resource) throws HttpException {
Object[] args = new Object[params.length];
for (int i = 0; i < params.length; i++) {
ParamInfo pi = inner().getParam(i);
try {
args[i] = params[i].resolve(call);
} catch (Exception e) {
throw toHttpException(e, BadRequest.class, "Could not resolve parameter {0} of type ''{1}'' on method ''{2}''.", i, pi.getParameterType(), getFullName());
}
}
try {
return invoke(resource, args);
} catch (ExecutableException e) {
throw toHttpException(e.unwrap(), InternalServerError.class, "Method ''{0}'' threw an unexpected exception.", getFullName());
}
}
}