155 lines
5.0 KiB
C#
155 lines
5.0 KiB
C#
|
/*
|
|||
|
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
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Property Store class, only supports reading properties at the moment.
|
|||
|
/// </summary>
|
|||
|
public class PropertyStore
|
|||
|
{
|
|||
|
private readonly IPropertyStore storeInterface;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Property Count
|
|||
|
/// </summary>
|
|||
|
public int Count
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
Marshal.ThrowExceptionForHR(storeInterface.GetCount(out var result));
|
|||
|
return result;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets property by index
|
|||
|
/// </summary>
|
|||
|
/// <param name="index">Property index</param>
|
|||
|
/// <returns>The property</returns>
|
|||
|
public PropertyStoreProperty this[int index]
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
PropertyKey key = Get(index);
|
|||
|
Marshal.ThrowExceptionForHR(storeInterface.GetValue(ref key, out var result));
|
|||
|
return new PropertyStoreProperty(key, result);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Contains property guid
|
|||
|
/// </summary>
|
|||
|
/// <param name="key">Looks for a specific key</param>
|
|||
|
/// <returns>True if found</returns>
|
|||
|
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;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Indexer by guid
|
|||
|
/// </summary>
|
|||
|
/// <param name="key">Property Key</param>
|
|||
|
/// <returns>Property or null if not found</returns>
|
|||
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets property key at sepecified index
|
|||
|
/// </summary>
|
|||
|
/// <param name="index">Index</param>
|
|||
|
/// <returns>Property key</returns>
|
|||
|
public PropertyKey Get(int index)
|
|||
|
{
|
|||
|
Marshal.ThrowExceptionForHR(storeInterface.GetAt(index, out var key));
|
|||
|
return key;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Gets property value at specified index
|
|||
|
/// </summary>
|
|||
|
/// <param name="index">Index</param>
|
|||
|
/// <returns>Property value</returns>
|
|||
|
public PropVariant GetValue(int index)
|
|||
|
{
|
|||
|
PropertyKey key = Get(index);
|
|||
|
Marshal.ThrowExceptionForHR(storeInterface.GetValue(ref key, out var result));
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Sets property value at specified key.
|
|||
|
/// </summary>
|
|||
|
/// <param name="key">Key of property to set.</param>
|
|||
|
/// <param name="value">Value to write.</param>
|
|||
|
public void SetValue(PropertyKey key, PropVariant value)
|
|||
|
{
|
|||
|
Marshal.ThrowExceptionForHR(storeInterface.SetValue(ref key, ref value));
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Saves a property change.
|
|||
|
/// </summary>
|
|||
|
public void Commit()
|
|||
|
{
|
|||
|
Marshal.ThrowExceptionForHR(storeInterface.Commit());
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Creates a new property store
|
|||
|
/// </summary>
|
|||
|
/// <param name="store">IPropertyStore COM interface</param>
|
|||
|
internal PropertyStore(IPropertyStore store)
|
|||
|
{
|
|||
|
storeInterface = store;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|