1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
|
//------------------------------------------------------------------------------
// <copyright file="PersonalizableAttribute.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls.WebParts {
using System;
using System.Collections;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Reflection;
using System.Web;
using System.Web.Util;
/// <devdoc>
/// Used to mark a property as personalizable.
/// </devdoc>
[AttributeUsage(AttributeTargets.Property)]
public sealed class PersonalizableAttribute : Attribute {
internal static readonly Type PersonalizableAttributeType = typeof(PersonalizableAttribute);
private static readonly IDictionary PersonalizableTypeTable = Hashtable.Synchronized(new Hashtable());
/// <devdoc>
/// Indicates that the property is not personalizable.
/// </devdoc>
public static readonly PersonalizableAttribute NotPersonalizable = new PersonalizableAttribute(false);
/// <devdoc>
/// Indicates that the property is personalizable.
/// </devdoc>
public static readonly PersonalizableAttribute Personalizable = new PersonalizableAttribute(true);
/// <devdoc>
/// Indicates that the property is personalizable and can be changed per user.
/// </devdoc>
public static readonly PersonalizableAttribute UserPersonalizable = new PersonalizableAttribute(PersonalizationScope.User);
/// <devdoc>
/// Indicates that the property is personalizable that can only be changed for all users.
/// </devdoc>
public static readonly PersonalizableAttribute SharedPersonalizable = new PersonalizableAttribute(PersonalizationScope.Shared);
/// <devdoc>
/// The default personalizable attribute for a property or type. The default
/// is to indicate that a property or type is not personalizable.
/// </devdoc>
public static readonly PersonalizableAttribute Default = NotPersonalizable;
private bool _isPersonalizable;
private bool _isSensitive;
private PersonalizationScope _scope;
/// <devdoc>
/// Initializes an instance of PersonalizableAttribute to indicate
/// a personalizable property.
/// By default personalized properties can be personalized per user.
/// </devdoc>
public PersonalizableAttribute() : this(true, PersonalizationScope.User, false) {
}
/// <devdoc>
/// Initializes an instance of PersonalizableAttribute with the
/// specified value.
/// </devdoc>
public PersonalizableAttribute(bool isPersonalizable) : this(isPersonalizable, PersonalizationScope.User, false) {
}
/// <devdoc>
/// Initializes an instance of PersonalizableAttribute to indicate
/// a personalizable property along with the specified personalization scope.
/// </devdoc>
public PersonalizableAttribute(PersonalizationScope scope) : this(true, scope, false) {
}
/// <devdoc>
/// Initializes an instance of PersonalizableAttribute to indicate
/// a personalizable property along with the specified personalization scope and sensitivity.
/// </devdoc>
public PersonalizableAttribute(PersonalizationScope scope, bool isSensitive) : this(true, scope, isSensitive) {
}
/// <internalonly/>
/// <devdoc>
/// Initializes an instance of PersonalizableAttribute with the specified values.
/// </devdoc>
private PersonalizableAttribute(bool isPersonalizable, PersonalizationScope scope, bool isSensitive) {
Debug.Assert((isPersonalizable == true || isSensitive == false), "Only Personalizable properties can be sensitive");
_isPersonalizable = isPersonalizable;
_isSensitive = isSensitive;
if (_isPersonalizable) {
_scope = scope;
}
}
/// <devdoc>
/// Whether the property or the type has been marked as personalizable.
/// </devdoc>
public bool IsPersonalizable {
get {
return _isPersonalizable;
}
}
/// <devdoc>
/// Whether the property or the type has been marked as sensitive.
/// </devdoc>
public bool IsSensitive {
get {
return _isSensitive;
}
}
/// <devdoc>
/// The personalization scope associated with the personalizable property.
/// This property only has meaning when IsPersonalizable is true.
/// </devdoc>
public PersonalizationScope Scope {
get {
return _scope;
}
}
/// <internalonly/>
public override bool Equals(object obj) {
if (obj == this) {
return true;
}
PersonalizableAttribute other = obj as PersonalizableAttribute;
if (other != null) {
return (other.IsPersonalizable == IsPersonalizable) &&
(other.Scope == Scope) &&
(other.IsSensitive == IsSensitive);
}
return false;
}
/// <internalonly/>
public override int GetHashCode() {
return HashCodeCombiner.CombineHashCodes(_isPersonalizable.GetHashCode(), _scope.GetHashCode(),
_isSensitive.GetHashCode());
}
/// <devdoc>
/// Returns the list of personalizable properties as a collection of
/// PropertyInfos for the specified type.
/// </devdoc>
public static ICollection GetPersonalizableProperties(Type type) {
Debug.Assert(type != null);
PersonalizableTypeEntry typeEntry = (PersonalizableTypeEntry)PersonalizableTypeTable[type];
if (typeEntry == null) {
typeEntry = new PersonalizableTypeEntry(type);
PersonalizableTypeTable[type] = typeEntry;
}
return typeEntry.PropertyInfos;
}
/// <devdoc>
/// Returns the list of personalizable properties as a collection of
/// PropertyInfos for the specified type.
/// </devdoc>
internal static IDictionary GetPersonalizablePropertyEntries(Type type) {
Debug.Assert(type != null);
PersonalizableTypeEntry typeEntry = (PersonalizableTypeEntry)PersonalizableTypeTable[type];
if (typeEntry == null) {
typeEntry = new PersonalizableTypeEntry(type);
PersonalizableTypeTable[type] = typeEntry;
}
return typeEntry.PropertyEntries;
}
/// <devdoc>
/// </devdoc>
internal static IDictionary GetPersonalizablePropertyValues(Control control, PersonalizationScope scope, bool excludeSensitive) {
IDictionary propertyBag = null;
IDictionary propertyEntries = GetPersonalizablePropertyEntries(control.GetType());
if (propertyEntries.Count != 0) {
foreach (DictionaryEntry entry in propertyEntries) {
string name = (string)entry.Key;
PersonalizablePropertyEntry propEntry = (PersonalizablePropertyEntry)entry.Value;
if (excludeSensitive && propEntry.IsSensitive) {
continue;
}
if ((scope == PersonalizationScope.User) &&
(propEntry.Scope == PersonalizationScope.Shared)) {
continue;
}
if (propertyBag == null) {
propertyBag = new HybridDictionary(propertyEntries.Count, /* caseInsensitive */ false);
}
object value = FastPropertyAccessor.GetProperty(control, name, control.DesignMode);
propertyBag[name] = new Pair(propEntry.PropertyInfo, value);
}
}
if (propertyBag == null) {
propertyBag = new HybridDictionary(/* caseInsensitive */ false);
}
return propertyBag;
}
/// <internalonly/>
public override bool IsDefaultAttribute() {
return this.Equals(Default);
}
/// <internalonly/>
public override bool Match(object obj) {
if (obj == this) {
return true;
}
PersonalizableAttribute other = obj as PersonalizableAttribute;
if (other != null) {
return (other.IsPersonalizable == IsPersonalizable);
}
return false;
}
}
}
|