gthreadedsocketservice.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright © 2009 Codethink Limited
  4. * Copyright © 2009 Red Hat, Inc
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Lesser General Public License as published
  8. * by the Free Software Foundation; either version 2 of the licence or (at
  9. * your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General
  17. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  18. *
  19. * Authors: Ryan Lortie <desrt@desrt.ca>
  20. * Alexander Larsson <alexl@redhat.com>
  21. */
  22. #ifndef __G_THREADED_SOCKET_SERVICE_H__
  23. #define __G_THREADED_SOCKET_SERVICE_H__
  24. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  25. #error "Only <gio/gio.h> can be included directly."
  26. #endif
  27. #include <gio/gsocketservice.h>
  28. G_BEGIN_DECLS
  29. #define G_TYPE_THREADED_SOCKET_SERVICE (g_threaded_socket_service_get_type ())
  30. #define G_THREADED_SOCKET_SERVICE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
  31. G_TYPE_THREADED_SOCKET_SERVICE, \
  32. GThreadedSocketService))
  33. #define G_THREADED_SOCKET_SERVICE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
  34. G_TYPE_THREADED_SOCKET_SERVICE, \
  35. GThreadedSocketServiceClass))
  36. #define G_IS_THREADED_SOCKET_SERVICE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
  37. G_TYPE_THREADED_SOCKET_SERVICE))
  38. #define G_IS_THREADED_SOCKET_SERVICE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
  39. G_TYPE_THREADED_SOCKET_SERVICE))
  40. #define G_THREADED_SOCKET_SERVICE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
  41. G_TYPE_THREADED_SOCKET_SERVICE, \
  42. GThreadedSocketServiceClass))
  43. typedef struct _GThreadedSocketServicePrivate GThreadedSocketServicePrivate;
  44. typedef struct _GThreadedSocketServiceClass GThreadedSocketServiceClass;
  45. struct _GThreadedSocketServiceClass
  46. {
  47. GSocketServiceClass parent_class;
  48. gboolean (* run) (GThreadedSocketService *service,
  49. GSocketConnection *connection,
  50. GObject *source_object);
  51. /* Padding for future expansion */
  52. void (*_g_reserved1) (void);
  53. void (*_g_reserved2) (void);
  54. void (*_g_reserved3) (void);
  55. void (*_g_reserved4) (void);
  56. void (*_g_reserved5) (void);
  57. };
  58. struct _GThreadedSocketService
  59. {
  60. GSocketService parent_instance;
  61. GThreadedSocketServicePrivate *priv;
  62. };
  63. GLIB_AVAILABLE_IN_ALL
  64. GType g_threaded_socket_service_get_type (void);
  65. GLIB_AVAILABLE_IN_ALL
  66. GSocketService * g_threaded_socket_service_new (int max_threads);
  67. G_END_DECLS
  68. #endif /* __G_THREADED_SOCKET_SERVICE_H__ */