Exemplo n.º 1
0
        private void ProcessType(Type type, ScriptClassAttribute attr)
        {
            AddObject(attr.Namespace ?? new string[0], attr.ClassName ?? type.Name, new ScriptVar(null, ScriptVar.Flags.Object | ScriptVar.Flags.Native)
            {
                ClassType = type
            });

            MethodInfo[] methods = type.GetMethods(BindingFlags.Public | BindingFlags.Instance);
            ProcessMethods(methods, attr);

            methods = type.GetMethods(BindingFlags.Public | BindingFlags.Static);
            ProcessMethods(methods, attr);

            PropertyInfo[] properties = type.GetProperties(BindingFlags.Public | BindingFlags.Instance);
            //ProcessProperties(properties, attr, Activator.CreateInstance(type));

            properties = type.GetProperties(BindingFlags.Public | BindingFlags.Static);
            ProcessProperties(properties, attr, null);
        }
Exemplo n.º 2
0
        private void ProcessProperties(PropertyInfo[] properties, ScriptClassAttribute attr, object instance)
        {
            foreach (PropertyInfo property in properties)
            {
                if (property.IsSpecialName)
                {
                    continue;
                }

                PropertyInfo propertyCopy = property;
                String[]     ns           = attr.Namespace ?? new string[0];

                if (attr.ClassName == null && ns.Length == 0)
                {
                    ns = null;
                }
                else
                {
                    Array.Resize(ref ns, ns.Length + 1);
                    ns[ns.Length - 1] = attr.ClassName;
                }

                if (property.PropertyType == typeof(bool))
                {
                    AddObject(ns, property.Name, new ScriptVar((bool)property.GetValue(instance, null)));
                }
                else if (property.PropertyType == typeof(string))
                {
                    AddObject(ns, property.Name, new ScriptVar((string)property.GetValue(instance, null)));
                }
                else if (property.PropertyType == typeof(decimal) || property.PropertyType == typeof(float) || property.PropertyType == typeof(double))
                {
                    AddObject(ns, property.Name, new ScriptVar((double)property.GetValue(instance, null)));
                }
                else if (property.PropertyType == typeof(Int32))
                {
                    AddObject(ns, property.Name, new ScriptVar((Int32)property.GetValue(instance, null)));
                }
            }
        }
Exemplo n.º 3
0
        private void ProcessMethods(MethodInfo[] methods, ScriptClassAttribute attr)
        {
            foreach (MethodInfo method in methods)
            {
                if (method.IsSpecialName)
                {
                    continue;
                }

                ParameterInfo[] parameters = method.GetParameters();
                if (parameters.Length < 1)
                {
                    continue;
                }

                String[] argNames = new string[parameters.Length - 1];
                for (int i = 0; i < parameters.Length - 1; i++)
                {
                    argNames[i] = parameters[i].Name;
                }

                MethodInfo methodCopy = method;
                String[]   ns         = attr.Namespace ?? new string[0];

                if (attr.ClassName == null && ns.Length == 0)
                {
                    ns = null;
                }
                else
                {
                    Array.Resize(ref ns, ns.Length + 1);
                    ns[ns.Length - 1] = attr.ClassName;
                }

                AddMethod(ns, method.Name, argNames, CreateScriptFunction(methodCopy, parameters), this);
            }
        }