| 145 | } |
| 146 | |
| 147 | bool RawGenerator::Execute() |
| 148 | { |
| 149 | if (!GenerateFilteredFeatures()) |
| 150 | return false; |
| 151 | |
| 152 | m_translators.reset(); |
| 153 | m_cache.reset(); |
| 154 | m_queue.reset(); |
| 155 | m_intermediateDataObjectsCache.Clear(); |
| 156 | |
| 157 | LOG(LINFO, ("Start final processing...")); |
| 158 | while (!m_finalProcessors.empty()) |
| 159 | { |
| 160 | auto const finalProcessor = m_finalProcessors.top(); |
| 161 | m_finalProcessors.pop(); |
| 162 | finalProcessor->Process(); |
| 163 | } |
| 164 | |
| 165 | LOG(LINFO, ("Final processing is finished.")); |
| 166 | return true; |
| 167 | } |
| 168 | |
| 169 | RawGenerator::FinalProcessorPtr RawGenerator::CreateCoslineFinalProcessor() |
| 170 | { |