ZLMediaKit/tests/tab.cpp

161 lines
5.1 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
*
* Use of this source code is governed by MIT-like license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
*/
#include <memory.h>
#include <set>
#include <deque>
#include "Util/CMD.h"
#include "Util/util.h"
#include "Util/logger.h"
#include "Util/File.h"
using namespace std;
using namespace toolkit;
class CMD_main : public CMD {
public:
CMD_main() {
_parser.reset(new OptionParser(nullptr));
(*_parser) << Option('f',/*该选项简称,如果是\x00则说明无简称*/
"filter",/*该选项全称,每个选项必须有全称不得为null或空字符串*/
Option::ArgRequired,/*该选项后面必须跟值*/
"c,cpp,cxx,c,h,hpp",/*该选项默认值*/
true,/*该选项是否必须赋值如果没有默认值且为ArgRequired时用户必须提供该参数否则将抛异常*/
"文件后缀过滤器",/*该选项说明文字*/
nullptr);
(*_parser) << Option('i',/*该选项简称,如果是\x00则说明无简称*/
"in",/*该选项全称,每个选项必须有全称不得为null或空字符串*/
Option::ArgRequired,/*该选项后面必须跟值*/
nullptr,/*该选项默认值*/
true,/*该选项是否必须赋值如果没有默认值且为ArgRequired时用户必须提供该参数否则将抛异常*/
"文件夹或文件",/*该选项说明文字*/
nullptr);
}
virtual ~CMD_main() {}
};
vector<string> split(const string& s, const char *delim) {
vector<string> ret;
size_t last = 0;
auto index = s.find(delim, last);
while (index != string::npos) {
if (index - last >= 0) {
ret.push_back(s.substr(last, index - last));
}
last = index + strlen(delim);
index = s.find(delim, last);
}
if (!s.size() || s.size() - last >= 0) {
ret.push_back(s.substr(last));
}
return ret;
}
void process_file(const char *file) {
auto str = File::loadFile(file);
if (str.empty()) {
return;
}
auto lines = ::split(str, "\n");
deque<string> lines_copy;
for (auto &line : lines) {
if(line.empty()){
lines_copy.push_back("");
continue;
}
string line_copy;
bool flag = false;
int i = 0;
for (auto &ch : line) {
++i;
switch (ch) {
case '\t' :
line_copy.append(" ");
break;
case ' ':
line_copy.push_back(ch);
break;
default:
line_copy.push_back(ch);
flag = true;
break;
}
if (flag) {
line_copy.append(line.substr(i));
break;
}
}
lines_copy.push_back(line_copy);
}
str.clear();
for (auto &line : lines_copy) {
str.append(line);
str.push_back('\n');
}
if(!lines_copy.empty()){
str.pop_back();
}
File::saveFile(str, file);
}
// / 这个程序是为了统一替换tab为4个空格 [AUTO-TRANSLATED:ecb3b523]
// / This program is for unified replacement of tabs with 4 spaces
int main(int argc, char *argv[]) {
CMD_main cmd_main;
try {
cmd_main.operator()(argc, argv);
} catch (std::exception &ex) {
cout << ex.what() << endl;
return -1;
}
string path = cmd_main["in"];
string filter = cmd_main["filter"];
auto vec = ::split(filter, ",");
set<string> filter_set;
for (auto ext : vec) {
filter_set.emplace(ext);
}
bool no_filter = filter_set.find("*") != filter_set.end();
// 设置日志 [AUTO-TRANSLATED:50372045]
// Set log
Logger::Instance().add(std::make_shared<ConsoleChannel>());
File::scanDir(path, [&](const string &path, bool isDir) {
if (isDir) {
return true;
}
if (!no_filter) {
// 开启了过滤器 [AUTO-TRANSLATED:331a77dd]
// Filter enabled
auto pos = strstr(path.data(), ".");
if (pos == nullptr) {
// 没有后缀 [AUTO-TRANSLATED:2273522f]
// No suffix
return true;
}
auto ext = pos + 1;
if (filter_set.find(ext) == filter_set.end()) {
// 后缀不匹配 [AUTO-TRANSLATED:7e30f0b4]
// Suffix does not match
return true;
}
}
// 该文件匹配 [AUTO-TRANSLATED:9dce5098]
// File matches
process_file(path.data());
return true;
}, true);
return 0;
}