| 106 | } |
| 107 | |
| 108 | int CheckPointManager::GetFile(vector<string> *checkpointfiles) { |
| 109 | EventFileManager eventfilemanager(option_); |
| 110 | const set<string, FileCmpOpt> &files = eventfilemanager.GetFileList(); |
| 111 | for (const auto &it : files) { |
| 112 | checkpointfiles->push_back(it); |
| 113 | } |
| 114 | if (checkpointfiles->size()) |
| 115 | checkpointfiles->pop_back(); |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | int CheckPointManager::LoadCheckpointFiles(const string &sCheckpointTmpFileDirPath) { |
| 120 | STATISTICS(CheckPointTransferFile()); |
nothing calls this directly
no outgoing calls
no test coverage detected