Blame view

trunk/src/app/srs_app_http_conn.hpp 3.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
The MIT License (MIT)

Copyright (c) 2013-2014 winlin

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_CONN_HPP
#define SRS_APP_HTTP_CONN_HPP

/*
#include <srs_app_http_conn.hpp>
*/

#include <srs_core.hpp>
33
#ifdef SRS_AUTO_HTTP_SERVER
34
35 36
#include <srs_app_st.hpp>
#include <srs_app_conn.hpp>
winlin authored
37
#include <srs_app_http.hpp>
38
39
class SrsStSocket;
40
class SrsHttpParser;
41
class SrsHttpMessage;
winlin authored
42
class SrsHttpHandler;
43
winlin authored
44 45 46 47 48 49 50 51
// for http root.
class SrsHttpRoot : public SrsHttpHandler
{
public:
    SrsHttpRoot();
    virtual ~SrsHttpRoot();
public:
    virtual int initialize();
52
    virtual int best_match(const char* path, int length, SrsHttpHandlerMatch** ppmatch);
53 54
protected:
    virtual bool is_handler_valid(SrsHttpMessage* req, int& status_code, std::string& reason_phrase);
55
    virtual int do_process_request(SrsStSocket* skt, SrsHttpMessage* req);
winlin authored
56 57 58 59 60 61 62 63 64 65 66 67 68
};

class SrsHttpVhost : public SrsHttpHandler
{
private:
    std::string _vhost;
    std::string _mount;
    std::string _dir;
public:
    SrsHttpVhost(std::string vhost, std::string mount, std::string dir);
    virtual ~SrsHttpVhost();
public:
    virtual bool can_handle(const char* path, int length, const char** pchild);
69 70
protected:
    virtual bool is_handler_valid(SrsHttpMessage* req, int& status_code, std::string& reason_phrase);
71
    virtual int do_process_request(SrsStSocket* skt, SrsHttpMessage* req);
72
private:
73 74 75 76
    virtual int response_regular_file(SrsStSocket* skt, SrsHttpMessage* req, std::string fullpath);
    virtual int response_flv_file(SrsStSocket* skt, SrsHttpMessage* req, std::string fullpath);
    virtual int response_flv_file2(SrsStSocket* skt, SrsHttpMessage* req, std::string fullpath, int offset);
    virtual int response_ts_file(SrsStSocket* skt, SrsHttpMessage* req, std::string fullpath);
77
    virtual std::string get_request_file(SrsHttpMessage* req);
winlin authored
78 79 80 81 82 83
public:
    virtual std::string vhost();
    virtual std::string mount();
    virtual std::string dir();
};
84
class SrsHttpConn : public SrsConnection
85
{
86
private:
87
    SrsHttpParser* parser;
winlin authored
88
    SrsHttpHandler* handler;
winlin authored
89
    bool requires_crossdomain;
90
public:
winlin authored
91
    SrsHttpConn(SrsServer* srs_server, st_netfd_t client_stfd, SrsHttpHandler* _handler);
92
    virtual ~SrsHttpConn();
93 94 95 96 97 98
public:
    virtual void kbps_resample();
// interface IKbpsDelta
public:
    virtual int64_t get_send_bytes_delta();
    virtual int64_t get_recv_bytes_delta();
99 100
protected:
    virtual int do_cycle();
101
private:
102
    virtual int process_request(SrsStSocket* skt, SrsHttpMessage* req);
103 104 105
};

#endif
106 107

#endif
108