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 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
|
//------------------------------------------------------------------------------
// <copyright file="ConfigurationElementCollection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Xml;
namespace System.Configuration {
[System.Diagnostics.DebuggerDisplay("Count = {Count}")]
public abstract class ConfigurationElementCollection : ConfigurationElement, ICollection {
internal const string DefaultAddItemName = "add";
internal const string DefaultRemoveItemName = "remove";
internal const string DefaultClearItemsName = "clear";
private int _removedItemCount = 0; // Number of items removed for this collection (not including parent)
private int _inheritedCount = 0; // Total number of inherited items
private ArrayList _items = new ArrayList();
private String _addElement = DefaultAddItemName;
private String _removeElement = DefaultRemoveItemName;
private String _clearElement = DefaultClearItemsName;
private bool bEmitClearTag = false;
private bool bCollectionCleared = false;
private bool bModified = false;
private bool bReadOnly = false;
private IComparer _comparer;
internal bool internalAddToEnd = false;
internal String internalElementTagName = string.Empty;
protected ConfigurationElementCollection() {
}
protected ConfigurationElementCollection(IComparer comparer) {
if (comparer == null) {
throw new ArgumentNullException("comparer");
}
_comparer = comparer;
}
private ArrayList Items {
get {
return _items;
}
}
private enum InheritedType {
inNeither = 0,
inParent = 1,
inSelf = 2,
inBothSame = 3,
inBothDiff = 4,
inBothCopyNoRemove = 5,
}
protected internal string AddElementName {
get {
return _addElement;
}
set {
_addElement = value;
if (BaseConfigurationRecord.IsReservedAttributeName(value)) {
throw new ArgumentException(SR.GetString(SR.Item_name_reserved, DefaultAddItemName, value));
}
}
}
protected internal string RemoveElementName {
get {
return _removeElement;
}
set {
if (BaseConfigurationRecord.IsReservedAttributeName(value)) {
throw new ArgumentException(SR.GetString(SR.Item_name_reserved, DefaultRemoveItemName, value));
}
_removeElement = value;
}
}
protected internal string ClearElementName {
get {
return _clearElement;
}
set {
if (BaseConfigurationRecord.IsReservedAttributeName(value)) {
throw new ArgumentException(SR.GetString(SR.Item_name_reserved, DefaultClearItemsName, value));
}
_clearElement = value;
}
}
// AssociateContext
//
// Associate a collection of values with a configRecord
//
internal override void AssociateContext(BaseConfigurationRecord configRecord) {
base.AssociateContext(configRecord);
foreach (Entry entry in _items) {
if (entry._value != null) {
entry._value.AssociateContext(configRecord);
}
}
}
protected internal override bool IsModified() {
if (bModified == true) {
return true;
}
if (base.IsModified() == true) {
return true;
}
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
ConfigurationElement elem = entry._value;
if (elem.IsModified()) {
return true;
}
}
}
return false;
}
protected internal override void ResetModified() {
bModified = false;
base.ResetModified();
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
ConfigurationElement elem = entry._value;
elem.ResetModified();
}
}
}
public override bool IsReadOnly() {
return bReadOnly;
}
protected internal override void SetReadOnly() {
bReadOnly = true;
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
ConfigurationElement elem = entry._value;
elem.SetReadOnly();
}
}
}
internal virtual IEnumerator GetEnumeratorImpl() {
return new Enumerator(_items, this);
}
internal IEnumerator GetElementsEnumerator() {
// Return an enumerator over the collection's config elements.
// This is different then the std GetEnumerator because the second one
// can return different set of items if overriden in a derived class
return new Enumerator(_items, this);
}
public override bool Equals(object compareTo) {
if (compareTo.GetType() == this.GetType()) {
ConfigurationElementCollection compareToElem = (ConfigurationElementCollection)compareTo;
if (this.Count != compareToElem.Count) {
return false;
}
foreach (Entry thisEntry in Items) {
bool found = false;
foreach (Entry compareEntry in compareToElem.Items) {
if (Object.Equals(thisEntry._value, compareEntry._value)) {
found = true;
break;
}
}
if (found == false) {
// not in the collection must be different
return false;
}
}
return true;
}
return false;
}
public override int GetHashCode() {
int hHashCode = 0;
foreach (Entry thisEntry in Items) {
ConfigurationElement elem = thisEntry._value;
hHashCode ^= elem.GetHashCode();
}
return hHashCode;
}
protected internal override void Unmerge(ConfigurationElement sourceElement,
ConfigurationElement parentElement,
ConfigurationSaveMode saveMode) {
base.Unmerge(sourceElement, parentElement, saveMode);
if (sourceElement != null) {
ConfigurationElementCollection parentCollection = parentElement as ConfigurationElementCollection;
ConfigurationElementCollection sourceCollection = sourceElement as ConfigurationElementCollection;
Hashtable Inheritance = new Hashtable();
_lockedAllExceptAttributesList = sourceElement._lockedAllExceptAttributesList;
_lockedAllExceptElementsList = sourceElement._lockedAllExceptElementsList;
_fItemLocked = sourceElement._fItemLocked;
_lockedAttributesList = sourceElement._lockedAttributesList;
_lockedElementsList = sourceElement._lockedElementsList;
AssociateContext(sourceElement._configRecord);
if (parentElement != null) {
if (parentElement._lockedAttributesList != null)
_lockedAttributesList = UnMergeLockList(sourceElement._lockedAttributesList,
parentElement._lockedAttributesList, saveMode);
if (parentElement._lockedElementsList != null)
_lockedElementsList = UnMergeLockList(sourceElement._lockedElementsList,
parentElement._lockedElementsList, saveMode);
if (parentElement._lockedAllExceptAttributesList != null)
_lockedAllExceptAttributesList = UnMergeLockList(sourceElement._lockedAllExceptAttributesList,
parentElement._lockedAllExceptAttributesList, saveMode);
if (parentElement._lockedAllExceptElementsList != null)
_lockedAllExceptElementsList = UnMergeLockList(sourceElement._lockedAllExceptElementsList,
parentElement._lockedAllExceptElementsList, saveMode);
}
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
// When writing out portable configurations the <clear/> tag should be written
bCollectionCleared = sourceCollection.bCollectionCleared;
EmitClear = (saveMode == ConfigurationSaveMode.Full && (_clearElement.Length != 0)) ||
(saveMode == ConfigurationSaveMode.Modified && bCollectionCleared) ?
true : sourceCollection.EmitClear;
if ((parentCollection != null) && (EmitClear != true)) {
foreach (Entry entry in parentCollection.Items) {
if (entry._entryType != EntryType.Removed) {
Inheritance[entry.GetKey(this)] = InheritedType.inParent;
}
}
}
foreach (Entry entry in sourceCollection.Items) {
if (entry._entryType != EntryType.Removed) {
if (Inheritance.Contains(entry.GetKey(this))) {
Entry parentEntry = (Entry)parentCollection.Items[parentCollection.RealIndexOf(entry._value)];
ConfigurationElement elem = entry._value;
if (elem.Equals(parentEntry._value)) {
// in modified mode we consider any change to be different than the parent
Inheritance[entry.GetKey(this)] = InheritedType.inBothSame;
if (saveMode == ConfigurationSaveMode.Modified) {
if (elem.IsModified()) {
Inheritance[entry.GetKey(this)] = InheritedType.inBothDiff;
} else
if (elem.ElementPresent) {
// This is when the source file contained the entry but it was an
// exact copy. We don't want to emit a remove so we treat it as
// a special case.
Inheritance[entry.GetKey(this)] = InheritedType.inBothCopyNoRemove;
}
}
}
else {
Inheritance[entry.GetKey(this)] = InheritedType.inBothDiff;
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate
&& entry._entryType == EntryType.Added) {
// this is a special case for deailing with defect number 529517
// this code allow the config to write out the same xml when no remove was
// present during deserialization.
Inheritance[entry.GetKey(this)] = InheritedType.inBothCopyNoRemove;
}
}
}
else { // not in parent
Inheritance[entry.GetKey(this)] = InheritedType.inSelf;
}
}
}
//
if ((parentCollection != null) && (EmitClear != true)) {
foreach (Entry entry in parentCollection.Items) {
if (entry._entryType != EntryType.Removed) {
InheritedType tp = (InheritedType)Inheritance[entry.GetKey(this)];
if (tp == InheritedType.inParent || tp == InheritedType.inBothDiff) {
ConfigurationElement elem = CallCreateNewElement(entry.GetKey(this).ToString());
elem.Reset(entry._value); // copy this entry
BaseAdd(elem,ThrowOnDuplicate,true); // Add it (so that is once existed in the temp
BaseRemove(entry.GetKey(this), false); // now remove it to for a remove instruction
}
}
}
}
foreach (Entry entry in sourceCollection.Items) {
if (entry._entryType != EntryType.Removed) {
InheritedType tp = (InheritedType)Inheritance[entry.GetKey(this)];
if (tp == InheritedType.inSelf || tp == InheritedType.inBothDiff ||
tp == InheritedType.inBothCopyNoRemove) {
ConfigurationElement elem = CallCreateNewElement(entry.GetKey(this).ToString());
elem.Unmerge(entry._value, null, saveMode);
if (tp == InheritedType.inSelf) {
elem.RemoveAllInheritedLocks(); // If the key changed only local locks are kept
}
BaseAdd(elem,ThrowOnDuplicate,true); // Add it
}
}
}
}
else {
if (CollectionType == ConfigurationElementCollectionType.BasicMap ||
CollectionType == ConfigurationElementCollectionType.BasicMapAlternate) {
foreach (Entry entry in sourceCollection.Items) {
bool FoundKeyInParent = false;
Entry parentEntrySaved = null;
if (entry._entryType == EntryType.Added ||
entry._entryType == EntryType.Replaced) {
bool InParent = false;
if (parentCollection != null) {
foreach (Entry parentEntry in parentCollection.Items) {
if (Object.Equals(entry.GetKey(this), parentEntry.GetKey(this))) {
// for basic map collection where the key is actually an element
// we do not want the merging behavior or data will not get written
// out for the properties if they match the first element deamed to be a parent
// For example <allow verbs="NewVerb" users="*"/> will loose the users because
// an entry exists in the root element.
if (!IsElementName(entry.GetKey(this).ToString())) {
// For elements which are not keyed by the element name
// need to be unmerged
FoundKeyInParent = true;
parentEntrySaved = parentEntry;
}
}
if (Object.Equals(entry._value, parentEntry._value)) {
FoundKeyInParent = true;
InParent = true; // in parent and the same exact values
parentEntrySaved = parentEntry;
break;
}
}
}
ConfigurationElement elem = CallCreateNewElement(entry.GetKey(this).ToString());
if (!FoundKeyInParent) { // Unmerge is similar to a reset when used like this
// except that it handles the different update modes
// which Reset does not understand
elem.Unmerge(entry._value, null, saveMode); // copy this entry
BaseAdd(-1, elem,true); // Add it
}
else {
ConfigurationElement sourceItem = entry._value;
if (!InParent ||
(saveMode == ConfigurationSaveMode.Modified && sourceItem.IsModified()) ||
(saveMode == ConfigurationSaveMode.Full)) {
elem.Unmerge(entry._value, parentEntrySaved._value, saveMode);
BaseAdd(-1, elem,true); // Add it
}
}
}
}
}
}
}
}
protected internal override void Reset(ConfigurationElement parentElement) {
ConfigurationElementCollection parentCollection = parentElement as ConfigurationElementCollection;
ResetLockLists(parentElement);
if (parentCollection != null) {
foreach (Entry entry in parentCollection.Items) {
ConfigurationElement elem = CallCreateNewElement(entry.GetKey(this).ToString());
elem.Reset(entry._value);
if ((CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) &&
(entry._entryType == EntryType.Added ||
entry._entryType == EntryType.Replaced)) { // do not add removed items from the parent
BaseAdd(elem, true, true); // This version combines dups and throws (unless overridden)
}
else {
if (CollectionType == ConfigurationElementCollectionType.BasicMap ||
CollectionType == ConfigurationElementCollectionType.BasicMapAlternate) {
BaseAdd(-1, elem, true); // this version appends regardless of if it is a dup.
}
}
}
_inheritedCount = Count; // After reset the count is the number of items actually inherited.
}
}
public int Count {
get {
return _items.Count - _removedItemCount;
}
}
public bool EmitClear {
get {
return bEmitClearTag;
}
set {
if (IsReadOnly()) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
}
if (value == true) {
CheckLockedElement(_clearElement, null); // has clear been locked?
CheckLockedElement(_removeElement, null); // has remove been locked? Clear implies remove
}
bModified = true;
bEmitClearTag = value;
}
}
public bool IsSynchronized {
get {
return false;
}
}
public Object SyncRoot {
get {
return null;
}
}
public void CopyTo(ConfigurationElement[] array, int index) {
((ICollection)this).CopyTo(array, index);
}
void ICollection.CopyTo(Array arr, int index) {
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
arr.SetValue(entry._value, index++);
}
}
}
public IEnumerator GetEnumerator() {
return GetEnumeratorImpl();
}
protected virtual void BaseAdd(ConfigurationElement element) {
BaseAdd(element, ThrowOnDuplicate);
}
protected internal void BaseAdd(ConfigurationElement element, bool throwIfExists) {
BaseAdd(element, throwIfExists, false);
}
private void BaseAdd(ConfigurationElement element, bool throwIfExists, bool ignoreLocks) {
bool flagAsReplaced = false;
bool localAddToEnd = internalAddToEnd;
if (IsReadOnly()) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
}
if (LockItem == true && ignoreLocks == false) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_element_locked, _addElement));
}
Object key = GetElementKeyInternal(element);
int iFoundItem = -1;
for (int index = 0; index < _items.Count; index++) {
Entry entry = (Entry)_items[index];
if (CompareKeys(key, entry.GetKey(this))) {
if (entry._value != null && entry._value.LockItem == true && ignoreLocks == false) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_item_locked));
}
if (entry._entryType != EntryType.Removed && throwIfExists) {
if (!element.Equals(entry._value)) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_already_exists, key),
element.PropertyFileName(""), element.PropertyLineNumber(""));
}
else {
entry._value = element;
}
return;
}
if (entry._entryType != EntryType.Added) {
if ((CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) &&
entry._entryType == EntryType.Removed &&
_removedItemCount > 0) {
_removedItemCount--; // account for the value
}
entry._entryType = EntryType.Replaced;
flagAsReplaced = true;
}
if (localAddToEnd ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
iFoundItem = index;
if (entry._entryType == EntryType.Added) {
// this is a special case for defect number 529517 to emulate everett behavior
localAddToEnd = true;
}
break;
}
else {
// check to see if the element is trying to set a locked property.
if (ignoreLocks == false) {
element.HandleLockedAttributes(entry._value);
// copy the lock from the removed element before setting the new element
element.MergeLocks(entry._value);
}
entry._value = element;
bModified = true;
return;
}
}
}
// Brand new item.
if (iFoundItem >= 0) {
_items.RemoveAt(iFoundItem);
// if the item being removed was inherited adjust the cout
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate &&
iFoundItem > Count + _removedItemCount - _inheritedCount) {
_inheritedCount--;
}
}
BaseAddInternal(localAddToEnd ? -1 : iFoundItem, element, flagAsReplaced, ignoreLocks);
bModified = true;
}
protected int BaseIndexOf(ConfigurationElement element) {
int index = 0;
Object key = GetElementKeyInternal(element);
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
if (CompareKeys(key, entry.GetKey(this))) {
return index;
}
index++;
}
}
return -1;
}
internal int RealIndexOf(ConfigurationElement element) {
int index = 0;
Object key = GetElementKeyInternal(element);
foreach (Entry entry in _items) {
if (CompareKeys(key, entry.GetKey(this))) {
return index;
}
index++;
}
return -1;
}
private void BaseAddInternal(int index, ConfigurationElement element, bool flagAsReplaced, bool ignoreLocks) {
// Allow the element to initialize itself after its
// constructor has been run so that it may access
// virtual methods.
element.AssociateContext(_configRecord);
if (element != null) {
element.CallInit();
}
if (IsReadOnly()) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
}
if (!ignoreLocks) { // during reset we ignore locks so we can copy the elements
if(CollectionType == ConfigurationElementCollectionType.BasicMap ||
CollectionType == ConfigurationElementCollectionType.BasicMapAlternate) {
if (BaseConfigurationRecord.IsReservedAttributeName(ElementName)) {
throw new ArgumentException(SR.GetString(SR.Basicmap_item_name_reserved, ElementName));
}
CheckLockedElement(ElementName, null);
}
if(CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
CheckLockedElement(_addElement, null);
}
}
if (CollectionType == ConfigurationElementCollectionType.BasicMapAlternate ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
if (index == -1) {
index = Count + _removedItemCount - _inheritedCount; // insert before inherited, but after any removed
}
else {
if (index > Count + _removedItemCount - _inheritedCount && flagAsReplaced == false) {
throw (new ConfigurationErrorsException(SR.GetString(SR.Config_base_cannot_add_items_below_inherited_items)));
}
}
}
if (CollectionType == ConfigurationElementCollectionType.BasicMap &&
index >= 0 &&
index < _inheritedCount) {
throw (new ConfigurationErrorsException(SR.GetString(SR.Config_base_cannot_add_items_above_inherited_items)));
}
EntryType entryType = (flagAsReplaced == false) ? EntryType.Added : EntryType.Replaced;
Object key = GetElementKeyInternal(element);
if (index >= 0) {
if (index > _items.Count) {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
_items.Insert(index, new Entry(entryType, key, element));
}
else {
_items.Add(new Entry(entryType, key, element));
}
bModified = true;
}
protected virtual void BaseAdd(int index, ConfigurationElement element) {
BaseAdd(index, element, false);
}
private void BaseAdd(int index, ConfigurationElement element, bool ignoreLocks) {
if (IsReadOnly()) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
}
if (index < -1) {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
if ((index != -1) &&
(CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate)) {
// If it's an AddRemoveClearMap*** collection, turn the index passed into into a real internal index
int realIndex = 0;
if (index > 0) {
foreach (Entry entryfound in _items) {
if (entryfound._entryType != EntryType.Removed) {
index--;
}
if (index == 0) {
break;
}
realIndex++;
}
index = ++realIndex;
}
// check for duplicates
Object key = GetElementKeyInternal(element);
foreach (Entry entry in _items) {
if (CompareKeys(key, entry.GetKey(this))) {
if (entry._entryType != EntryType.Removed) {
if (!element.Equals(entry._value)) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_already_exists, key),
element.PropertyFileName(""), element.PropertyLineNumber(""));
}
return;
}
}
}
}
BaseAddInternal(index, element, false, ignoreLocks);
}
protected internal void BaseRemove(Object key) {
BaseRemove(key, false);
}
private void BaseRemove(Object key, bool throwIfMissing) {
if (IsReadOnly())
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
int index = 0;
bool foundEntry = false;
foreach (Entry entry in _items) {
if (CompareKeys(key, entry.GetKey(this))) {
foundEntry = true;
if (entry._value == null) // A phoney delete is already present
{
if (throwIfMissing) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_not_found, key));
}
else {
return;
}
}
if (entry._value.LockItem == true) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_attribute_locked, key));
}
if (entry._value.ElementPresent == false) {
CheckLockedElement(_removeElement, null); // has remove been locked?
}
switch (entry._entryType) {
case EntryType.Added:
if (CollectionType != ConfigurationElementCollectionType.AddRemoveClearMap &&
CollectionType != ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
if (CollectionType == ConfigurationElementCollectionType.BasicMapAlternate) {
if (index >= Count - _inheritedCount) {
throw (new ConfigurationErrorsException(SR.GetString(SR.Config_base_cannot_remove_inherited_items)));
}
}
if (CollectionType == ConfigurationElementCollectionType.BasicMap) {
if (index < _inheritedCount) {
throw (new ConfigurationErrorsException(SR.GetString(SR.Config_base_cannot_remove_inherited_items)));
}
}
_items.RemoveAt(index);
}
else {
// don't really remove it from the collection just mark it removed
entry._entryType = EntryType.Removed;
_removedItemCount++;
}
break;
case EntryType.Removed:
if (throwIfMissing) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_already_removed));
}
break;
default:
if (CollectionType != ConfigurationElementCollectionType.AddRemoveClearMap &&
CollectionType != ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_elements_may_not_be_removed));
}
entry._entryType = EntryType.Removed;
_removedItemCount++;
break;
}
bModified = true;
return;
}
index++;
}
// Note because it is possible for removes to get orphaned by the API they will
// not cause a throw from the base classes. The scenerio is:
// Add an item in a parent level
// remove the item in a child level
// remove the item at the parent level.
//
// throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_not_found));
if (foundEntry == false) {
if (throwIfMissing) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_not_found, key));
}
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
_items.Insert(Count + _removedItemCount - _inheritedCount, new Entry(EntryType.Removed, key, null));
}
else {
_items.Add(new Entry(EntryType.Removed, key, null));
}
_removedItemCount++;
}
}
}
protected internal ConfigurationElement BaseGet(Object key) {
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
if (CompareKeys(key, entry.GetKey(this))) {
return entry._value;
}
}
}
return null;
}
protected internal bool BaseIsRemoved(Object key) {
foreach (Entry entry in _items) {
if (CompareKeys(key, entry.GetKey(this))) {
if (entry._entryType == EntryType.Removed) {
return true;
}
else {
return false;
}
}
}
return false;
}
protected internal ConfigurationElement BaseGet(int index) {
if (index < 0) {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
int VirtualIndex = 0;
Entry entry = (Entry)null;
foreach (Entry entryfound in _items) {
if (VirtualIndex == index && (entryfound._entryType != EntryType.Removed)) {
entry = entryfound;
break;
}
if (entryfound._entryType != EntryType.Removed) {
VirtualIndex++;
}
}
if (entry != null) {
return entry._value;
}
else {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
}
protected internal object[] BaseGetAllKeys() {
object[] keys = new object[Count];
int index = 0;
foreach (Entry entry in _items) {
if (entry._entryType != EntryType.Removed) {
keys[index] = entry.GetKey(this);
index++;
}
}
return keys;
}
protected internal object BaseGetKey(int index) {
int VirtualIndex = 0;
Entry entry = (Entry)null;
if (index < 0) {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
foreach (Entry entryfound in _items) {
if (VirtualIndex == index && (entryfound._entryType != EntryType.Removed)) {
entry = entryfound;
break;
}
if (entryfound._entryType != EntryType.Removed) {
VirtualIndex++;
}
}
// Entry entry = (Entry)_items[index];
if (entry != null) {
object key = entry.GetKey(this);
return key;
}
else {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
}
protected internal void BaseClear() {
if (IsReadOnly()) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
}
CheckLockedElement(_clearElement, null); // has clear been locked?
CheckLockedElement(_removeElement, null); // has remove been locked? Clear implies remove
bModified = true;
bCollectionCleared = true;
if ((CollectionType == ConfigurationElementCollectionType.BasicMap ||
CollectionType == ConfigurationElementCollectionType.BasicMapAlternate)
&& _inheritedCount > 0) {
int RemoveIndex = 0;
if (CollectionType == ConfigurationElementCollectionType.BasicMapAlternate) {
RemoveIndex = 0; // Inherited items are at the bottom and cannot be removed
}
if (CollectionType == ConfigurationElementCollectionType.BasicMap) {
RemoveIndex = _inheritedCount; // inherited items are at the top and cannot be removed
}
while (Count - _inheritedCount > 0) {
_items.RemoveAt(RemoveIndex);
}
}
else {
// do not clear any locked items
// _items.Clear();
int inheritedRemoved = 0;
int removedRemoved = 0;
int initialCount = Count;
// check for locks before removing any items from the collection
for (int CheckIndex = 0; CheckIndex < _items.Count; CheckIndex++) {
Entry entry = (Entry)_items[CheckIndex];
if (entry._value != null && entry._value.LockItem == true) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_item_locked_cannot_clear));
}
}
for (int RemoveIndex = _items.Count - 1; RemoveIndex >= 0; RemoveIndex--) {
Entry entry = (Entry)_items[RemoveIndex];
if ((CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap &&
RemoveIndex < _inheritedCount) ||
(CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate &&
(RemoveIndex >= initialCount - _inheritedCount))) {
inheritedRemoved++;
}
if (entry._entryType == EntryType.Removed) {
removedRemoved++;
}
_items.RemoveAt(RemoveIndex);
}
_inheritedCount -= inheritedRemoved;
_removedItemCount -= removedRemoved;
}
}
protected internal void BaseRemoveAt(int index) {
if (IsReadOnly()) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_read_only));
}
int VirtualIndex = 0;
Entry entry = (Entry)null;
foreach (Entry entryfound in _items) {
if (VirtualIndex == index && (entryfound._entryType != EntryType.Removed)) {
entry = entryfound;
break;
}
if (entryfound._entryType != EntryType.Removed) {
VirtualIndex++;
}
}
if (entry == null) {
throw new ConfigurationErrorsException(SR.GetString(SR.IndexOutOfRange, index));
}
else {
if (entry._value.LockItem == true) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_attribute_locked, entry.GetKey(this)));
}
if (entry._value.ElementPresent == false) {
CheckLockedElement(_removeElement, null); // has remove been locked?
}
switch (entry._entryType) {
case EntryType.Added:
if (CollectionType != ConfigurationElementCollectionType.AddRemoveClearMap &&
CollectionType != ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
if (CollectionType == ConfigurationElementCollectionType.BasicMapAlternate) {
if (index >= Count - _inheritedCount) {
throw (new ConfigurationErrorsException(SR.GetString(SR.Config_base_cannot_remove_inherited_items)));
}
}
if (CollectionType == ConfigurationElementCollectionType.BasicMap) {
if (index < _inheritedCount) {
throw (new ConfigurationErrorsException(SR.GetString(SR.Config_base_cannot_remove_inherited_items)));
}
}
_items.RemoveAt(index);
}
else {
// don't really remove it from the collection just mark it removed
if (entry._value.ElementPresent == false) {
CheckLockedElement(_removeElement, null); // has remove been locked?
}
entry._entryType = EntryType.Removed;
_removedItemCount++;
}
break;
case EntryType.Removed:
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_entry_already_removed));
default:
if (CollectionType != ConfigurationElementCollectionType.AddRemoveClearMap &&
CollectionType != ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_collection_elements_may_not_be_removed));
}
entry._entryType = EntryType.Removed;
_removedItemCount++;
break;
}
bModified = true;
}
}
protected internal override bool SerializeElement(XmlWriter writer, bool serializeCollectionKey) {
ConfigurationElementCollectionType type = CollectionType;
bool DataToWrite = false;
DataToWrite |= base.SerializeElement(writer, serializeCollectionKey);
if (type == ConfigurationElementCollectionType.AddRemoveClearMap ||
type == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
// it is possible that the collection only has to be cleared and contains
// no real elements
if (bEmitClearTag == true && (_clearElement.Length != 0)) {
if (writer != null) {
writer.WriteStartElement(_clearElement);
writer.WriteEndElement();
}
DataToWrite = true;
}
}
foreach (Entry entry in _items) {
if (type == ConfigurationElementCollectionType.BasicMap ||
type == ConfigurationElementCollectionType.BasicMapAlternate) {
if (entry._entryType == EntryType.Added || entry._entryType == EntryType.Replaced) {
if (ElementName != null && ElementName.Length != 0) {
if (BaseConfigurationRecord.IsReservedAttributeName(ElementName)) {
throw new ArgumentException(SR.GetString(SR.Basicmap_item_name_reserved, ElementName));
}
DataToWrite |= entry._value.SerializeToXmlElement(writer, ElementName);
}
else {
DataToWrite |= entry._value.SerializeElement(writer, false);
}
}
}
else if (type == ConfigurationElementCollectionType.AddRemoveClearMap ||
type == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
if ((entry._entryType == EntryType.Removed ||
entry._entryType == EntryType.Replaced) &&
entry._value != null) {
if (writer != null) {
writer.WriteStartElement(_removeElement);
}
DataToWrite |= entry._value.SerializeElement(writer, true);
if (writer != null) {
writer.WriteEndElement();
}
DataToWrite = true;
}
if (entry._entryType == EntryType.Added || entry._entryType == EntryType.Replaced) {
DataToWrite |= entry._value.SerializeToXmlElement(writer, _addElement);
}
}
}
return DataToWrite;
}
protected override bool OnDeserializeUnrecognizedElement(String elementName, XmlReader reader) {
bool handled = false; //
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
if (elementName == _addElement) {
ConfigurationElement elem = CallCreateNewElement();
elem.ResetLockLists(this);
elem.DeserializeElement(reader, false);
BaseAdd(elem);
handled = true;
}
else if (elementName == _removeElement) {
ConfigurationElement elem = CallCreateNewElement();
elem.ResetLockLists(this);
elem.DeserializeElement(reader, true);
if (IsElementRemovable(elem) == true) {
BaseRemove(GetElementKeyInternal(elem), false);
}
handled = true;
}
else if (elementName == _clearElement) {
if (reader.AttributeCount > 0) {
while (reader.MoveToNextAttribute()) {
String propertyName = reader.Name;
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_unrecognized_attribute, propertyName), reader);
}
}
CheckLockedElement(elementName, reader);
reader.MoveToElement();
BaseClear(); //
bEmitClearTag = true;
handled = true;
}
}
else if (elementName == ElementName) {
if (BaseConfigurationRecord.IsReservedAttributeName(elementName)) {
throw new ArgumentException(SR.GetString(SR.Basicmap_item_name_reserved, elementName));
}
ConfigurationElement elem = CallCreateNewElement();
elem.ResetLockLists(this);
elem.DeserializeElement(reader, false);
BaseAdd(elem);
handled = true;
}
else if (IsElementName(elementName)) { // this section handle the collection like the allow deny senario which
if (BaseConfigurationRecord.IsReservedAttributeName(elementName)) {
throw new ArgumentException(SR.GetString(SR.Basicmap_item_name_reserved, elementName));
}
// have multiple tags for the collection
ConfigurationElement elem = CallCreateNewElement(elementName);
elem.ResetLockLists(this);
elem.DeserializeElement(reader, false);
BaseAdd(-1, elem);
handled = true;
}
return handled;
}
private ConfigurationElement CallCreateNewElement(string elementName) {
ConfigurationElement elem = CreateNewElement(elementName);
elem.AssociateContext(_configRecord);
elem.CallInit();
return elem;
}
private ConfigurationElement CallCreateNewElement() {
ConfigurationElement elem = CreateNewElement();
elem.AssociateContext(_configRecord);
elem.CallInit();
return elem;
}
protected virtual ConfigurationElement CreateNewElement(string elementName) {
return CreateNewElement();
}
protected abstract ConfigurationElement CreateNewElement();
protected abstract Object GetElementKey(ConfigurationElement element);
internal Object GetElementKeyInternal(ConfigurationElement element) {
Object key = GetElementKey(element);
if (key == null)
throw new ConfigurationErrorsException(SR.GetString(SR.Config_base_invalid_element_key));
return key;
}
protected virtual bool IsElementRemovable(ConfigurationElement element) {
return true;
}
private bool CompareKeys(Object key1, Object key2) {
if (_comparer != null) {
return (_comparer.Compare(key1, key2) == 0);
}
else {
return key1.Equals(key2);
}
}
protected virtual String ElementName {
get {
return "";
}
}
protected virtual bool IsElementName(string elementName) {
return false;
}
internal bool IsLockableElement(string elementName) {
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
return (elementName == AddElementName ||
elementName == RemoveElementName ||
elementName == ClearElementName);
}
else {
return (elementName == ElementName) || IsElementName(elementName);
}
}
internal string LockableElements {
get {
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
string ElementNames = "'" + AddElementName + "'"; // Must have an add
if (RemoveElementName.Length != 0)
ElementNames += ", '" + RemoveElementName + "'";
if (ClearElementName.Length != 0)
ElementNames += ", '" + ClearElementName + "'";
return ElementNames;
}
else {
if (!String.IsNullOrEmpty(ElementName)) {
return "'" + ElementName + "'";
}
return String.Empty;
}
}
}
protected virtual bool ThrowOnDuplicate {
get {
if (CollectionType == ConfigurationElementCollectionType.AddRemoveClearMap ||
CollectionType == ConfigurationElementCollectionType.AddRemoveClearMapAlternate) {
return true;
}
return false;
}
}
public virtual ConfigurationElementCollectionType CollectionType {
get {
return ConfigurationElementCollectionType.AddRemoveClearMap;
}
}
private enum EntryType {
Inherited,
Replaced,
Removed,
Added,
}
private class Entry {
internal EntryType _entryType;
internal Object _key;
internal ConfigurationElement _value;
internal Object GetKey(ConfigurationElementCollection ThisCollection) {
// For items that have been really inserted...
if (_value != null) {
return ThisCollection.GetElementKeyInternal(_value);
}
else {
return _key; // These are items that only have been removed
}
}
internal Entry(EntryType type, Object key, ConfigurationElement value) {
_entryType = type;
_key = key;
_value = value;
}
}
private class Enumerator : IDictionaryEnumerator {
private IEnumerator _itemsEnumerator;
private DictionaryEntry _current = new DictionaryEntry();
private ConfigurationElementCollection ThisCollection;
internal Enumerator(ArrayList items, ConfigurationElementCollection collection) {
_itemsEnumerator = items.GetEnumerator();
ThisCollection = collection;
}
bool IEnumerator.MoveNext() {
while (_itemsEnumerator.MoveNext()) {
Entry entry = (Entry)_itemsEnumerator.Current;
if (entry._entryType != EntryType.Removed) {
_current.Key = (entry.GetKey(ThisCollection) != null) ? entry.GetKey(ThisCollection) : "key";
_current.Value = entry._value;
return true;
}
}
return false;
}
void IEnumerator.Reset() {
_itemsEnumerator.Reset();
}
Object IEnumerator.Current {
get {
return _current.Value;
}
}
DictionaryEntry IDictionaryEnumerator.Entry {
get {
return _current;
}
}
Object IDictionaryEnumerator.Key {
get {
return _current.Key;
}
}
Object IDictionaryEnumerator.Value {
get {
return _current.Value;
}
}
}
}
}
|