test_benchmark.cpp 3.22 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 * MIT License
 *
 * Copyright (c) 2016 xiongziliang <771730766@qq.com>
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * 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.
 */
xzl committed
26 27 28 29 30 31 32 33 34
#include <signal.h>
#include <atomic>
#include <iostream>
#include <list>
#include "Util/logger.h"
#include "Util/onceToken.h"
#include "Rtsp/UDPServer.h"
#include "Network/sockutil.h"
#include "Poller/EventPoller.h"
xiongziliang committed
35
#include "Player/PlayerProxy.h"
xzl committed
36 37 38
#include "Thread/WorkThreadPool.h"

using namespace std;
xiongziliang committed
39 40
using namespace toolkit;
using namespace mediakit;
xzl committed
41

xiongziliang committed
42 43
int main(int argc, char *argv[]) {
    //设置退出信号处理函数
44 45
    static semaphore sem;
    signal(SIGINT, [](int) { sem.post(); });// 设置退出信号
46

xiongziliang committed
47
    //设置日志
48
    Logger::Instance().add(std::make_shared<ConsoleChannel>());
xiongziliang committed
49
    Logger::Instance().setWriter(std::make_shared<AsyncLogWriter>());
xzl committed
50

xiongziliang committed
51
    if (argc != 5) {
xiongziliang committed
52
        ErrorL << "\r\n测试方法:./test_benchmark player_count play_interval rtxp_url rtp_type\r\n"
xiongziliang committed
53 54 55 56
               << "例如你想每隔50毫秒启动共计100个播放器(tcp方式播放rtsp://127.0.0.1/live/0 )可以输入以下命令:\r\n"
               << "./test_benchmark 100 50 rtsp://127.0.0.1/live/0 0\r\n"
               << endl;
        return 0;
xzl committed
57

xiongziliang committed
58
    }
59 60 61 62 63 64 65 66 67 68
    list<MediaPlayer::Ptr> playerList;
    auto playerCnt = atoi(argv[1]);//启动的播放器个数
    atomic_int alivePlayerCnt(0);
    //每隔若干毫秒启动一个播放器(如果一次性全部启动,服务器和客户端可能都承受不了)
    AsyncTaskThread::Instance().DoTaskDelay(0, atoi(argv[2]), [&]() {
        MediaPlayer::Ptr player(new MediaPlayer());
        player->setOnPlayResult([&](const SockException &ex) {
            if (!ex) {
                ++alivePlayerCnt;
            }
xiongziliang committed
69
        });
70 71
        player->setOnShutdown([&](const SockException &ex) {
            --alivePlayerCnt;
xiongziliang committed
72
        });
73 74 75 76 77
        (*player)[RtspPlayer::kRtpType] = atoi(argv[4]);
        player->play(argv[3]);
        playerList.push_back(player);
        return playerCnt--;
    });
xzl committed
78

79 80 81
    AsyncTaskThread::Instance().DoTaskDelay(0, 1000, [&]() {
        InfoL << "存活播放器个数:" << alivePlayerCnt.load();
        return true;
xiongziliang committed
82
    });
83

84
    sem.wait();
xiongziliang committed
85
    return 0;
xzl committed
86 87
}