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
|
//------------------------------------------------------------------------------
// <copyright file="ListSourceHelper.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI {
using System.Collections;
using System.ComponentModel;
public static class ListSourceHelper {
public static bool ContainsListCollection(IDataSource dataSource) {
ICollection viewNames = dataSource.GetViewNames();
if (viewNames != null && viewNames.Count > 0) {
return true;
}
return false;
}
public static IList GetList(IDataSource dataSource) {
ICollection viewNames = dataSource.GetViewNames();
if (viewNames != null && viewNames.Count > 0) {
return new ListSourceList(dataSource);
}
return null;
}
internal sealed class ListSourceList : CollectionBase, ITypedList {
IDataSource _dataSource;
public ListSourceList(IDataSource dataSource) {
_dataSource = dataSource;
((IList)this).Add(new ListSourceRow(_dataSource));
}
#region ITypedList implementation
string ITypedList.GetListName(PropertyDescriptor[] listAccessors) {
return String.Empty;
}
PropertyDescriptorCollection ITypedList.GetItemProperties(PropertyDescriptor[] listAccessors) {
if (_dataSource != null) {
ICollection viewNames = _dataSource.GetViewNames();
if (viewNames != null && viewNames.Count > 0) {
string[] viewNamesArray = new string[viewNames.Count];
viewNames.CopyTo(viewNamesArray, 0);
PropertyDescriptor[] props = new PropertyDescriptor[viewNames.Count];
for (int i = 0; i < viewNamesArray.Length; i++) {
props[i] = new ListSourcePropertyDescriptor(viewNamesArray[i]);
}
return new PropertyDescriptorCollection(props);
}
}
return new PropertyDescriptorCollection(null);
}
#endregion ITypedList implementations
}
internal class ListSourceRow {
IDataSource _dataSource;
public ListSourceRow(IDataSource dataSource) {
_dataSource = dataSource;
}
public IDataSource DataSource {
get {
return _dataSource;
}
}
}
internal class ListSourcePropertyDescriptor : PropertyDescriptor {
string _name;
public ListSourcePropertyDescriptor(string name) : base(name, null) {
_name = name;
}
public override Type ComponentType {
get {
return typeof(ListSourceRow);
}
}
public override bool IsReadOnly {
get {
return true;
}
}
public override Type PropertyType {
get {
return typeof(IEnumerable);
}
}
public override bool CanResetValue(object value) {
return false;
}
public override object GetValue(object source) {
if (source is ListSourceRow) {
ListSourceRow row = (ListSourceRow)source;
IDataSource dataSource = row.DataSource;
return dataSource.GetView(_name).ExecuteSelect(DataSourceSelectArguments.Empty);
}
return null;
}
public override void ResetValue(object component) {
throw new NotSupportedException();
}
public override void SetValue(object component, object value) {
throw new NotSupportedException();
}
public override bool ShouldSerializeValue(object component) {
return false;
}
}
}
}
|