All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.globus.io.gass.client.internal.GASSProtocol Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 1999-2006 University of Chicago
 *
 * 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 org.globus.io.gass.client.internal;

import org.globus.util.http.HTTPProtocol;

/** This is a pure Java implementation of the Globus GASS protocol. Normally
 * one does not need to use this class directly but instead uses the Client
 * class.
 */
public class GASSProtocol {

    /** the default user agent string  */
    private static final String USER_AGENT = "Java-Globus-GASS-HTTP/1.1.0";

    /** the default gass append url   */
    private static final String APPEND_URI = "/globus-bins/GASSappend?";

    private static final String TYPE       = "application/octet-stream";

    /** This method concatenates a properly formatted header for performing
     * Globus Gass GETs with the given information.
     *
     * @param path the path of the file to get
     * @param host the host which contains the file to get
     *
     * @return String the properly formatted header to be sent to a
     * gass server
     */
    public static String GET(String path, String host) {
	return HTTPProtocol.createGETHeader("/" + path, host, USER_AGENT);
    }

    /** This method concatenates a properly formatted header for performing
     * Globus Gass PUTs with the given information.
     *
     * @param path the path of the remote file to put to
     * @param host the host of the remote file to put to
     * @param length the length of data which will be sent (the size of the file)
     * @param append append mode
     *
     * @return String the properly formatted header to be sent to a
     * gass server
     */
    public static String PUT(String path, String host, long length, boolean append) {
	String newPath = null;

	if (append) {
	    newPath = APPEND_URI + "/" + path;
	} else {
	    newPath = "/" + path;
	}

	return HTTPProtocol.createPUTHeader(newPath, host, USER_AGENT,
					    TYPE, length, append);
    }

    public static String SHUTDOWN(String path, String host) {
        return HTTPProtocol.createPUTHeader(path, host, USER_AGENT,
                                            TYPE, 0, false);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy