2014-05-19 07:45:04 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
2015-12-23 03:35:40 +00:00
|
|
|
Copyright (c) 2013-2016 SRS(ossrs)
|
2014-05-19 07:45:04 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SRS_APP_HTTP_CLIENT_HPP
|
|
|
|
#define SRS_APP_HTTP_CLIENT_HPP
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <srs_app_http_client.hpp>
|
|
|
|
*/
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2014-06-08 05:03:03 +00:00
|
|
|
#include <string>
|
|
|
|
|
2015-05-27 02:23:40 +00:00
|
|
|
#ifdef SRS_AUTO_HTTP_CORE
|
2014-05-19 09:39:01 +00:00
|
|
|
|
|
|
|
#include <srs_app_st.hpp>
|
|
|
|
|
|
|
|
class SrsHttpUri;
|
|
|
|
class SrsHttpParser;
|
2015-05-22 14:24:05 +00:00
|
|
|
class ISrsHttpMessage;
|
2015-03-05 13:45:01 +00:00
|
|
|
class SrsStSocket;
|
2014-05-19 09:39:01 +00:00
|
|
|
|
2015-04-10 05:45:21 +00:00
|
|
|
// the default timeout for http client.
|
|
|
|
#define SRS_HTTP_CLIENT_TIMEOUT_US (int64_t)(30*1000*1000LL)
|
|
|
|
|
2014-05-19 09:39:01 +00:00
|
|
|
/**
|
|
|
|
* http client to GET/POST/PUT/DELETE uri
|
|
|
|
*/
|
|
|
|
class SrsHttpClient
|
|
|
|
{
|
|
|
|
private:
|
2015-10-14 02:48:08 +00:00
|
|
|
SrsTcpClient* transport;
|
2014-05-19 09:39:01 +00:00
|
|
|
SrsHttpParser* parser;
|
2015-03-06 04:07:12 +00:00
|
|
|
private:
|
2015-04-10 05:45:21 +00:00
|
|
|
int64_t timeout_us;
|
2015-03-06 04:07:12 +00:00
|
|
|
// host name or ip.
|
|
|
|
std::string host;
|
|
|
|
int port;
|
2014-05-19 09:39:01 +00:00
|
|
|
public:
|
|
|
|
SrsHttpClient();
|
|
|
|
virtual ~SrsHttpClient();
|
2015-03-06 04:07:12 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* initialize the client, connect to host and port.
|
|
|
|
*/
|
2015-04-10 05:45:21 +00:00
|
|
|
virtual int initialize(std::string h, int p, int64_t t_us = SRS_HTTP_CLIENT_TIMEOUT_US);
|
2014-05-19 09:39:01 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* to post data to the uri.
|
2015-03-06 04:07:12 +00:00
|
|
|
* @param the path to request on.
|
2015-03-05 13:45:01 +00:00
|
|
|
* @param req the data post to uri. empty string to ignore.
|
2015-03-06 03:51:20 +00:00
|
|
|
* @param ppmsg output the http message to read the response.
|
2014-05-19 09:39:01 +00:00
|
|
|
*/
|
2015-05-22 14:24:05 +00:00
|
|
|
virtual int post(std::string path, std::string req, ISrsHttpMessage** ppmsg);
|
2015-03-05 13:45:01 +00:00
|
|
|
/**
|
|
|
|
* to get data from the uri.
|
2015-03-06 04:07:12 +00:00
|
|
|
* @param the path to request on.
|
2015-03-05 13:45:01 +00:00
|
|
|
* @param req the data post to uri. empty string to ignore.
|
|
|
|
* @param ppmsg output the http message to read the response.
|
|
|
|
*/
|
2015-05-22 14:24:05 +00:00
|
|
|
virtual int get(std::string path, std::string req, ISrsHttpMessage** ppmsg);
|
2014-05-19 09:39:01 +00:00
|
|
|
private:
|
|
|
|
virtual void disconnect();
|
2015-03-06 04:07:12 +00:00
|
|
|
virtual int connect();
|
2014-05-19 09:39:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2014-05-19 07:45:04 +00:00
|
|
|
#endif
|
2014-08-02 14:18:39 +00:00
|
|
|
|