com.sdl.odata.unmarshaller.batch.BatchUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata_renderer Show documentation
Show all versions of odata_renderer Show documentation
Tridion OData Framework Renderer Implementation
/**
* Copyright (c) 2014 All Rights Reserved by the SDL Group.
*
* 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.sdl.odata.unmarshaller.batch;
import com.sdl.odata.api.ODataException;
import com.sdl.odata.api.parser.ODataParser;
import com.sdl.odata.api.service.MediaType;
import com.sdl.odata.api.service.ODataRequestContext;
import com.sdl.odata.api.service.ODataRequestContextUtil;
import com.sdl.odata.unmarshaller.AbstractUnmarshaller;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import static com.sdl.odata.renderer.AbstractRenderer.DEFAULT_SCORE;
/**
* The OData Batch Requests Unmarshaller Used In Unmarshalling OData Batch Requests.
*/
@Component
public class BatchUnmarshaller extends AbstractUnmarshaller {
private static final Logger LOG = LoggerFactory.getLogger(BatchUnmarshaller.class);
private static final int BATCH_OPERATION_SCORE = 50;
@Autowired
private ODataParser uriParser;
@Override
public int score(ODataRequestContext requestContext) {
if (isRightMethodForUnmarshall(requestContext.getRequest()) &&
ODataRequestContextUtil.isBatchOperation(requestContext)) {
MediaType contentType = requestContext.getRequest().getContentType();
int score = BATCH_OPERATION_SCORE + super.score(contentType, MediaType.MULTIPART);
LOG.debug("Matched MultipartUnmarshaller: {} with score: {}", requestContext.getRequest(), score);
return score;
}
return DEFAULT_SCORE;
}
@Override
public Object unmarshall(ODataRequestContext requestContext) throws ODataException {
LOG.info("Multipart unmarshaller invoked with {}", requestContext.getRequest());
return new ODataBatchParser(requestContext, uriParser).getODataEntity();
}
}