[svn r335] Some fixes to the do_get_file_info.
1 /* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2-*- */
5 * @file gmyth/gmyth_monitor_handler.h
7 * @brief <p> GMythMonitorHandler deals with the streaming media events remote/local
8 * that are sent to the MythTV frontend.
10 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
11 * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU Lesser General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU Lesser General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 #ifndef __GMYTH_MONITOR_HANDLER_H__
31 #define __GMYTH_MONITOR_HANDLER_H__
33 #include <glib-object.h>
40 #include <sys/socket.h>
43 #include "gmyth_socket.h"
44 #include "gmyth_uri.h"
48 #define GMYTH_MONITOR_HANDLER_TYPE (gmyth_monitor_handler_get_type ())
49 #define GMYTH_MONITOR_HANDLER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_MONITOR_HANDLER_TYPE, GMythMonitorHandler))
50 #define GMYTH_MONITOR_HANDLER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_MONITOR_HANDLER_TYPE, GMythMonitorHandlerClass))
51 #define IS_GMYTH_MONITOR_HANDLER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_MONITOR_HANDLER_TYPE))
52 #define IS_GMYTH_MONITOR_HANDLER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_MONITOR_HANDLER_TYPE))
53 #define GMYTH_MONITOR_HANDLER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_MONITOR_HANDLER_TYPE, GMythMonitorHandlerClass))
55 #define GMYTHTV_MONITOR_HANDLER_READ_ERROR -314
58 GMYTH_BACKEND_NO_MESSAGE = 0,
59 GMYTH_BACKEND_PROGRAM_INFO_CHANGED,
60 GMYTH_BACKEND_DONE_RECORDING,
61 GMYTH_BACKEND_STOP_LIVETV
64 typedef struct _GMythMonitorHandler GMythMonitorHandler;
65 typedef struct _GMythMonitorHandlerClass GMythMonitorHandlerClass;
67 struct _GMythMonitorHandlerClass
69 GObjectClass parent_class;
72 guint backend_events_handler_signal_id;
74 /* signal default handlers */
75 void (*backend_events_handler) (GMythMonitorHandler *monitor, gint msg_code, gchar* message );
78 struct _GMythMonitorHandler
82 /* MythTV version number */
85 /* socket descriptors */
86 GMythSocket *event_sock;
88 GThreadPool *monitor_th;
90 // gboolean* (*gmyth_monitor_handler_listener)( GMythMonitorHandler *monitor );
91 void (*gmyth_monitor_handler_listener)( GMythMonitorHandler *monitor, gpointer user_data );
98 gboolean allow_msgs_listener;
100 /* stores the messages coming from the backend */
101 GHashTable *backend_msgs;
105 GType gmyth_monitor_handler_get_type (void);
107 GMythMonitorHandler* gmyth_monitor_handler_new ( void );
109 gboolean gmyth_monitor_handler_open (GMythMonitorHandler *monitor, const gchar *hostname, gint port);
111 gboolean gmyth_monitor_handler_start (GMythMonitorHandler *monitor);
113 void gmyth_monitor_handler_close (GMythMonitorHandler *monitor);
117 #endif /* __GMYTH_MONITOR_HANDLER_H__ */