blob: 37f0c0188e43d63cf9f3788e70fcf0650d9f268c [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.camel.component.olingo4;
import java.util.HashMap;
import java.util.Map;
import org.apache.camel.AsyncCallback;
import org.apache.camel.Exchange;
import org.apache.camel.RuntimeCamelException;
import org.apache.camel.component.olingo4.api.Olingo4ResponseHandler;
import org.apache.camel.component.olingo4.internal.Olingo4ApiName;
import org.apache.camel.component.olingo4.internal.Olingo4Constants;
import org.apache.camel.component.olingo4.internal.Olingo4PropertiesHelper;
import org.apache.camel.support.component.AbstractApiProducer;
import org.apache.camel.support.component.ApiMethod;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* The Olingo4 producer.
*/
public class Olingo4Producer extends AbstractApiProducer<Olingo4ApiName, Olingo4Configuration> {
private static final Logger LOG = LoggerFactory.getLogger(Olingo4Producer.class);
private Olingo4Index resultIndex;
public Olingo4Producer(Olingo4Endpoint endpoint) {
super(endpoint, Olingo4PropertiesHelper.getHelper());
}
@Override
public boolean process(final Exchange exchange, final AsyncCallback callback) {
// properties for method arguments
final Map<String, Object> properties = new HashMap<>();
properties.putAll(endpoint.getEndpointProperties());
propertiesHelper.getExchangeProperties(exchange, properties);
// let the endpoint and the Producer intercept properties
endpoint.interceptProperties(properties);
interceptProperties(properties);
// create response handler
properties.put(Olingo4Endpoint.RESPONSE_HANDLER_PROPERTY, new Olingo4ResponseHandler<Object>() {
@Override
public void onResponse(Object response, Map<String, String> responseHeaders) {
if (resultIndex != null) {
response = resultIndex.filterResponse(response);
}
// producer returns a single response, even for methods with
// List return types
exchange.getOut().setBody(response);
// copy headers
exchange.getOut().setHeaders(exchange.getIn().getHeaders());
// Add http response headers
exchange.getOut().setHeader(Olingo4Constants.PROPERTY_PREFIX + Olingo4Constants.RESPONSE_HTTP_HEADERS, responseHeaders);
interceptResult(response, exchange);
callback.done(false);
}
@Override
public void onException(Exception ex) {
exchange.setException(ex);
callback.done(false);
}
@Override
public void onCanceled() {
exchange.setException(new RuntimeCamelException("OData HTTP Request cancelled!"));
callback.done(false);
}
});
// decide which method to invoke
final ApiMethod method = findMethod(exchange, properties);
if (method == null) {
// synchronous failure
callback.done(true);
return true;
}
if (LOG.isDebugEnabled()) {
LOG.debug("Invoking operation {} with {}", method.getName(), properties.keySet());
}
try {
doInvokeMethod(method, properties);
} catch (Throwable t) {
exchange.setException(RuntimeCamelException.wrapRuntimeCamelException(t));
callback.done(true);
return true;
}
return false;
}
@Override
public void interceptProperties(Map<String, Object> properties) {
//
// If we have a filterAlreadySeen property then initialise the filter
// index
//
Object value = properties.get(Olingo4Endpoint.FILTER_ALREADY_SEEN);
if (value == null) {
return;
}
//
// Initialise the index if not already and if filterAlreadySeen has been
// set
//
if (Boolean.parseBoolean(value.toString()) && resultIndex == null) {
resultIndex = new Olingo4Index();
}
}
@Override
public void interceptResult(Object result, Exchange resultExchange) {
if (resultIndex == null) {
return;
}
resultIndex.index(result);
}
}