Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / Data / ViewManager.cs / 1 / ViewManager.cs
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// Description: Mapping of (collection, viewName) to CollectionView
//
//---------------------------------------------------------------------------
/***************************************************************************\
Avalon data binding supports multiple views over a data collection.
Each view (CollectionView) is identified by a key (CollectionViewSource), and
can be sorted and filtered independently of other views.
Managing the lifetimes of the views involves some subtle challenges.
Do not modify the code in this file until you understand these issues!
The fundamental design goal is that a collection should not be responsible
for managing its own views. A collection is a data-centric object, while a
view (or a set of views) is UI-centric. Therefore view management is a job
for UI-related code. The view manager cannot modify the collection in any
way, nor can it can assume that the collection has a reference to the view.
This principle allows us to define the IDataCollection interface in a
system assembly, where it is visible to third-parties who can then
implement their own collection classes without having to know anything
about view management. It also allows us to create views over collections
that don't even implement IDataCollection; for instance, we support
views over an IList (and thus over any Array, ArrayList, etc.).
However, this principle makes lifetime management very tricky. An
application may create views named "A", "B", and "C" over a given
data collection, and apply a particular sort order to each view. Next
the application may release all its references to view "C", while keeping
references to views "A" and "B and to the collection itself. Then the
application may refer to view "C" again, and will expect it to still have
the same currency, sort order, etc. Thus view "C" must be kept alive as long
as the collection itself (or any other view on the collection). However, once
the application releases its references to the collection and all its views,
they should become eligible for garbage collection.
If the collection managed its own views, there would be no problem. You
could imagine drawing a dotted line surrounding the collection and its
views. All references related to view management would be contained inside
this line, so as soon as the application released its references, the
objects inside the line could be garbage collected.
With "external" view management, it gets much harder. The manager will
obviously require some references to the collection and its views. The
trick is to create these references in such a way that they keep the objects
alive as long as necessary, but no longer. Here's how we do it.
For each collection, the manager has a ViewTable - a dictionary that maps
keys into views. The table contains strong references to the views, and of
course each view has a strong reference to its underlying collection. This
guarantees that the collection stays alive as long as any view.
The view manager has a master ViewManager - a dictionary that maps
collections to ViewTables. This is a "global" table, so it must not contain
a strong reference to a collection (which would keep the collection alive
forever). Instead, it contains weak references to the collection and to
its ViewTable. Now you can draw a dotted line around the collection and
its ViewTable; all strong references are either inside the line, or
correspond to the application's references to the collection or its views.
Thus when the application releases all its references, the collection and
its views can be garbage collected. This will invalidate the weak references
in the master ViewManager; we occasionally purge the table of dead
references.
So far, the only reference to the ViewTable is the weak reference stored in
the master ViewManager. This is not enough to keep the ViewTable alive;
we need some way to keep it alive as long as any of the views in it are alive.
We do this by giving each view a strong reference back to its ViewTable,
using the mysterious ViewManagerData property of a DataCollectionView. This
adds more strong references inside the dotted line. These do not affect
our garbage collection goal, but do keep the ViewTable alive.
The picture: (arrows with bulbs are weak references: o---> )
________________________________
| | |
/--|-o(collection) | (ViewTable)o-|--\
| | | | |
| |________________________________| |
| |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
| | v |
| _______________
| | | |<--\ |
| /-------------------------|---- View "A" -|---|
| v v | | | |
Collection <---------------------|---- View "B" -|---|
| ^ | | | |
\-------------------------|---- View "C" -|---|
| |_______________| |
| _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _|
not shown: Strong references from collection to view due to
event listeners.
\***************************************************************************/
using System;
using System.ComponentModel;
using System.Collections;
using System.Collections.Specialized;
using System.Windows; // for exception strings
using System.Windows.Data;
namespace MS.Internal.Data
{
#region WeakRefKey
// for use as the key to a hashtable, when the "real" key is an object
// that we should not keep alive by a strong reference.
internal struct WeakRefKey
{
//-----------------------------------------------------
//
// Constructors
//
//------------------------------------------------------
internal WeakRefKey(object target)
{
_weakRef = new WeakReference(target);
_hashCode = (target != null) ? target.GetHashCode() : 314159;
}
//-----------------------------------------------------
//
// Internal Properties
//
//------------------------------------------------------
internal object Target
{
get { return _weakRef.Target; }
}
//------------------------------------------------------
//
// Public Methods
//
//-----------------------------------------------------
public override int GetHashCode()
{
return _hashCode;
}
public override bool Equals(object o)
{
if (o is WeakRefKey)
{
WeakRefKey ck = (WeakRefKey)o;
object c1 = Target;
object c2 = ck.Target;
if (c1!=null && c2!=null)
return (c1 == c2);
else
return (_weakRef == ck._weakRef);
}
else
{
return false;
}
}
// overload operator for ==, to be same as Equal implementation.
public static bool operator ==(WeakRefKey left, WeakRefKey right)
{
if ((object)left == null)
return (object)right == null;
return left.Equals(right);
}
// overload operator for !=, to be same as Equal implementation.
public static bool operator !=(WeakRefKey left, WeakRefKey right)
{
return !(left == right);
}
//------------------------------------------------------
//
// Private Fields
//
//-----------------------------------------------------
WeakReference _weakRef;
int _hashCode; // cache target's hashcode, lest it get GC'd out from under us
}
#endregion WeakRefKey
#region ViewTable
internal class ViewTable : HybridDictionary
{
//-----------------------------------------------------
//
// Internal Properties
//
//-----------------------------------------------------
internal ViewRecord this[CollectionViewSource cvs]
{
get { return (ViewRecord)base[new WeakRefKey(cvs)]; }
set { base[new WeakRefKey(cvs)] = value; }
}
}
#endregion ViewTable
#region ViewRecord
// A ViewTable holds values of type ViewRecord. A ViewRecord is a pair
// [view, version], where view is the collection view and version is the
// version number in effect when the CollectionViewSource last set the
// view's properties.
internal class ViewRecord
{
internal ViewRecord(ICollectionView view)
{
_view = view;
_version = -1;
}
internal ICollectionView View
{
get { return _view; }
}
internal int Version
{
get { return _version; }
set { _version = value; }
}
internal bool IsInitialized
{
get { return _isInitialized; }
}
internal void InitializeView()
{
_view.MoveCurrentToFirst();
_isInitialized = true;
}
ICollectionView _view;
int _version;
bool _isInitialized = false;
}
#endregion ViewRecord
#region ViewManager
internal class ViewManager : HybridDictionary
{
//------------------------------------------------------
//
// Public Properties
//
//-----------------------------------------------------
public new ViewTable this[object o]
{
get
{
// look up the entry for o
WeakRefKey key = new WeakRefKey(o);
WeakReference wr = (WeakReference)base[key];
if (wr != null)
{
// we have an entry for o, get its ViewTable
ViewTable vt = (ViewTable)wr.Target;
// if the ViewTable has been GC'd, remove the entry
if (vt == null)
Remove(key);
return vt;
}
else
{
// no entry for o
return null;
}
}
}
//------------------------------------------------------
//
// Internal Methods
//
//------------------------------------------------------
internal void Add(object collection, ViewTable vt)
{
base.Add(new WeakRefKey(collection), new WeakReference(vt));
}
///
/// Return the object associated with (collection, cvs, type).
/// If this is the first reference to this view, add it to the tables.
///
///
/// Thrown when the collectionViewType does not implement ICollectionView
/// or does not have a constructor that accepts the type of collection.
/// Also thrown when the named collection view already exists and is
/// not the specified collectionViewType.
///
internal ViewRecord GetViewRecord(object collection, CollectionViewSource cvs, Type collectionViewType, bool createView)
{
// Order of precendence in acquiring the View:
// 0) If collection is already a CollectionView, return it.
// 1) If the CollectionView for this collection has been cached, then
// return the cached instance.
// 2) If a CollectionView derived type has been passed in collectionViewType
// create an instance of that Type
// 3) If the collection is an ICollectionViewFactory use ICVF.CreateView()
// from the collection
// 4) If the collection is an IListSource call GetList() and perform 5),
// etc. on the returned list
// 5) If the collection is an IBindingList return a new BindingListCollectionView
// 6) If the collection is an IList return a new ListCollectionView
// 7) If the collection is an IEnumerable, return a new CollectionView
// (it uses the ListEnumerable wrapper)
// 8) return null
// An IListSource must share the view with its underlying list.
// if the view already exists, just return it
// Also, return null if it doesn't exist and we're called in "lazy" mode
ViewRecord viewRecord = GetExistingView(collection, cvs, collectionViewType);
if (viewRecord != null || !createView)
{
return viewRecord;
}
// If the collection is an IListSource, it uses the same view as its
// underlying list.
IListSource ils = collection as IListSource;
IList ilsList = null;
if (ils != null)
{
ilsList = ils.GetList();
viewRecord = GetExistingView(ilsList, cvs, collectionViewType);
if (viewRecord != null)
{
return CacheView(collection, cvs, (CollectionView)viewRecord.View, viewRecord);
}
}
// Create a new view
ICollectionView icv = collection as ICollectionView;
if (icv != null)
{
icv = new CollectionViewProxy(icv);
}
else if (collectionViewType == null)
{
// Caller didn't specify a type for the view.
ICollectionViewFactory icvf = collection as ICollectionViewFactory;
if (icvf != null)
{
// collection is a view factory - call its factory method
icv = icvf.CreateView();
}
else
{
// collection is not a factory - create an appropriate view
IList il = (ilsList != null) ? ilsList : collection as IList;
if (il != null)
{
// create a view on an IList or IBindingList
IBindingList ibl = il as IBindingList;
if (ibl != null)
icv = new BindingListCollectionView(ibl);
else
icv = new ListCollectionView(il);
}
else
{
// collection is not IList, wrap it
IEnumerable ie = collection as IEnumerable;
if (ie != null)
{
icv = new EnumerableCollectionView(ie);
}
}
}
}
else
{
// caller specified a type for the view. Try to honor it.
if (!typeof(ICollectionView).IsAssignableFrom(collectionViewType))
throw new ArgumentException(SR.Get(SRID.CollectionView_WrongType, collectionViewType.Name));
// if collection is IListSource, get its list first (bug 1023903)
object arg = (ilsList != null) ? ilsList : collection;
try
{
icv = Activator.CreateInstance(collectionViewType,
System.Reflection.BindingFlags.CreateInstance, null,
new object[1]{arg}, null) as ICollectionView;
}
catch (MissingMethodException e)
{
throw new ArgumentException(SR.Get(SRID.CollectionView_ViewTypeInsufficient,
collectionViewType.Name, collection.GetType()), e);
}
}
// if we got a view, add it to the tables
if (icv != null)
{
// if the view doesn't derive from CollectionView, create a proxy that does
CollectionView cv = icv as CollectionView;
if (cv == null)
cv = new CollectionViewProxy(icv);
if (ilsList != null) // IListSource's list shares the same view
viewRecord = CacheView(ilsList, cvs, cv, null);
viewRecord = CacheView(collection, cvs, cv, viewRecord);
}
return viewRecord;
}
// return an existing view (or null if there isn't one) over the collection
private ViewRecord GetExistingView(object collection, CollectionViewSource cvs, Type collectionViewType)
{
ViewRecord result;
CollectionView cv = collection as CollectionView;
if (cv == null)
{
// look up cached entry
ViewTable vt = this[collection];
if (vt != null)
{
ViewRecord vr = vt[cvs];
if (vr != null)
{
cv = (CollectionView)vr.View;
}
result = vr;
}
else
{
result = null;
}
}
else
{
// the collection is already a view, just use it directly (no tables needed)
result = new ViewRecord(cv);
}
if (cv != null)
{
ValidateViewType(cv, collectionViewType);
}
return result;
}
private ViewRecord CacheView(object collection, CollectionViewSource cvs, CollectionView cv, ViewRecord vr)
{
// create the view table, if necessary
ViewTable vt = this[collection];
if (vt == null)
{
vt = new ViewTable();
Add(collection, vt);
}
// keep the view and the view table alive as long as any view
// (or the collection itself) is alive
if (vr == null)
vr = new ViewRecord(cv);
else if (cv == null)
cv = (CollectionView)vr.View;
cv.SetViewManagerData(vt);
// add the view to the table
vt[cvs] = vr;
return vr;
}
// purge the table of dead entries
internal bool Purge()
{
ArrayList al = new ArrayList();
foreach (DictionaryEntry de in this)
{
WeakRefKey key = (WeakRefKey)de.Key;
WeakReference wr = (WeakReference)de.Value;
if (key.Target == null || !wr.IsAlive)
al.Add(key);
}
for (int k=0; k 0);
}
private void ValidateViewType(CollectionView cv, Type collectionViewType)
{
if (collectionViewType != null)
{
// If the view contained in the ViewTable is a proxy of another
// view, then what we really want to compare is the type of that
// other view.
CollectionViewProxy cvp = cv as CollectionViewProxy;
Type cachedViewType = (cvp == null) ? cv.GetType() : cvp.ProxiedView.GetType();
if (cachedViewType != collectionViewType)
throw new ArgumentException(SR.Get(SRID.CollectionView_NameTypeDuplicity, collectionViewType, cachedViewType));
}
}
}
#endregion ViewManager
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------------------
//
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//
// Description: Mapping of (collection, viewName) to CollectionView
//
//---------------------------------------------------------------------------
/***************************************************************************\
Avalon data binding supports multiple views over a data collection.
Each view (CollectionView) is identified by a key (CollectionViewSource), and
can be sorted and filtered independently of other views.
Managing the lifetimes of the views involves some subtle challenges.
Do not modify the code in this file until you understand these issues!
The fundamental design goal is that a collection should not be responsible
for managing its own views. A collection is a data-centric object, while a
view (or a set of views) is UI-centric. Therefore view management is a job
for UI-related code. The view manager cannot modify the collection in any
way, nor can it can assume that the collection has a reference to the view.
This principle allows us to define the IDataCollection interface in a
system assembly, where it is visible to third-parties who can then
implement their own collection classes without having to know anything
about view management. It also allows us to create views over collections
that don't even implement IDataCollection; for instance, we support
views over an IList (and thus over any Array, ArrayList, etc.).
However, this principle makes lifetime management very tricky. An
application may create views named "A", "B", and "C" over a given
data collection, and apply a particular sort order to each view. Next
the application may release all its references to view "C", while keeping
references to views "A" and "B and to the collection itself. Then the
application may refer to view "C" again, and will expect it to still have
the same currency, sort order, etc. Thus view "C" must be kept alive as long
as the collection itself (or any other view on the collection). However, once
the application releases its references to the collection and all its views,
they should become eligible for garbage collection.
If the collection managed its own views, there would be no problem. You
could imagine drawing a dotted line surrounding the collection and its
views. All references related to view management would be contained inside
this line, so as soon as the application released its references, the
objects inside the line could be garbage collected.
With "external" view management, it gets much harder. The manager will
obviously require some references to the collection and its views. The
trick is to create these references in such a way that they keep the objects
alive as long as necessary, but no longer. Here's how we do it.
For each collection, the manager has a ViewTable - a dictionary that maps
keys into views. The table contains strong references to the views, and of
course each view has a strong reference to its underlying collection. This
guarantees that the collection stays alive as long as any view.
The view manager has a master ViewManager - a dictionary that maps
collections to ViewTables. This is a "global" table, so it must not contain
a strong reference to a collection (which would keep the collection alive
forever). Instead, it contains weak references to the collection and to
its ViewTable. Now you can draw a dotted line around the collection and
its ViewTable; all strong references are either inside the line, or
correspond to the application's references to the collection or its views.
Thus when the application releases all its references, the collection and
its views can be garbage collected. This will invalidate the weak references
in the master ViewManager; we occasionally purge the table of dead
references.
So far, the only reference to the ViewTable is the weak reference stored in
the master ViewManager. This is not enough to keep the ViewTable alive;
we need some way to keep it alive as long as any of the views in it are alive.
We do this by giving each view a strong reference back to its ViewTable,
using the mysterious ViewManagerData property of a DataCollectionView. This
adds more strong references inside the dotted line. These do not affect
our garbage collection goal, but do keep the ViewTable alive.
The picture: (arrows with bulbs are weak references: o---> )
________________________________
| | |
/--|-o(collection) | (ViewTable)o-|--\
| | | | |
| |________________________________| |
| |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
| | v |
| _______________
| | | |<--\ |
| /-------------------------|---- View "A" -|---|
| v v | | | |
Collection <---------------------|---- View "B" -|---|
| ^ | | | |
\-------------------------|---- View "C" -|---|
| |_______________| |
| _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _|
not shown: Strong references from collection to view due to
event listeners.
\***************************************************************************/
using System;
using System.ComponentModel;
using System.Collections;
using System.Collections.Specialized;
using System.Windows; // for exception strings
using System.Windows.Data;
namespace MS.Internal.Data
{
#region WeakRefKey
// for use as the key to a hashtable, when the "real" key is an object
// that we should not keep alive by a strong reference.
internal struct WeakRefKey
{
//-----------------------------------------------------
//
// Constructors
//
//------------------------------------------------------
internal WeakRefKey(object target)
{
_weakRef = new WeakReference(target);
_hashCode = (target != null) ? target.GetHashCode() : 314159;
}
//-----------------------------------------------------
//
// Internal Properties
//
//------------------------------------------------------
internal object Target
{
get { return _weakRef.Target; }
}
//------------------------------------------------------
//
// Public Methods
//
//-----------------------------------------------------
public override int GetHashCode()
{
return _hashCode;
}
public override bool Equals(object o)
{
if (o is WeakRefKey)
{
WeakRefKey ck = (WeakRefKey)o;
object c1 = Target;
object c2 = ck.Target;
if (c1!=null && c2!=null)
return (c1 == c2);
else
return (_weakRef == ck._weakRef);
}
else
{
return false;
}
}
// overload operator for ==, to be same as Equal implementation.
public static bool operator ==(WeakRefKey left, WeakRefKey right)
{
if ((object)left == null)
return (object)right == null;
return left.Equals(right);
}
// overload operator for !=, to be same as Equal implementation.
public static bool operator !=(WeakRefKey left, WeakRefKey right)
{
return !(left == right);
}
//------------------------------------------------------
//
// Private Fields
//
//-----------------------------------------------------
WeakReference _weakRef;
int _hashCode; // cache target's hashcode, lest it get GC'd out from under us
}
#endregion WeakRefKey
#region ViewTable
internal class ViewTable : HybridDictionary
{
//-----------------------------------------------------
//
// Internal Properties
//
//-----------------------------------------------------
internal ViewRecord this[CollectionViewSource cvs]
{
get { return (ViewRecord)base[new WeakRefKey(cvs)]; }
set { base[new WeakRefKey(cvs)] = value; }
}
}
#endregion ViewTable
#region ViewRecord
// A ViewTable holds values of type ViewRecord. A ViewRecord is a pair
// [view, version], where view is the collection view and version is the
// version number in effect when the CollectionViewSource last set the
// view's properties.
internal class ViewRecord
{
internal ViewRecord(ICollectionView view)
{
_view = view;
_version = -1;
}
internal ICollectionView View
{
get { return _view; }
}
internal int Version
{
get { return _version; }
set { _version = value; }
}
internal bool IsInitialized
{
get { return _isInitialized; }
}
internal void InitializeView()
{
_view.MoveCurrentToFirst();
_isInitialized = true;
}
ICollectionView _view;
int _version;
bool _isInitialized = false;
}
#endregion ViewRecord
#region ViewManager
internal class ViewManager : HybridDictionary
{
//------------------------------------------------------
//
// Public Properties
//
//-----------------------------------------------------
public new ViewTable this[object o]
{
get
{
// look up the entry for o
WeakRefKey key = new WeakRefKey(o);
WeakReference wr = (WeakReference)base[key];
if (wr != null)
{
// we have an entry for o, get its ViewTable
ViewTable vt = (ViewTable)wr.Target;
// if the ViewTable has been GC'd, remove the entry
if (vt == null)
Remove(key);
return vt;
}
else
{
// no entry for o
return null;
}
}
}
//------------------------------------------------------
//
// Internal Methods
//
//------------------------------------------------------
internal void Add(object collection, ViewTable vt)
{
base.Add(new WeakRefKey(collection), new WeakReference(vt));
}
///
/// Return the object associated with (collection, cvs, type).
/// If this is the first reference to this view, add it to the tables.
///
///
/// Thrown when the collectionViewType does not implement ICollectionView
/// or does not have a constructor that accepts the type of collection.
/// Also thrown when the named collection view already exists and is
/// not the specified collectionViewType.
///
internal ViewRecord GetViewRecord(object collection, CollectionViewSource cvs, Type collectionViewType, bool createView)
{
// Order of precendence in acquiring the View:
// 0) If collection is already a CollectionView, return it.
// 1) If the CollectionView for this collection has been cached, then
// return the cached instance.
// 2) If a CollectionView derived type has been passed in collectionViewType
// create an instance of that Type
// 3) If the collection is an ICollectionViewFactory use ICVF.CreateView()
// from the collection
// 4) If the collection is an IListSource call GetList() and perform 5),
// etc. on the returned list
// 5) If the collection is an IBindingList return a new BindingListCollectionView
// 6) If the collection is an IList return a new ListCollectionView
// 7) If the collection is an IEnumerable, return a new CollectionView
// (it uses the ListEnumerable wrapper)
// 8) return null
// An IListSource must share the view with its underlying list.
// if the view already exists, just return it
// Also, return null if it doesn't exist and we're called in "lazy" mode
ViewRecord viewRecord = GetExistingView(collection, cvs, collectionViewType);
if (viewRecord != null || !createView)
{
return viewRecord;
}
// If the collection is an IListSource, it uses the same view as its
// underlying list.
IListSource ils = collection as IListSource;
IList ilsList = null;
if (ils != null)
{
ilsList = ils.GetList();
viewRecord = GetExistingView(ilsList, cvs, collectionViewType);
if (viewRecord != null)
{
return CacheView(collection, cvs, (CollectionView)viewRecord.View, viewRecord);
}
}
// Create a new view
ICollectionView icv = collection as ICollectionView;
if (icv != null)
{
icv = new CollectionViewProxy(icv);
}
else if (collectionViewType == null)
{
// Caller didn't specify a type for the view.
ICollectionViewFactory icvf = collection as ICollectionViewFactory;
if (icvf != null)
{
// collection is a view factory - call its factory method
icv = icvf.CreateView();
}
else
{
// collection is not a factory - create an appropriate view
IList il = (ilsList != null) ? ilsList : collection as IList;
if (il != null)
{
// create a view on an IList or IBindingList
IBindingList ibl = il as IBindingList;
if (ibl != null)
icv = new BindingListCollectionView(ibl);
else
icv = new ListCollectionView(il);
}
else
{
// collection is not IList, wrap it
IEnumerable ie = collection as IEnumerable;
if (ie != null)
{
icv = new EnumerableCollectionView(ie);
}
}
}
}
else
{
// caller specified a type for the view. Try to honor it.
if (!typeof(ICollectionView).IsAssignableFrom(collectionViewType))
throw new ArgumentException(SR.Get(SRID.CollectionView_WrongType, collectionViewType.Name));
// if collection is IListSource, get its list first (bug 1023903)
object arg = (ilsList != null) ? ilsList : collection;
try
{
icv = Activator.CreateInstance(collectionViewType,
System.Reflection.BindingFlags.CreateInstance, null,
new object[1]{arg}, null) as ICollectionView;
}
catch (MissingMethodException e)
{
throw new ArgumentException(SR.Get(SRID.CollectionView_ViewTypeInsufficient,
collectionViewType.Name, collection.GetType()), e);
}
}
// if we got a view, add it to the tables
if (icv != null)
{
// if the view doesn't derive from CollectionView, create a proxy that does
CollectionView cv = icv as CollectionView;
if (cv == null)
cv = new CollectionViewProxy(icv);
if (ilsList != null) // IListSource's list shares the same view
viewRecord = CacheView(ilsList, cvs, cv, null);
viewRecord = CacheView(collection, cvs, cv, viewRecord);
}
return viewRecord;
}
// return an existing view (or null if there isn't one) over the collection
private ViewRecord GetExistingView(object collection, CollectionViewSource cvs, Type collectionViewType)
{
ViewRecord result;
CollectionView cv = collection as CollectionView;
if (cv == null)
{
// look up cached entry
ViewTable vt = this[collection];
if (vt != null)
{
ViewRecord vr = vt[cvs];
if (vr != null)
{
cv = (CollectionView)vr.View;
}
result = vr;
}
else
{
result = null;
}
}
else
{
// the collection is already a view, just use it directly (no tables needed)
result = new ViewRecord(cv);
}
if (cv != null)
{
ValidateViewType(cv, collectionViewType);
}
return result;
}
private ViewRecord CacheView(object collection, CollectionViewSource cvs, CollectionView cv, ViewRecord vr)
{
// create the view table, if necessary
ViewTable vt = this[collection];
if (vt == null)
{
vt = new ViewTable();
Add(collection, vt);
}
// keep the view and the view table alive as long as any view
// (or the collection itself) is alive
if (vr == null)
vr = new ViewRecord(cv);
else if (cv == null)
cv = (CollectionView)vr.View;
cv.SetViewManagerData(vt);
// add the view to the table
vt[cvs] = vr;
return vr;
}
// purge the table of dead entries
internal bool Purge()
{
ArrayList al = new ArrayList();
foreach (DictionaryEntry de in this)
{
WeakRefKey key = (WeakRefKey)de.Key;
WeakReference wr = (WeakReference)de.Value;
if (key.Target == null || !wr.IsAlive)
al.Add(key);
}
for (int k=0; k 0);
}
private void ValidateViewType(CollectionView cv, Type collectionViewType)
{
if (collectionViewType != null)
{
// If the view contained in the ViewTable is a proxy of another
// view, then what we really want to compare is the type of that
// other view.
CollectionViewProxy cvp = cv as CollectionViewProxy;
Type cachedViewType = (cvp == null) ? cv.GetType() : cvp.ProxiedView.GetType();
if (cachedViewType != collectionViewType)
throw new ArgumentException(SR.Get(SRID.CollectionView_NameTypeDuplicity, collectionViewType, cachedViewType));
}
}
}
#endregion ViewManager
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ResourceDefaultValueAttribute.cs
- LiteralDesigner.cs
- ProfileProvider.cs
- DateTimeFormatInfo.cs
- Select.cs
- DesignerCategoryAttribute.cs
- OdbcConnectionStringbuilder.cs
- ContainerFilterService.cs
- BaseCodeDomTreeGenerator.cs
- DataServiceQueryProvider.cs
- BindingWorker.cs
- Int32CollectionConverter.cs
- UnmanagedMemoryStreamWrapper.cs
- ETagAttribute.cs
- CodeObject.cs
- AnnotationAdorner.cs
- ButtonField.cs
- IOException.cs
- StringArrayConverter.cs
- MediaContext.cs
- SafeNativeMethods.cs
- EncryptedPackage.cs
- SqlRemoveConstantOrderBy.cs
- StringAnimationBase.cs
- TraceSection.cs
- GridViewHeaderRowPresenter.cs
- XmlNodeReader.cs
- RequestCacheManager.cs
- SqlOuterApplyReducer.cs
- UiaCoreTypesApi.cs
- LocationChangedEventArgs.cs
- SchemaSetCompiler.cs
- EventDescriptorCollection.cs
- EntityObject.cs
- ChannelManager.cs
- TdsParserSafeHandles.cs
- SkipStoryboardToFill.cs
- sqlnorm.cs
- RouteParameter.cs
- StorageTypeMapping.cs
- TemplateBamlRecordReader.cs
- OnOperation.cs
- RuntimeCompatibilityAttribute.cs
- AutoGeneratedField.cs
- TimeStampChecker.cs
- PeerNameResolver.cs
- ServerReliableChannelBinder.cs
- SoapElementAttribute.cs
- ConstrainedDataObject.cs
- PixelShader.cs
- FontFamilyIdentifier.cs
- PartialCachingAttribute.cs
- SqlUtils.cs
- ParsedAttributeCollection.cs
- ColumnHeaderConverter.cs
- RNGCryptoServiceProvider.cs
- FillRuleValidation.cs
- TextStore.cs
- TrackingConditionCollection.cs
- RequestCachingSection.cs
- UpdateRecord.cs
- DateBoldEvent.cs
- GenericUI.cs
- XmlWhitespace.cs
- ThrowHelper.cs
- FullTrustAssemblyCollection.cs
- SingleConverter.cs
- _OverlappedAsyncResult.cs
- IteratorFilter.cs
- HitTestFilterBehavior.cs
- EntityDataSourceContextDisposingEventArgs.cs
- PublisherMembershipCondition.cs
- HelpInfo.cs
- InputBinding.cs
- AutomationIdentifierGuids.cs
- GridViewCancelEditEventArgs.cs
- OleDbConnectionFactory.cs
- TableLayoutPanelResizeGlyph.cs
- HttpCapabilitiesEvaluator.cs
- DesignerTransaction.cs
- CultureSpecificStringDictionary.cs
- TemplatedControlDesigner.cs
- VScrollProperties.cs
- Subset.cs
- EncoderNLS.cs
- DataGridHeaderBorder.cs
- ProfessionalColors.cs
- sqlser.cs
- AssertSection.cs
- GifBitmapDecoder.cs
- Matrix3D.cs
- TemplatePagerField.cs
- ColorConverter.cs
- XmlDataSource.cs
- MediaTimeline.cs
- DataGridColumnCollection.cs
- OracleMonthSpan.cs
- ReflectionUtil.cs
- PrintPreviewDialog.cs
- HtmlInputFile.cs