737717e5a5
* glib/ListBase.cs : Added Indexer to allow [] based adressing * glib/List.cs : Added DllImport for Indexer * glib/SList.cs : Added DllImport for Indexer svn path=/trunk/gtk-sharp/; revision=19420
224 lines
4.1 KiB
C#
224 lines
4.1 KiB
C#
// SList.cs - GSList class wrapper implementation
|
|
//
|
|
// Authors: Mike Kestner <mkestner@speakeasy.net>
|
|
//
|
|
// (c) 2002 Mike Kestner
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Runtime.InteropServices;
|
|
|
|
/// <summary>
|
|
/// ListBase Class
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// Base class for GList and GSList.
|
|
/// </remarks>
|
|
|
|
public abstract class ListBase : IDisposable, ICollection, GLib.IWrapper, ICloneable {
|
|
|
|
private IntPtr list_ptr = IntPtr.Zero;
|
|
private int length = -1;
|
|
private bool managed = false;
|
|
protected System.Type element_type = null;
|
|
|
|
abstract internal IntPtr NthData (uint index);
|
|
abstract internal IntPtr GetData (IntPtr current);
|
|
abstract internal IntPtr Next (IntPtr current);
|
|
abstract internal int Length (IntPtr list);
|
|
abstract internal void Free (IntPtr list);
|
|
abstract internal IntPtr Append (IntPtr current, IntPtr raw);
|
|
abstract internal IntPtr Prepend (IntPtr current, IntPtr raw);
|
|
|
|
private ListBase ()
|
|
{
|
|
}
|
|
|
|
internal ListBase (IntPtr list, System.Type element_type)
|
|
{
|
|
list_ptr = list;
|
|
this.element_type = element_type;
|
|
}
|
|
|
|
internal ListBase (IntPtr list)
|
|
{
|
|
list_ptr = list;
|
|
}
|
|
|
|
~ListBase ()
|
|
{
|
|
Dispose (false);
|
|
}
|
|
|
|
public bool Managed {
|
|
set { managed = value; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Handle Property
|
|
/// </summary>
|
|
///
|
|
/// <remarks>
|
|
/// A raw list reference for marshaling situations.
|
|
/// </remarks>
|
|
|
|
public IntPtr Handle {
|
|
get {
|
|
return list_ptr;
|
|
}
|
|
}
|
|
|
|
internal IntPtr Raw {
|
|
get {
|
|
return list_ptr;
|
|
}
|
|
set {
|
|
if (managed && list_ptr != IntPtr.Zero)
|
|
FreeList ();
|
|
|
|
list_ptr = value;
|
|
}
|
|
}
|
|
|
|
public void Append (IntPtr raw)
|
|
{
|
|
list_ptr = Append (list_ptr, raw);
|
|
}
|
|
|
|
public void Append (string item)
|
|
{
|
|
this.Append (Marshal.StringToHGlobalAnsi (item));
|
|
}
|
|
|
|
public void Prepend (IntPtr raw)
|
|
{
|
|
list_ptr = Prepend (list_ptr, raw);
|
|
}
|
|
|
|
// ICollection
|
|
public int Count {
|
|
get {
|
|
if (length == -1)
|
|
length = Length (list_ptr);
|
|
return length;
|
|
}
|
|
}
|
|
|
|
public object this [int index] {
|
|
get {
|
|
IntPtr data = NthData ((uint) index);
|
|
object ret = null;
|
|
ret = DataMarshal (data);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
// Synchronization could be tricky here. Hmm.
|
|
public bool IsSynchronized {
|
|
get { return false; }
|
|
}
|
|
|
|
public object SyncRoot {
|
|
get { return null; }
|
|
}
|
|
|
|
public void CopyTo (Array array, int index)
|
|
{
|
|
object[] orig = new object[Count];
|
|
int i = 0;
|
|
foreach (object o in this)
|
|
orig[i] = o;
|
|
|
|
orig.CopyTo (array, index);
|
|
}
|
|
|
|
internal object DataMarshal (IntPtr data)
|
|
{
|
|
object ret = null;
|
|
if (element_type != null) {
|
|
if (element_type == typeof (string))
|
|
ret = Marshal.PtrToStringAnsi (data);
|
|
else if (element_type == typeof (int))
|
|
ret = (int) data;
|
|
else if (element_type.IsValueType)
|
|
ret = Marshal.PtrToStructure (data, element_type);
|
|
else
|
|
ret = Activator.CreateInstance (element_type, new object[] {data});
|
|
|
|
} else if (Object.IsObject (data))
|
|
ret = GLib.Object.GetObject (data, false);
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
private class ListEnumerator : IEnumerator
|
|
{
|
|
private IntPtr current = IntPtr.Zero;
|
|
private ListBase list;
|
|
|
|
public ListEnumerator (ListBase list)
|
|
{
|
|
this.list = list;
|
|
}
|
|
|
|
public object Current {
|
|
get {
|
|
IntPtr data = list.GetData (current);
|
|
object ret = null;
|
|
ret = list.DataMarshal (data);
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
public bool MoveNext ()
|
|
{
|
|
if (current == IntPtr.Zero)
|
|
current = list.list_ptr;
|
|
else
|
|
current = list.Next (current);
|
|
return (current != IntPtr.Zero);
|
|
}
|
|
|
|
public void Reset ()
|
|
{
|
|
current = IntPtr.Zero;
|
|
}
|
|
}
|
|
|
|
// IEnumerable
|
|
public IEnumerator GetEnumerator ()
|
|
{
|
|
return new ListEnumerator (this);
|
|
}
|
|
|
|
// IDisposable
|
|
public void Dispose ()
|
|
{
|
|
Dispose (true);
|
|
GC.SuppressFinalize (this);
|
|
}
|
|
|
|
protected virtual void Dispose (bool disposing)
|
|
{
|
|
if (!managed)
|
|
return;
|
|
|
|
FreeList ();
|
|
}
|
|
|
|
void FreeList ()
|
|
{
|
|
if (list_ptr != IntPtr.Zero)
|
|
Free (list_ptr);
|
|
list_ptr = IntPtr.Zero;
|
|
length = -1;
|
|
}
|
|
|
|
// ICloneable
|
|
abstract public object Clone ();
|
|
}
|
|
}
|