// ========================================================================== // This is a user contribution to the pythondotnet project. // THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED // WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED // WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS // FOR A PARTICULAR PURPOSE. // ========================================================================== using System; namespace Python.Runtime { public class PyAnsiString : PySequence { /// /// PyAnsiString Constructor /// /// /// /// Creates a new PyAnsiString 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 PyAnsiString(IntPtr ptr) : base(ptr) { } /// /// PyString Constructor /// /// /// /// Copy constructor - obtain a PyAnsiString from a generic PyObject. /// An ArgumentException will be thrown if the given object is not /// a Python string object. /// public PyAnsiString(PyObject o) : base() { if (!IsStringType(o)) { throw new ArgumentException("object is not a string"); } Runtime.Incref(o.obj); obj = o.obj; } /// /// PyAnsiString Constructor /// /// /// /// Creates a Python string from a managed string. /// public PyAnsiString(string s) : base() { obj = Runtime.PyString_FromStringAndSize(s, s.Length); if (obj == IntPtr.Zero) { throw new PythonException(); } } /// /// IsStringType Method /// /// /// /// Returns true if the given object is a Python string. /// public static bool IsStringType(PyObject value) { return Runtime.PyString_Check(value.obj); } } }