2013-12-07 12:51:27 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
2014-01-01 02:37:12 +00:00
|
|
|
Copyright (c) 2013-2014 winlin
|
2013-12-07 12:51:27 +00:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-03-02 13:49:09 +00:00
|
|
|
#ifndef SRS_APP_HTTP_HPP
|
|
|
|
#define SRS_APP_HTTP_HPP
|
2013-12-07 12:51:27 +00:00
|
|
|
|
|
|
|
/*
|
2014-03-02 13:49:09 +00:00
|
|
|
#include <srs_app_http.hpp>
|
2013-12-07 12:51:27 +00:00
|
|
|
*/
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
#ifdef SRS_HTTP_PARSER
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <http_parser.h>
|
|
|
|
|
2014-03-02 13:49:09 +00:00
|
|
|
#include <srs_app_st.hpp>
|
2014-03-01 02:14:25 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
class SrsBuffer;
|
|
|
|
class SrsRequest;
|
|
|
|
class SrsSocket;
|
2014-04-01 07:42:27 +00:00
|
|
|
|
2014-03-27 09:13:26 +00:00
|
|
|
// http specification
|
2014-04-01 09:30:55 +00:00
|
|
|
// CR = <US-ASCII CR, carriage return (13)>
|
|
|
|
#define __CR "\r" // 0x0D
|
|
|
|
// LF = <US-ASCII LF, linefeed (10)>
|
|
|
|
#define __LF "\n" // 0x0A
|
|
|
|
// SP = <US-ASCII SP, space (32)>
|
|
|
|
#define __SP " " // 0x20
|
|
|
|
// HT = <US-ASCII HT, horizontal-tab (9)>
|
|
|
|
#define __HT "\x09" // 0x09
|
|
|
|
|
|
|
|
// HTTP/1.1 defines the sequence CR LF as the end-of-line marker for all
|
|
|
|
// protocol elements except the entity-body (see appendix 19.3 for
|
|
|
|
// tolerant applications).
|
|
|
|
#define __CRLF "\r\n" // 0x0D0A
|
|
|
|
#define __CRLFCRLF "\r\n\r\n" // 0x0D0A0D0A
|
2014-03-27 09:13:26 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
enum SrsHttpParseState {
|
|
|
|
SrsHttpParseStateInit = 0,
|
|
|
|
SrsHttpParseStateStart,
|
|
|
|
SrsHttpParseStateComplete
|
|
|
|
};
|
2013-12-07 14:06:53 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
/**
|
|
|
|
* the http message, request or response.
|
|
|
|
*/
|
|
|
|
class SrsHttpMessage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string url;
|
|
|
|
http_parser header;
|
|
|
|
SrsBuffer* body;
|
|
|
|
SrsHttpParseState state;
|
|
|
|
|
|
|
|
SrsHttpMessage();
|
|
|
|
virtual ~SrsHttpMessage();
|
|
|
|
|
|
|
|
virtual void reset();
|
|
|
|
virtual bool is_complete();
|
|
|
|
};
|
2013-12-07 14:06:53 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
/**
|
|
|
|
* wrapper for http-parser,
|
|
|
|
* provides HTTP message originted service.
|
|
|
|
*/
|
|
|
|
class SrsHttpParser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SrsHttpParser();
|
|
|
|
virtual ~SrsHttpParser();
|
|
|
|
public:
|
|
|
|
//virtual int parse_requst(SrsHttpMessage** ppreq);
|
|
|
|
};
|
2013-12-07 14:06:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* used to resolve the http uri.
|
|
|
|
*/
|
|
|
|
class SrsHttpUri
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::string url;
|
|
|
|
std::string schema;
|
|
|
|
std::string host;
|
|
|
|
int port;
|
|
|
|
std::string path;
|
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
SrsHttpUri();
|
|
|
|
virtual ~SrsHttpUri();
|
2013-12-07 14:06:53 +00:00
|
|
|
public:
|
2014-03-18 03:32:58 +00:00
|
|
|
/**
|
|
|
|
* initialize the http uri.
|
|
|
|
*/
|
|
|
|
virtual int initialize(std::string _url);
|
2013-12-07 14:06:53 +00:00
|
|
|
public:
|
|
|
|
virtual const char* get_url();
|
|
|
|
virtual const char* get_schema();
|
|
|
|
virtual const char* get_host();
|
|
|
|
virtual int get_port();
|
2013-12-07 15:23:19 +00:00
|
|
|
virtual const char* get_path();
|
2013-12-07 14:06:53 +00:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* get the parsed url field.
|
|
|
|
* @return return empty string if not set.
|
|
|
|
*/
|
|
|
|
virtual std::string get_uri_field(std::string uri, http_parser_url* hp_u, http_parser_url_fields field);
|
|
|
|
};
|
|
|
|
|
2013-12-07 12:51:27 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|