branches/gmyth-0.1b/src/gmyth_monitor_handler.h
author rosfran
Thu Feb 08 14:30:36 2007 +0000 (2007-02-08)
branchtrunk
changeset 335 aedcbbf818b7
permissions -rwxr-xr-x
[svn r337] Changed the g_object_unref's in the do_get_file_info.
renatofilho@320
     1
/* vim: set sw=2: -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2; c-indent-level: 2-*- */
renatofilho@320
     2
/**
renatofilho@320
     3
 * GMyth Library
renatofilho@320
     4
 *
renatofilho@320
     5
 * @file gmyth/gmyth_monitor_handler.h
renatofilho@320
     6
 * 
renatofilho@320
     7
 * @brief <p> GMythMonitorHandler deals with the streaming media events remote/local
renatofilho@320
     8
 * that are sent to the MythTV frontend.
renatofilho@320
     9
 *
renatofilho@320
    10
 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
renatofilho@320
    11
 * @author Rosfran Lins Borges <rosfran.borges@indt.org.br>
renatofilho@320
    12
 *
renatofilho@320
    13
 *//*
renatofilho@320
    14
 * 
renatofilho@320
    15
 * This program is free software; you can redistribute it and/or modify
renatofilho@320
    16
 * it under the terms of the GNU Lesser General Public License as published by
renatofilho@320
    17
 * the Free Software Foundation; either version 2 of the License, or
renatofilho@320
    18
 * (at your option) any later version.
renatofilho@320
    19
 *
renatofilho@320
    20
 * This program is distributed in the hope that it will be useful,
renatofilho@320
    21
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
renatofilho@320
    22
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
renatofilho@320
    23
 * GNU General Public License for more details.
renatofilho@320
    24
 *
renatofilho@320
    25
 * You should have received a copy of the GNU Lesser General Public License
renatofilho@320
    26
 * along with this program; if not, write to the Free Software
renatofilho@320
    27
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
renatofilho@320
    28
 */
renatofilho@320
    29
 
renatofilho@320
    30
#ifndef __GMYTH_MONITOR_HANDLER_H__
renatofilho@320
    31
#define __GMYTH_MONITOR_HANDLER_H__
renatofilho@320
    32
renatofilho@320
    33
#include <glib-object.h>
renatofilho@320
    34
#include <glib.h>
renatofilho@320
    35
#include <stdio.h>
renatofilho@320
    36
#include <stdlib.h>
renatofilho@320
    37
#include <string.h>
renatofilho@320
    38
renatofilho@320
    39
#include <netdb.h>
renatofilho@320
    40
#include <sys/socket.h>
renatofilho@320
    41
#include <unistd.h>
renatofilho@320
    42
renatofilho@320
    43
#include "gmyth_socket.h"
renatofilho@320
    44
#include "gmyth_uri.h"
renatofilho@320
    45
renatofilho@320
    46
G_BEGIN_DECLS
renatofilho@320
    47
renatofilho@320
    48
#define GMYTH_MONITOR_HANDLER_TYPE               (gmyth_monitor_handler_get_type ())
renatofilho@320
    49
#define GMYTH_MONITOR_HANDLER(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_MONITOR_HANDLER_TYPE, GMythMonitorHandler))
renatofilho@320
    50
#define GMYTH_MONITOR_HANDLER_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_MONITOR_HANDLER_TYPE, GMythMonitorHandlerClass))
renatofilho@320
    51
#define IS_GMYTH_MONITOR_HANDLER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_MONITOR_HANDLER_TYPE))
renatofilho@320
    52
#define IS_GMYTH_MONITOR_HANDLER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_MONITOR_HANDLER_TYPE))
renatofilho@320
    53
#define GMYTH_MONITOR_HANDLER_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_MONITOR_HANDLER_TYPE, GMythMonitorHandlerClass))
renatofilho@320
    54
renatofilho@320
    55
#define GMYTHTV_MONITOR_HANDLER_READ_ERROR	-314
renatofilho@320
    56
renatofilho@320
    57
enum {
renatofilho@320
    58
	GMYTH_BACKEND_NO_MESSAGE = 0,
renatofilho@320
    59
  GMYTH_BACKEND_PROGRAM_INFO_CHANGED,
renatofilho@320
    60
  GMYTH_BACKEND_DONE_RECORDING,
renatofilho@320
    61
  GMYTH_BACKEND_STOP_LIVETV
renatofilho@320
    62
};
renatofilho@320
    63
renatofilho@320
    64
typedef struct _GMythMonitorHandler         GMythMonitorHandler;
renatofilho@320
    65
typedef struct _GMythMonitorHandlerClass    GMythMonitorHandlerClass;
renatofilho@320
    66
renatofilho@320
    67
struct _GMythMonitorHandlerClass
renatofilho@320
    68
{
renatofilho@320
    69
	GObjectClass parent_class;
renatofilho@320
    70
renatofilho@320
    71
	/* callbacks */	
renatofilho@320
    72
	guint backend_events_handler_signal_id;
renatofilho@320
    73
renatofilho@320
    74
  /* signal default handlers */
renatofilho@320
    75
  void (*backend_events_handler) (GMythMonitorHandler *monitor, gint msg_code, gchar* message );
renatofilho@320
    76
};
renatofilho@320
    77
renatofilho@320
    78
struct _GMythMonitorHandler
renatofilho@320
    79
{
renatofilho@320
    80
	GObject parent;
renatofilho@320
    81
renatofilho@320
    82
	/* MythTV version number */	
renatofilho@320
    83
	gint mythtv_version;
renatofilho@320
    84
renatofilho@320
    85
	/* socket descriptors */
renatofilho@320
    86
	GMythSocket *event_sock;
renatofilho@320
    87
	
renatofilho@320
    88
	GThreadPool *monitor_th;
renatofilho@320
    89
	
renatofilho@320
    90
	// gboolean* (*gmyth_monitor_handler_listener)( GMythMonitorHandler *monitor );
renatofilho@320
    91
	void (*gmyth_monitor_handler_listener)( GMythMonitorHandler *monitor, gpointer user_data );
renatofilho@320
    92
	
renatofilho@320
    93
	gchar *hostname;
renatofilho@320
    94
	gint port;
renatofilho@320
    95
	
renatofilho@320
    96
	gint64 actual_index;
renatofilho@320
    97
	
renatofilho@320
    98
	gboolean allow_msgs_listener;
renatofilho@320
    99
	
renatofilho@320
   100
	/* stores the messages coming from the backend */
renatofilho@320
   101
	GHashTable *backend_msgs;	
renatofilho@320
   102
renatofilho@320
   103
};
renatofilho@320
   104
renatofilho@320
   105
GType          gmyth_monitor_handler_get_type        (void);
renatofilho@320
   106
renatofilho@320
   107
GMythMonitorHandler* gmyth_monitor_handler_new ( void );
renatofilho@320
   108
renatofilho@320
   109
gboolean gmyth_monitor_handler_open (GMythMonitorHandler *monitor, const gchar *hostname, gint port);
renatofilho@320
   110
renatofilho@320
   111
gboolean gmyth_monitor_handler_start (GMythMonitorHandler *monitor);
renatofilho@320
   112
renatofilho@320
   113
void gmyth_monitor_handler_close (GMythMonitorHandler *monitor);
renatofilho@320
   114
renatofilho@320
   115
G_END_DECLS
renatofilho@320
   116
renatofilho@320
   117
#endif /* __GMYTH_MONITOR_HANDLER_H__ */