| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127 |
- //
- // System.Collections.Hashtable.cs
- //
- // Author:
- // Sergey Chaban ([email protected])
- //
- //
- // Copyright (C) 2004 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;
- namespace System.Collections {
- [Serializable]
- public class Hashtable : IDictionary, ICollection,
- IEnumerable, ICloneable, ISerializable, IDeserializationCallback
- {
- [Serializable]
- internal struct Slot {
- internal Object key;
- internal Object value;
- // Hashcode. Chains are also marked through this.
- internal int hashMix;
- }
- [Serializable]
- internal class KeyMarker: IObjectReference
- {
- public readonly static KeyMarker Removed = new KeyMarker();
- public object GetRealObject (StreamingContext context)
- { return KeyMarker.Removed; }
- }
- //
- // Private data
- //
- const int CHAIN_MARKER = ~Int32.MaxValue;
- private int inUse;
- private int modificationCount;
- private float loadFactor;
- private Slot [] table;
- private int threshold;
-
- private HashKeys hashKeys;
- private HashValues hashValues;
- private IHashCodeProvider hcpRef;
- private IComparer comparerRef;
- 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) {}
- 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]);
- 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)
- {
- }
- public Hashtable (int capacity,
- IHashCodeProvider hcp,
- IComparer comparer)
- : this (capacity, 1.0f, hcp, comparer)
- {
- }
- 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)
- {
- }
- public Hashtable (IDictionary d, IHashCodeProvider hcp, IComparer comparer)
- : this (d, 1.0f, hcp, comparer)
- {
- }
- public Hashtable (IHashCodeProvider hcp, IComparer comparer)
- : this (1, 1.0f, hcp, comparer)
- {
- }
- protected Hashtable (SerializationInfo info, StreamingContext context)
- {
- loadFactor = (float) info.GetValue ("LoadFactor", typeof(float));
- modificationCount = (int) info.GetValue ("Version", typeof(int));
- comparerRef = (IComparer) info.GetValue ("Comparer", typeof (object));
- hcpRef = (IHashCodeProvider) info.GetValue ("HashCodeProvider", typeof (object));
- int size = (int) info.GetValue ("HashSize", typeof(int));
- Object [] keys = (Object []) info.GetValue("Keys", typeof(Object [] ));
- Object [] values = (Object []) info.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]);
-
- for(int i=0;i<keys.Length;i++) {
- Add(keys[i], values[i]);
- }
-
-
- AdjustThreshold();
- }
- //
- // Properties
- //
- protected IComparer comparer {
- set {
- comparerRef = value;
- }
- get {
- return comparerRef;
- }
- }
- protected IHashCodeProvider hcp {
- set {
- hcpRef = value;
- }
- get {
- return hcpRef;
- }
- }
- // 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 {
- return GetImpl (key);
- }
- 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);
- }
- public virtual void Clear ()
- {
- for (int i = 0;i<table.Length;i++) {
- table [i].key = null;
- table [i].value = null;
- table [i].hashMix = 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);
- }
- public virtual void Remove (Object key)
- {
- int i = Find (key);
- if (i >= 0) {
- Slot [] table = this.table;
- int h = table [i].hashMix;
- h &= CHAIN_MARKER;
- table [i].hashMix = 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 ()
- {
- Hashtable ht = new Hashtable (Count, hcp, comparer);
- ht.inUse = 0;
- ht.loadFactor = this.loadFactor;
- // FIXME: maybe it's faster to simply
- // copy the back-end array?
- IDictionaryEnumerator it = GetEnumerator ();
- while (it.MoveNext ()) {
- ht [it.Key] = it.Value;
- }
- return ht;
- }
- public virtual void GetObjectData (SerializationInfo info, StreamingContext context)
- {
- if (info == null)
- throw new ArgumentNullException ("info");
- info.AddValue ("LoadFactor", loadFactor);
- info.AddValue ("Version", modificationCount);
- info.AddValue ("Comparer", comparerRef);
- 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);
- }
- public virtual void OnDeserialization (object sender)
- {
- }
- /// <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)
- {
- IHashCodeProvider hcp = this.hcp;
- return (hcp!= null)
- ? hcp.GetHashCode (key)
- : key.GetHashCode ();
- }
- /// <summary>
- /// Compares a specific Object with a specific key
- /// in the Hashtable.
- /// </summary>
- protected virtual bool KeyEquals (Object item, Object key)
- {
- IComparer c = this.comparer;
- if (c!= null)
- return (c.Compare (item, key) == 0);
- else
- return item.Equals (key);
- }
- //
- // 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)
- {
- if (table == null)
- throw new ArgumentNullException ("table");
- this.table = table;
- AdjustThreshold ();
- }
- private Object GetImpl (Object key)
- {
- int i = Find (key);
- if (i >= 0)
- return table [i].value;
- else
- return null;
- }
- private int Find (Object key)
- {
- if (key == null)
- throw new ArgumentNullException ("key", "null key");
- uint size = (uint) this.table.Length;
- int h = this.GetHash (key) & Int32.MaxValue;
- uint spot = (uint)h;
- uint step = (uint) ((h >> 5)+1) % (size-1)+1;
- Slot[] table = this.table;
- for (int i = 0; i < size;i++) {
- int indx = (int) (spot % size);
- Slot entry = table [indx];
- Object k = entry.key;
- if (k == null)
- return -1;
- if ((entry.hashMix & Int32.MaxValue) == h
- && this.KeyEquals (key, k)) {
- return indx;
- }
- if ((entry.hashMix & CHAIN_MARKER) == 0)
- return -1;
- spot+= 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;
- for (int i = 0;i<oldSize;i++) {
- Slot s = table [i];
- if (s.key!= null) {
- int h = s.hashMix & 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;
- newTable [j].hashMix |= h;
- break;
- } else {
- newTable [j].hashMix |= CHAIN_MARKER;
- }
- }
- }
- }
- ++this.modificationCount;
- this.SetTable (newTable);
- }
- private void PutImpl (Object key, Object value, bool overwrite)
- {
- if (key == null)
- throw new ArgumentNullException ("key", "null key");
- uint size = (uint)this.table.Length;
- if (this.inUse >= this.threshold) {
- this.Rehash ();
- 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;
- Slot entry;
- int freeIndx = -1;
- for (int i = 0; i < size; i++) {
- int indx = (int) (spot % size);
- entry = table [indx];
- if (freeIndx == -1
- && entry.key == KeyMarker.Removed
- && (entry.hashMix & CHAIN_MARKER) != 0)
- freeIndx = indx;
- if (entry.key == null ||
- (entry.key == KeyMarker.Removed
- && (entry.hashMix & CHAIN_MARKER) == 0)) {
- if (freeIndx == -1)
- freeIndx = indx;
- break;
- }
- if ((entry.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) {
- table [indx].hashMix |= CHAIN_MARKER;
- }
- spot+= step;
- }
- if (freeIndx!= -1) {
- table [freeIndx].key = key;
- table [freeIndx].value = value;
- table [freeIndx].hashMix |= 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
- //
- private static bool TestPrime (int x)
- {
- if ((x & 1) != 0) {
- for (int n = 3; n< (int)Math.Sqrt (x); n += 2) {
- if ((x % n) == 0)
- return false;
- }
- return true;
- }
- // There is only one even prime - 2.
- return (x == 2);
- }
- private static int CalcPrime (int x)
- {
- for (int i = (x & (~1))-1; i< Int32.MaxValue; i += 2) {
- if (TestPrime (i)) return i;
- }
- return x;
- }
- private 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};
- private sealed class Enumerator : IDictionaryEnumerator, IEnumerator {
- private Hashtable host;
- private int stamp;
- private int pos;
- private int size;
- private EnumeratorMode mode;
- private Object currentKey;
- private Object currentValue;
- private readonly static 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 ();
- }
- public Enumerator (Hashtable host)
- : this (host, EnumeratorMode.KEY_MODE) {}
- 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");
- }
- }
- }
- 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);
- }
- }
- 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.GetImpl (key);
- }
- set {
- lock (host.SyncRoot) {
- host.PutImpl (key, value, true);
- }
- }
- }
- // IEnumerable
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return new Enumerator (host, EnumeratorMode.KEY_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.PutImpl (key, value, false);
- }
- }
- 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
- }
|