// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Collections.Generic; using System.Linq; using System.Xml; namespace ICSharpCode.Core { /// /// Represents all contributions to a Path in a single .addin file. /// public class ExtensionPath { string name; AddIn addIn; List> codons = new List>(); public AddIn AddIn { get { return addIn; } } public string Name { get { return name; } } public IEnumerable Codons { get { return from list in codons from c in list select c; } } /// /// Gets the codons separated by the groups they were created in. /// i.e. if two addins add the codons to the same path they will be in diffrent group. /// if the same addin adds the codon in diffrent path elements they will be in diffrent groups. /// public IEnumerable> GroupedCodons { get { return codons.AsReadOnly(); } } public ExtensionPath(string name, AddIn addIn) { this.addIn = addIn; this.name = name; } public static void SetUp(ExtensionPath extensionPath, XmlReader reader, string endElement) { extensionPath.DoSetUp(reader, endElement); } void DoSetUp(XmlReader reader, string endElement) { Stack conditionStack = new Stack(); List innerCodons = new List(); while (reader.Read()) { switch (reader.NodeType) { case XmlNodeType.EndElement: if (reader.LocalName == "Condition" || reader.LocalName == "ComplexCondition") { conditionStack.Pop(); } else if (reader.LocalName == endElement) { if (innerCodons.Count > 0) this.codons.Add(innerCodons); return; } break; case XmlNodeType.Element: string elementName = reader.LocalName; if (elementName == "Condition") { conditionStack.Push(Condition.Read(reader)); } else if (elementName == "ComplexCondition") { conditionStack.Push(Condition.ReadComplexCondition(reader)); } else { Codon newCodon = new Codon(this.AddIn, elementName, Properties.ReadFromAttributes(reader), conditionStack.ToArray()); innerCodons.Add(newCodon); if (!reader.IsEmptyElement) { ExtensionPath subPath = this.AddIn.GetExtensionPath(this.Name + "/" + newCodon.Id); subPath.DoSetUp(reader, elementName); } } break; } } if (innerCodons.Count > 0) this.codons.Add(innerCodons); } } }