Ejemplo n.º 1
0
        public static List <FilterMember> FindFiltersForTarget(string arg0Lower, object example, object relativeTo, OutputDelegate warn)
        {
            Type exampleType             = example.GetType();
            Type relativeToType          = relativeTo == null ? typeof(object) : relativeTo.GetType();
            List <FilterMember> firstTry = FindFiltersForExampleSubType(arg0Lower, exampleType, exampleType, relativeToType, warn);;

            if (firstTry.Count > 0)
            {
                return(firstTry);
            }
            if ((example is MixinSubObjects))
            {
                List <FilterMember> newPossible = new List <FilterMember>();
                MixinSubObjects     mso         = (MixinSubObjects)example;
                Type[] types = mso.GetMixedTypes();
                foreach (Type type in types)
                {
                    var possible = FindFiltersForExampleSubType(arg0Lower, exampleType, type, relativeToType, warn);
                    if (possible.Count > 0)
                    {
                        foreach (var p in possible)
                        {
                            FilterMember fm      = p;
                            FilterMember member  = p;
                            Type         subtype = type;
                            fm.Function = (o, arg1, relTo) =>
                                          member.Function(((MixinSubObjects)o).GetInstance(subtype), arg1, relTo);
                            newPossible.Add(fm);
                        }
                    }
                }
                return(newPossible);
            }
            return(firstTry);
        }
Ejemplo n.º 2
0
        public static List <FilterMember> FindFiltersForExampleSubType(string arg0Lower, Type exampleType, Type t, Type relativeToType, OutputDelegate warn)
        {
            var possible = FindAllFilters(arg0Lower, exampleType, t, relativeToType, warn);

            if (arg0Lower == null || possible.Count > 0 || !arg0Lower.EndsWith("of"))
            {
                return(possible);
            }
            arg0Lower = arg0Lower.Substring(0, arg0Lower.Length - 2);
            possible  = FindFiltersForExampleSubType(arg0Lower, exampleType, t, relativeToType, warn);
            List <FilterMember> newPossible = new List <FilterMember>();

            foreach (var p in possible)
            {
                FilterMember fm = p;
                fm.IsOf = true;
                newPossible.Add(fm);
            }
            return(possible);
        }
Ejemplo n.º 3
0
        public static List <T> ApplyFilterMember <T>(string[] args, out int argsUsed, StringArgParser changeType, List <T> current, object relativeTo, bool removeMatches, OutputDelegate warn, bool negative, char compareChar, CompareTestChar compareObjects, FilterMember fmemb)
        {
            object arg1 = null;

            if (fmemb.CastArgTo != null)
            {
                int      len1     = args.Length - 1;
                string[] destargs = new string[len1];
                Array.Copy(args, 1, destargs, 0, len1);
                int argsUsedLocal;
                arg1     = changeType(destargs, out argsUsedLocal, fmemb.CastArgTo);
                argsUsed = 1 + argsUsedLocal;
            }
            else
            {
                argsUsed = 1;
            }
            List <T>   putInto = new List <T>();
            Action <T> WhenTrue;

            if (negative)
            {
                putInto.AddRange(current);
                WhenTrue = (o) => putInto.Remove(o);
            }
            else
            {
                WhenTrue = (o) => putInto.Add(o);
            }
            foreach (T i in current)
            {
                object posresult = fmemb.Function(i, arg1, relativeTo);
                if (fmemb.PreCompare)
                {
                    posresult = compareObjects(compareChar, posresult, arg1);
                }
                if (fmemb.IsCollectionType)
                {
                    if (typeof(T).IsInstanceOfType(posresult))
                    {
                        WhenTrue((T)posresult);
                        continue;
                    }
                    var ie = (IEnumerable)posresult;
                    foreach (var item in ie)
                    {
                        WhenTrue((T)item);
                    }
                    continue;
                }
                else
                {
                    if ((bool)posresult)
                    {
                        WhenTrue(i);
                    }
                }
            }
            return(putInto);
        }
Ejemplo n.º 4
0
        public static List <FilterMember> FindAllFilters(string arg0Lower, Type exampleType, Type t, Type relativeToType, OutputDelegate warn)
        {
            MemberInfo membH = null;

            MemberInfo[]       membs      = null;
            bool               findAll    = arg0Lower == null;
            const BindingFlags seachFlags = BindingFlags.Instance | BindingFlags.Static | BindingFlags.Public;

            if (findAll)
            {
                membs = t.GetMembers(seachFlags);
            }
            else
            {
                membs = t.GetMember(arg0Lower, seachFlags | BindingFlags.IgnoreCase);
                if (membs.Length == 0)
                {
                    string   es           = arg0Lower;
                    bool     changedFront = false;
                    string[] prefixs      = new[] { "is", "get" };
                    foreach (var c in prefixs)
                    {
                        if (es.StartsWith(c))
                        {
                            es = es.Substring(c.Length);
                        }
                        changedFront = true;
                    }
                    if (!changedFront)
                    {
                        foreach (var c in prefixs)
                        {
                            if (!es.StartsWith(c))
                            {
                                membs = t.GetMember(c + es, seachFlags | BindingFlags.IgnoreCase);
                            }
                            if (membs.Length > 0)
                            {
                                break;
                            }
                        }
                    }
                }
            }

            List <FilterMember> found = new List <FilterMember>();

            foreach (MemberInfo memb in membs)
            {
                FilterMember fmemb = new FilterMember {
                    ReflectionMember = memb
                };
                membH = memb;
                FieldInfo fi = memb as FieldInfo;
                if (fi != null)
                {
                    bool fisStatic     = fi.IsStatic;
                    bool fisBoolReturn = fi.FieldType == typeof(bool);
                    fmemb.ReturnType = fi.FieldType;
                    if (fisBoolReturn)
                    {
                        fmemb.IsCollectionType = false;
                        fmemb.CastArgTo        = null;
                        fmemb.Function         = delegate(object o, object arg1, object relativeTo)
                        {
                            return(fi.GetValue(fisStatic ? null : o));
                        };
                        found.Add(fmemb);
                        continue;
                    }
                    fmemb.CastArgTo  = fi.FieldType;
                    fmemb.PreCompare = true;
                    fmemb.Function   = delegate(object o, object arg1, object relativeTo)
                    {
                        return(fi.GetValue(fisStatic ? null : o));
                    };
                    found.Add(fmemb);
                    continue;
                }
                MethodInfo   mi = memb as MethodInfo;
                PropertyInfo pi = memb as PropertyInfo;
                if (pi != null)
                {
                    mi = pi.GetGetMethod();
                }
                if (mi == null)
                {
                    continue;
                }
                Type returnType = mi.ReturnType;
                if (returnType == typeof(void))
                {
                    continue;
                }
                var  ps           = mi.GetParameters();
                bool isBoolReturn = returnType == typeof(bool);
                fmemb.ReturnType = returnType;
                bool            isStatic            = mi.IsStatic;
                Func <int, int> effectiveParamCount = i => isStatic ? i + 1 : i;
                int             psl = ps.Length;
                if (psl > effectiveParamCount(2))
                {
                    continue;
                }
                bool useRelative = psl > effectiveParamCount(0) &&
                                   IsAssignableFrom(ps[psl - 1].ParameterType, relativeToType);


                fmemb.RequiresRelativeContextObject = useRelative;
                bool isNonPredicate = IsAssignableFrom(exampleType, returnType) ||
                                      (!typeof(IConvertible).IsAssignableFrom(returnType) &&
                                       typeof(IEnumerable).IsAssignableFrom(returnType));
                fmemb.IsCollectionType = isNonPredicate;
                if (isStatic)
                {
                    // static methods need at least on arg
                    if (psl < 1)
                    {
                        continue;
                    }
                    if (!IsAssignableFrom(ps[0].ParameterType, t))
                    {
                        continue;
                    }
                }
                if (arg0Lower == null)
                {
                    string mname = memb.Name;
                    if (mname.StartsWith("Set") || mname.StartsWith("get_") || mname.StartsWith("set_"))
                    {
                        continue;
                    }
                }
                if (isNonPredicate)
                {
                    if (useRelative)
                    {
                        if (psl == effectiveParamCount(1))
                        {
                            fmemb.CastArgTo = null;
                            fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                            {
                                if (isStatic)
                                {
                                    return(mi.Invoke(null, new[] { o, relativeTo }));
                                }
                                return(mi.Invoke(o, new[] { relativeTo }));
                            };
                            found.Add(fmemb);
                            continue;
                        }
                        if (psl == effectiveParamCount(2))
                        {
                            fmemb.CastArgTo = ps[0].ParameterType;
                            fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                            {
                                if (isStatic)
                                {
                                    return(mi.Invoke(null, new[] { o, arg1, relativeTo }));
                                }
                                return(mi.Invoke(o, new[] { arg1, relativeTo }));
                            };
                            found.Add(fmemb);
                            continue;
                        }
                        continue;
                    }
                    if (psl == effectiveParamCount(1))
                    {
                        fmemb.CastArgTo = ps[0].ParameterType;
                        fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                        {
                            if (isStatic)
                            {
                                return(mi.Invoke(null, new[] { o, arg1 }));
                            }
                            return(mi.Invoke(o, new[] { arg1 }));
                        };
                        found.Add(fmemb);
                        continue;
                    }
                    if (psl == effectiveParamCount(0))
                    {
                        fmemb.CastArgTo = null;
                        fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                        {
                            if (isStatic)
                            {
                                return(mi.Invoke(null, new[] { o }));
                            }
                            return(mi.Invoke(o, null));
                        };
                        found.Add(fmemb);
                        continue;
                    }
                    continue;
                }

                if (!isBoolReturn)
                {
                    if (useRelative)
                    {
                        fmemb.CastArgTo = returnType;
                        if (psl != effectiveParamCount(1))
                        {
                            continue;
                        }
                        fmemb.PreCompare = true;
                        fmemb.Function   =
                            delegate(object o, object arg1, object relativeTo)
                        {
                            return(isStatic
                                                    ? mi.Invoke(null, new[] { o, relativeTo })
                                                    : mi.Invoke(o, new[] { relativeTo }));
                        };
                        found.Add(fmemb);
                        continue;
                    }
                    if (psl != effectiveParamCount(0))
                    {
                        continue;
                    }
                    fmemb.CastArgTo = returnType;
                    fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                    {
                        return(isStatic ? mi.Invoke(null, new[] { o }) : mi.Invoke(o, null));
                    };
                    fmemb.PreCompare = true;
                    found.Add(fmemb);
                    continue;
                }
                if (useRelative)
                {
                    if (psl == effectiveParamCount(1))
                    {
                        fmemb.CastArgTo = null;
                        fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                        {
                            if (isStatic)
                            {
                                return(mi.Invoke(null, new[] { o, relativeTo }));
                            }
                            return(mi.Invoke(o, new[] { relativeTo }));
                        };
                        found.Add(fmemb);
                        continue;
                    }
                    if (psl == effectiveParamCount(2))
                    {
                        fmemb.CastArgTo = ps[0].ParameterType;
                        fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                        {
                            if (isStatic)
                            {
                                return(mi.Invoke(null, new[] { o, arg1, relativeTo }));
                            }
                            return(mi.Invoke(o, new[] { arg1, relativeTo }));
                        };
                        found.Add(fmemb);
                        continue;
                    }
                    continue;
                }
                if (psl == effectiveParamCount(0))
                {
                    fmemb.CastArgTo = null;
                    fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                    {
                        if (isStatic)
                        {
                            return(mi.Invoke(null, new[] { o }));
                        }
                        return(mi.Invoke(o, null));
                    };
                    found.Add(fmemb);
                    continue;
                }
                if (psl == effectiveParamCount(1))
                {
                    fmemb.CastArgTo = ps[0].ParameterType;
                    fmemb.Function  = delegate(object o, object arg1, object relativeTo)
                    {
                        if (isStatic)
                        {
                            return(mi.Invoke(null, new[] { o, arg1 }));
                        }
                        return(mi.Invoke(o, new[] { arg1 }));
                    };
                    found.Add(fmemb);
                    continue;
                }
                continue;
            }
            if (found.Count == 0)
            {
                warn("dont know how to handle: " + arg0Lower + " " + membH);
            }
            return(found);
        }