Esempio n. 1
0
 /// <summary>
 /// Gets the stored information for an assembly.
 /// </summary>
 /// <param name="targetAssembly">The assembly about which information will be retrieved</param>
 /// <param name="subject">The type of information required</param>
 /// <param name="defaultValue">Default value if the information is not found</param>
 /// <returns>The information stored for this class, property and type, the default value if not found</returns>
 public static object GetAttributeDefault(Assembly targetAssembly, string subject, object defaultValue)
 {
     return(MetaInfo.GetAttributeDefault(targetAssembly.GetName().Name, subject, defaultValue));
 }
Esempio n. 2
0
 /// <summary>
 /// Gets the stored information for a class and property.
 /// Not only the class is examined, but also all superclasses and implemented interfaces.
 /// </summary>
 /// <param name="target">The class type about which information will be retrieved</param>
 /// <param name="property">The property for which information is to be required</param>
 /// <param name="subject">The type of information required</param>
 /// <returns>The information stored for the class and property, null if not found</returns>
 public static object GetAttribute(Type target, string property, string subject)
 {
     return(MetaInfo.GetAttributeDefault(target, property, subject, null));
 }
Esempio n. 3
0
 /// <summary>
 /// Gets the stored information for a class.
 /// Not only the class is examined, but also all superclasses and implemented interfaces.
 /// </summary>
 /// <param name="targetClass">The object about which information will be retrieved</param>
 /// <param name="subject">The type of information required</param>
 /// <param name="defaultValue">Default value if the information is not found</param>
 /// <returns>The information stored for this object and type, the default value if not found</returns>
 public static object GetAttributeDefault(Type targetClass, string subject, object defaultValue)
 {
     return(MetaInfo.GetAttributeDefault(targetClass, null, subject, defaultValue));
 }
Esempio n. 4
0
        /// <summary>
        /// Gets the deep copy
        /// </summary>
        /// <param name="source">The object to be copied</param>
        /// <param name="target">The object which will be the copy</param>
        /// <param name="copiedObjects">Collection of objects and their copied equivalents. Will be populated and queried during copy.</param>
        /// <param name="path">Relative path to location where files will be copied to</param>
        /// <param name="copyValue">Indicates whether the new object should refer to a copy or to the same object</param>
        private static void Copy(object source, object target, Hashtable copiedObjects, string path, bool copyValue)
        {
            if (source is IList)
            {
                IList copiedArray = (IList)target;
                copiedArray.Clear();
                for (int j = 0; j < ((IList)source).Count; j++)
                {
                    object copiedArrayValue = ((IList)source)[j];
                    if (copyValue)
                    {
                        copiedArrayValue = ObjectSupport.GetCopy(copiedArrayValue, copiedObjects, path);
                    }
                    copiedArray.Add(copiedArrayValue);
                }
            }
            else if (source is IDictionary)
            {
                IDictionary copiedArray = (IDictionary)target;
                copiedArray.Clear();

                IDictionaryEnumerator dictionaryEnumerator = ((IDictionary)source).GetEnumerator();
                while (dictionaryEnumerator.MoveNext())
                {
                    object copiedArrayKey   = dictionaryEnumerator.Key;
                    object copiedArrayValue = dictionaryEnumerator.Value;
                    if (copyValue)
                    {
                        copiedArrayKey   = ObjectSupport.GetCopy(copiedArrayKey, copiedObjects, path);
                        copiedArrayValue = ObjectSupport.GetCopy(copiedArrayValue, copiedObjects, path);
                    }

                    if (!copiedArray.Contains(copiedArrayKey))
                    {
                        copiedArray.Add(copiedArrayKey, copiedArrayValue);
                    }
                }
            }
            // Special handling for files
            else if (source is FileSystemInfo)
            {
                if (copyValue && (path != null) && (!path.Trim().Equals("")))
                {
                    object copiedValue = CopyFile((FileSystemInfo)source, path);
                }
            }
            else
            {
                PropertyInfo[] property = source.GetType().GetProperties();
                for (int i = 0; i < property.Length; i++)
                {
                    object sourceValue = property[i].GetValue(source, null);

                    if (sourceValue != null)
                    {
                        // Default copied value. This is just a reference to the original value
                        object copiedValue = sourceValue;

                        // If the value has been copied before, use the same copied equivalent
                        if (copiedObjects.ContainsKey(sourceValue))
                        {
                            copiedValue = copiedObjects[sourceValue];
                        }
                        else
                        {
                            // Determine whether the property is to be copied
                            bool copyPropertyValue = (Boolean)MetaInfo.GetAttributeDefault(source.GetType(), property[i].Name, "ObjectCopy", false);

                            if (copyPropertyValue)
                            {
                                if (property[i].CanWrite)
                                {
                                    copiedValue = ObjectSupport.GetCopy(sourceValue, copiedObjects, path);
                                }
                                else
                                {
                                    object targetValue = property[i].GetValue(target, null);
                                    Copy(sourceValue, targetValue, copiedObjects, path);
                                }
                            }
                            else if ((sourceValue is IList) || (sourceValue is IDictionary))
                            {
                                object targetValue = property[i].GetValue(target, null);
                                Copy(sourceValue, targetValue, copiedObjects, path, copyPropertyValue);
                            }
                        }

                        // Populate the target object
                        if (property[i].CanWrite)
                        {
                            property[i].SetValue(target, copiedValue, null);
                        }

                        if (!copiedObjects.Contains(sourceValue))
                        {
                            copiedObjects.Add(sourceValue, copiedValue);
                        }
                    }
                }
            }
        }