FailureProcessingResult IFailuresPreprocessor.PreprocessFailures(FailuresAccessor failuresAccessor) { IList <FailureMessageAccessor> failList = failuresAccessor.GetFailureMessages(); if (_failureIdList.Count == 0) { failuresAccessor.DeleteAllWarnings(); if (deleteErrors) { foreach (FailureMessageAccessor accessor in failList) { if (accessor.GetSeverity() == FailureSeverity.Error) { var ids = accessor.GetFailingElementIds(); failuresAccessor.DeleteElements((IList <ElementId>)ids.GetEnumerator()); } } } } else { foreach (FailureMessageAccessor failure in failList) { FailureDefinitionId failId = failure.GetFailureDefinitionId(); if (_failureIdList.Exists(p => p == failId)) { failuresAccessor.DeleteWarning(failure); } } } return(FailureProcessingResult.Continue); }
private void FaliureProcessor(object sender, FailuresProcessingEventArgs e) { bool hasFailure = false; FailuresAccessor fas = e.GetFailuresAccessor(); List <FailureMessageAccessor> fma = fas.GetFailureMessages().ToList(); List <ElementId> ElemntsToDelete = new List <ElementId>(); fas.DeleteAllWarnings(); foreach (FailureMessageAccessor fa in fma) { try { //use the following lines to delete the warning elements List <ElementId> FailingElementIds = fa.GetFailingElementIds().ToList(); ElementId FailingElementId = FailingElementIds[0]; if (!ElemntsToDelete.Contains(FailingElementId)) { ElemntsToDelete.Add(FailingElementId); } hasFailure = true; fas.DeleteWarning(fa); } catch (Exception ex) { Console.WriteLine(ex.ToString()); } } if (ElemntsToDelete.Count > 0) { fas.DeleteElements(ElemntsToDelete); } //use the following line to disable the message supressor after the external command ends //CachedUiApp.Application.FailuresProcessing -= FaliureProcessor; if (hasFailure) { e.SetProcessingResult(FailureProcessingResult.ProceedWithCommit); } e.SetProcessingResult(FailureProcessingResult.Continue); }
/***************************************************/ /**** Private Event Handlers ****/ /***************************************************/ private static void ControlledApplication_FailuresProcessing(object sender, Autodesk.Revit.DB.Events.FailuresProcessingEventArgs e) { bool hasFailure = false; FailuresAccessor failuresAccessor = e.GetFailuresAccessor(); List <FailureMessageAccessor> failureMessageAccessorsList = failuresAccessor.GetFailureMessages().ToList(); List <ElementId> elementsToDelete = new List <ElementId>(); foreach (FailureMessageAccessor failureMessageAccessor in failureMessageAccessorsList) { try { if (failureMessageAccessor.GetSeverity() == FailureSeverity.Warning) { failuresAccessor.DeleteWarning(failureMessageAccessor); continue; } else { failuresAccessor.ResolveFailure(failureMessageAccessor); hasFailure = true; continue; } } catch { } } if (elementsToDelete.Count != 0) { failuresAccessor.DeleteElements(elementsToDelete); } if (hasFailure) { e.SetProcessingResult(FailureProcessingResult.ProceedWithCommit); } e.SetProcessingResult(FailureProcessingResult.Continue); }
/// <summary> /// This is an event handler that responds to a failure according to the current settings /// </summary> /// <param name="sender">The sending object, i.e. the Revit application</param> /// <param name="e">The event arguments</param> public void AutoOptionsFailureHandler(Object sender, Autodesk.Revit.DB.Events.FailuresProcessingEventArgs e) { //don't process if handling is turned off if (currentSettings.HandlingActive == false) { return; } //update the uiApp reference Application RevitApp = sender as Application; uiApp = new UIApplication(RevitApp); FailuresAccessor fa = e.GetFailuresAccessor(); //this is the action that will be taken to attempt resolution. Default is to continue the default Revit failure processing FailureProcessingResult action = FailureProcessingResult.Continue; foreach (FailureMessageAccessor fma in fa.GetFailureMessages()) { AutoFailureHandlingOptions aFOpts = currentSettings.AllFailureOptions .Where(x => x.FailureGuid == fma.GetFailureDefinitionId().Guid) .FirstOrDefault(); if (aFOpts != null) { //Show the CatchFailures dialog if a failure was caught if (currentSettings.InteractiveModeEnabled) { try { //todo: clone to allow roll-back? FailureCatcherWindow failWin = new FailureCatcherWindow(currentSettings, aFOpts, uiApp); Boolean?result = failWin.ShowDialog(); if (result.Value) { //Write changes to the .ini currentSettings.LastUpdate = DateTime.Now; IAutoOptionsRepository settingsRepo = new AutoOptionsConfigFileRepo(); settingsRepo.WriteAutoOptions(currentSettings); } } catch (Exception ex) { TaskDialog.Show("ex", ex.Message + "\n" + ex.StackTrace); throw; } } FailureResolutionOption selectedResolution = aFOpts.SelectedResolution; if (selectedResolution is AutoOptionsResolution) { try { switch (((AutoOptionsResolution)selectedResolution).Resolution) { case AutoOptionsResolutionType.NoAction: break; case AutoOptionsResolutionType.DeleteAffected: fa.DeleteElements(fma.GetFailingElementIds().ToList()); action = FailureProcessingResult.ProceedWithCommit; break; case AutoOptionsResolutionType.CancelTransaction: //todo: not working, being overwritten? action = FailureProcessingResult.ProceedWithRollBack; e.SetProcessingResult(action); fa.RollBackPendingTransaction(); return; case AutoOptionsResolutionType.HideWarning: //todo: check if actually is a warning? fa.DeleteWarning(fma); break; default: break; } } catch (Exception ex) { TaskDialog.Show("Dispatcher", ex.Message + "\n" + ex.Source + "\n" + ex.StackTrace); } } else if (selectedResolution is RevitResolution) { try { FailureResolutionType fRT = ((RevitResolution)selectedResolution).Resolution; if (fma.HasResolutionOfType(fRT)) { fma.SetCurrentResolutionType(fRT); fa.ResolveFailure(fma); action = FailureProcessingResult.ProceedWithCommit; } else { TaskDialog.Show("AutoOptions", "The selected automatic resolution \n***" + aFOpts.SelectedResolution.FriendlyCaption + " (" + fRT + ")***\ncan't be used"); } } catch (Exception ex) { TaskDialog.Show("Dispatcher", ex.Message + "\n" + ex.Source + "\n" + ex.StackTrace); } } } } e.SetProcessingResult(action); }