ShellCMD.h 3.67 KB
Newer Older
1
//
2 3 4
// Created by xzl on 2017/12/1.
//

xiongziliang committed
5 6 7
#ifndef SRC_SHELL_SHELLCMD_H_
#define SRC_SHELL_SHELLCMD_H_

8
#include "Util/CMD.h"
9
#include "Common/MediaSource.h"
xiongziliang committed
10
using namespace toolkit;
11

xiongziliang committed
12
namespace mediakit {
13

14 15

class CMD_media: public CMD {
16
public:
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
    CMD_media(){
        _parser.reset(new OptionParser([](const std::shared_ptr<ostream> &stream,mINI &ini){
            MediaSource::for_each_media([&](const string &schema,
                                            const string &vhost,
                                            const string &app,
                                            const string &streamid,
                                            const MediaSource::Ptr &media){
                if(!ini["schema"].empty() && ini["schema"] != schema){
                    //筛选协议不匹配
                    return;
                }
                if(!ini["vhost"].empty() && ini["vhost"] != vhost){
                    //筛选虚拟主机不匹配
                    return;
                }
                if(!ini["app"].empty() && ini["app"] != app){
                    //筛选应用名不匹配
                    return;
                }
                if(!ini["stream"].empty() && ini["stream"] != streamid){
                    //流id不匹配
                    return;
                }
                if(ini.find("list") != ini.end()){
                    //列出源
                    (*stream) << "\t"
                              << schema << "/"
                              << vhost << "/"
                              << app << "/"
                              << streamid
                              << "\r\n";
                    return;
                }

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
                EventPollerPool::Instance().getPoller()->async([ini,media,stream,schema,vhost,app,streamid](){
                    if(ini.find("kick") != ini.end()){
                        //踢出源
                        do{
                            if(!media) {
                                break;
                            }
                            if(!media->close(true)) {
                                break;
                            }
                            (*stream) << "\t踢出成功:"
                                      << schema << "/"
                                      << vhost << "/"
                                      << app << "/"
                                      << streamid
                                      << "\r\n";
                            return;
                        }while(0);
                        (*stream) << "\t踢出失败:"
70 71 72 73 74
                                  << schema << "/"
                                  << vhost << "/"
                                  << app << "/"
                                  << streamid
                                  << "\r\n";
75 76 77
                    }
                },false);

78 79 80 81 82 83 84 85 86

            });
        }));
        (*_parser) << Option('k', "kick", Option::ArgNone,nullptr,false, "踢出媒体源", nullptr);
        (*_parser) << Option('l', "list", Option::ArgNone,nullptr,false, "列出媒体源", nullptr);
        (*_parser) << Option('S', "schema", Option::ArgRequired,nullptr,false, "协议筛选", nullptr);
        (*_parser) << Option('v', "vhost", Option::ArgRequired,nullptr,false, "虚拟主机筛选", nullptr);
        (*_parser) << Option('a', "app", Option::ArgRequired,nullptr,false, "应用名筛选", nullptr);
        (*_parser) << Option('s', "stream", Option::ArgRequired,nullptr,false, "流id筛选", nullptr);
87
    }
88
    virtual ~CMD_media() {}
89
    const char *description() const override {
90
        return "媒体源相关操作.";
91 92 93
    }
};

xiongziliang committed
94
} /* namespace mediakit */
95

xiongziliang committed
96
#endif //SRC_SHELL_SHELLCMD_H_