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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
|
/* ****************************************************************************
*
* Copyright (c) Microsoft Corporation.
*
* This source code is subject to terms and conditions of the Apache License, Version 2.0. A
* copy of the license can be found in the License.html file at the root of this distribution. If
* you cannot locate the Apache License, Version 2.0, please send an email to
* dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
* by the terms of the Apache License, Version 2.0.
*
* You must not remove this notice, or any other, from this software.
*
*
* ***************************************************************************/
#if CLR2
using Microsoft.Scripting.Ast;
using Microsoft.Scripting.Utils;
#else
using System.Linq.Expressions;
#endif
#if SILVERLIGHT
using System.Core;
#endif
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Dynamic;
using System.Dynamic.Utils;
using System.Runtime.CompilerServices;
namespace System.Dynamic {
/// <summary>
/// Represents an object with members that can be dynamically added and removed at runtime.
/// </summary>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
public sealed class ExpandoObject : IDynamicMetaObjectProvider, IDictionary<string, object>, INotifyPropertyChanged {
internal readonly object LockObject; // the readonly field is used for locking the Expando object
private ExpandoData _data; // the data currently being held by the Expando object
private int _count; // the count of available members
internal readonly static object Uninitialized = new object(); // A marker object used to identify that a value is uninitialized.
internal const int AmbiguousMatchFound = -2; // The value is used to indicate there exists ambiguous match in the Expando object
internal const int NoMatch = -1; // The value is used to indicate there is no matching member
private PropertyChangedEventHandler _propertyChanged;
/// <summary>
/// Creates a new ExpandoObject with no members.
/// </summary>
public ExpandoObject() {
_data = ExpandoData.Empty;
LockObject = new object();
}
#region Get/Set/Delete Helpers
/// <summary>
/// Try to get the data stored for the specified class at the specified index. If the
/// class has changed a full lookup for the slot will be performed and the correct
/// value will be retrieved.
/// </summary>
internal bool TryGetValue(object indexClass, int index, string name, bool ignoreCase, out object value) {
// read the data now. The data is immutable so we get a consistent view.
// If there's a concurrent writer they will replace data and it just appears
// that we won the ----
ExpandoData data = _data;
if (data.Class != indexClass || ignoreCase) {
/* Re-search for the index matching the name here if
* 1) the class has changed, we need to get the correct index and return
* the value there.
* 2) the search is case insensitive:
* a. the member specified by index may be deleted, but there might be other
* members matching the name if the binder is case insensitive.
* b. the member that exactly matches the name didn't exist before and exists now,
* need to find the exact match.
*/
index = data.Class.GetValueIndex(name, ignoreCase, this);
if (index == ExpandoObject.AmbiguousMatchFound) {
throw Error.AmbiguousMatchInExpandoObject(name);
}
}
if (index == ExpandoObject.NoMatch) {
value = null;
return false;
}
// Capture the value into a temp, so it doesn't get mutated after we check
// for Uninitialized.
object temp = data[index];
if (temp == Uninitialized) {
value = null;
return false;
}
// index is now known to be correct
value = temp;
return true;
}
/// <summary>
/// Sets the data for the specified class at the specified index. If the class has
/// changed then a full look for the slot will be performed. If the new class does
/// not have the provided slot then the Expando's class will change. Only case sensitive
/// setter is supported in ExpandoObject.
/// </summary>
internal void TrySetValue(object indexClass, int index, object value, string name, bool ignoreCase, bool add) {
ExpandoData data;
object oldValue;
lock (LockObject) {
data = _data;
if (data.Class != indexClass || ignoreCase) {
// The class has changed or we are doing a case-insensitive search,
// we need to get the correct index and set the value there. If we
// don't have the value then we need to promote the class - that
// should only happen when we have multiple concurrent writers.
index = data.Class.GetValueIndex(name, ignoreCase, this);
if (index == ExpandoObject.AmbiguousMatchFound) {
throw Error.AmbiguousMatchInExpandoObject(name);
}
if (index == ExpandoObject.NoMatch) {
// Before creating a new class with the new member, need to check
// if there is the exact same member but is deleted. We should reuse
// the class if there is such a member.
int exactMatch = ignoreCase ?
data.Class.GetValueIndexCaseSensitive(name) :
index;
if (exactMatch != ExpandoObject.NoMatch) {
Debug.Assert(data[exactMatch] == Uninitialized);
index = exactMatch;
} else {
ExpandoClass newClass = data.Class.FindNewClass(name);
data = PromoteClassCore(data.Class, newClass);
// After the class promotion, there must be an exact match,
// so we can do case-sensitive search here.
index = data.Class.GetValueIndexCaseSensitive(name);
Debug.Assert(index != ExpandoObject.NoMatch);
}
}
}
// Setting an uninitialized member increases the count of available members
oldValue = data[index];
if (oldValue == Uninitialized) {
_count++;
} else if (add) {
throw Error.SameKeyExistsInExpando(name);
}
data[index] = value;
}
// Notify property changed, outside of the lock.
var propertyChanged = _propertyChanged;
if (propertyChanged != null && value != oldValue) {
// Use the canonical case for the key.
propertyChanged(this, new PropertyChangedEventArgs(data.Class.Keys[index]));
}
}
/// <summary>
/// Deletes the data stored for the specified class at the specified index.
/// </summary>
internal bool TryDeleteValue(object indexClass, int index, string name, bool ignoreCase, object deleteValue) {
ExpandoData data;
lock (LockObject) {
data = _data;
if (data.Class != indexClass || ignoreCase) {
// the class has changed or we are doing a case-insensitive search,
// we need to get the correct index. If there is no associated index
// we simply can't have the value and we return false.
index = data.Class.GetValueIndex(name, ignoreCase, this);
if (index == ExpandoObject.AmbiguousMatchFound) {
throw Error.AmbiguousMatchInExpandoObject(name);
}
}
if (index == ExpandoObject.NoMatch) {
return false;
}
object oldValue = data[index];
if (oldValue == Uninitialized) {
return false;
}
// Make sure the value matches, if requested.
//
// It's a shame we have to call Equals with the lock held but
// there doesn't seem to be a good way around that, and
// ConcurrentDictionary in mscorlib does the same thing.
if (deleteValue != Uninitialized && !object.Equals(oldValue, deleteValue)) {
return false;
}
data[index] = Uninitialized;
// Deleting an available member decreases the count of available members
_count--;
}
// Notify property changed, outside of the lock.
var propertyChanged = _propertyChanged;
if (propertyChanged != null) {
// Use the canonical case for the key.
propertyChanged(this, new PropertyChangedEventArgs(data.Class.Keys[index]));
}
return true;
}
/// <summary>
/// Returns true if the member at the specified index has been deleted,
/// otherwise false. Call this function holding the lock.
/// </summary>
internal bool IsDeletedMember(int index) {
Debug.Assert(index >= 0 && index <= _data.Length);
if (index == _data.Length) {
// The member is a newly added by SetMemberBinder and not in data yet
return false;
}
return _data[index] == ExpandoObject.Uninitialized;
}
/// <summary>
/// Exposes the ExpandoClass which we've associated with this
/// Expando object. Used for type checks in rules.
/// </summary>
internal ExpandoClass Class {
get {
return _data.Class;
}
}
/// <summary>
/// Promotes the class from the old type to the new type and returns the new
/// ExpandoData object.
/// </summary>
private ExpandoData PromoteClassCore(ExpandoClass oldClass, ExpandoClass newClass) {
Debug.Assert(oldClass != newClass);
lock (LockObject) {
if (_data.Class == oldClass) {
_data = _data.UpdateClass(newClass);
}
return _data;
}
}
/// <summary>
/// Internal helper to promote a class. Called from our RuntimeOps helper. This
/// version simply doesn't expose the ExpandoData object which is a private
/// data structure.
/// </summary>
internal void PromoteClass(object oldClass, object newClass) {
PromoteClassCore((ExpandoClass)oldClass, (ExpandoClass)newClass);
}
#endregion
#region IDynamicMetaObjectProvider Members
DynamicMetaObject IDynamicMetaObjectProvider.GetMetaObject(Expression parameter) {
return new MetaExpando(parameter, this);
}
#endregion
#region Helper methods
private void TryAddMember(string key, object value) {
ContractUtils.RequiresNotNull(key, "key");
// Pass null to the class, which forces lookup.
TrySetValue(null, -1, value, key, false, true);
}
private bool TryGetValueForKey(string key, out object value) {
// Pass null to the class, which forces lookup.
return TryGetValue(null, -1, key, false, out value);
}
private bool ExpandoContainsKey(string key) {
return _data.Class.GetValueIndexCaseSensitive(key) >= 0;
}
// We create a non-generic type for the debug view for each different collection type
// that uses DebuggerTypeProxy, instead of defining a generic debug view type and
// using different instantiations. The reason for this is that support for generics
// with using DebuggerTypeProxy is limited. For C#, DebuggerTypeProxy supports only
// open types (from MSDN http://msdn.microsoft.com/en-us/library/d8eyd8zc.aspx).
private sealed class KeyCollectionDebugView {
private ICollection<string> collection;
public KeyCollectionDebugView(ICollection<string> collection) {
Debug.Assert(collection != null);
this.collection = collection;
}
[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
public string[] Items {
get {
string[] items = new string[collection.Count];
collection.CopyTo(items, 0);
return items;
}
}
}
[DebuggerTypeProxy(typeof(KeyCollectionDebugView))]
[DebuggerDisplay("Count = {Count}")]
private class KeyCollection : ICollection<string> {
private readonly ExpandoObject _expando;
private readonly int _expandoVersion;
private readonly int _expandoCount;
private readonly ExpandoData _expandoData;
internal KeyCollection(ExpandoObject expando) {
lock (expando.LockObject) {
_expando = expando;
_expandoVersion = expando._data.Version;
_expandoCount = expando._count;
_expandoData = expando._data;
}
}
private void CheckVersion() {
if (_expando._data.Version != _expandoVersion || _expandoData != _expando._data) {
//the underlying expando object has changed
throw Error.CollectionModifiedWhileEnumerating();
}
}
#region ICollection<string> Members
public void Add(string item) {
throw Error.CollectionReadOnly();
}
public void Clear() {
throw Error.CollectionReadOnly();
}
public bool Contains(string item) {
lock (_expando.LockObject) {
CheckVersion();
return _expando.ExpandoContainsKey(item);
}
}
public void CopyTo(string[] array, int arrayIndex) {
ContractUtils.RequiresNotNull(array, "array");
ContractUtils.RequiresArrayRange(array, arrayIndex, _expandoCount, "arrayIndex", "Count");
lock (_expando.LockObject) {
CheckVersion();
ExpandoData data = _expando._data;
for (int i = 0; i < data.Class.Keys.Length; i++) {
if (data[i] != Uninitialized) {
array[arrayIndex++] = data.Class.Keys[i];
}
}
}
}
public int Count {
get {
CheckVersion();
return _expandoCount;
}
}
public bool IsReadOnly {
get { return true; }
}
public bool Remove(string item) {
throw Error.CollectionReadOnly();
}
#endregion
#region IEnumerable<string> Members
public IEnumerator<string> GetEnumerator() {
for (int i = 0, n = _expandoData.Class.Keys.Length; i < n; i++) {
CheckVersion();
if (_expandoData[i] != Uninitialized) {
yield return _expandoData.Class.Keys[i];
}
}
}
#endregion
#region IEnumerable Members
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
return GetEnumerator();
}
#endregion
}
// We create a non-generic type for the debug view for each different collection type
// that uses DebuggerTypeProxy, instead of defining a generic debug view type and
// using different instantiations. The reason for this is that support for generics
// with using DebuggerTypeProxy is limited. For C#, DebuggerTypeProxy supports only
// open types (from MSDN http://msdn.microsoft.com/en-us/library/d8eyd8zc.aspx).
private sealed class ValueCollectionDebugView {
private ICollection<object> collection;
public ValueCollectionDebugView(ICollection<object> collection) {
Debug.Assert(collection != null);
this.collection = collection;
}
[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
public object[] Items {
get {
object[] items = new object[collection.Count];
collection.CopyTo(items, 0);
return items;
}
}
}
[DebuggerTypeProxy(typeof(ValueCollectionDebugView))]
[DebuggerDisplay("Count = {Count}")]
private class ValueCollection : ICollection<object> {
private readonly ExpandoObject _expando;
private readonly int _expandoVersion;
private readonly int _expandoCount;
private readonly ExpandoData _expandoData;
internal ValueCollection(ExpandoObject expando) {
lock (expando.LockObject) {
_expando = expando;
_expandoVersion = expando._data.Version;
_expandoCount = expando._count;
_expandoData = expando._data;
}
}
private void CheckVersion() {
if (_expando._data.Version != _expandoVersion || _expandoData != _expando._data) {
//the underlying expando object has changed
throw Error.CollectionModifiedWhileEnumerating();
}
}
#region ICollection<string> Members
public void Add(object item) {
throw Error.CollectionReadOnly();
}
public void Clear() {
throw Error.CollectionReadOnly();
}
public bool Contains(object item) {
lock (_expando.LockObject) {
CheckVersion();
ExpandoData data = _expando._data;
for (int i = 0; i < data.Class.Keys.Length; i++) {
// See comment in TryDeleteValue; it's okay to call
// object.Equals with the lock held.
if (object.Equals(data[i], item)) {
return true;
}
}
return false;
}
}
public void CopyTo(object[] array, int arrayIndex) {
ContractUtils.RequiresNotNull(array, "array");
ContractUtils.RequiresArrayRange(array, arrayIndex, _expandoCount, "arrayIndex", "Count");
lock (_expando.LockObject) {
CheckVersion();
ExpandoData data = _expando._data;
for (int i = 0; i < data.Class.Keys.Length; i++) {
if (data[i] != Uninitialized) {
array[arrayIndex++] = data[i];
}
}
}
}
public int Count {
get {
CheckVersion();
return _expandoCount;
}
}
public bool IsReadOnly {
get { return true; }
}
public bool Remove(object item) {
throw Error.CollectionReadOnly();
}
#endregion
#region IEnumerable<string> Members
public IEnumerator<object> GetEnumerator() {
ExpandoData data = _expando._data;
for (int i = 0; i < data.Class.Keys.Length; i++) {
CheckVersion();
// Capture the value into a temp so we don't inadvertently
// return Uninitialized.
object temp = data[i];
if (temp != Uninitialized) {
yield return temp;
}
}
}
#endregion
#region IEnumerable Members
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
return GetEnumerator();
}
#endregion
}
#endregion
#region IDictionary<string, object> Members
ICollection<string> IDictionary<string, object>.Keys {
get {
return new KeyCollection(this);
}
}
ICollection<object> IDictionary<string, object>.Values {
get {
return new ValueCollection(this);
}
}
object IDictionary<string, object>.this[string key] {
get {
object value;
if (!TryGetValueForKey(key, out value)) {
throw Error.KeyDoesNotExistInExpando(key);
}
return value;
}
set {
ContractUtils.RequiresNotNull(key, "key");
// Pass null to the class, which forces lookup.
TrySetValue(null, -1, value, key, false, false);
}
}
void IDictionary<string, object>.Add(string key, object value) {
this.TryAddMember(key, value);
}
bool IDictionary<string, object>.ContainsKey(string key) {
ContractUtils.RequiresNotNull(key, "key");
ExpandoData data = _data;
int index = data.Class.GetValueIndexCaseSensitive(key);
return index >= 0 && data[index] != Uninitialized;
}
bool IDictionary<string, object>.Remove(string key) {
ContractUtils.RequiresNotNull(key, "key");
// Pass null to the class, which forces lookup.
return TryDeleteValue(null, -1, key, false, Uninitialized);
}
bool IDictionary<string, object>.TryGetValue(string key, out object value) {
return TryGetValueForKey(key, out value);
}
#endregion
#region ICollection<KeyValuePair<string, object>> Members
int ICollection<KeyValuePair<string, object>>.Count {
get {
return _count;
}
}
bool ICollection<KeyValuePair<string, object>>.IsReadOnly {
get { return false; }
}
void ICollection<KeyValuePair<string, object>>.Add(KeyValuePair<string, object> item) {
TryAddMember(item.Key, item.Value);
}
void ICollection<KeyValuePair<string, object>>.Clear() {
// We remove both class and data!
ExpandoData data;
lock (LockObject) {
data = _data;
_data = ExpandoData.Empty;
_count = 0;
}
// Notify property changed for all properties.
var propertyChanged = _propertyChanged;
if (propertyChanged != null) {
for (int i = 0, n = data.Class.Keys.Length; i < n; i++) {
if (data[i] != Uninitialized) {
propertyChanged(this, new PropertyChangedEventArgs(data.Class.Keys[i]));
}
}
}
}
bool ICollection<KeyValuePair<string, object>>.Contains(KeyValuePair<string, object> item) {
object value;
if (!TryGetValueForKey(item.Key, out value)) {
return false;
}
return object.Equals(value, item.Value);
}
void ICollection<KeyValuePair<string, object>>.CopyTo(KeyValuePair<string, object>[] array, int arrayIndex) {
ContractUtils.RequiresNotNull(array, "array");
ContractUtils.RequiresArrayRange(array, arrayIndex, _count, "arrayIndex", "Count");
// We want this to be atomic and not throw
lock (LockObject) {
foreach (KeyValuePair<string, object> item in this) {
array[arrayIndex++] = item;
}
}
}
bool ICollection<KeyValuePair<string, object>>.Remove(KeyValuePair<string, object> item) {
return TryDeleteValue(null, -1, item.Key, false, item.Value);
}
#endregion
#region IEnumerable<KeyValuePair<string, object>> Member
IEnumerator<KeyValuePair<string, object>> IEnumerable<KeyValuePair<string, object>>.GetEnumerator() {
ExpandoData data = _data;
return GetExpandoEnumerator(data, data.Version);
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() {
ExpandoData data = _data;
return GetExpandoEnumerator(data, data.Version);
}
// Note: takes the data and version as parameters so they will be
// captured before the first call to MoveNext().
private IEnumerator<KeyValuePair<string, object>> GetExpandoEnumerator(ExpandoData data, int version) {
for (int i = 0; i < data.Class.Keys.Length; i++) {
if (_data.Version != version || data != _data) {
// The underlying expando object has changed:
// 1) the version of the expando data changed
// 2) the data object is changed
throw Error.CollectionModifiedWhileEnumerating();
}
// Capture the value into a temp so we don't inadvertently
// return Uninitialized.
object temp = data[i];
if (temp != Uninitialized) {
yield return new KeyValuePair<string,object>(data.Class.Keys[i], temp);
}
}
}
#endregion
#region MetaExpando
private class MetaExpando : DynamicMetaObject {
public MetaExpando(Expression expression, ExpandoObject value)
: base(expression, BindingRestrictions.Empty, value) {
}
private DynamicMetaObject BindGetOrInvokeMember(DynamicMetaObjectBinder binder, string name, bool ignoreCase, DynamicMetaObject fallback, Func<DynamicMetaObject, DynamicMetaObject> fallbackInvoke) {
ExpandoClass klass = Value.Class;
//try to find the member, including the deleted members
int index = klass.GetValueIndex(name, ignoreCase, Value);
ParameterExpression value = Expression.Parameter(typeof(object), "value");
Expression tryGetValue = Expression.Call(
typeof(RuntimeOps).GetMethod("ExpandoTryGetValue"),
GetLimitedSelf(),
Expression.Constant(klass, typeof(object)),
Expression.Constant(index),
Expression.Constant(name),
Expression.Constant(ignoreCase),
value
);
var result = new DynamicMetaObject(value, BindingRestrictions.Empty);
if (fallbackInvoke != null) {
result = fallbackInvoke(result);
}
result = new DynamicMetaObject(
Expression.Block(
new[] { value },
Expression.Condition(
tryGetValue,
result.Expression,
fallback.Expression,
typeof(object)
)
),
result.Restrictions.Merge(fallback.Restrictions)
);
return AddDynamicTestAndDefer(binder, Value.Class, null, result);
}
public override DynamicMetaObject BindGetMember(GetMemberBinder binder) {
ContractUtils.RequiresNotNull(binder, "binder");
return BindGetOrInvokeMember(
binder,
binder.Name,
binder.IgnoreCase,
binder.FallbackGetMember(this),
null
);
}
public override DynamicMetaObject BindInvokeMember(InvokeMemberBinder binder, DynamicMetaObject[] args) {
ContractUtils.RequiresNotNull(binder, "binder");
return BindGetOrInvokeMember(
binder,
binder.Name,
binder.IgnoreCase,
binder.FallbackInvokeMember(this, args),
value => binder.FallbackInvoke(value, args, null)
);
}
public override DynamicMetaObject BindSetMember(SetMemberBinder binder, DynamicMetaObject value) {
ContractUtils.RequiresNotNull(binder, "binder");
ContractUtils.RequiresNotNull(value, "value");
ExpandoClass klass;
int index;
ExpandoClass originalClass = GetClassEnsureIndex(binder.Name, binder.IgnoreCase, Value, out klass, out index);
return AddDynamicTestAndDefer(
binder,
klass,
originalClass,
new DynamicMetaObject(
Expression.Call(
typeof(RuntimeOps).GetMethod("ExpandoTrySetValue"),
GetLimitedSelf(),
Expression.Constant(klass, typeof(object)),
Expression.Constant(index),
Expression.Convert(value.Expression, typeof(object)),
Expression.Constant(binder.Name),
Expression.Constant(binder.IgnoreCase)
),
BindingRestrictions.Empty
)
);
}
public override DynamicMetaObject BindDeleteMember(DeleteMemberBinder binder) {
ContractUtils.RequiresNotNull(binder, "binder");
int index = Value.Class.GetValueIndex(binder.Name, binder.IgnoreCase, Value);
Expression tryDelete = Expression.Call(
typeof(RuntimeOps).GetMethod("ExpandoTryDeleteValue"),
GetLimitedSelf(),
Expression.Constant(Value.Class, typeof(object)),
Expression.Constant(index),
Expression.Constant(binder.Name),
Expression.Constant(binder.IgnoreCase)
);
DynamicMetaObject fallback = binder.FallbackDeleteMember(this);
DynamicMetaObject target = new DynamicMetaObject(
Expression.IfThen(Expression.Not(tryDelete), fallback.Expression),
fallback.Restrictions
);
return AddDynamicTestAndDefer(binder, Value.Class, null, target);
}
public override IEnumerable<string> GetDynamicMemberNames() {
var expandoData = Value._data;
var klass = expandoData.Class;
for (int i = 0; i < klass.Keys.Length; i++) {
object val = expandoData[i];
if (val != ExpandoObject.Uninitialized) {
yield return klass.Keys[i];
}
}
}
/// <summary>
/// Adds a dynamic test which checks if the version has changed. The test is only necessary for
/// performance as the methods will do the correct thing if called with an incorrect version.
/// </summary>
private DynamicMetaObject AddDynamicTestAndDefer(DynamicMetaObjectBinder binder, ExpandoClass klass, ExpandoClass originalClass, DynamicMetaObject succeeds) {
Expression ifTestSucceeds = succeeds.Expression;
if (originalClass != null) {
// we are accessing a member which has not yet been defined on this class.
// We force a class promotion after the type check. If the class changes the
// promotion will fail and the set/delete will do a full lookup using the new
// class to discover the name.
Debug.Assert(originalClass != klass);
ifTestSucceeds = Expression.Block(
Expression.Call(
null,
typeof(RuntimeOps).GetMethod("ExpandoPromoteClass"),
GetLimitedSelf(),
Expression.Constant(originalClass, typeof(object)),
Expression.Constant(klass, typeof(object))
),
succeeds.Expression
);
}
return new DynamicMetaObject(
Expression.Condition(
Expression.Call(
null,
typeof(RuntimeOps).GetMethod("ExpandoCheckVersion"),
GetLimitedSelf(),
Expression.Constant(originalClass ?? klass, typeof(object))
),
ifTestSucceeds,
binder.GetUpdateExpression(ifTestSucceeds.Type)
),
GetRestrictions().Merge(succeeds.Restrictions)
);
}
/// <summary>
/// Gets the class and the index associated with the given name. Does not update the expando object. Instead
/// this returns both the original and desired new class. A rule is created which includes the test for the
/// original class, the promotion to the new class, and the set/delete based on the class post-promotion.
/// </summary>
private ExpandoClass GetClassEnsureIndex(string name, bool caseInsensitive, ExpandoObject obj, out ExpandoClass klass, out int index) {
ExpandoClass originalClass = Value.Class;
index = originalClass.GetValueIndex(name, caseInsensitive, obj) ;
if (index == ExpandoObject.AmbiguousMatchFound) {
klass = originalClass;
return null;
}
if (index == ExpandoObject.NoMatch) {
// go ahead and find a new class now...
ExpandoClass newClass = originalClass.FindNewClass(name);
klass = newClass;
index = newClass.GetValueIndexCaseSensitive(name);
Debug.Assert(index != ExpandoObject.NoMatch);
return originalClass;
} else {
klass = originalClass;
return null;
}
}
/// <summary>
/// Returns our Expression converted to our known LimitType
/// </summary>
private Expression GetLimitedSelf() {
if (TypeUtils.AreEquivalent(Expression.Type, LimitType)) {
return Expression;
}
return Expression.Convert(Expression, LimitType);
}
/// <summary>
/// Returns a Restrictions object which includes our current restrictions merged
/// with a restriction limiting our type
/// </summary>
private BindingRestrictions GetRestrictions() {
Debug.Assert(Restrictions == BindingRestrictions.Empty, "We don't merge, restrictions are always empty");
return BindingRestrictions.GetTypeRestriction(this);
}
public new ExpandoObject Value {
get {
return (ExpandoObject)base.Value;
}
}
}
#endregion
#region ExpandoData
/// <summary>
/// Stores the class and the data associated with the class as one atomic
/// pair. This enables us to do a class check in a thread safe manner w/o
/// requiring locks.
/// </summary>
private class ExpandoData {
internal static ExpandoData Empty = new ExpandoData();
/// <summary>
/// the dynamically assigned class associated with the Expando object
/// </summary>
internal readonly ExpandoClass Class;
/// <summary>
/// data stored in the expando object, key names are stored in the class.
///
/// Expando._data must be locked when mutating the value. Otherwise a copy of it
/// could be made and lose values.
/// </summary>
private readonly object[] _dataArray;
/// <summary>
/// Indexer for getting/setting the data
/// </summary>
internal object this[int index] {
get {
return _dataArray[index];
}
set {
//when the array is updated, version increases, even the new value is the same
//as previous. Dictionary type has the same behavior.
_version++;
_dataArray[index] = value;
}
}
internal int Version {
get { return _version; }
}
internal int Length {
get { return _dataArray.Length; }
}
/// <summary>
/// Constructs an empty ExpandoData object with the empty class and no data.
/// </summary>
private ExpandoData() {
Class = ExpandoClass.Empty;
_dataArray = new object[0];
}
/// <summary>
/// the version of the ExpandoObject that tracks set and delete operations
/// </summary>
private int _version;
/// <summary>
/// Constructs a new ExpandoData object with the specified class and data.
/// </summary>
internal ExpandoData(ExpandoClass klass, object[] data, int version) {
Class = klass;
_dataArray = data;
_version = version;
}
/// <summary>
/// Update the associated class and increases the storage for the data array if needed.
/// </summary>
/// <returns></returns>
internal ExpandoData UpdateClass(ExpandoClass newClass) {
if (_dataArray.Length >= newClass.Keys.Length) {
// we have extra space in our buffer, just initialize it to Uninitialized.
this[newClass.Keys.Length - 1] = ExpandoObject.Uninitialized;
return new ExpandoData(newClass, this._dataArray, this._version);
} else {
// we've grown too much - we need a new object array
int oldLength = _dataArray.Length;
object[] arr = new object[GetAlignedSize(newClass.Keys.Length)];
Array.Copy(_dataArray, arr, _dataArray.Length);
ExpandoData newData = new ExpandoData(newClass, arr, this._version);
newData[oldLength] = ExpandoObject.Uninitialized;
return newData;
}
}
private static int GetAlignedSize(int len) {
// the alignment of the array for storage of values (must be a power of two)
const int DataArrayAlignment = 8;
// round up and then mask off lower bits
return (len + (DataArrayAlignment - 1)) & (~(DataArrayAlignment - 1));
}
}
#endregion
#region INotifyPropertyChanged Members
event PropertyChangedEventHandler INotifyPropertyChanged.PropertyChanged {
add { _propertyChanged += value; }
remove { _propertyChanged -= value; }
}
#endregion
}
}
namespace System.Runtime.CompilerServices {
//
// Note: these helpers are kept as simple wrappers so they have a better
// chance of being inlined.
//
public static partial class RuntimeOps {
/// <summary>
/// Gets the value of an item in an expando object.
/// </summary>
/// <param name="expando">The expando object.</param>
/// <param name="indexClass">The class of the expando object.</param>
/// <param name="index">The index of the member.</param>
/// <param name="name">The name of the member.</param>
/// <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
/// <param name="value">The out parameter containing the value of the member.</param>
/// <returns>True if the member exists in the expando object, otherwise false.</returns>
[Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)]
public static bool ExpandoTryGetValue(ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase, out object value) {
return expando.TryGetValue(indexClass, index, name, ignoreCase, out value);
}
/// <summary>
/// Sets the value of an item in an expando object.
/// </summary>
/// <param name="expando">The expando object.</param>
/// <param name="indexClass">The class of the expando object.</param>
/// <param name="index">The index of the member.</param>
/// <param name="value">The value of the member.</param>
/// <param name="name">The name of the member.</param>
/// <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
/// <returns>
/// Returns the index for the set member.
/// </returns>
[Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)]
public static object ExpandoTrySetValue(ExpandoObject expando, object indexClass, int index, object value, string name, bool ignoreCase) {
expando.TrySetValue(indexClass, index, value, name, ignoreCase, false);
return value;
}
/// <summary>
/// Deletes the value of an item in an expando object.
/// </summary>
/// <param name="expando">The expando object.</param>
/// <param name="indexClass">The class of the expando object.</param>
/// <param name="index">The index of the member.</param>
/// <param name="name">The name of the member.</param>
/// <param name="ignoreCase">true if the name should be matched ignoring case; false otherwise.</param>
/// <returns>true if the item was successfully removed; otherwise, false.</returns>
[Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)]
public static bool ExpandoTryDeleteValue(ExpandoObject expando, object indexClass, int index, string name, bool ignoreCase) {
return expando.TryDeleteValue(indexClass, index, name, ignoreCase, ExpandoObject.Uninitialized);
}
/// <summary>
/// Checks the version of the expando object.
/// </summary>
/// <param name="expando">The expando object.</param>
/// <param name="version">The version to check.</param>
/// <returns>true if the version is equal; otherwise, false.</returns>
[Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)]
public static bool ExpandoCheckVersion(ExpandoObject expando, object version) {
return expando.Class == version;
}
/// <summary>
/// Promotes an expando object from one class to a new class.
/// </summary>
/// <param name="expando">The expando object.</param>
/// <param name="oldClass">The old class of the expando object.</param>
/// <param name="newClass">The new class of the expando object.</param>
[Obsolete("do not use this method", true), EditorBrowsable(EditorBrowsableState.Never)]
public static void ExpandoPromoteClass(ExpandoObject expando, object oldClass, object newClass) {
expando.PromoteClass(oldClass, newClass);
}
}
}
|