/* LICENSE ------- Copyright (C) 2007 Ray Molenkamp This source code is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this source code or the software it produces. Permission is granted to anyone to use this source code for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this source code must not be misrepresented; you must not claim that you wrote the original source code. If you use this source code in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original source code. 3. This notice may not be removed or altered from any source distribution. */ // this version modified for NAudio from Ray Molenkamp's original using System; using System.Runtime.InteropServices; using NAudio.CoreAudioApi.Interfaces; namespace NAudio.CoreAudioApi { /// /// Property Store class, only supports reading properties at the moment. /// public class PropertyStore { private readonly IPropertyStore storeInterface; /// /// Property Count /// public int Count { get { Marshal.ThrowExceptionForHR(storeInterface.GetCount(out var result)); return result; } } /// /// Gets property by index /// /// Property index /// The property public PropertyStoreProperty this[int index] { get { PropertyKey key = Get(index); Marshal.ThrowExceptionForHR(storeInterface.GetValue(ref key, out var result)); return new PropertyStoreProperty(key, result); } } /// /// Contains property guid /// /// Looks for a specific key /// True if found public bool Contains(PropertyKey key) { for (int i = 0; i < Count; i++) { PropertyKey ikey = Get(i); if ((ikey.formatId == key.formatId) && (ikey.propertyId == key.propertyId)) { return true; } } return false; } /// /// Indexer by guid /// /// Property Key /// Property or null if not found public PropertyStoreProperty this[PropertyKey key] { get { for (int i = 0; i < Count; i++) { PropertyKey ikey = Get(i); if ((ikey.formatId == key.formatId) && (ikey.propertyId == key.propertyId)) { Marshal.ThrowExceptionForHR(storeInterface.GetValue(ref ikey, out var result)); return new PropertyStoreProperty(ikey, result); } } return null; } } /// /// Gets property key at sepecified index /// /// Index /// Property key public PropertyKey Get(int index) { Marshal.ThrowExceptionForHR(storeInterface.GetAt(index, out var key)); return key; } /// /// Gets property value at specified index /// /// Index /// Property value public PropVariant GetValue(int index) { PropertyKey key = Get(index); Marshal.ThrowExceptionForHR(storeInterface.GetValue(ref key, out var result)); return result; } /// /// Sets property value at specified key. /// /// Key of property to set. /// Value to write. public void SetValue(PropertyKey key, PropVariant value) { Marshal.ThrowExceptionForHR(storeInterface.SetValue(ref key, ref value)); } /// /// Saves a property change. /// public void Commit() { Marshal.ThrowExceptionForHR(storeInterface.Commit()); } /// /// Creates a new property store /// /// IPropertyStore COM interface internal PropertyStore(IPropertyStore store) { storeInterface = store; } } }