Click here to Skip to main content
15,892,059 members
Articles / Programming Languages / C#

Resolving Symbolic References in a CodeDOM (Part 7)

Rate me:
Please Sign up or sign in to vote.
4.75/5 (6 votes)
2 Dec 2012CDDL12 min read 19.4K   509   14  
Resolving symbolic references in a CodeDOM.
// The Nova Project by Ken Beckett.
// Copyright (C) 2007-2012 Inevitable Software, all rights reserved.
// Released under the Common Development and Distribution License, CDDL-1.0: http://opensource.org/licenses/cddl1.php

using System.Collections.Generic;
using System.Linq;

using Nova.CodeDOM;

namespace Nova.Resolving
{
    /// <summary>
    /// Holds a collection of possible matches for an <see cref="UnresolvedRef"/>.
    /// </summary>
    public class MatchCandidates : List<MatchCandidate>
    {
        protected bool _isMethodGroup;
        protected bool _isCategoryMatch;
        protected bool _isCompleteMatch;  // True if the matches are complete (any type & parameter arguments and static mode also match)

        /// <summary>
        /// Create a <see cref="MatchCandidates"/> collection.
        /// </summary>
        public MatchCandidates(bool isMethodGroup, bool isCategoryMatch, bool isCompleteMatch)
        {
            _isMethodGroup = isMethodGroup;
            _isCategoryMatch = isCategoryMatch;
            _isCompleteMatch = isCompleteMatch;
        }

        /// <summary>
        /// True if the matched objects represent one or more methods.
        /// </summary>
        public bool IsMethodGroup
        {
            get { return _isMethodGroup; }
        }

        /// <summary>
        /// True if the types of the matching objects are valid for the target category.
        /// </summary>
        public bool IsCategoryMatch
        {
            get { return _isCategoryMatch; }
        }

        /// <summary>
        /// True if the matches are complete (any type and parameter arguments and static mode also match).
        /// </summary>
        public bool IsCompleteMatch
        {
            get { return _isCompleteMatch; }
        }

        /// <summary>
        /// Determine if the collection contains the specified <see cref="CodeObject"/>.
        /// </summary>
        public bool Contains(CodeObject codeObject)
        {
            // NOTE: A bug in .NET causes an exception if Equals is called to compare a MethodInfo
            // for a generic method declaration to any non-MethodInfo object.   We currently only
            // need to search for CodeObjects, so we look for them specifically to avoid the bug.
            return Enumerable.Any(this, delegate(MatchCandidate candidate) { return candidate.Object is CodeObject && candidate.Object.Equals(codeObject); });
        }

        /// <summary>
        /// Create a new <see cref="MatchCandidates"/> collection with the same status flags as the current one (but empty).
        /// </summary>
        public MatchCandidates New()
        {
            return new MatchCandidates(_isMethodGroup, _isCategoryMatch, _isCompleteMatch);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)


Written By
Software Developer (Senior)
United States United States
I've been writing software since the late 70's, currently focusing mainly on C#.NET. I also like to travel around the world, and I own a Chocolate Factory (sadly, none of my employees are oompa loompas).

Comments and Discussions