You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

151 lines
9.7 KiB

  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  18. * Boston, MA 02111-1307, USA.
  19. *
  20. * Author: Alexander Larsson <alexl@redhat.com>
  21. */
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #ifndef __G_DATA_INPUT_STREAM_H__
  26. #define __G_DATA_INPUT_STREAM_H__
  27. #include <gio/gbufferedinputstream.h>
  28. G_BEGIN_DECLS
  29. #define G_TYPE_DATA_INPUT_STREAM (g_data_input_stream_get_type ())
  30. #define G_DATA_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DATA_INPUT_STREAM, GDataInputStream))
  31. #define G_DATA_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_DATA_INPUT_STREAM, GDataInputStreamClass))
  32. #define G_IS_DATA_INPUT_STREAM(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DATA_INPUT_STREAM))
  33. #define G_IS_DATA_INPUT_STREAM_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_DATA_INPUT_STREAM))
  34. #define G_DATA_INPUT_STREAM_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_DATA_INPUT_STREAM, GDataInputStreamClass))
  35. /**
  36. * GDataInputStream:
  37. *
  38. * An implementation of #GBufferedInputStream that allows for high-level
  39. * data manipulation of arbitrary data (including binary operations).
  40. **/
  41. typedef struct _GDataInputStreamClass GDataInputStreamClass;
  42. typedef struct _GDataInputStreamPrivate GDataInputStreamPrivate;
  43. struct _GDataInputStream
  44. {
  45. GBufferedInputStream parent_instance;
  46. /*< private >*/
  47. GDataInputStreamPrivate *priv;
  48. };
  49. struct _GDataInputStreamClass
  50. {
  51. GBufferedInputStreamClass parent_class;
  52. /*< private >*/
  53. /* Padding for future expansion */
  54. void (*_g_reserved1) (void);
  55. void (*_g_reserved2) (void);
  56. void (*_g_reserved3) (void);
  57. void (*_g_reserved4) (void);
  58. void (*_g_reserved5) (void);
  59. };
  60. GType g_data_input_stream_get_type (void) G_GNUC_CONST;
  61. GDataInputStream * g_data_input_stream_new (GInputStream *base_stream);
  62. void g_data_input_stream_set_byte_order (GDataInputStream *stream,
  63. GDataStreamByteOrder order);
  64. GDataStreamByteOrder g_data_input_stream_get_byte_order (GDataInputStream *stream);
  65. void g_data_input_stream_set_newline_type (GDataInputStream *stream,
  66. GDataStreamNewlineType type);
  67. GDataStreamNewlineType g_data_input_stream_get_newline_type (GDataInputStream *stream);
  68. guchar g_data_input_stream_read_byte (GDataInputStream *stream,
  69. GCancellable *cancellable,
  70. GError **error);
  71. gint16 g_data_input_stream_read_int16 (GDataInputStream *stream,
  72. GCancellable *cancellable,
  73. GError **error);
  74. guint16 g_data_input_stream_read_uint16 (GDataInputStream *stream,
  75. GCancellable *cancellable,
  76. GError **error);
  77. gint32 g_data_input_stream_read_int32 (GDataInputStream *stream,
  78. GCancellable *cancellable,
  79. GError **error);
  80. guint32 g_data_input_stream_read_uint32 (GDataInputStream *stream,
  81. GCancellable *cancellable,
  82. GError **error);
  83. gint64 g_data_input_stream_read_int64 (GDataInputStream *stream,
  84. GCancellable *cancellable,
  85. GError **error);
  86. guint64 g_data_input_stream_read_uint64 (GDataInputStream *stream,
  87. GCancellable *cancellable,
  88. GError **error);
  89. char * g_data_input_stream_read_line (GDataInputStream *stream,
  90. gsize *length,
  91. GCancellable *cancellable,
  92. GError **error);
  93. void g_data_input_stream_read_line_async (GDataInputStream *stream,
  94. gint io_priority,
  95. GCancellable *cancellable,
  96. GAsyncReadyCallback callback,
  97. gpointer user_data);
  98. char * g_data_input_stream_read_line_finish (GDataInputStream *stream,
  99. GAsyncResult *result,
  100. gsize *length,
  101. GError **error);
  102. char * g_data_input_stream_read_until (GDataInputStream *stream,
  103. const gchar *stop_chars,
  104. gsize *length,
  105. GCancellable *cancellable,
  106. GError **error);
  107. void g_data_input_stream_read_until_async (GDataInputStream *stream,
  108. const gchar *stop_chars,
  109. gint io_priority,
  110. GCancellable *cancellable,
  111. GAsyncReadyCallback callback,
  112. gpointer user_data);
  113. char * g_data_input_stream_read_until_finish (GDataInputStream *stream,
  114. GAsyncResult *result,
  115. gsize *length,
  116. GError **error);
  117. char * g_data_input_stream_read_upto (GDataInputStream *stream,
  118. const gchar *stop_chars,
  119. gssize stop_chars_len,
  120. gsize *length,
  121. GCancellable *cancellable,
  122. GError **error);
  123. void g_data_input_stream_read_upto_async (GDataInputStream *stream,
  124. const gchar *stop_chars,
  125. gssize stop_chars_len,
  126. gint io_priority,
  127. GCancellable *cancellable,
  128. GAsyncReadyCallback callback,
  129. gpointer user_data);
  130. char * g_data_input_stream_read_upto_finish (GDataInputStream *stream,
  131. GAsyncResult *result,
  132. gsize *length,
  133. GError **error);
  134. G_END_DECLS
  135. #endif /* __G_DATA_INPUT_STREAM_H__ */