// Copyright (c) 2009-2013 AlphaSierraPapa for the SharpDevelop Team
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
// software and associated documentation files (the "Software"), to deal in the Software
// without restriction, including without limitation the rights to use, copy, modify, merge,
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
// to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or
// substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Xml.Linq;
using ICSharpCode.Decompiler.TypeSystem;
using ICSharpCode.Decompiler.Util;
namespace ICSharpCode.Decompiler.Documentation
{
///
/// Represents an element in the XML documentation.
/// Any occurrences of "<inheritdoc/>" are replaced with the inherited documentation.
///
public class XmlDocumentationElement
{
readonly XElement? element;
readonly IEntity? declaringEntity;
readonly Func? crefResolver;
volatile string? textContent;
///
/// Inheritance level; used to prevent cyclic doc inheritance.
///
int nestingLevel;
///
/// Creates a new documentation element.
///
public XmlDocumentationElement(XElement element, IEntity? declaringEntity, Func? crefResolver)
{
if (element == null)
throw new ArgumentNullException(nameof(element));
this.element = element;
this.declaringEntity = declaringEntity;
this.crefResolver = crefResolver;
}
///
/// Creates a new documentation element.
///
public XmlDocumentationElement(string text, IEntity? declaringEntity)
{
if (text == null)
throw new ArgumentNullException(nameof(text));
this.declaringEntity = declaringEntity;
this.textContent = text;
}
///
/// Gets the entity on which this documentation was originally declared.
/// May return null.
///
public IEntity? DeclaringEntity {
get { return declaringEntity; }
}
IEntity? referencedEntity;
volatile bool referencedEntityInitialized;
///
/// Gets the entity referenced by the 'cref' attribute.
/// May return null.
///
public IEntity? ReferencedEntity {
get {
if (!referencedEntityInitialized)
{
string? cref = GetAttribute("cref");
try
{
if (!string.IsNullOrEmpty(cref) && crefResolver != null)
referencedEntity = crefResolver(cref!);
}
catch
{
referencedEntity = null;
}
referencedEntityInitialized = true;
}
return referencedEntity;
}
}
///
/// Gets the element name.
///
public string Name {
get {
return element != null ? element.Name.LocalName : string.Empty;
}
}
///
/// Gets the attribute value.
///
public string? GetAttribute(string? name)
{
return name == null ? null : element?.Attribute(name)?.Value;
}
///
/// Gets whether this is a pure text node.
///
public bool IsTextNode {
get { return element == null; }
}
///
/// Gets the text content.
///
public string TextContent {
get {
if (textContent == null)
{
StringBuilder b = new StringBuilder();
foreach (var child in this.Children)
b.Append(child.TextContent);
textContent = b.ToString();
}
return textContent;
}
}
IList? children;
///
/// Gets the child elements.
///
public IList Children {
get {
if (element == null)
return EmptyList.Instance;
return LazyInitializer.EnsureInitialized(
ref this.children,
() => CreateElements(element.Nodes(), declaringEntity, crefResolver, nestingLevel))!;
}
}
static readonly string[] doNotInheritIfAlreadyPresent = {
"example", "exclude", "filterpriority", "preliminary", "summary",
"remarks", "returns", "threadsafety", "value"
};
static List CreateElements(IEnumerable childObjects, IEntity? declaringEntity, Func? crefResolver, int nestingLevel)
{
List list = new List();
foreach (var child in childObjects)
{
var childText = child as XText;
var childTag = child as XCData;
var childElement = child as XElement;
if (childText != null)
{
list.Add(new XmlDocumentationElement(childText.Value, declaringEntity));
}
else if (childTag != null)
{
list.Add(new XmlDocumentationElement(childTag.Value, declaringEntity));
}
else if (childElement != null)
{
if (nestingLevel < 5 && childElement.Name == "inheritdoc")
{
string? cref = childElement.Attribute("cref")?.Value;
IEntity? inheritedFrom = null;
string? inheritedDocumentation = null;
if (cref != null && crefResolver != null)
{
inheritedFrom = crefResolver(cref);
if (inheritedFrom != null)
inheritedDocumentation = "" + inheritedFrom.GetDocumentation() + "";
}
else if (declaringEntity != null)
{
foreach (IMember baseMember in InheritanceHelper.GetBaseMembers((IMember)declaringEntity, includeImplementedInterfaces: true))
{
inheritedDocumentation = baseMember.GetDocumentation();
if (inheritedDocumentation != null)
{
inheritedFrom = baseMember;
inheritedDocumentation = "" + inheritedDocumentation + "";
break;
}
}
}
if (inheritedDocumentation != null)
{
var doc = XDocument.Parse(inheritedDocumentation).Element("doc");
// XPath filter not yet implemented
if (doc != null && childElement.Parent?.Parent == null && childElement.Attribute("select")?.Value == null)
{
// Inheriting documentation at the root level
List doNotInherit = new List();
doNotInherit.Add("overloads");
doNotInherit.AddRange(childObjects.OfType().Select(e => e.Name.LocalName).Intersect(
doNotInheritIfAlreadyPresent));
var inheritedChildren = doc.Nodes().Where(
inheritedObject => {
XElement? inheritedElement = inheritedObject as XElement;
return !(inheritedElement != null && doNotInherit.Contains(inheritedElement.Name.LocalName));
});
list.AddRange(CreateElements(inheritedChildren, inheritedFrom, crefResolver, nestingLevel + 1));
}
}
}
else
{
list.Add(new XmlDocumentationElement(childElement, declaringEntity, crefResolver) { nestingLevel = nestingLevel });
}
}
}
if (list.Count > 0 && list[0].IsTextNode)
{
if (string.IsNullOrWhiteSpace(list[0].textContent))
list.RemoveAt(0);
else
list[0].textContent = list[0].textContent!.TrimStart();
}
if (list.Count > 0 && list[list.Count - 1].IsTextNode)
{
if (string.IsNullOrWhiteSpace(list[list.Count - 1].textContent))
list.RemoveAt(list.Count - 1);
else
list[list.Count - 1].textContent = list[list.Count - 1].textContent!.TrimEnd();
}
return list;
}
///
public override string ToString()
{
if (element != null)
return "<" + element.Name + ">";
else
return this.TextContent;
}
}
}