#include "file_consumer.h" #include "indexer.h" #include "utils.h" FileConsumer::FileConsumer(SharedState* shared_state) : shared_(shared_state) {} IndexedFile* FileConsumer::TryConsumeFile(const std::string& file) { // Try to find cached local result. auto it = local_.find(file); if (it != local_.end()) return it->second.get(); // No result in local; we need to query global. bool did_insert = false; { std::lock_guard lock(shared_->mutex); did_insert = shared_->files.insert(file).second; } local_[file] = did_insert ? MakeUnique(file) : nullptr; return local_[file].get(); } void FileConsumer::ForceLocal(const std::string& file) { auto it = local_.find(file); if (it == local_.end()) local_[file] = MakeUnique(file); } std::vector> FileConsumer::TakeLocalState() { std::vector> result; for (auto& entry : local_) { if (entry.second) result.push_back(std::move(entry.second)); } return result; }