| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241 |
- //
- // System.Collections.Hashtable.cs
- //
- // Author:
- // Sergey Chaban ([email protected])
- //
- //
- // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.Runtime.Serialization;
- using System.Runtime.ConstrainedExecution;
- using System.Runtime.InteropServices;
- using System.Diagnostics;
- namespace System.Collections {
- [Serializable]
- #if INSIDE_CORLIB
- [ComVisible(true)]
- [DebuggerDisplay ("Count={Count}")]
- [DebuggerTypeProxy (typeof (CollectionDebuggerView))]
- public class Hashtable : IDictionary, ICollection,
- IEnumerable, ICloneable, ISerializable, IDeserializationCallback {
- #else
- internal class Hashtable : IDictionary, ICollection, IEnumerable {
- #endif
- [Serializable]
- internal struct Slot {
- internal Object key;
- internal Object value;
- }
- [Serializable]
- internal class KeyMarker
- #if !NET_2_1
- : IObjectReference
- #endif
- {
- public readonly static KeyMarker Removed = new KeyMarker();
- #if !NET_2_1
- public object GetRealObject (StreamingContext context)
- {
- return KeyMarker.Removed;
- }
- #endif
- }
- //
- // Private data
- //
- const int CHAIN_MARKER = ~Int32.MaxValue;
- private Slot [] table;
- // Hashcodes of the corresponding entries in the slot table. Kept separate to
- // help the GC
- private int [] hashes;
- private HashKeys hashKeys;
- private HashValues hashValues;
- private IHashCodeProvider hcpRef;
- private IComparer comparerRef;
- private SerializationInfo serializationInfo;
- private IEqualityComparer equalityComparer;
- private int inUse;
- private int modificationCount;
- private float loadFactor;
- private int threshold;
- private static readonly int [] primeTbl = {
- 11,
- 19,
- 37,
- 73,
- 109,
- 163,
- 251,
- 367,
- 557,
- 823,
- 1237,
- 1861,
- 2777,
- 4177,
- 6247,
- 9371,
- 14057,
- 21089,
- 31627,
- 47431,
- 71143,
- 106721,
- 160073,
- 240101,
- 360163,
- 540217,
- 810343,
- 1215497,
- 1823231,
- 2734867,
- 4102283,
- 6153409,
- 9230113,
- 13845163
- };
- //
- // Constructors
- //
- public Hashtable () : this (0, 1.0f) {}
- [Obsolete ("Please use Hashtable(int, float, IEqualityComparer) instead")]
- public Hashtable (int capacity, float loadFactor, IHashCodeProvider hcp, IComparer comparer) {
- if (capacity<0)
- throw new ArgumentOutOfRangeException ("capacity", "negative capacity");
- if (loadFactor < 0.1f || loadFactor > 1.0f || Single.IsNaN (loadFactor))
- throw new ArgumentOutOfRangeException ("loadFactor", "load factor");
- if (capacity == 0) ++capacity;
- this.loadFactor = 0.75f*loadFactor;
- double tableSize = capacity / this.loadFactor;
- if (tableSize > Int32.MaxValue)
- throw new ArgumentException ("Size is too big");
- int size = (int) tableSize;
- size = ToPrime (size);
- this.SetTable (new Slot [size], new int [size]);
- this.hcp = hcp;
- this.comparer = comparer;
- this.inUse = 0;
- this.modificationCount = 0;
- }
- public Hashtable (int capacity, float loadFactor) :
- this (capacity, loadFactor, null, null)
- {
- }
- public Hashtable (int capacity) : this (capacity, 1.0f)
- {
- }
- //
- // Used as a faster Clone
- //
- internal Hashtable (Hashtable source)
- {
- inUse = source.inUse;
- loadFactor = source.loadFactor;
- table = (Slot []) source.table.Clone ();
- hashes = (int []) source.hashes.Clone ();
- threshold = source.threshold;
- hcpRef = source.hcpRef;
- comparerRef = source.comparerRef;
- equalityComparer = source.equalityComparer;
- }
-
- [Obsolete ("Please use Hashtable(int, IEqualityComparer) instead")]
- public Hashtable (int capacity,
- IHashCodeProvider hcp,
- IComparer comparer)
- : this (capacity, 1.0f, hcp, comparer)
- {
- }
- [Obsolete ("Please use Hashtable(IDictionary, float, IEqualityComparer) instead")]
- public Hashtable (IDictionary d, float loadFactor,
- IHashCodeProvider hcp, IComparer comparer)
- : this (d!=null ? d.Count : 0,
- loadFactor, hcp, comparer)
- {
- if (d == null)
- throw new ArgumentNullException ("dictionary");
- IDictionaryEnumerator it = d.GetEnumerator ();
- while (it.MoveNext ()) {
- Add (it.Key, it.Value);
- }
- }
- public Hashtable (IDictionary d, float loadFactor)
- : this (d, loadFactor, null, null)
- {
- }
- public Hashtable (IDictionary d) : this (d, 1.0f)
- {
- }
- [Obsolete ("Please use Hashtable(IDictionary, IEqualityComparer) instead")]
- public Hashtable (IDictionary d, IHashCodeProvider hcp, IComparer comparer)
- : this (d, 1.0f, hcp, comparer)
- {
- }
- [Obsolete ("Please use Hashtable(IEqualityComparer) instead")]
- public Hashtable (IHashCodeProvider hcp, IComparer comparer)
- : this (1, 1.0f, hcp, comparer)
- {
- }
- protected Hashtable (SerializationInfo info, StreamingContext context)
- {
- serializationInfo = info;
- }
- public Hashtable (IDictionary d, IEqualityComparer equalityComparer) : this (d, 1.0f, equalityComparer)
- {
- }
- public Hashtable (IDictionary d, float loadFactor, IEqualityComparer equalityComparer) : this (d, loadFactor)
- {
- this.equalityComparer = equalityComparer;
- }
- public Hashtable (IEqualityComparer equalityComparer) : this (1, 1.0f, equalityComparer)
- {
- }
- public Hashtable (int capacity, IEqualityComparer equalityComparer) : this (capacity, 1.0f, equalityComparer)
- {
- }
- public Hashtable (int capacity, float loadFactor, IEqualityComparer equalityComparer) : this (capacity, loadFactor)
- {
- this.equalityComparer = equalityComparer;
- }
- //
- // Properties
- //
- [Obsolete ("Please use EqualityComparer property.")]
- protected IComparer comparer {
- set {
- comparerRef = value;
- }
- get {
- return comparerRef;
- }
- }
- [Obsolete ("Please use EqualityComparer property.")]
- protected IHashCodeProvider hcp {
- set {
- hcpRef = value;
- }
- get {
- return hcpRef;
- }
- }
- protected IEqualityComparer EqualityComparer {
- get {
- return equalityComparer;
- }
- }
- // ICollection
- public virtual int Count {
- get {
- return inUse;
- }
- }
- public virtual bool IsSynchronized {
- get {
- return false;
- }
- }
- public virtual Object SyncRoot {
- get {
- return this;
- }
- }
- // IDictionary
- public virtual bool IsFixedSize {
- get {
- return false;
- }
- }
- public virtual bool IsReadOnly {
- get {
- return false;
- }
- }
- public virtual ICollection Keys {
- get {
- if (this.hashKeys == null)
- this.hashKeys = new HashKeys (this);
- return this.hashKeys;
- }
- }
- public virtual ICollection Values {
- get {
- if (this.hashValues == null)
- this.hashValues = new HashValues (this);
- return this.hashValues;
- }
- }
- public virtual Object this [Object key] {
- get {
- if (key == null)
- throw new ArgumentNullException ("key", "null key");
-
- Slot [] table = this.table;
- int [] hashes = this.hashes;
- uint size = (uint) table.Length;
- int h = this.GetHash (key) & Int32.MaxValue;
- uint indx = (uint)h;
- uint step = (uint) ((h >> 5)+1) % (size-1)+1;
-
-
- for (uint i = size; i > 0; i--) {
- indx %= size;
- Slot entry = table [indx];
- int hashMix = hashes [indx];
- Object k = entry.key;
- if (k == null)
- break;
-
- if (k == key || ((hashMix & Int32.MaxValue) == h
- && this.KeyEquals (key, k))) {
- return entry.value;
- }
-
- if ((hashMix & CHAIN_MARKER) == 0)
- break;
-
- indx += step;
- }
-
- return null;
- }
-
- set {
- PutImpl (key, value, true);
- }
- }
- //
- // Interface methods
- //
- // IEnumerable
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return new Enumerator (this, EnumeratorMode.ENTRY_MODE);
- }
- // ICollection
- public virtual void CopyTo (Array array, int arrayIndex)
- {
- if (null == array)
- throw new ArgumentNullException ("array");
- if (arrayIndex < 0)
- throw new ArgumentOutOfRangeException ("arrayIndex");
- if (array.Rank > 1)
- throw new ArgumentException ("array is multidimensional");
- if ((array.Length > 0) && (arrayIndex >= array.Length))
- throw new ArgumentException ("arrayIndex is equal to or greater than array.Length");
- if (arrayIndex + this.inUse > array.Length)
- throw new ArgumentException ("Not enough room from arrayIndex to end of array for this Hashtable");
- IDictionaryEnumerator it = GetEnumerator ();
- int i = arrayIndex;
- while (it.MoveNext ()) {
- array.SetValue (it.Entry, i++);
- }
- }
- // IDictionary
- public virtual void Add (Object key, Object value)
- {
- PutImpl (key, value, false);
- }
- [ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.Success)]
- public virtual void Clear ()
- {
- for (int i = 0;i<table.Length;i++) {
- table [i].key = null;
- table [i].value = null;
- hashes [i] = 0;
- }
- inUse = 0;
- modificationCount++;
- }
- public virtual bool Contains (Object key)
- {
- return (Find (key) >= 0);
- }
- public virtual IDictionaryEnumerator GetEnumerator ()
- {
- return new Enumerator (this, EnumeratorMode.ENTRY_MODE);
- }
- [ReliabilityContractAttribute (Consistency.WillNotCorruptState, Cer.MayFail)]
- public virtual void Remove (Object key)
- {
- int i = Find (key);
- if (i >= 0) {
- Slot [] table = this.table;
- int h = hashes [i];
- h &= CHAIN_MARKER;
- hashes [i] = h;
- table [i].key = (h != 0)
- ? KeyMarker.Removed
- : null;
- table [i].value = null;
- --inUse;
- ++modificationCount;
- }
- }
- public virtual bool ContainsKey (object key)
- {
- return Contains (key);
- }
- public virtual bool ContainsValue (object value)
- {
- int size = this.table.Length;
- Slot [] table = this.table;
- if (value == null) {
- for (int i = 0; i < size; i++) {
- Slot entry = table [i];
- if (entry.key != null && entry.key!= KeyMarker.Removed
- && entry.value == null) {
- return true;
- }
- }
- } else {
- for (int i = 0; i < size; i++) {
- Slot entry = table [i];
- if (entry.key != null && entry.key!= KeyMarker.Removed
- && value.Equals (entry.value)) {
- return true;
- }
- }
- }
- return false;
- }
- // ICloneable
- public virtual object Clone ()
- {
- return new Hashtable (this);
- }
- public virtual void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- if (info == null)
- throw new ArgumentNullException ("info");
- info.AddValue ("LoadFactor", loadFactor);
- info.AddValue ("Version", modificationCount);
- if (equalityComparer != null)
- info.AddValue ("KeyComparer", equalityComparer);
- else
- info.AddValue ("Comparer", comparerRef);
- if (hcpRef != null)
- info.AddValue ("HashCodeProvider", hcpRef);
- info.AddValue ("HashSize", this.table.Length);
- // Create Keys
- Object [] keys = new Object[inUse];
- CopyToArray(keys, 0, EnumeratorMode.KEY_MODE);
-
- // Create Values
- Object [] values = new Object[inUse];
- CopyToArray(values, 0, EnumeratorMode.VALUE_MODE);
- info.AddValue ("Keys", keys);
- info.AddValue ("Values", values);
- info.AddValue ("equalityComparer", equalityComparer);
- }
- [MonoTODO ("Serialize equalityComparer")]
- public virtual void OnDeserialization (object sender)
- {
- if (serializationInfo == null) return;
- loadFactor = (float) serializationInfo.GetValue ("LoadFactor", typeof(float));
- modificationCount = (int) serializationInfo.GetValue ("Version", typeof(int));
- try {
- equalityComparer = (IEqualityComparer) serializationInfo.GetValue ("KeyComparer", typeof (object));
- } catch {
- // If not found, try to get "Comparer"
- }
-
- if (equalityComparer == null)
- comparerRef = (IComparer) serializationInfo.GetValue ("Comparer", typeof (object));
- try {
- hcpRef = (IHashCodeProvider) serializationInfo.GetValue ("HashCodeProvider", typeof (object));
- } catch {} // Missing value => null
- int size = (int) serializationInfo.GetValue ("HashSize", typeof(int));
-
- Object [] keys = (Object []) serializationInfo.GetValue("Keys", typeof(Object [] ));
- Object [] values = (Object []) serializationInfo.GetValue("Values", typeof(Object [] ));
- if (keys.Length != values.Length)
- throw new SerializationException("Keys and values of uneven size");
-
- size = ToPrime (size);
- this.SetTable (new Slot [size], new int [size]);
-
- for(int i=0;i<keys.Length;i++)
- Add(keys[i], values[i]);
-
- AdjustThreshold();
-
- serializationInfo = null;
- }
- /// <summary>
- /// Returns a synchronized (thread-safe)
- /// wrapper for the Hashtable.
- /// </summary>
- public static Hashtable Synchronized (Hashtable table)
- {
- if (table == null)
- throw new ArgumentNullException("table");
- return new SyncHashtable (table);
- }
- //
- // Protected instance methods
- //
- /// <summary>Returns the hash code for the specified key.</summary>
- protected virtual int GetHash (Object key)
- {
- if (equalityComparer != null)
- return equalityComparer.GetHashCode (key);
- if (hcpRef == null)
- return key.GetHashCode ();
-
- return hcpRef.GetHashCode (key);
- }
- /// <summary>
- /// Compares a specific Object with a specific key
- /// in the Hashtable.
- /// </summary>
- protected virtual bool KeyEquals (Object item, Object key)
- {
- if (key == KeyMarker.Removed)
- return false;
- if (equalityComparer != null)
- return equalityComparer.Equals (item, key);
- if (comparerRef == null)
- return item.Equals (key);
-
- return comparerRef.Compare (item, key) == 0;
- }
- //
- // Private instance methods
- //
- private void AdjustThreshold ()
- {
- int size = table.Length;
- threshold = (int) (size*loadFactor);
- if (this.threshold >= size)
- threshold = size-1;
- }
- private void SetTable (Slot [] table, int[] hashes)
- {
- if (table == null)
- throw new ArgumentNullException ("table");
- this.table = table;
- this.hashes = hashes;
- AdjustThreshold ();
- }
- private int Find (Object key)
- {
- if (key == null)
- throw new ArgumentNullException ("key", "null key");
- Slot [] table = this.table;
- int [] hashes = this.hashes;
- uint size = (uint) table.Length;
- int h = this.GetHash (key) & Int32.MaxValue;
- uint indx = (uint)h;
- uint step = (uint) ((h >> 5)+1) % (size-1)+1;
-
- for (uint i = size; i > 0; i--) {
- indx %= size;
- Slot entry = table [indx];
- int hashMix = hashes [indx];
- Object k = entry.key;
- if (k == null)
- break;
-
- if (k == key || ((hashMix & Int32.MaxValue) == h
- && this.KeyEquals (key, k))) {
- return (int) indx;
- }
- if ((hashMix & CHAIN_MARKER) == 0)
- break;
- indx += step;
- }
- return -1;
- }
- private void Rehash ()
- {
- int oldSize = this.table.Length;
- // From the SDK docs:
- // Hashtable is automatically increased
- // to the smallest prime number that is larger
- // than twice the current number of Hashtable buckets
- uint newSize = (uint)ToPrime ((oldSize<<1)|1);
- Slot [] newTable = new Slot [newSize];
- Slot [] table = this.table;
- int [] newHashes = new int [newSize];
- int [] hashes = this.hashes;
- for (int i = 0;i<oldSize;i++) {
- Slot s = table [i];
- if (s.key!= null) {
- int h = hashes [i] & Int32.MaxValue;
- uint spot = (uint)h;
- uint step = ((uint) (h>>5)+1)% (newSize-1)+1;
- for (uint j = spot%newSize;;spot+= step, j = spot%newSize) {
- // No check for KeyMarker.Removed here,
- // because the table is just allocated.
- if (newTable [j].key == null) {
- newTable [j].key = s.key;
- newTable [j].value = s.value;
- newHashes [j] |= h;
- break;
- } else {
- newHashes [j] |= CHAIN_MARKER;
- }
- }
- }
- }
- ++this.modificationCount;
- this.SetTable (newTable, newHashes);
- }
- private void PutImpl (Object key, Object value, bool overwrite)
- {
- if (key == null)
- throw new ArgumentNullException ("key", "null key");
- if (this.inUse >= this.threshold)
- this.Rehash ();
- uint size = (uint)this.table.Length;
- int h = this.GetHash (key) & Int32.MaxValue;
- uint spot = (uint)h;
- uint step = (uint) ((spot>>5)+1)% (size-1)+1;
- Slot [] table = this.table;
- int [] hashes = this.hashes;
- Slot entry;
- int freeIndx = -1;
- for (int i = 0; i < size; i++) {
- int indx = (int) (spot % size);
- entry = table [indx];
- int hashMix = hashes [indx];
- if (freeIndx == -1
- && entry.key == KeyMarker.Removed
- && (hashMix & CHAIN_MARKER) != 0)
- freeIndx = indx;
- if (entry.key == null ||
- (entry.key == KeyMarker.Removed
- && (hashMix & CHAIN_MARKER) == 0)) {
- if (freeIndx == -1)
- freeIndx = indx;
- break;
- }
- if ((hashMix & Int32.MaxValue) == h && KeyEquals (key, entry.key)) {
- if (overwrite) {
- table [indx].value = value;
- ++this.modificationCount;
- } else {
- // Handle Add ():
- // An entry with the same key already exists in the Hashtable.
- throw new ArgumentException (
- "Key duplication when adding: " + key);
- }
- return;
- }
- if (freeIndx == -1) {
- hashes [indx] |= CHAIN_MARKER;
- }
- spot+= step;
- }
- if (freeIndx!= -1) {
- table [freeIndx].key = key;
- table [freeIndx].value = value;
- hashes [freeIndx] |= h;
- ++this.inUse;
- ++this.modificationCount;
- }
- }
- private void CopyToArray (Array arr, int i,
- EnumeratorMode mode)
- {
- IEnumerator it = new Enumerator (this, mode);
- while (it.MoveNext ()) {
- arr.SetValue (it.Current, i++);
- }
- }
- //
- // Private static methods
- //
- internal static bool TestPrime (int x)
- {
- if ((x & 1) != 0) {
- int top = (int)Math.Sqrt (x);
-
- for (int n = 3; n < top; n += 2) {
- if ((x % n) == 0)
- return false;
- }
- return true;
- }
- // There is only one even prime - 2.
- return (x == 2);
- }
- internal static int CalcPrime (int x)
- {
- for (int i = (x & (~1))-1; i< Int32.MaxValue; i += 2) {
- if (TestPrime (i)) return i;
- }
- return x;
- }
- internal static int ToPrime (int x)
- {
- for (int i = 0; i < primeTbl.Length; i++) {
- if (x <= primeTbl [i])
- return primeTbl [i];
- }
- return CalcPrime (x);
- }
- //
- // Inner classes
- //
- private enum EnumeratorMode : int {KEY_MODE = 0, VALUE_MODE, ENTRY_MODE};
- [Serializable]
- private sealed class Enumerator : IDictionaryEnumerator, IEnumerator {
- private Hashtable host;
- private Object currentKey;
- private Object currentValue;
- private int stamp;
- private int pos;
- private int size;
- private EnumeratorMode mode;
- const string xstr = "Hashtable.Enumerator: snapshot out of sync.";
- public Enumerator (Hashtable host, EnumeratorMode mode) {
- this.host = host;
- stamp = host.modificationCount;
- size = host.table.Length;
- this.mode = mode;
- Reset ();
- }
- private void FailFast ()
- {
- if (host.modificationCount != stamp) {
- throw new InvalidOperationException (xstr);
- }
- }
- public void Reset ()
- {
- FailFast ();
- pos = -1;
- currentKey = null;
- currentValue = null;
- }
- public bool MoveNext ()
- {
- FailFast ();
- if (pos < size) {
- while (++pos < size) {
- Slot entry = host.table [pos];
- if (entry.key != null && entry.key != KeyMarker.Removed) {
- currentKey = entry.key;
- currentValue = entry.value;
- return true;
- }
- }
- }
- currentKey = null;
- currentValue = null;
- return false;
- }
- public DictionaryEntry Entry
- {
- get {
- if (currentKey == null) throw new InvalidOperationException ();
- FailFast ();
- return new DictionaryEntry (currentKey, currentValue);
- }
- }
- public Object Key {
- get {
- if (currentKey == null) throw new InvalidOperationException ();
- FailFast ();
- return currentKey;
- }
- }
- public Object Value {
- get {
- if (currentKey == null) throw new InvalidOperationException ();
- FailFast ();
- return currentValue;
- }
- }
- public Object Current {
- get {
- if (currentKey == null) throw new InvalidOperationException ();
-
- switch (mode) {
- case EnumeratorMode.KEY_MODE:
- return currentKey;
- case EnumeratorMode.VALUE_MODE:
- return currentValue;
- case EnumeratorMode.ENTRY_MODE:
- return new DictionaryEntry (currentKey, currentValue);
- }
- throw new Exception ("should never happen");
- }
- }
- }
- [Serializable]
- #if INSIDE_CORLIB
- [DebuggerDisplay ("Count={Count}")]
- [DebuggerTypeProxy (typeof (CollectionDebuggerView))]
- #endif
- private class HashKeys : ICollection, IEnumerable {
- private Hashtable host;
- public HashKeys (Hashtable host) {
- if (host == null)
- throw new ArgumentNullException ();
- this.host = host;
- }
- // ICollection
- public virtual int Count {
- get {
- return host.Count;
- }
- }
- public virtual bool IsSynchronized {
- get {
- return host.IsSynchronized;
- }
- }
- public virtual Object SyncRoot {
- get {return host.SyncRoot;}
- }
- public virtual void CopyTo (Array array, int arrayIndex)
- {
- if (array == null)
- throw new ArgumentNullException ("array");
- if (array.Rank != 1)
- throw new ArgumentException ("array");
- if (arrayIndex < 0)
- throw new ArgumentOutOfRangeException ("arrayIndex");
- if (array.Length - arrayIndex < Count)
- throw new ArgumentException ("not enough space");
-
- host.CopyToArray (array, arrayIndex, EnumeratorMode.KEY_MODE);
- }
- // IEnumerable
- public virtual IEnumerator GetEnumerator ()
- {
- return new Hashtable.Enumerator (host, EnumeratorMode.KEY_MODE);
- }
- }
- [Serializable]
- #if INSIDE_CORLIB
- [DebuggerDisplay ("Count={Count}")]
- [DebuggerTypeProxy (typeof (CollectionDebuggerView))]
- #endif
- private class HashValues : ICollection, IEnumerable {
- private Hashtable host;
- public HashValues (Hashtable host) {
- if (host == null)
- throw new ArgumentNullException ();
- this.host = host;
- }
- // ICollection
- public virtual int Count {
- get {
- return host.Count;
- }
- }
- public virtual bool IsSynchronized {
- get {
- return host.IsSynchronized;
- }
- }
- public virtual Object SyncRoot {
- get {
- return host.SyncRoot;
- }
- }
- public virtual void CopyTo (Array array, int arrayIndex)
- {
- if (array == null)
- throw new ArgumentNullException ("array");
- if (array.Rank != 1)
- throw new ArgumentException ("array");
- if (arrayIndex < 0)
- throw new ArgumentOutOfRangeException ("arrayIndex");
- if (array.Length - arrayIndex < Count)
- throw new ArgumentException ("not enough space");
-
- host.CopyToArray (array, arrayIndex, EnumeratorMode.VALUE_MODE);
- }
- // IEnumerable
- public virtual IEnumerator GetEnumerator ()
- {
- return new Hashtable.Enumerator (host, EnumeratorMode.VALUE_MODE);
- }
- }
- [Serializable]
- private class SyncHashtable : Hashtable, IEnumerable {
- private Hashtable host;
- public SyncHashtable (Hashtable host) {
- if (host == null)
- throw new ArgumentNullException ();
- this.host = host;
- }
- internal SyncHashtable (SerializationInfo info, StreamingContext context)
- {
- host = (Hashtable) info.GetValue("ParentTable", typeof(Hashtable));
- }
-
- public override void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- info.AddValue ("ParentTable", host);
- }
-
- // ICollection
- public override int Count {
- get {
- return host.Count;
- }
- }
- public override bool IsSynchronized {
- get {
- return true;
- }
- }
- public override Object SyncRoot {
- get {
- return host.SyncRoot;
- }
- }
- // IDictionary
- public override bool IsFixedSize {
- get {
- return host.IsFixedSize;
- }
- }
- public override bool IsReadOnly {
- get {
- return host.IsReadOnly;
- }
- }
- public override ICollection Keys {
- get {
- ICollection keys = null;
- lock (host.SyncRoot) {
- keys = host.Keys;
- }
- return keys;
- }
- }
- public override ICollection Values {
- get {
- ICollection vals = null;
- lock (host.SyncRoot) {
- vals = host.Values;
- }
- return vals;
- }
- }
- public override Object this [Object key] {
- get {
- return host [key];
- }
- set {
- lock (host.SyncRoot) {
- host [key] = value;
- }
- }
- }
- // IEnumerable
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return new Enumerator (host, EnumeratorMode.ENTRY_MODE);
- }
- // ICollection
- public override void CopyTo (Array array, int arrayIndex)
- {
- host.CopyTo (array, arrayIndex);
- }
- // IDictionary
- public override void Add (Object key, Object value)
- {
- lock (host.SyncRoot) {
- host.Add (key, value);
- }
- }
- public override void Clear ()
- {
- lock (host.SyncRoot) {
- host.Clear ();
- }
- }
- public override bool Contains (Object key)
- {
- return (host.Find (key) >= 0);
- }
- public override IDictionaryEnumerator GetEnumerator ()
- {
- return new Enumerator (host, EnumeratorMode.ENTRY_MODE);
- }
- public override void Remove (Object key)
- {
- lock (host.SyncRoot) {
- host.Remove (key);
- }
- }
- public override bool ContainsKey (object key)
- {
- return host.Contains (key);
- }
- public override bool ContainsValue (object value)
- {
- return host.ContainsValue (value);
- }
- // ICloneable
- public override object Clone ()
- {
- lock(host.SyncRoot) {
- return new SyncHashtable( (Hashtable) host.Clone () );
- }
- }
- } // SyncHashtable
- } // Hashtable
- }
|