1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/src/app/srs_app_http_client.hpp

78 lines
2.2 KiB
C++
Raw Normal View History

2014-05-19 07:45:04 +00:00
/*
The MIT License (MIT)
2014-12-31 12:32:09 +00:00
Copyright (c) 2013-2015 winlin
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>
#include <string>
2014-05-19 09:39:01 +00:00
#ifdef SRS_AUTO_HTTP_PARSER
#include <srs_app_st.hpp>
class SrsHttpUri;
class SrsHttpParser;
2015-03-05 13:45:01 +00:00
class SrsHttpMessage;
class SrsStSocket;
2014-05-19 09:39:01 +00:00
/**
* http client to GET/POST/PUT/DELETE uri
*/
class SrsHttpClient
{
private:
bool connected;
st_netfd_t stfd;
2015-03-05 13:45:01 +00:00
SrsStSocket* skt;
2014-05-19 09:39:01 +00:00
SrsHttpParser* parser;
public:
SrsHttpClient();
virtual ~SrsHttpClient();
public:
/**
* to post data to the uri.
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-03-06 03:51:20 +00:00
virtual int post(SrsHttpUri* uri, std::string req, SrsHttpMessage** ppmsg);
2015-03-05 13:45:01 +00:00
/**
* to get data from the uri.
* @param req the data post to uri. empty string to ignore.
* @param ppmsg output the http message to read the response.
*/
virtual int get(SrsHttpUri* uri, std::string req, SrsHttpMessage** ppmsg);
2014-05-19 09:39:01 +00:00
private:
virtual void disconnect();
virtual int connect(SrsHttpUri* uri);
};
#endif
2014-05-19 07:45:04 +00:00
#endif
2014-08-02 14:18:39 +00:00