net.swas.explorer.httpprofile.HttpRequestParser.java Source code

Java tutorial

Introduction

Here is the source code for net.swas.explorer.httpprofile.HttpRequestParser.java

Source

/*
 * This file is part of WebSiren.
 *
 *  WebSiren is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
    
 *  WebSiren 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 WebSiren.  If not, see <http://www.gnu.org/licenses/>.
 */
package net.swas.explorer.httpprofile;

import java.io.IOException;

import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpRequestFactory;
import org.apache.http.io.HttpMessageParser;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.params.HttpParams;

/**
 *This class is responsible for creating HTTPRequestParser instance.
 * @author SWASS Team
 */
public class HttpRequestParser {

    /**
     * Creates HttpMessageParser type object for HTTP Request parsing
    * @param buffer created from {@link FileInputBuffer}
    * @param requestFactory
    * @param params
    * @return HttpMessageParser
    */
    public static HttpMessageParser createRequestParser(final SessionInputBuffer buffer,
            final HttpRequestFactory requestFactory, final HttpParams params) {

        return new DefaultHttpRequestParser(buffer, null, requestFactory, params);

    }

    /**
     * Responsible for parsing HTTP Request
    * @param requestParser
    * @return HTTP request 
    * @throws IOException
    * @throws HttpException
    */
    public static HttpRequest receiveRequestHeaderByFile(HttpMessageParser requestParser)
            throws IOException, HttpException {

        HttpRequest request = (HttpRequest) requestParser.parse();
        return request;

    }
}