Click here to Skip to main content
15,886,030 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;

using Nova.Parsing;
using Nova.Rendering;
using Nova.Resolving;

namespace Nova.CodeDOM
{
    /// <summary>
    /// Enforces the disposal of an object when it's no longer needed.  It accepts either an <see cref="Expression"/> or a
    /// <see cref="LocalDecl"/>, and internally wraps this in a try/finally that calls Dispose() on the object (which must
    /// implement the <see cref="IDisposable"/> interface).
    /// </summary>
    public class Using : BlockStatement
    {
        #region /* FIELDS */

        /// <summary>
        /// Can be an Expression that evaluates to a VariableRef of a type that implements IDisposable, or
        /// a LocalDecl of a type that implements IDisposable.
        /// </summary>
        protected CodeObject _target;

        #endregion

        #region /* CONSTRUCTORS */

        /// <summary>
        /// Create a <see cref="Using"/>.
        /// </summary>
        public Using(LocalDecl localDecl, CodeObject body)
            : base(body, false)
        {
            Target = localDecl;
        }

        /// <summary>
        /// Create a <see cref="Using"/>.
        /// </summary>
        public Using(LocalDecl localDecl)
            : base(null, false)
        {
            Target = localDecl;
        }

        /// <summary>
        /// Create a <see cref="Using"/>.
        /// </summary>
        public Using(Expression expression, CodeObject body)
            : base(body, false)
        {
            Target = expression;
        }

        /// <summary>
        /// Create a <see cref="Using"/>.
        /// </summary>
        public Using(Expression expression)
            : base(null, false)
        {
            Target = expression;
        }

        #endregion

        #region /* PROPERTIES */

        /// <summary>
        /// The target code object.
        /// </summary>
        public CodeObject Target
        {
            get { return _target; }
            set
            {
                // If the target is a LocalDecl and it already has a parent, then assume it's an existing local
                // and create a ref to it, otherwise assume it's a child-target local (or other expression).
                SetField(ref _target, (value is LocalDecl && value.Parent != null ? value.CreateRef() : value), true);
            }
        }

        /// <summary>
        /// True if contains a single nested Using statement as a child.
        /// </summary>
        public bool HasNestedUsing
        {
            get { return (_body != null && !_body.HasBraces && _body.Count == 1 && _body[0] is Using); }
        }

        /// <summary>
        /// True if this is a nested using.
        /// </summary>
        public bool IsNestedUsing
        {
            get { return (_parent is Using && !((Using)_parent).Body.HasBraces && ((Using)_parent).Body.Count == 1); }
        }

        /// <summary>
        /// The keyword associated with the <see cref="Statement"/>.
        /// </summary>
        public override string Keyword
        {
            get { return ParseToken; }
        }

        #endregion

        #region /* METHODS */

        protected override bool IsChildIndented(CodeObject obj)
        {
            // The child object can only be indented if it's the first thing on the line
            if (obj.IsFirstOnLine)
            {
                // If the child isn't a nested using and isn't a prefix, it should be indented
                return !(HasNestedUsing && _body[0] == obj) && !IsChildPrefix(obj);
            }
            return false;
        }

        /// <summary>
        /// Deep-clone the code object.
        /// </summary>
        public override CodeObject Clone()
        {
            Using clone = (Using)base.Clone();
            clone.CloneField(ref clone._target, _target);
            return clone;
        }

        #endregion

        #region /* PARSING */

        /// <summary>
        /// True for multi-part statements, such as try/catch/finally or if/else.
        /// </summary>
        public const string ParseToken = "using";

        internal static void AddParsePoints()
        {
            // Use a parse-priority of 200 (Alias uses 0, UsingDirective uses 100)
            Parser.AddParsePoint(ParseToken, 200, Parse, typeof(IBlock));
        }

        /// <summary>
        /// Pase a <see cref="Using"/>.
        /// </summary>
        public static Using Parse(Parser parser, CodeObject parent, ParseFlags flags)
        {
            return new Using(parser, parent);
        }

        protected Using(Parser parser, CodeObject parent)
            : base(parser, parent)
        {
            parser.NextToken();  // Move past 'using'
            ParseExpectedToken(parser, Expression.ParseTokenStartGroup);  // Move past '('

            // Parse either LocalDecl or Expression (object)
            if (LocalDecl.PeekLocalDecl(parser))
                SetField(ref _target, LocalDecl.Parse(parser, this, false, true), false);
            else
                SetField(ref _target, Expression.Parse(parser, this, true, Expression.ParseTokenEndGroup), false);

            ParseExpectedToken(parser, Expression.ParseTokenEndGroup);  // Move past ')'

            new Block(out _body, parser, this, false);  // Parse the body
        }

        #endregion

        #region /* RESOLVING */

        /// <summary>
        /// Resolve all child symbolic references, using the specified <see cref="ResolveCategory"/> and <see cref="ResolveFlags"/>.
        /// </summary>
        public override CodeObject Resolve(ResolveCategory resolveCategory, ResolveFlags flags)
        {
            _target = _target.Resolve(ResolveCategory.Expression, flags);
            return base.Resolve(ResolveCategory.CodeObject, flags);
        }

        /// <summary>
        /// Resolve child code objects that match the specified name, moving up the tree until a complete match is found.
        /// </summary>
        public override void ResolveRefUp(string name, Resolver resolver)
        {
            if (_body != null)
            {
                _body.ResolveRef(name, resolver);
                if (resolver.HasCompleteMatch) return;  // Abort if we found a match
            }
            if (_target is LocalDecl)
            {
                ((LocalDecl)_target).ResolveRef(name, resolver);
                if (resolver.HasCompleteMatch) return;  // Abort if we found a match
            }
            if (_parent != null)
                _parent.ResolveRefUp(name, resolver);
        }

        /// <summary>
        /// Returns true if the code object is an <see cref="UnresolvedRef"/> or has any <see cref="UnresolvedRef"/> children.
        /// </summary>
        public override bool HasUnresolvedRef()
        {
            if (_target != null && _target.HasUnresolvedRef())
                return true;
            return base.HasUnresolvedRef();
        }

        #endregion

        #region /* FORMATTING */

        /// <summary>
        /// True if the <see cref="Statement"/> has an argument.
        /// </summary>
        public override bool HasArgument
        {
            get { return true; }
        }

        /// <summary>
        /// True if the <see cref="BlockStatement"/> always requires braces.
        /// </summary>
        public override bool HasBracesAlways
        {
            get { return false; }
        }

        /// <summary>
        /// Determines if the body of the <see cref="BlockStatement"/> should be formatted with braces.
        /// </summary>
        public override bool ShouldHaveBraces()
        {
            // Turn off braces if we have a nested child using
            return (base.ShouldHaveBraces() && !HasNestedUsing);
        }

        /// <summary>
        /// Determines if the code object only requires a single line for display.
        /// </summary>
        public override bool IsSingleLine
        {
            get { return (base.IsSingleLine && (_target == null || (!_target.IsFirstOnLine && _target.IsSingleLine))); }
            set
            {
                base.IsSingleLine = value;
                if (_target != null)
                {
                    if (value)
                        _target.IsFirstOnLine = false;
                    _target.IsSingleLine = value;
                }
            }
        }

        #endregion

        #region /* RENDERING */

        protected override void AsTextAfter(CodeWriter writer, RenderFlags flags)
        {
            base.AsTextAfter(writer, flags | (HasNestedUsing ? RenderFlags.NoBlockIndent : 0));
        }

        protected override void AsTextArgument(CodeWriter writer, RenderFlags flags)
        {
            if (_target != null)
                _target.AsText(writer, flags);
        }

        #endregion
    }
}

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