Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2013-2017 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://oss.oracle.com/licenses/CDDL+GPL-1.1
* or LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.enterprise.admin.remote.writer;
import com.sun.enterprise.admin.remote.ParamsWithPayload;
import com.sun.enterprise.util.StringUtils;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.net.HttpURLConnection;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
import org.glassfish.api.ActionReport;
import org.glassfish.api.admin.ParameterMap;
import org.glassfish.api.admin.Payload;
import org.glassfish.api.admin.Payload.Part;
/**
*
* @author martinmares
*/
public class MultipartProprietaryWriter implements ProprietaryWriter {
public static interface ContentTypeWriter {
void writeContentType(String firstPart, String secondPart, String boundary);
}
protected static final String BOUNDARY_BASE = "admfrmwrk_payload_";
protected static final AtomicInteger boundary_int = new AtomicInteger();
protected static final String EOL = "\r\n";
protected static final String BOUNDERY_DELIMIT = "--";
@Override
public boolean isWriteable(final Object entity) {
if (entity instanceof ParamsWithPayload) {
ParamsWithPayload pwp = (ParamsWithPayload) entity;
return pwp.getPayloadOutbound() != null && pwp.getPayloadOutbound().size() > 0;
} else if (entity instanceof Payload.Outbound) {
return ((Payload.Outbound) entity).size() > 0;
}
return false;
}
@Override
public void writeTo(final Object entity,
final HttpURLConnection urlConnection) throws IOException {
Payload.Outbound payload = null;
ParameterMap parameters = null;
ActionReport ar = null;
if (entity instanceof ParamsWithPayload) {
ParamsWithPayload pwp = (ParamsWithPayload) entity;
payload = pwp.getPayloadOutbound();
parameters = pwp.getParameters();
ar = pwp.getActionReport();
} else if (entity instanceof Payload.Outbound) {
payload = (Payload.Outbound) entity;
}
writeTo(payload, parameters, ar,
new OutputStream() {
private OutputStream delegate;
private OutputStream getDelegate() throws IOException {
if (delegate == null) {
delegate = urlConnection.getOutputStream();
}
return delegate;
}
@Override
public void write(int b) throws IOException {
getDelegate().write(b);
}
@Override
public void write(byte b[]) throws IOException {
getDelegate().write(b);
}
@Override
public void write(byte b[], int off, int len) throws IOException {
getDelegate().write(b, off, len);
}
@Override
public void flush() throws IOException {
getDelegate().flush();
}
@Override
public void close() throws IOException {
getDelegate().close();
}
},
new ContentTypeWriter() {
@Override
public void writeContentType(String firstPart, String secondPart, String boundary) {
StringBuilder ct = new StringBuilder();
ct.append(firstPart).append('/').append(secondPart);
if (boundary != null) {
ct.append("; boundary=").append(boundary);
}
urlConnection.addRequestProperty("Content-type", ct.toString());
urlConnection.setRequestProperty("MIME-Version", "1.0");
}
});
}
protected void writeParam(final Writer writer,
final OutputStream underOS,
final String boundary,
final String key,
final String value) throws IOException {
// //Inrtroducing boundery
// if (isFirst) {
// isFirst = false;
// } else {
// writer.write(EOL);
// }
multiWrite(writer, BOUNDERY_DELIMIT, boundary, EOL);
//Headers
//Headers - Disposition
multiWrite(writer, "Content-Disposition: form-data; name=\"", key, "\"", EOL);
//Data
multiWrite(writer, EOL, value, EOL);
writer.flush();
}
protected void writePayloadPart(final Writer writer,
final OutputStream underOS,
final String boundary,
final Part part) throws IOException {
// //Inrtroducing boundery
// if (isFirst) {
// isFirst = false;
// } else {
// writer.write(EOL);
// }
multiWrite(writer, BOUNDERY_DELIMIT, boundary, EOL);
//Headers
multiWrite(writer, "Content-Disposition: file; name=\"", part.getName(), "\"; filename=\"", part.getName(), "\"", EOL);
if (StringUtils.ok(part.getContentType())) {
multiWrite(writer, "Content-Type: ", part.getContentType(), EOL);
}
for (Map.Entry