OpenSPCoop2Message_mimeMultipart_impl.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.message.rest;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import org.openspcoop2.message.OpenSPCoop2MessageFactory;
import org.openspcoop2.message.OpenSPCoop2RestMimeMultipartMessage;
import org.openspcoop2.message.exception.MessageException;
import org.openspcoop2.utils.io.DumpByteArrayOutputStream;
/**
* Implementazione dell'OpenSPCoop2Message utilizzabile per messaggi multipart
*
* @author Andrea Poli (poli@link.it)
* @author $Author$
* @version $Rev$, $Date$
*/
public class OpenSPCoop2Message_mimeMultipart_impl extends AbstractBaseOpenSPCoop2RestMessage<MultipartContent> implements OpenSPCoop2RestMimeMultipartMessage {
public OpenSPCoop2Message_mimeMultipart_impl(OpenSPCoop2MessageFactory messageFactory) {
super(messageFactory);
}
public OpenSPCoop2Message_mimeMultipart_impl(OpenSPCoop2MessageFactory messageFactory, InputStream is,String contentType) throws MessageException {
super(messageFactory, is, contentType);
}
@Override
protected MultipartContent buildContent() throws MessageException{
try{
return new MultipartContent(this._getInputStream(), this.contentType);
}catch(Exception e){
throw new MessageException(e.getMessage(),e);
}finally {
try {
this._getInputStream().close();
}catch(Exception eClose) {
// close
}
}
}
@Override
protected MultipartContent buildContent(DumpByteArrayOutputStream contentBuffer) throws MessageException{
return new MultipartContent(contentBuffer, this.contentType);
}
@Override
protected String buildContentAsString() throws MessageException{
try{
ByteArrayOutputStream bout = new ByteArrayOutputStream();
this.serializeContent(bout, false);
bout.flush();
bout.close();
return bout.toString(this.contentTypeCharsetName);
}catch(Exception e){
throw new MessageException(e.getMessage(),e);
}
}
@Override
protected byte[] buildContentAsByteArray() throws MessageException{
try{
ByteArrayOutputStream bout = new ByteArrayOutputStream();
this.serializeContent(bout, false);
bout.flush();
bout.close();
return bout.toByteArray();
}catch(Exception e){
throw new MessageException(e.getMessage(),e);
}
}
@Override
protected void serializeContent(OutputStream os, boolean consume) throws MessageException {
try{
this.content.writeTo(os, consume);
}catch(Exception e){
throw new MessageException(e.getMessage(),e);
}
}
}