bytesobject.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /* Bytes (String) object interface */
  2. #ifndef Py_BYTESOBJECT_H
  3. #define Py_BYTESOBJECT_H
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #include <stdarg.h>
  8. /*
  9. Type PyBytesObject represents a character string. An extra zero byte is
  10. reserved at the end to ensure it is zero-terminated, but a size is
  11. present so strings with null bytes in them can be represented. This
  12. is an immutable object type.
  13. There are functions to create new string objects, to test
  14. an object for string-ness, and to get the
  15. string value. The latter function returns a null pointer
  16. if the object is not of the proper type.
  17. There is a variant that takes an explicit size as well as a
  18. variant that assumes a zero-terminated string. Note that none of the
  19. functions should be applied to nil objects.
  20. */
  21. /* Caching the hash (ob_shash) saves recalculation of a string's hash value.
  22. This significantly speeds up dict lookups. */
  23. #ifndef Py_LIMITED_API
  24. typedef struct {
  25. PyObject_VAR_HEAD
  26. Py_hash_t ob_shash;
  27. char ob_sval[1];
  28. /* Invariants:
  29. * ob_sval contains space for 'ob_size+1' elements.
  30. * ob_sval[ob_size] == 0.
  31. * ob_shash is the hash of the string or -1 if not computed yet.
  32. */
  33. } PyBytesObject;
  34. #endif
  35. PyAPI_DATA(PyTypeObject) PyBytes_Type;
  36. PyAPI_DATA(PyTypeObject) PyBytesIter_Type;
  37. #define PyBytes_Check(op) \
  38. PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_BYTES_SUBCLASS)
  39. #define PyBytes_CheckExact(op) (Py_TYPE(op) == &PyBytes_Type)
  40. PyAPI_FUNC(PyObject *) PyBytes_FromStringAndSize(const char *, Py_ssize_t);
  41. PyAPI_FUNC(PyObject *) PyBytes_FromString(const char *);
  42. PyAPI_FUNC(PyObject *) PyBytes_FromObject(PyObject *);
  43. PyAPI_FUNC(PyObject *) PyBytes_FromFormatV(const char*, va_list)
  44. Py_GCC_ATTRIBUTE((format(printf, 1, 0)));
  45. PyAPI_FUNC(PyObject *) PyBytes_FromFormat(const char*, ...)
  46. Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
  47. PyAPI_FUNC(Py_ssize_t) PyBytes_Size(PyObject *);
  48. PyAPI_FUNC(char *) PyBytes_AsString(PyObject *);
  49. PyAPI_FUNC(PyObject *) PyBytes_Repr(PyObject *, int);
  50. PyAPI_FUNC(void) PyBytes_Concat(PyObject **, PyObject *);
  51. PyAPI_FUNC(void) PyBytes_ConcatAndDel(PyObject **, PyObject *);
  52. #ifndef Py_LIMITED_API
  53. PyAPI_FUNC(int) _PyBytes_Resize(PyObject **, Py_ssize_t);
  54. PyAPI_FUNC(PyObject *) _PyBytes_Format(PyObject *, PyObject *);
  55. #endif
  56. PyAPI_FUNC(PyObject *) PyBytes_DecodeEscape(const char *, Py_ssize_t,
  57. const char *, Py_ssize_t,
  58. const char *);
  59. /* Macro, trading safety for speed */
  60. #ifndef Py_LIMITED_API
  61. #define PyBytes_AS_STRING(op) (assert(PyBytes_Check(op)), \
  62. (((PyBytesObject *)(op))->ob_sval))
  63. #define PyBytes_GET_SIZE(op) (assert(PyBytes_Check(op)),Py_SIZE(op))
  64. #endif
  65. /* _PyBytes_Join(sep, x) is like sep.join(x). sep must be PyBytesObject*,
  66. x must be an iterable object. */
  67. #ifndef Py_LIMITED_API
  68. PyAPI_FUNC(PyObject *) _PyBytes_Join(PyObject *sep, PyObject *x);
  69. #endif
  70. /* Provides access to the internal data buffer and size of a string
  71. object or the default encoded version of a Unicode object. Passing
  72. NULL as *len parameter will force the string buffer to be
  73. 0-terminated (passing a string with embedded NULL characters will
  74. cause an exception). */
  75. PyAPI_FUNC(int) PyBytes_AsStringAndSize(
  76. PyObject *obj, /* string or Unicode object */
  77. char **s, /* pointer to buffer variable */
  78. Py_ssize_t *len /* pointer to length variable or NULL
  79. (only possible for 0-terminated
  80. strings) */
  81. );
  82. /* Using the current locale, insert the thousands grouping
  83. into the string pointed to by buffer. For the argument descriptions,
  84. see Objects/stringlib/localeutil.h */
  85. #ifndef Py_LIMITED_API
  86. PyAPI_FUNC(Py_ssize_t) _PyBytes_InsertThousandsGroupingLocale(char *buffer,
  87. Py_ssize_t n_buffer,
  88. char *digits,
  89. Py_ssize_t n_digits,
  90. Py_ssize_t min_width);
  91. /* Using explicit passed-in values, insert the thousands grouping
  92. into the string pointed to by buffer. For the argument descriptions,
  93. see Objects/stringlib/localeutil.h */
  94. PyAPI_FUNC(Py_ssize_t) _PyBytes_InsertThousandsGrouping(char *buffer,
  95. Py_ssize_t n_buffer,
  96. char *digits,
  97. Py_ssize_t n_digits,
  98. Py_ssize_t min_width,
  99. const char *grouping,
  100. const char *thousands_sep);
  101. #endif
  102. /* Flags used by string formatting */
  103. #define F_LJUST (1<<0)
  104. #define F_SIGN (1<<1)
  105. #define F_BLANK (1<<2)
  106. #define F_ALT (1<<3)
  107. #define F_ZERO (1<<4)
  108. #ifdef __cplusplus
  109. }
  110. #endif
  111. #endif /* !Py_BYTESOBJECT_H */