Click here to Skip to main content
15,888,610 members
Articles / Desktop Programming / WPF

Building an Extensible Application with MEF, WPF, and MVVM

Rate me:
Please Sign up or sign in to vote.
4.88/5 (45 votes)
15 Nov 2009LGPL316 min read 302.3K   7.4K   185  
An article for anyone interested in how to build an extensible application using WPF and the Model-View-ViewModel pattern.
#region MIT License
/*
 * Copyright (c) 2005-2008 Jonathan Mark Porter. http://physics2d.googlepages.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.
 */
#endregion



using System;
using System.Collections.Generic;
namespace Physics2DDotNet.Collections
{
    public sealed class ReadOnlyThreadSafeCollection<T> : IList<T>
    {
        sealed class ThreadSafeEnumerator : IEnumerator<T>
        {
            AdvReaderWriterLock.ReaderLock readLock;
            IEnumerator<T> self;

            public ThreadSafeEnumerator(AdvReaderWriterLock.ReaderLock readLock, IEnumerator<T> self)
            {
                if (self == null) { throw new ArgumentNullException("self"); }
                if (readLock == null) { throw new ArgumentNullException("readLock"); }
                this.readLock = readLock;
                this.self = self;
            }
            object System.Collections.IEnumerator.Current
            {
                get { return self.Current; }
            }
            public T Current
            {
                get { return self.Current; }
            }

            public void Dispose()
            {
                self.Dispose();
                readLock.Dispose();
            }
            public bool MoveNext()
            {
                return self.MoveNext();
            }
            public void Reset()
            {
                self.Reset();
            }
        }

        AdvReaderWriterLock rwLock;
        List<T> self;
        public ReadOnlyThreadSafeCollection(AdvReaderWriterLock rwLock, List<T> self)
        {
            this.rwLock = rwLock;
            this.self = self;
        }

        public int Count
        {
            get
            {
                return self.Count;
            }
        }
        public bool IsReadOnly
        {
            get { return true; }
        }
        public T this[int index]
        {
            get
            {
                using (rwLock.Read)
                {
                    return self[index];
                }
            }
            set
            {
                throw new NotSupportedException();
            }
        }



#if !SILVERLIGHT
        public List<TOutput> ConvertAll<TOutput>(Converter<T, TOutput> converter)
        {
            using (rwLock.Read)
            {
                return self.ConvertAll<TOutput>(converter);
            }
        }
        public bool Exists(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.Exists(match);
            }
        }
        public T Find(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.Find(match);
            }
        }
        public List<T> FindAll(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindAll(match);
            }
        }
        public int FindIndex(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindIndex(match);
            }
        }
        public int FindIndex(int startIndex, Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindIndex(startIndex, match);
            }
        }
        public int FindIndex(int startIndex, int count, Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindIndex(startIndex, count, match);
            }
        }
        public T FindLast(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindLast(match);
            }
        }
        public int FindLastIndex(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindLastIndex(match);
            }
        }
        public int FindLastIndex(int startIndex, Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindLastIndex(startIndex, match);
            }
        }
        public int FindLastIndex(int startIndex, int count, Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.FindLastIndex(startIndex, count, match);
            }
        }
        public bool TrueForAll(Predicate<T> match)
        {
            using (rwLock.Read)
            {
                return self.TrueForAll(match);
            }
        }
#endif
        public int BinarySearch(T item)
        {
            using (rwLock.Read)
            {
                return self.BinarySearch(item);
            }
        }
        public int BinarySearch(T item, IComparer<T> comparer)
        {
            using (rwLock.Read)
            {
                return self.BinarySearch(item, comparer);
            }
        }
        public int BinarySearch(int index, int count, T item, IComparer<T> comparer)
        {
            using (rwLock.Read)
            {
                return self.BinarySearch(index, count, item, comparer);
            }
        }

        public bool Contains(T item)
        {
            using (rwLock.Read)
            {
                return self.Contains(item);
            }
        }

        public void CopyTo(T[] array)
        {
            using (rwLock.Read)
            {
                self.CopyTo(array);
            }
        }
        public void CopyTo(T[] array, int arrayIndex)
        {
            using (rwLock.Read)
            {
                self.CopyTo(array, arrayIndex);
            }
        }
        public void CopyTo(int index, T[] array, int arrayIndex, int count)
        {
            using (rwLock.Read)
            {
                self.CopyTo(index, array, arrayIndex, count);
            }
        }

        public List<T> GetRange(int index, int count)
        {
            using (rwLock.Read)
            {
                return self.GetRange(index, count);
            }
        }
        public int IndexOf(T item)
        {
            using (rwLock.Read)
            {
                return self.IndexOf(item);
            }
        }
        public int IndexOf(T item, int index)
        {
            using (rwLock.Read)
            {
                return self.IndexOf(item, index);
            }
        }
        public int IndexOf(T item, int index, int count)
        {
            using (rwLock.Read)
            {
                return self.IndexOf(item, index, count);
            }
        }
        public int LastIndexOf(T item)
        {
            using (rwLock.Read)
            {
                return self.LastIndexOf(item);
            }
        }
        public int LastIndexOf(T item, int index)
        {
            using (rwLock.Read)
            {
                return self.LastIndexOf(item, index);
            }
        }
        public int LastIndexOf(T item, int index, int count)
        {
            using (rwLock.Read)
            {
                return self.LastIndexOf(item, index, count);
            }
        }


        public IEnumerator<T> GetEnumerator()
        {
            return new ThreadSafeEnumerator(rwLock.Read, self.GetEnumerator());
        }

        bool ICollection<T>.Remove(T item)
        {
            throw new NotSupportedException();
        }
        void IList<T>.Insert(int index, T item)
        {
            throw new NotSupportedException();
        }
        void IList<T>.RemoveAt(int index)
        {
            throw new NotSupportedException();
        }
        void ICollection<T>.Add(T item)
        {
            throw new NotSupportedException();
        }
        void ICollection<T>.Clear()
        {
            throw new NotSupportedException();
        }
        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
        {
            return new ThreadSafeEnumerator(rwLock.Read, self.GetEnumerator());
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Engineer
Canada Canada
By day I'm a Professional Engineer, doing .NET, VB6, SQL Server, and Automation (Ladder Logic, etc.) programming.

On weekends I write and maintain an open source extensible application framework called SoapBox Core.

In the evenings I provide front line technical support for moms4mom.com and I help out with administrative tasks (like formatting stuff). I also pitch in as a moderator from time to time.

You can follow me on twitter.

Comments and Discussions