Ai
20 Star 43 Fork 13

GiteeStudio/git-analyze

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
executor.hpp 635 Bytes
一键复制 编辑 原始数据 按行查看 历史
///////////
#ifndef EXECUTOR_HPP
#define EXECUTOR_HPP
#include "engine.hpp"
class executor_base;
class Executor {
public:
Executor();
~Executor();
Executor(const Executor &) = delete;
Executor &operator=(const Executor &) = delete;
bool InitializeRules(std::string_view sv, std::string_view ref);
bool Execute(std::string_view path, std::string_view oldrev,
std::string_view newrev); // GIT_DIR
// FullMatch
bool FullMatch(std::string_view path) { return engine.FullMatch(path); }
private:
bool ExecuteTreeWalk(std::string_view rev);
RulesEngine engine;
executor_base *base{nullptr};
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/oscstudio/git-analyze.git
git@gitee.com:oscstudio/git-analyze.git
oscstudio
git-analyze
git-analyze
master

搜索帮助