コード例 #1
0
ファイル: RootDetail.cs プロジェクト: harold4/bitdiffer
        protected ChangeType PerformCompareInternal(ICanCompare from, bool suppressBreakingChanges)
        {
            if (from == null)
            {
                throw new ArgumentNullException("from");
            }

            if (from.Status == Status.Missing && _status == Status.Missing)
            {
                _changeThisInstance = ChangeType.None;
            }
            else if (from.Status == Status.Missing)
            {
                _changeThisInstance = ChangeType.Added;

                ForceChangeToAllDescendants();
            }
            else if (_status == Status.Missing)
            {
                if (suppressBreakingChanges || (((RootDetail)from).SuppressBreakingChangesInChildren))
                {
                    _changeThisInstance = ChangeType.RemovedNonBreaking;
                }
                else
                {
                    Visibility visibility = VisibilityUtil.GetMostVisible(from);

                    if (visibility == Visibility.Public)
                    {
                        _changeThisInstance = ChangeType.RemovedBreaking;
                    }
                    else
                    {
                        _changeThisInstance = ChangeType.RemovedNonBreaking;
                    }
                }

                ForceChangeToAllDescendants();
            }
            else
            {
                if (from.GetType() != GetType())
                {
                    throw new InvalidOperationException("Cannot calculate changes between different types");
                }

                if (string.Compare(from.AlignmentIdentifier, this.AlignmentIdentifier) != 0)
                {
                    throw new InvalidOperationException("Cannot calculate changes between objects with different identifiers. The identifier correlates the same objects in different lists.");
                }

                _changeThisInstance = CompareInstance(from, suppressBreakingChanges);
            }

            return(_changeThisInstance);
        }
コード例 #2
0
        public PropertyDetail(RootDetail parent, PropertyInfo pi)
            : base(parent, pi)
        {
            _name     = pi.Name;
            _category = "property";

            MethodInfo[] methods = pi.GetAccessors(true);
            foreach (MethodInfo mi in methods)
            {
                MethodDetail m = new MethodDetail(this, mi);

                if ((m.Name.Length > 3) && (mi.IsSpecialName))
                {
                    m.Name = m.Name.Substring(0, 3);
                }

                m.Declaration = null;
                _children.Add(m);
            }

            if (pi.GetIndexParameters().Length > 0)
            {
                CodeStringBuilder csbParameters = new CodeStringBuilder(AppendMode.Text);

                foreach (ParameterInfo ip in pi.GetIndexParameters())
                {
                    csbParameters.AppendParameterType(ip);
                    csbParameters.AppendText(", ");

                    _parameterCount++;
                }

                csbParameters.RemoveCharsFromEnd(2);

                _parameterTypesList = csbParameters.ToString();
            }

            _visibility = VisibilityUtil.GetMostVisible(FilterChildren <MethodDetail>());

            CodeStringBuilder csb = new CodeStringBuilder();

            AppendAttributesDeclaration(csb);

            csb.Mode = AppendMode.Html;
            csb.AppendVisibility(_visibility);
            csb.AppendText(" ");
            csb.Mode = AppendMode.Both;

            csb.AppendType(pi.PropertyType);
            csb.AppendText(" ");
            csb.AppendText(pi.Name);

            if (this.ParameterCount > 0)
            {
                csb.AppendText("[");
                csb.AppendText(this.ParameterTypesList);
                csb.AppendText("]");
            }

            csb.Mode = AppendMode.Html;

            csb.AppendNewline();
            csb.AppendText("{");
            csb.AppendNewline();
            csb.AppendIndent();

            foreach (MethodDetail mi in FilterChildren <MethodDetail>())
            {
                if (mi.Visibility != _visibility)
                {
                    csb.AppendVisibility(mi.Visibility);
                    csb.AppendText(" ");
                }

                csb.AppendText(mi.Name);
                csb.AppendText("; ");
            }

            csb.AppendNewline();
            csb.AppendText("}");

            _declaration     = csb.ToString();
            _declarationHtml = csb.ToHtmlString();
        }