Ejemplo n.º 1
0
        public static IEnumerable <object> AnalyzeAttribute(this IEnumerable <ConfigureAttribute> attrs)
        {
            var parameters = AttributeObject.CreateAttributeObjs(attrs);

            if (!parameters.Any())
            {
                return(null);
            }
            var first = parameters.First();

            return(_(first)); IEnumerable <object> _(AttributeObject attribute)
            {
                var res = (attribute.data?.Any() ?? false) ? attribute.data.ToList() : new List <object>();

                if (attribute.Childrends == null)
                {
                    parameters.Remove(attribute);
                    return(res);
                }

                foreach (var child in attribute.Childrends)
                {
                    var childres = _(child);
                    res.Add(childres);
                }
                parameters.Remove(attribute);
                return(res);
            }
        }
Ejemplo n.º 2
0
        public static List <AttributeObject> CreateAttributeObjs(IEnumerable <ConfigureAttribute> attrs)
        {
            var objs = new List <AttributeObject>();
            var etor = attrs.GetEnumerator();

            if (!etor.MoveNext())
            {
                return(null);
            }
            objs.Add(new AttributeObject(etor.Current));
            _(etor); void _(IEnumerator <ConfigureAttribute> _etor)
            {
                if (!_etor.MoveNext())
                {
                    return;
                }
                var curr = new AttributeObject(_etor.Current);

                objs.Add(curr);
                _(_etor);
                if (curr.FatherName != null)
                {
                    var father = objs.Where(x => x.Name == curr.FatherName).FirstOrDefault();
                    if (father != null)
                    {
                        father.Childrends = father.Childrends ?? new LinkedList <AttributeObject>();
                        father.Childrends.AddFirst(curr);
                    }
                }
                else
                {
                    objs.First().Childrends = objs.First().Childrends ?? new LinkedList <AttributeObject>();
                    objs.First().Childrends.AddFirst(curr);
                }
            }

            return(objs);
        }