| 40 | } |
| 41 | |
| 42 | void StreamingContentParser::processDataAssembling(const std::string& data) { |
| 43 | AGENUI_PERFORMANCE_LOG("stream_assembling_begin", ""); |
| 44 | AGENUI_LOG("%s", data.c_str()); |
| 45 | _extractor.appendData(data); |
| 46 | auto results = _extractor.driveParser(); |
| 47 | dispatchParseResultsBatched(results); |
| 48 | |
| 49 | AGENUI_PERFORMANCE_LOG("stream_assembling_end", ""); |
| 50 | } |
| 51 | |
| 52 | void StreamingContentParser::processDataEnding() { |
| 53 | AGENUI_LOG("processing end"); |
no test coverage detected