//define the actions to take when the event is raised public void AddDevPackCalculations(object sender, CustomEventArgs e) { bool bHasCalculations = false; //e.CalculatorParams = current devpack or devpackpart being processed //the file paths identify the document to run calcs on and the //uripattern identifies the node holding the linkedviews //note that e.CalcParams.ExtensionDoctoCalcURI.Resources[0] holds //parent contenturi used to start the extension //(with original doctocalc file that is used when the linkedview is needed) HCCalculatorHelper fnCalculatorHelper = new HCCalculatorHelper(e.CalculatorParams); //run the calculations bHasCalculations = fnCalculatorHelper .RunCalculations(); //pass the bool back to the publisher //by setting the HasCalculations property of CustomEventArgs e.HasCalculations = bHasCalculations; }
public override async Task <bool> RunAnalyzerStep( ExtensionContentURI extDocToCalcURI, ExtensionContentURI extCalcDocURI, string stepNumber, IList <string> urisToAnalyze, IDictionary <string, string> updates, CancellationToken cancellationToken) { bool bHasAnalysis = false; CalculatorParameters hcCalcParams = CalculatorHelpers.SetCalculatorParameters( extDocToCalcURI, extCalcDocURI, stepNumber, urisToAnalyze, updates); HCAnalyzerHelper hcAnalyzerHelper = new HCAnalyzerHelper(hcCalcParams); //check to make sure the analyzer can be run hcAnalyzerHelper.SetOptions(); if (hcAnalyzerHelper.HCCalculatorParams.ErrorMessage != string.Empty) { extDocToCalcURI.ErrorMessage += hcAnalyzerHelper.HCCalculatorParams.ErrorMessage; return(false); } ContractHelpers.EXTENSION_STEPS eStepNumber = ContractHelpers.GetEnumStepNumber(stepNumber); switch (eStepNumber) { case ContractHelpers.EXTENSION_STEPS.stepzero: bHasAnalysis = true; break; case ContractHelpers.EXTENSION_STEPS.stepone: bHasAnalysis = true; break; case ContractHelpers.EXTENSION_STEPS.steptwo: //clear updates collection updates.Clear(); //just need the html form edits in this step bHasAnalysis = true; extDocToCalcURI.URIDataManager.NeedsFullView = false; extDocToCalcURI.URIDataManager.NeedsSummaryView = false; break; case ContractHelpers.EXTENSION_STEPS.stepthree: //get rid of any update member that was added after running the same step 2x CalculatorHelpers.RefreshUpdates(hcCalcParams, stepNumber, updates); if (hcAnalyzerHelper.AnalyzerType == HCAnalyzerHelper.ANALYZER_TYPES.resources01) { //linked view insertions needs some analysis parameters SetAnalyzerParameters(hcAnalyzerHelper, hcCalcParams); //the calculator pattern handles children linked view insertions //better than the analyzer pattern HCCalculatorHelper hcCalculatorHelper = new HCCalculatorHelper(hcCalcParams); bHasAnalysis = hcCalculatorHelper .RunCalculations(); } else { //run the analysis (when analyses are available) //bHasAnalysis = hcAnalyzerHelper // .RunAnalysis(urisToAnalyze); } extDocToCalcURI.ErrorMessage = hcCalcParams.ErrorMessage; extDocToCalcURI.ErrorMessage += hcAnalyzerHelper.HCCalculatorParams.ErrorMessage; if (!bHasAnalysis) { extDocToCalcURI.ErrorMessage = (extDocToCalcURI.ErrorMessage == string.Empty) ? Errors.MakeStandardErrorMsg("CALCULATORS_URI_MISMATCH") : extDocToCalcURI.ErrorMessage; return(bHasAnalysis); } if (string.IsNullOrEmpty(extDocToCalcURI.ErrorMessage)) { //two step analyzers need to be saved now HCAnalyzerHelper.ANALYZER_TYPES eAnalyzerType = hcAnalyzerHelper.GetAnalyzerType( hcAnalyzerHelper.HCCalculatorParams.AnalyzerParms.AnalyzerType); //when 3+ step analyzers start being used CheckForLastStepAnalyzer(eAnalyzerType, eStepNumber, extDocToCalcURI); if (!CalculatorHelpers.IsSaveAction(extDocToCalcURI)) { //replace the old calculator with the new one //and save the new calculations document bool bHasReplacedCalcDoc = CalculatorHelpers.SaveNewCalculationsDocument( hcAnalyzerHelper.HCCalculatorParams); if (bHasReplacedCalcDoc) { //the resource01 app uses the calculator, rather //than analyzer, pattern (i.e. children linked views //can be inserted) if (hcAnalyzerHelper.AnalyzerType != HCAnalyzerHelper.ANALYZER_TYPES.resources01) { //and add xmldoc params to update collection //only doctocalc gets updated CalculatorHelpers.AddXmlDocAndXmlDocIdsToUpdates( hcAnalyzerHelper.HCCalculatorParams); } bHasAnalysis = true; } else { extDocToCalcURI.ErrorMessage = Errors.MakeStandardErrorMsg("ANALYSES_ID_MISMATCH"); } } } else { bHasAnalysis = false; } extDocToCalcURI.URIDataManager.NeedsFullView = true; extDocToCalcURI.URIDataManager.NeedsSummaryView = false; break; case ContractHelpers.EXTENSION_STEPS.stepfour: bHasAnalysis = true; if (hcAnalyzerHelper.AnalyzerType == HCAnalyzerHelper.ANALYZER_TYPES.resources01) { extDocToCalcURI.URIDataManager.NeedsFullView = false; extDocToCalcURI.URIDataManager.NeedsSummaryView = true; extCalcDocURI.URIFileExtensionType = CalculatorHelpers.GetAttribute(hcCalcParams.LinkedViewElement, Calculator1.cFileExtensionType); } if (extDocToCalcURI.URIDataManager.TempDocSaveMethod == Constants.SAVECALCS_METHOD.saveastext.ToString()) { //analyzers aren't yet available } else { //tells addinhelper to save calcs CalculatorHelpers.SetTempDocSaveAnalysesProperty(extDocToCalcURI); } break; default: //as many steps as needed can be added to this addin break; } extDocToCalcURI.ErrorMessage += hcAnalyzerHelper.HCCalculatorParams.ErrorMessage; return(bHasAnalysis); }