Blame view

trunk/src/rtmp/srs_protocol_rtmp.hpp 18.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
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.
*/
24 25
#ifndef SRS_RTMP_PROTOCOL_RTMP_HPP
#define SRS_RTMP_PROTOCOL_RTMP_HPP
26 27

/*
28
#include <srs_protocol_rtmp.hpp>
29 30 31 32 33 34
*/

#include <srs_core.hpp>

#include <string>
35
#include <srs_protocol_stack.hpp>
36
#include <srs_core_performance.hpp>
37
38
class SrsProtocol;
39
class ISrsProtocolReaderWriter;
40 41 42 43 44 45
class ISrsMessage;
class SrsCommonMessage;
class SrsCreateStreamPacket;
class SrsFMLEStartPacket;
class SrsPublishPacket;
class SrsOnMetaDataPacket;
46
class SrsPlayPacket;
47
class SrsMessage;
48
class SrsPacket;
49
class SrsAmf0Object;
50
class IMergeReadHandler;
51 52 53 54

/**
* the original request from client.
*/
55
class SrsRequest
56
{
57
public:
58 59 60 61 62 63 64 65 66 67
    /**
    * tcUrl: rtmp://request_vhost:port/app/stream
    * support pass vhost in query string, such as:
    *    rtmp://ip:port/app?vhost=request_vhost/stream
    *    rtmp://ip:port/app...vhost...request_vhost/stream
    */
    std::string tcUrl;
    std::string pageUrl;
    std::string swfUrl;
    double objectEncoding;
68 69 70
// data discovery from request.
public:
    // discovery from tcUrl and play/publish.
71
    std::string schema;
72
    // the vhost in tcUrl.
73
    std::string vhost;
74
    // the host in tcUrl.
75
    std::string host;
76
    // the port in tcUrl.
77
    std::string port;
78
    // the app in tcUrl, without param.
79
    std::string app;
80 81 82
    // the param in tcUrl(app).
    std::string param;
    // the stream in play/publish
83
    std::string stream;
84 85 86 87 88
    // for play live stream, 
    // used to specified the stop when exceed the duration.
    // @see https://github.com/winlinvip/simple-rtmp-server/issues/45
    // in ms.
    double duration;
89 90 91 92
    // the token in the connect request,
    // used for edge traverse to origin authentication,
    // @see https://github.com/winlinvip/simple-rtmp-server/issues/104
    SrsAmf0Object* args;
93
public:
94 95
    SrsRequest();
    virtual ~SrsRequest();
96
public:
97 98 99 100 101 102
    /**
    * deep copy the request, for source to use it to support reload,
    * for when initialize the source, the request is valid,
    * when reload it, the request maybe invalid, so need to copy it.
    */
    virtual SrsRequest* copy();
103 104 105 106 107 108
    /**
    * update the auth info of request,
    * to keep the current request ptr is ok,
    * for many components use the ptr of request.
    */
    virtual void update_auth(SrsRequest* req);
109
    /**
110
    * get the stream identify, vhost/app/stream.
111 112
    */
    virtual std::string get_stream_url();
113 114 115
    /**
    * strip url, user must strip when update the url.
    */
116
    virtual void strip();
117 118 119 120 121
};

/**
* the response to client.
*/
122
class SrsResponse
123
{
124
public:
125 126 127
    /**
    * the stream id to response client createStream.
    */
128
    int stream_id;
129
public:
130 131
    SrsResponse();
    virtual ~SrsResponse();
132 133 134 135 136
};

/**
* the rtmp client type.
*/
137
enum SrsRtmpConnType
138
{
139 140 141 142
    SrsRtmpConnUnknown,
    SrsRtmpConnPlay,
    SrsRtmpConnFMLEPublish,
    SrsRtmpConnFlashPublish,
143
};
144
std::string srs_client_type_string(SrsRtmpConnType type);
145 146

/**
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
* store the handshake bytes, 
* for smart switch between complex and simple handshake.
*/
class SrsHandshakeBytes
{
public:
    // [1+1536]
    char* c0c1;
    // [1+1536+1536]
    char* s0s1s2;
    // [1536]
    char* c2;
public:
    SrsHandshakeBytes();
    virtual ~SrsHandshakeBytes();
public:
    virtual int read_c0c1(ISrsProtocolReaderWriter* io);
    virtual int read_s0s1s2(ISrsProtocolReaderWriter* io);
    virtual int read_c2(ISrsProtocolReaderWriter* io);
    virtual int create_c0c1();
167
    virtual int create_s0s1s2(const char* c1 = NULL);
168 169 170 171
    virtual int create_c2();
};

/**
172 173 174 175
* implements the client role protocol.
*/
class SrsRtmpClient
{
176 177
private:
    SrsHandshakeBytes* hs_bytes;
178
protected:
179 180
    SrsProtocol* protocol;
    ISrsProtocolReaderWriter* io;
181
public:
182 183
    SrsRtmpClient(ISrsProtocolReaderWriter* skt);
    virtual ~SrsRtmpClient();
184
// protocol methods proxy
185
public:
186 187 188 189
    /**
    * set the recv timeout in us.
    * if timeout, recv/send message return ERROR_SOCKET_TIMEOUT.
    */
190
    virtual void set_recv_timeout(int64_t timeout_us);
191 192 193 194
    /**
    * set the send timeout in us.
    * if timeout, recv/send message return ERROR_SOCKET_TIMEOUT.
    */
195
    virtual void set_send_timeout(int64_t timeout_us);
196 197 198
    /**
    * get recv/send bytes.
    */
199 200
    virtual int64_t get_recv_bytes();
    virtual int64_t get_send_bytes();
201 202 203 204 205 206 207 208 209
    /**
    * recv a RTMP message, which is bytes oriented.
    * user can use decode_message to get the decoded RTMP packet.
    * @param pmsg, set the received message, 
    *       always NULL if error, 
    *       NULL for unknown packet but return success.
    *       never NULL if decode success.
    * @remark, drop message when msg is empty or payload length is empty.
    */
210
    virtual int recv_message(SrsMessage** pmsg);
211 212 213 214 215 216
    /**
    * decode bytes oriented RTMP message to RTMP packet,
    * @param ppacket, output decoded packet, 
    *       always NULL if error, never NULL if success.
    * @return error when unknown packet, error when decode failed.
    */
217
    virtual int decode_message(SrsMessage* msg, SrsPacket** ppacket);
218 219 220 221 222 223 224
    /**
    * send the RTMP message and always free it.
    * user must never free or use the msg after this method,
    * for it will always free the msg.
    * @param msg, the msg to send out, never be NULL.
    * @param stream_id, the stream id of packet to send over, 0 for control message.
    */
225
    virtual int send_and_free_message(SrsMessage* msg, int stream_id);
226
    /**
227 228 229 230 231 232 233 234 235
    * send the RTMP message and always free it.
    * user must never free or use the msg after this method,
    * for it will always free the msg.
    * @param msgs, the msgs to send out, never be NULL.
    * @param nb_msgs, the size of msgs to send out.
    * @param stream_id, the stream id of packet to send over, 0 for control message.
    */
    virtual int send_and_free_messages(SrsMessage** msgs, int nb_msgs, int stream_id);
    /**
236 237 238 239 240 241
    * send the RTMP packet and always free it.
    * user must never free or use the packet after this method,
    * for it will always free the packet.
    * @param packet, the packet to send out, never be NULL.
    * @param stream_id, the stream id of packet to send over, 0 for control message.
    */
242
    virtual int send_and_free_packet(SrsPacket* packet, int stream_id);
243
public:
244 245 246
    /**
    * handshake with server, try complex, then simple handshake.
    */
247
    virtual int handshake();
248 249 250
    /**
    * only use simple handshake
    */
251
    virtual int simple_handshake();
252 253 254
    /**
    * only use complex handshake
    */
255
    virtual int complex_handshake();
256 257 258 259 260
    /**
    * set req to use the original request of client:
    *      pageUrl and swfUrl for refer antisuck.
    *      args for edge to origin traverse auth, @see SrsRequest.args
    */
261
    virtual int connect_app(std::string app, std::string tc_url, 
262
        SrsRequest* req, bool debug_srs_upnode);
263
    /**
264 265 266 267 268 269 270 271 272
    * connect to server, get the debug srs info.
    * 
    * @param app, the app to connect at.
    * @param tc_url, the tcUrl to connect at.
    * @param req, the optional req object, use the swfUrl/pageUrl if specified. NULL to ignore.
    * 
    * SRS debug info:
    * @param srs_server_ip, debug info, server ip client connected at.
    * @param srs_server, server info.
273 274
    * @param srs_primary, primary authors.
    * @param srs_authors, authors.
275 276 277 278
    * @param srs_id, int, debug info, client id in server log.
    * @param srs_pid, int, debug info, server pid in log.
    */
    virtual int connect_app2(
279
        std::string app, std::string tc_url, SrsRequest* req, bool debug_srs_upnode,
280 281 282
        std::string& srs_server_ip, std::string& srs_server, std::string& srs_primary, 
        std::string& srs_authors, std::string& srs_version, int& srs_id, 
        int& srs_pid
283 284
    );
    /**
285 286
    * create a stream, then play/publish data over this stream.
    */
287
    virtual int create_stream(int& stream_id);
288 289 290
    /**
    * start play stream.
    */
291
    virtual int play(std::string stream, int stream_id);
292 293 294 295
    /**
    * start publish stream. use flash publish workflow:
    *       connect-app => create-stream => flash-publish
    */
296
    virtual int publish(std::string stream, int stream_id);
297 298 299 300
    /**
    * start publish stream. use FMLE publish workflow:
    *       connect-app => FMLE publish
    */
301
    virtual int fmle_publish(std::string stream, int& stream_id);
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
public:
    /**
    * expect a specified message, drop others util got specified one.
    * @pmsg, user must free it. NULL if not success.
    * @ppacket, store in the pmsg, user must never free it. NULL if not success.
    * @remark, only when success, user can use and must free the pmsg/ppacket.
    * for example:
             SrsCommonMessage* msg = NULL;
            SrsConnectAppResPacket* pkt = NULL;
            if ((ret = srs_rtmp_expect_message<SrsConnectAppResPacket>(protocol, &msg, &pkt)) != ERROR_SUCCESS) {
                return ret;
            }
            // use pkt
    * user should never recv message and convert it, use this method instead.
    * if need to set timeout, use set timeout of SrsProtocol.
    */
    template<class T>
    int expect_message(SrsMessage** pmsg, T** ppacket)
    {
        return protocol->expect_message<T>(pmsg, ppacket);
    }
323 324 325 326 327 328 329
};

/**
* the rtmp provices rtmp-command-protocol services,
* a high level protocol, media stream oriented services,
* such as connect to vhost/app, play stream, get audio/video data.
*/
330
class SrsRtmpServer
331 332
{
private:
333
    SrsHandshakeBytes* hs_bytes;
334 335
    SrsProtocol* protocol;
    ISrsProtocolReaderWriter* io;
336
public:
337 338
    SrsRtmpServer(ISrsProtocolReaderWriter* skt);
    virtual ~SrsRtmpServer();
339
// protocol methods proxy
340
public:
341
    /**
342 343 344 345 346
    * set the auto response message when recv for protocol stack.
    * @param v, whether auto response message when recv message.
    * @see: https://github.com/winlinvip/simple-rtmp-server/issues/217
    */
    virtual void set_auto_response(bool v);
347
#ifdef SRS_PERF_MERGED_READ
348
    /**
349 350 351 352 353 354 355
    * to improve read performance, merge some packets then read,
    * when it on and read small bytes, we sleep to wait more data.,
    * that is, we merge some data to read together.
    * @param v true to ename merged read.
    * @param handler the handler when merge read is enabled.
    * @see https://github.com/winlinvip/simple-rtmp-server/issues/241
    */
356
    virtual void set_merge_read(bool v, IMergeReadHandler* handler);
357 358 359 360 361 362 363 364
    /**
    * create buffer with specifeid size.
    * @param buffer the size of buffer.
    * @remark when MR(SRS_PERF_MERGED_READ) disabled, always set to 8K.
    * @remark when buffer changed, the previous ptr maybe invalid.
    * @see https://github.com/winlinvip/simple-rtmp-server/issues/241
    */
    virtual void set_recv_buffer(int buffer_size);
365
#endif
366
    /**
367 368 369
    * set/get the recv timeout in us.
    * if timeout, recv/send message return ERROR_SOCKET_TIMEOUT.
    */
370 371
    virtual void set_recv_timeout(int64_t timeout_us);
    virtual int64_t get_recv_timeout();
372 373 374 375
    /**
    * set/get the send timeout in us.
    * if timeout, recv/send message return ERROR_SOCKET_TIMEOUT.
    */
376 377
    virtual void set_send_timeout(int64_t timeout_us);
    virtual int64_t get_send_timeout();
378 379 380
    /**
    * get recv/send bytes.
    */
381 382
    virtual int64_t get_recv_bytes();
    virtual int64_t get_send_bytes();
383 384 385 386 387 388 389 390 391
    /**
    * recv a RTMP message, which is bytes oriented.
    * user can use decode_message to get the decoded RTMP packet.
    * @param pmsg, set the received message, 
    *       always NULL if error, 
    *       NULL for unknown packet but return success.
    *       never NULL if decode success.
    * @remark, drop message when msg is empty or payload length is empty.
    */
392
    virtual int recv_message(SrsMessage** pmsg);
393 394 395 396 397 398
    /**
    * decode bytes oriented RTMP message to RTMP packet,
    * @param ppacket, output decoded packet, 
    *       always NULL if error, never NULL if success.
    * @return error when unknown packet, error when decode failed.
    */
399
    virtual int decode_message(SrsMessage* msg, SrsPacket** ppacket);
400 401 402 403 404 405 406
    /**
    * send the RTMP message and always free it.
    * user must never free or use the msg after this method,
    * for it will always free the msg.
    * @param msg, the msg to send out, never be NULL.
    * @param stream_id, the stream id of packet to send over, 0 for control message.
    */
407
    virtual int send_and_free_message(SrsMessage* msg, int stream_id);
408
    /**
409 410 411 412 413 414
    * send the RTMP message and always free it.
    * user must never free or use the msg after this method,
    * for it will always free the msg.
    * @param msgs, the msgs to send out, never be NULL.
    * @param nb_msgs, the size of msgs to send out.
    * @param stream_id, the stream id of packet to send over, 0 for control message.
415 416 417
    *
    * @remark performance issue, to support 6k+ 250kbps client,
    *       @see https://github.com/winlinvip/simple-rtmp-server/issues/194
418
    */
419
    virtual int send_and_free_messages(SrsMessage** msgs, int nb_msgs, int stream_id);
420
    /**
421 422 423 424 425 426
    * send the RTMP packet and always free it.
    * user must never free or use the packet after this method,
    * for it will always free the packet.
    * @param packet, the packet to send out, never be NULL.
    * @param stream_id, the stream id of packet to send over, 0 for control message.
    */
427
    virtual int send_and_free_packet(SrsPacket* packet, int stream_id);
428
public:
429 430 431
    /**
    * handshake with client, try complex then simple.
    */
432
    virtual int handshake();
433 434 435
    /**
    * do connect app with client, to discovery tcUrl.
    */
436
    virtual int connect_app(SrsRequest* req);
437 438 439
    /**
    * set ack size to client, client will send ack-size for each ack window
    */
440 441 442 443 444 445 446 447 448
    virtual int set_window_ack_size(int ack_size);
    /**
    * @type: The sender can mark this message hard (0), soft (1), or dynamic (2)
    * using the Limit type field.
    */
    virtual int set_peer_bandwidth(int bandwidth, int type);
    /**
    * @param server_ip the ip of server.
    */
449
    virtual int response_connect_app(SrsRequest* req, const char* server_ip = NULL);
450 451 452
    /**
    * reject the connect app request.
    */
453
    virtual void response_connect_reject(SrsRequest* req, const char* desc);
454 455 456
    /**
    * response client the onBWDone message.
    */
457 458 459 460 461 462
    virtual int on_bw_done();
    /**
    * recv some message to identify the client.
    * @stream_id, client will createStream to play or publish by flash, 
    *         the stream_id used to response the createStream request.
    * @type, output the client type.
463 464
    * @stream_name, output the client publish/play stream name. @see: SrsRequest.stream
    * @duration, output the play client duration. @see: SrsRequest.duration
465
    */
466
    virtual int identify_client(int stream_id, SrsRtmpConnType& type, std::string& stream_name, double& duration);
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508
    /**
    * set the chunk size when client type identified.
    */
    virtual int set_chunk_size(int chunk_size);
    /**
    * when client type is play, response with packets:
    * StreamBegin, 
    * onStatus(NetStream.Play.Reset), onStatus(NetStream.Play.Start).,
    * |RtmpSampleAccess(false, false),
    * onStatus(NetStream.Data.Start).
    */
    virtual int start_play(int stream_id);
    /**
    * when client(type is play) send pause message,
    * if is_pause, response the following packets:
    *     onStatus(NetStream.Pause.Notify)
    *     StreamEOF
    * if not is_pause, response the following packets:
    *     onStatus(NetStream.Unpause.Notify)
    *     StreamBegin
    */
    virtual int on_play_client_pause(int stream_id, bool is_pause);
    /**
    * when client type is publish, response with packets:
    * releaseStream response
    * FCPublish
    * FCPublish response
    * createStream response
    * onFCPublish(NetStream.Publish.Start)
    * onStatus(NetStream.Publish.Start)
    */
    virtual int start_fmle_publish(int stream_id);
    /**
    * process the FMLE unpublish event.
    * @unpublish_tid the unpublish request transaction id.
    */
    virtual int fmle_unpublish(int stream_id, double unpublish_tid);
    /**
    * when client type is publish, response with packets:
    * onStatus(NetStream.Publish.Start)
    */
    virtual int start_flash_publish(int stream_id);
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
public:
    /**
    * expect a specified message, drop others util got specified one.
    * @pmsg, user must free it. NULL if not success.
    * @ppacket, store in the pmsg, user must never free it. NULL if not success.
    * @remark, only when success, user can use and must free the pmsg/ppacket.
    * for example:
             SrsCommonMessage* msg = NULL;
            SrsConnectAppResPacket* pkt = NULL;
            if ((ret = srs_rtmp_expect_message<SrsConnectAppResPacket>(protocol, &msg, &pkt)) != ERROR_SUCCESS) {
                return ret;
            }
            // use pkt
    * user should never recv message and convert it, use this method instead.
    * if need to set timeout, use set timeout of SrsProtocol.
    */
    template<class T>
    int expect_message(SrsMessage** pmsg, T** ppacket)
    {
        return protocol->expect_message<T>(pmsg, ppacket);
    }
530
private:
531
    virtual int identify_create_stream_client(SrsCreateStreamPacket* req, int stream_id, SrsRtmpConnType& type, std::string& stream_name, double& duration);
532 533
    virtual int identify_fmle_publish_client(SrsFMLEStartPacket* req, SrsRtmpConnType& type, std::string& stream_name);
    virtual int identify_flash_publish_client(SrsPublishPacket* req, SrsRtmpConnType& type, std::string& stream_name);
534
private:
535
    virtual int identify_play_client(SrsPlayPacket* req, SrsRtmpConnType& type, std::string& stream_name, double& duration);
536 537
};
538
#endif
539