CMD.h 4.5 KB
Newer Older
xzl committed
1 2 3 4 5 6 7 8 9
/*
 * CMD.h
 *
 *  Created on: 2016年9月26日
 *      Author: xzl
 */

#ifndef SRC_SHELL_CMD_H_
#define SRC_SHELL_CMD_H_
xiongzilaing committed
10

xzl committed
11
#include <getopt.h>
xiongzilaing committed
12
#include <string>
xzl committed
13 14
#include <vector>
#include <iostream>
xiongzilaing committed
15 16
#include <functional>
#include <unordered_map>
xzl committed
17 18
#include "Util/util.h"
#include "Util/logger.h"
xiongzilaing committed
19

xzl committed
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
using namespace std;
using namespace ZL::Util;

namespace ZL {
namespace Shell {

class OutStream {
public:
	virtual ~OutStream() {
	}
	virtual void response(const string &str) =0;
	virtual string &operator[](const string &) =0;
	virtual int erase(const string &) =0;
};

class Option {
public:
	typedef function<bool(OutStream *stream, const char *arg)> OptionHandler;
	enum ArgType {
		ArgNone = no_argument,
		ArgRequired = required_argument,
		ArgOptional = optional_argument
	};
	Option() {
	}
	Option(char _shortOpt, const char *_longOpt, enum ArgType _argType,
			const char *_des, const OptionHandler &_cb) {
		shortOpt = _shortOpt;
		longOpt = _longOpt;
		argType = _argType;
		des = _des;
		cb = _cb;
	}
	virtual ~Option() {
	}
	bool operator()(OutStream *stream, const char *arg){
		return cb ? cb(stream,arg): true;
	}
private:
	friend class OptionParser;
	char shortOpt;
	string longOpt;
	enum ArgType argType;
	string des;
	OptionHandler cb;
};

class OptionParser {
public:
	typedef function< void(OutStream *stream, const unordered_multimap<char, string> &)> OptionCompleted;
	OptionParser(const OptionCompleted &_cb) {
		onCompleted = _cb;
		helper = Option('h', "help", Option::ArgNone, "获取此帮助", [this](OutStream *stream,const char *arg)->bool {
			_StrPrinter printer;
			for (auto &pr : options) {
				printer<<"\t-"<<pr.first<<"\t--"<<pr.second.longOpt<<"\t"<<pr.second.des<<"\r\n";
			}
			auto sendStr=printer<<endl;
			stream->response(sendStr);
			return false;
		});
	}
	virtual ~OptionParser() {
	}
	OptionParser &operator <<(const Option &option) {
		options.emplace(option.shortOpt, option);
		return *this;
	}
	void operator <<(ostream&(*f)(ostream&)) {
		str_shortOpt.clear();
		vec_longOpt.clear();
		(*this) << helper;
		struct option tmp;
		for (auto &pr : options) {
			//long opt
			tmp.name = pr.second.longOpt.data();
			tmp.has_arg = pr.second.argType;
			tmp.flag = NULL;
			tmp.val = pr.first;
			vec_longOpt.emplace_back(tmp);
			//short opt
			str_shortOpt.push_back(pr.first);
			switch (pr.second.argType) {
			case Option::ArgRequired:
				str_shortOpt.append(":");
				break;
			case Option::ArgOptional:
				str_shortOpt.append("::");
				break;
			default:
				break;
			}
		}
		tmp.flag=0;
		tmp.name=0;
		tmp.has_arg=0;
		tmp.val=0;
		vec_longOpt.emplace_back(tmp);

	}
	bool operator ()(OutStream *stream, int argc, char *argv[]) {
		lock_guard<mutex> lck(mtx_opt);
		unordered_multimap<char, string> allArg;
		int opt;
		optind = 0;
		while ((opt = getopt_long(argc, argv, &str_shortOpt[0], &vec_longOpt[0],NULL)) != -1) {
			auto it = options.find(opt);
			if (it == options.end()) {
				string sendStr = StrPrinter << "\t无法识别的选项,请输入\"-h\"获取帮助.\r\n" << endl;
				stream->response(sendStr);
				return true;
			}
			allArg.emplace(it->first, optarg ? optarg : "");
			if (!it->second(stream, optarg)) {
				return true;
			}
			optarg = NULL;
		}
		if(!allArg.size() && options.size()){
			helper(stream,"");
			return true;
		}
		if (onCompleted) {
			onCompleted(stream, allArg);
		}
		return true;
	}
private:
	unordered_map<char, Option> options;
	OptionCompleted onCompleted;
	vector<struct option> vec_longOpt;
	string str_shortOpt;
	Option helper;
	static mutex mtx_opt;
};

class CMD {
public:
	CMD();
	virtual ~CMD();
	virtual const char *description() const {
		return "description";
	}
	bool operator ()(OutStream *stream, int argc, char *argv[]) const {
		return (*parser)(stream, argc, argv);
	}
protected:
	mutable std::shared_ptr<OptionParser> parser;
};
template<typename C>
class CMDInstance {
public:
	static CMD &Instance() {
		static C instance;
		return (CMD &) instance;
	}
};
class CMD_help: public CMD {
public:
	CMD_help();
	virtual ~CMD_help() {
	}
	const char *description() const override {
		return "打印帮助信息.";
	}
};

class CMD_rtsp: public CMD {
public:
	CMD_rtsp();
	virtual ~CMD_rtsp() {
	}
	const char *description() const override {
		return "查看rtsp服务器相关信息.";
	}
};
class CMD_rtmp: public CMD {
public:
	CMD_rtmp();
	virtual ~CMD_rtmp() {
	}
	const char *description() const override {
		return "查看rtmp服务器相关信息.";
	}
};








































} /* namespace Shell */
} /* namespace ZL */

#endif /* SRC_SHELL_CMD_H_ */