コード例 #1
0
        /// <summary>
        /// Build Error lists on workbook
        /// </summary>
        /// <param name="fedWorkBook"></param>
        private void PopulateErrors(COBieWorkbook fedWorkBook)
        {
            cOBieProgress.Initialise("Validating Workbooks", fedWorkBook.Count, 0);
            cOBieProgress.ReportMessage("Building Indices...");
            fedWorkBook.CreateIndices();
            cOBieProgress.ReportMessage("Building Indices...Finished");

            // Validate the workbook
            cOBieProgress.ReportMessage("Starting Validation...");
            fedWorkBook.Validate(ErrorRowStartIndex, null, (lastProcessedSheetIndex) =>
            {
                // When each sheet has been processed, increment the progress bar
                cOBieProgress.IncrementAndUpdate();
            });
            cOBieProgress.ReportMessage("Finished Validation");

            cOBieProgress.Finalise();
        }
コード例 #2
0
ファイル: FederateCOBie.cs プロジェクト: bnaand/xBim-Toolkit
        /// <summary>
        /// Build Error lists on workbook
        /// </summary>
        /// <param name="fedWorkBook"></param>
        private void PopulateErrors(COBieWorkbook fedWorkBook)
        {
            try
            {
                cOBieProgress.Initialise("Validating Workbooks", fedWorkBook.Count, 0);
                cOBieProgress.ReportMessage("Building Indices...");
                fedWorkBook.CreateIndices();
                cOBieProgress.ReportMessage("Building Indices...Finished");

                // Validate the workbook
                cOBieProgress.ReportMessage("Starting Validation...");
                fedWorkBook.Validate(ErrorRowStartIndex, null, (lastProcessedSheetIndex) =>
                {
                    // When each sheet has been processed, increment the progress bar
                    cOBieProgress.IncrementAndUpdate();
                });
                cOBieProgress.ReportMessage("Finished Validation");

                cOBieProgress.Finalise();

            }
            catch (Exception)
            {
                // TODO: Handle
                throw;
            }
        }
コード例 #3
0
        /// <summary>
        /// Validate XLS file for COBie errors, also will swap templates if required
        /// </summary>
        /// <param name="parameters">Params</param>
        /// <returns>Created file name</returns>
        private void ValidateXLSfile(Params parameters, ICOBieValidationTemplate ValidationTemplate = null)
        {
            //read xls file
            LogBackground(String.Format("Reading {0}....", parameters.ModelFile));
            COBieXLSDeserialiser deSerialiser = new COBieXLSDeserialiser(parameters.ModelFile);
            COBieWorkbook        Workbook     = deSerialiser.Deserialise();

            //extract pick list from the template sheet and swap into workbook (US / UK)
            LogBackground("Swapping PickList from template...");
            COBieSheet <COBiePickListsRow> CobiePickLists = null;

            if ((!string.IsNullOrEmpty(parameters.TemplateFile)) &&
                File.Exists(parameters.TemplateFile)
                )
            {
                //extract the pick list sheet from template
                COBieXLSDeserialiser deSerialiserPickList = new COBieXLSDeserialiser(parameters.TemplateFile, Constants.WORKSHEET_PICKLISTS);
                COBieWorkbook        wbookPickList        = deSerialiserPickList.Deserialise();
                if (wbookPickList.Count > 0)
                {
                    CobiePickLists = (COBieSheet <COBiePickListsRow>)wbookPickList.FirstOrDefault();
                }
                //check the workbook last sheet is a pick list
                if (Workbook.LastOrDefault() is COBieSheet <COBiePickListsRow> )
                {
                    //remove original pick list and replace with templates
                    Workbook.RemoveAt(Workbook.Count - 1);
                    Workbook.Add(CobiePickLists);
                }
                else
                {
                    LogBackground("Failed to Swap PickList from template...");
                }
            }

            COBieContext  context  = new COBieContext(_worker.ReportProgress);
            COBieProgress progress = new COBieProgress(context);

            context.Exclude = UserFilters;

            //Validate
            progress.Initialise("Validating Workbooks", Workbook.Count, 0);
            progress.ReportMessage("Building Indices...");
            foreach (ICOBieSheet <COBieRow> item in Workbook)
            {
                item.BuildIndices();
            }
            progress.ReportMessage("Building Indices...Finished");

            // Validate the workbook
            progress.ReportMessage("Starting Validation...");

            Workbook.Validate(ErrorRowIndexBase.RowTwo, null, (lastProcessedSheetIndex) =>
            {
                // When each sheet has been processed, increment the progress bar
                progress.IncrementAndUpdate();
            });
            progress.ReportMessage("Finished Validation");
            progress.Finalise();

            // Export
            LogBackground(String.Format("Formatting as XLS using {0} template...", Path.GetFileName(parameters.TemplateFile)));
            COBieXLSSerialiser serialiser = new COBieXLSSerialiser(parameters.ModelFile, parameters.TemplateFile);

            serialiser.Excludes = UserFilters;
            serialiser.Serialise(Workbook, ValidationTemplate);

            LogBackground(String.Format("Export Complete: {0}", parameters.ModelFile));

            Process.Start(parameters.ModelFile);

            LogBackground("Finished COBie Validation");
        }