HxfGeneratorComponent.cs :  » Development » Sandcastle » Microsoft » Ddue » Tools » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Development » Sandcastle 
Sandcastle » Microsoft » Ddue » Tools » HxfGeneratorComponent.cs
// Copyright  Microsoft Corporation.
// This source file is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.

using System;
using System.IO;
using System.Text;
using System.Xml;
using System.Xml.XPath;
using System.Collections.Generic;

namespace Microsoft.Ddue.Tools{

    public class FileCreatedEventArgs : EventArgs {

        private string filePath;
        private string hxfPath;
        
        public FileCreatedEventArgs(string filePath, string hxfPath) {
            this.filePath = filePath;
            this.hxfPath = hxfPath;
        }

        public string FilePath {
            get {
                return(filePath);
            }
        }

        public string HxfPath {
            get {
                return (hxfPath);
            }
        }

    }

    public class HxfGeneratorComponent : BuildComponent {

        public HxfGeneratorComponent (BuildAssembler assembler, XPathNavigator configuration) : base(assembler, configuration) {

            // get configuration data
            inputValue = configuration.GetAttribute("input", String.Empty);
            if (!String.IsNullOrEmpty(inputValue)) inputValue = Environment.ExpandEnvironmentVariables(inputValue);
            outputValue = configuration.GetAttribute("output", String.Empty);
            if (!String.IsNullOrEmpty(outputValue)) outputValue = Environment.ExpandEnvironmentVariables(outputValue);
           
            // subscribe to component events
            assembler.ComponentEvent += new EventHandler(FileCreatedHandler);
        }

        private string inputValue;

        private string outputValue;

        private XmlWriter writer;

        private Dictionary<string, XmlWriter> writers = new Dictionary<string, XmlWriter>();

        private void FileCreatedHandler (Object o, EventArgs e) {
            FileCreatedEventArgs fe = e as FileCreatedEventArgs;
            if (fe == null) return;
            
            string path = Path.Combine(fe.HxfPath, outputValue).ToLower();
           
            XmlWriter tempWriter;
            if (!writers.TryGetValue(path, out tempWriter)) {
                if (writer != null) {
                    writer.WriteEndDocument();
                    writer.Close();
                }
                WriteFile(path);
            }
            
            WriteFileElement(fe.FilePath);
                       
        }

        private void WriteFileElement (string url) {
            writer.WriteStartElement("File");
            writer.WriteAttributeString("Url", url);
            writer.WriteEndElement();
        }

        protected override void Dispose(bool disposing) {
            if (disposing) {
                writer.WriteEndDocument();
                writer.Close();
            }
            base.Dispose(disposing);
        }

        public void WriteFile(string path) {
            XmlWriterSettings writerSettings = new XmlWriterSettings();
            writerSettings.Indent = true;
            writer = XmlWriter.Create(path);
            writer.WriteStartDocument();
            writer.WriteStartElement("HelpFileList");
            writer.WriteAttributeString("DTDVersion", "1.0");

            // use the input to seed the output
            if (!String.IsNullOrEmpty(inputValue)) {

                try {
                    TextReader reader = File.OpenText(inputValue);

                    try {
                        while (true) {
                            string line = reader.ReadLine();
                            if (line == null) break;
                            WriteFileElement(line);
                        }
                    }
                    finally {
                        reader.Close();
                    }
                }
                catch (IOException ex) {
                    WriteMessage(MessageLevel.Error, String.Format("An access error occured while attempting to copy the input HxF data. The error message is:", ex.Message));
                }
            }

            writers.Add(path, writer);
        }

        // don't do anything for individual files
        public override void Apply (XmlDocument document, string key) {}

    }

}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.