2000-05-14 20:09:43 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
1999-03-07 20:56:03 +08:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-01-25 18:26:47 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
1999-03-07 20:56:03 +08:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
1999-12-26 15:54:39 +08:00
|
|
|
* Lesser General Public License for more details.
|
1998-01-25 18:26:47 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
2018-07-12 05:27:07 +08:00
|
|
|
* <https://www.gnu.org/licenses/>.
|
1999-03-07 20:56:03 +08:00
|
|
|
*/
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#ifndef __GIMP_WIRE_H__
|
|
|
|
#define __GIMP_WIRE_H__
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_BEGIN_DECLS
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
/* For information look into the C source or the html documentation */
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
2005-12-13 22:11:56 +08:00
|
|
|
typedef struct _GimpWireMessage GimpWireMessage;
|
|
|
|
|
|
|
|
typedef void (* GimpWireReadFunc) (GIOChannel *channel,
|
|
|
|
GimpWireMessage *msg,
|
|
|
|
gpointer user_data);
|
|
|
|
typedef void (* GimpWireWriteFunc) (GIOChannel *channel,
|
|
|
|
GimpWireMessage *msg,
|
|
|
|
gpointer user_data);
|
|
|
|
typedef void (* GimpWireDestroyFunc) (GimpWireMessage *msg);
|
|
|
|
typedef gboolean (* GimpWireIOFunc) (GIOChannel *channel,
|
2006-03-12 01:33:36 +08:00
|
|
|
const guint8 *buf,
|
2005-12-13 22:11:56 +08:00
|
|
|
gulong count,
|
|
|
|
gpointer user_data);
|
|
|
|
typedef gboolean (* GimpWireFlushFunc) (GIOChannel *channel,
|
|
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
|
|
|
|
struct _GimpWireMessage
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-05-14 20:09:43 +08:00
|
|
|
guint32 type;
|
1997-11-25 06:05:25 +08:00
|
|
|
gpointer data;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-12-13 22:11:56 +08:00
|
|
|
void gimp_wire_register (guint32 type,
|
|
|
|
GimpWireReadFunc read_func,
|
|
|
|
GimpWireWriteFunc write_func,
|
|
|
|
GimpWireDestroyFunc destroy_func);
|
|
|
|
|
|
|
|
void gimp_wire_set_reader (GimpWireIOFunc read_func);
|
|
|
|
void gimp_wire_set_writer (GimpWireIOFunc write_func);
|
|
|
|
void gimp_wire_set_flusher (GimpWireFlushFunc flush_func);
|
|
|
|
|
2015-06-11 00:58:32 +08:00
|
|
|
gboolean gimp_wire_read (GIOChannel *channel,
|
|
|
|
guint8 *buf,
|
|
|
|
gsize count,
|
|
|
|
gpointer user_data);
|
|
|
|
gboolean gimp_wire_write (GIOChannel *channel,
|
|
|
|
const guint8 *buf,
|
|
|
|
gsize count,
|
|
|
|
gpointer user_data);
|
|
|
|
gboolean gimp_wire_flush (GIOChannel *channel,
|
|
|
|
gpointer user_data);
|
2005-12-13 22:11:56 +08:00
|
|
|
|
|
|
|
gboolean gimp_wire_error (void);
|
|
|
|
void gimp_wire_clear_error (void);
|
|
|
|
|
2006-04-12 18:53:28 +08:00
|
|
|
gboolean gimp_wire_read_msg (GIOChannel *channel,
|
2015-06-11 00:58:32 +08:00
|
|
|
GimpWireMessage *msg,
|
|
|
|
gpointer user_data);
|
2006-04-12 18:53:28 +08:00
|
|
|
gboolean gimp_wire_write_msg (GIOChannel *channel,
|
2015-06-11 00:58:32 +08:00
|
|
|
GimpWireMessage *msg,
|
|
|
|
gpointer user_data);
|
2005-12-13 22:11:56 +08:00
|
|
|
|
2015-06-11 00:58:32 +08:00
|
|
|
void gimp_wire_destroy (GimpWireMessage *msg);
|
2005-12-13 22:11:56 +08:00
|
|
|
|
2006-08-22 21:18:42 +08:00
|
|
|
|
|
|
|
/* for internal use in libgimpbase */
|
|
|
|
|
2018-11-20 05:06:28 +08:00
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_read_int64 (GIOChannel *channel,
|
|
|
|
guint64 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
2006-08-22 21:18:42 +08:00
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_read_int32 (GIOChannel *channel,
|
|
|
|
guint32 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_read_int16 (GIOChannel *channel,
|
|
|
|
guint16 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_read_int8 (GIOChannel *channel,
|
|
|
|
guint8 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_read_double (GIOChannel *channel,
|
|
|
|
gdouble *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_read_string (GIOChannel *channel,
|
|
|
|
gchar **data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
2023-11-21 04:38:11 +08:00
|
|
|
G_GNUC_INTERNAL gboolean
|
|
|
|
_gimp_wire_read_gegl_color (GIOChannel *channel,
|
|
|
|
GBytes **pixel_data,
|
|
|
|
GBytes **icc_data,
|
|
|
|
gchar **encoding,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
2018-11-20 05:06:28 +08:00
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_write_int64 (GIOChannel *channel,
|
|
|
|
const guint64 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
2006-08-22 21:18:42 +08:00
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_write_int32 (GIOChannel *channel,
|
|
|
|
const guint32 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_write_int16 (GIOChannel *channel,
|
|
|
|
const guint16 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_write_int8 (GIOChannel *channel,
|
|
|
|
const guint8 *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_write_double (GIOChannel *channel,
|
|
|
|
const gdouble *data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
|
|
|
G_GNUC_INTERNAL gboolean _gimp_wire_write_string (GIOChannel *channel,
|
|
|
|
gchar **data,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
2023-11-21 04:38:11 +08:00
|
|
|
G_GNUC_INTERNAL gboolean
|
|
|
|
_gimp_wire_write_gegl_color (GIOChannel *channel,
|
|
|
|
GBytes **pixel_data,
|
|
|
|
GBytes **icc_data,
|
|
|
|
gchar **encoding,
|
|
|
|
gint count,
|
|
|
|
gpointer user_data);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
2000-05-31 07:38:46 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#endif /* __GIMP_WIRE_H__ */
|