void ClangIpcServer::registerTranslationUnitsForEditor(const ClangBackEnd::RegisterTranslationUnitForEditorMessage &message) { TIME_SCOPE_DURATION("ClangIpcServer::registerTranslationUnitsForEditor"); try { translationUnits.create(message.fileContainers()); unsavedFiles.createOrUpdate(message.fileContainers()); sendDiagnosticsTimer.start(0); } catch (const ProjectPartDoNotExistException &exception) { client()->projectPartsDoNotExist(ProjectPartsDoNotExistMessage(exception.projectPartIds())); } catch (const std::exception &exception) { qWarning() << "Error in ClangIpcServer::registerTranslationUnitsForEditor:" << exception.what(); } }
void ClangIpcServer::registerTranslationUnitsForEditor(const ClangBackEnd::RegisterTranslationUnitForEditorMessage &message) { TIME_SCOPE_DURATION("ClangIpcServer::registerTranslationUnitsForEditor"); try { auto createdTranslationUnits = translationUnits.create(message.fileContainers()); unsavedFiles.createOrUpdate(message.fileContainers()); translationUnits.setUsedByCurrentEditor(message.currentEditorFilePath()); translationUnits.setVisibleInEditors(message.visibleEditorFilePaths()); startDocumentAnnotations(); reparseVisibleDocuments(createdTranslationUnits); } catch (const ProjectPartDoNotExistException &exception) { client()->projectPartsDoNotExist(ProjectPartsDoNotExistMessage(exception.projectPartIds())); } catch (const std::exception &exception) { qWarning() << "Error in ClangIpcServer::registerTranslationUnitsForEditor:" << exception.what(); } }