2014-06-22 12:01:25 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
2015-04-29 09:38:23 +00:00
|
|
|
Copyright (c) 2013-2015 SRS(simple-rtmp-server)
|
2014-06-22 12:01:25 +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_RTMP_PROTOCOL_MSG_ARRAY_HPP
|
|
|
|
#define SRS_RTMP_PROTOCOL_MSG_ARRAY_HPP
|
|
|
|
|
|
|
|
/*
|
2015-01-23 02:07:20 +00:00
|
|
|
#include <srs_rtmp_msg_array.hpp>
|
2014-06-22 12:01:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
2014-12-05 15:03:52 +00:00
|
|
|
class SrsSharedPtrMessage;
|
2014-06-22 12:01:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* the class to auto free the shared ptr message array.
|
2014-07-06 10:23:14 +00:00
|
|
|
* when need to get some messages, for instance, from Consumer queue,
|
|
|
|
* create a message array, whose msgs can used to accept the msgs,
|
|
|
|
* then send each message and set to NULL.
|
2014-11-14 03:24:49 +00:00
|
|
|
*
|
|
|
|
* @remark: user must free all msgs in array, for the SRS2.0 protocol stack
|
|
|
|
* provides an api to send messages, @see send_and_free_messages
|
2014-06-22 12:01:25 +00:00
|
|
|
*/
|
2014-11-13 08:56:41 +00:00
|
|
|
class SrsMessageArray
|
2014-06-22 12:01:25 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* when user already send the msg in msgs, please set to NULL,
|
|
|
|
* for instance, msg= msgs.msgs[i], msgs.msgs[i]=NULL, send(msg),
|
|
|
|
* where send(msg) will always send and free it.
|
|
|
|
*/
|
2014-12-05 15:03:52 +00:00
|
|
|
SrsSharedPtrMessage** msgs;
|
2014-11-14 03:24:49 +00:00
|
|
|
int max;
|
2014-06-22 12:01:25 +00:00
|
|
|
public:
|
2014-07-06 10:37:48 +00:00
|
|
|
/**
|
|
|
|
* create msg array, initialize array to NULL ptrs.
|
|
|
|
*/
|
2014-11-14 03:24:49 +00:00
|
|
|
SrsMessageArray(int max_msgs);
|
2014-07-06 10:37:48 +00:00
|
|
|
/**
|
|
|
|
* free the msgs not sent out(not NULL).
|
|
|
|
*/
|
2014-11-13 08:56:41 +00:00
|
|
|
virtual ~SrsMessageArray();
|
2014-12-05 08:44:11 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* free specified count of messages.
|
|
|
|
*/
|
|
|
|
virtual void free(int count);
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* zero initialize the message array.
|
|
|
|
*/
|
|
|
|
virtual void zero(int count);
|
2014-06-22 12:01:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2014-08-02 14:18:39 +00:00
|
|
|
|