using System;
namespace Python.Runtime
{
///
/// Represents a standard Python list object. See the documentation at
/// PY2: https://docs.python.org/2/c-api/list.html
/// PY3: https://docs.python.org/3/c-api/list.html
/// for details.
///
public class PyList : PySequence
{
///
/// PyList Constructor
///
///
/// Creates a new PyList from an existing object reference. Note
/// that the instance assumes ownership of the object reference.
/// The object reference is not checked for type-correctness.
///
public PyList(IntPtr ptr) : base(ptr)
{
}
///
/// Creates new pointing to the same object, as the given reference.
///
internal PyList(BorrowedReference reference) : base(reference) { }
private static IntPtr FromObject(PyObject o)
{
if (o == null || !IsListType(o))
{
throw new ArgumentException("object is not a list");
}
Runtime.XIncref(o.obj);
return o.obj;
}
///
/// PyList Constructor
///
///
/// Copy constructor - obtain a PyList from a generic PyObject. An
/// ArgumentException will be thrown if the given object is not a
/// Python list object.
///
public PyList(PyObject o) : base(FromObject(o))
{
}
///
/// PyList Constructor
///
///
/// Creates a new empty Python list object.
///
public PyList() : base(Runtime.PyList_New(0))
{
if (obj == IntPtr.Zero)
{
throw new PythonException();
}
}
private static IntPtr FromArray(PyObject[] items)
{
int count = items.Length;
IntPtr val = Runtime.PyList_New(count);
for (var i = 0; i < count; i++)
{
IntPtr ptr = items[i].obj;
Runtime.XIncref(ptr);
int r = Runtime.PyList_SetItem(val, i, ptr);
if (r < 0)
{
Runtime.Py_DecRef(val);
throw new PythonException();
}
}
return val;
}
///
/// PyList Constructor
///
///
/// Creates a new Python list object from an array of PyObjects.
///
public PyList(PyObject[] items) : base(FromArray(items))
{
}
///
/// IsListType Method
///
///
/// Returns true if the given object is a Python list.
///
public static bool IsListType(PyObject value)
{
return Runtime.PyList_Check(value.obj);
}
///
/// AsList Method
///
///
/// Converts a Python object to a Python list if possible, raising
/// a PythonException if the conversion is not possible. This is
/// equivalent to the Python expression "list(object)".
///
public static PyList AsList(PyObject value)
{
IntPtr op = Runtime.PySequence_List(value.obj);
if (op == IntPtr.Zero)
{
throw new PythonException();
}
return new PyList(op);
}
///
/// Append Method
///
///
/// Append an item to the list object.
///
public void Append(PyObject item)
{
int r = Runtime.PyList_Append(this.Reference, item.obj);
if (r < 0)
{
throw new PythonException();
}
}
///
/// Insert Method
///
///
/// Insert an item in the list object at the given index.
///
public void Insert(int index, PyObject item)
{
int r = Runtime.PyList_Insert(this.Reference, index, item.obj);
if (r < 0)
{
throw new PythonException();
}
}
///
/// Reverse Method
///
///
/// Reverse the order of the list object in place.
///
public void Reverse()
{
int r = Runtime.PyList_Reverse(this.Reference);
if (r < 0)
{
throw new PythonException();
}
}
///
/// Sort Method
///
///
/// Sort the list in place.
///
public void Sort()
{
int r = Runtime.PyList_Sort(this.Reference);
if (r < 0)
{
throw new PythonException();
}
}
}
}