-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
49 lines (48 loc) · 1.78 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
#include "3party/cpptoml.h"
#include "config.h"
#include "delta_compression.h"
#include "pipeline_delta_compression.h"
#include <filesystem>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <iostream>
#include <memory>
#include <string>
DEFINE_string(config, "odess.toml", "path to config file");
using namespace Delta;
int main(int argc, char *argv[]) {
/* Setup logging. */
FLAGS_stderrthreshold = google::INFO;
gflags::ParseCommandLineFlags(&argc, &argv, true);
google::InitGoogleLogging(argv[0]);
FLAGS_log_dir = "./logs";
FLAGS_logtostderr = false;
LOG(INFO) << "using config file " << FLAGS_config;
/* Load config. */
Config::Instance().Init(FLAGS_config);
auto task = Config::Instance().get()->get_as<std::string>("task"); // 获取task
if (*task == "compression") {
Delta::DeltaCompression *compression;
auto pipeline = Config::Instance()
.get()
->get_as<bool>("pipeline")
.value_or<bool>(false);
if (pipeline) { // 流水线模式
compression = new Delta::PipelineDeltaCompression();
} else { // 正常模式
compression = new Delta::DeltaCompression();
}
auto task_data_dir =
Config::Instance().get()->get_as<std::string>("task_data_dir"); // 数据集文件
for (const auto &entry :
std::filesystem::recursive_directory_iterator(*task_data_dir)) { // 遍历数据集
if (entry.is_regular_file()) { // 常规文件(非目录或者符号链接等文件)
LOG(INFO) << "start processing file "
<< entry.path().relative_path().string(); // 输出文件相对路径
compression->AddFile(entry.path().relative_path().string()); // 添加到压缩队列
}
}
delete compression;
}
return 0;
}