renatofilho@320
|
1 |
/**
|
renatofilho@320
|
2 |
* GMyth Library
|
renatofilho@320
|
3 |
*
|
renatofilho@320
|
4 |
* @file gmyth/gmyth_common.h
|
renatofilho@320
|
5 |
*
|
renatofilho@320
|
6 |
* @brief <p> This file contains basic common functions for the gmyth library.
|
renatofilho@320
|
7 |
*
|
renatofilho@320
|
8 |
* Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
|
renatofilho@320
|
9 |
* @author Leonardo Sobral Cunha <leonardo.cunha@indt.org.br>
|
renatofilho@320
|
10 |
*
|
renatofilho@320
|
11 |
*//*
|
renatofilho@320
|
12 |
*
|
renatofilho@320
|
13 |
* This program is free software; you can redistribute it and/or modify
|
renatofilho@320
|
14 |
* it under the terms of the GNU Lesser General Public License as published by
|
renatofilho@320
|
15 |
* the Free Software Foundation; either version 2 of the License, or
|
renatofilho@320
|
16 |
* (at your option) any later version.
|
renatofilho@320
|
17 |
*
|
renatofilho@320
|
18 |
* This program is distributed in the hope that it will be useful,
|
renatofilho@320
|
19 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@320
|
20 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
renatofilho@320
|
21 |
* GNU General Public License for more details.
|
renatofilho@320
|
22 |
*
|
renatofilho@320
|
23 |
* You should have received a copy of the GNU Lesser General Public License
|
renatofilho@320
|
24 |
* along with this program; if not, write to the Free Software
|
renatofilho@320
|
25 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
renatofilho@320
|
26 |
*/
|
renatofilho@320
|
27 |
|
renatofilho@320
|
28 |
#ifndef _GMYTH_PROGRAMINFO_H
|
renatofilho@320
|
29 |
#define _GMYTH_PROGRAMINFO_H
|
renatofilho@320
|
30 |
|
renatofilho@320
|
31 |
#include <glib.h>
|
renatofilho@320
|
32 |
#include <glib-object.h>
|
renatofilho@320
|
33 |
|
renatofilho@320
|
34 |
#include "gmyth_stringlist.h"
|
renatofilho@320
|
35 |
|
renatofilho@320
|
36 |
G_BEGIN_DECLS
|
renatofilho@320
|
37 |
|
renatofilho@320
|
38 |
#define GMYTH_PROGRAM_INFO_TYPE (gmyth_program_info_get_type ())
|
renatofilho@320
|
39 |
#define GMYTH_PROGRAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_PROGRAM_INFO_TYPE, GMythProgramInfo))
|
renatofilho@320
|
40 |
#define GMYTH_PROGRAM_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_PROGRAM_INFO_TYPE, GMythProgramInfoClass))
|
renatofilho@320
|
41 |
#define IS_GMYTH_PROGRAM_INFO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_PROGRAM_INFO_TYPE))
|
renatofilho@320
|
42 |
#define IS_GMYTH_PROGRAM_INFO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_PROGRAM_INFO_TYPE))
|
renatofilho@320
|
43 |
#define GMYTH_PROGRAM_INFO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_PROGRAM_INFO_TYPE, GMythProgramInfoClass))
|
renatofilho@320
|
44 |
|
renatofilho@320
|
45 |
typedef struct _GMythProgramInfo GMythProgramInfo;
|
renatofilho@320
|
46 |
typedef struct _GMythProgramInfoClass GMythProgramInfoClass;
|
renatofilho@320
|
47 |
|
renatofilho@320
|
48 |
struct _GMythProgramInfoClass
|
renatofilho@320
|
49 |
{
|
renatofilho@320
|
50 |
GObjectClass parent_class;
|
renatofilho@320
|
51 |
|
renatofilho@320
|
52 |
/* callbacks */
|
renatofilho@320
|
53 |
};
|
renatofilho@320
|
54 |
|
renatofilho@320
|
55 |
/**
|
renatofilho@320
|
56 |
* The GMythProgramInfo structure represents a program information
|
renatofilho@320
|
57 |
* stored in the database. It could be a program from the EPG data,
|
renatofilho@320
|
58 |
* a program scheduled to be recorded, or a program already recorded.
|
renatofilho@320
|
59 |
*/
|
renatofilho@320
|
60 |
struct _GMythProgramInfo
|
renatofilho@320
|
61 |
{
|
renatofilho@320
|
62 |
GObject parent;
|
renatofilho@320
|
63 |
|
renatofilho@320
|
64 |
/** The channel unique ID. */
|
renatofilho@320
|
65 |
GString *chanid;
|
renatofilho@320
|
66 |
|
renatofilho@320
|
67 |
/** The program start time. */
|
renatofilho@320
|
68 |
GTimeVal* startts;
|
renatofilho@320
|
69 |
/** The program end time. */
|
renatofilho@320
|
70 |
GTimeVal* endts;
|
renatofilho@320
|
71 |
/** The recording schedule start time. */
|
renatofilho@320
|
72 |
GTimeVal* recstartts;
|
renatofilho@320
|
73 |
/** The recording schedule end time */
|
renatofilho@320
|
74 |
GTimeVal* recendts;
|
renatofilho@320
|
75 |
|
renatofilho@320
|
76 |
/** The program title. */
|
renatofilho@320
|
77 |
GString *title;
|
renatofilho@320
|
78 |
/** The program subtitle. */
|
renatofilho@320
|
79 |
GString *subtitle;
|
renatofilho@320
|
80 |
/** The program description. */
|
renatofilho@320
|
81 |
GString *description;
|
renatofilho@320
|
82 |
/** The program category. */
|
renatofilho@320
|
83 |
GString *category;
|
renatofilho@320
|
84 |
|
renatofilho@320
|
85 |
GString *chanstr;
|
renatofilho@320
|
86 |
GString *chansign;
|
renatofilho@320
|
87 |
/** The associated channel name. */
|
renatofilho@320
|
88 |
GString *channame;
|
renatofilho@320
|
89 |
gint chancommfree;
|
renatofilho@320
|
90 |
GString *chanOutputFilters;
|
renatofilho@320
|
91 |
|
renatofilho@320
|
92 |
GString *seriesid;
|
renatofilho@320
|
93 |
/** The program unique id. */
|
renatofilho@320
|
94 |
GString *programid;
|
renatofilho@320
|
95 |
GString *catType;
|
renatofilho@320
|
96 |
|
renatofilho@320
|
97 |
GString *sortTitle;
|
renatofilho@320
|
98 |
|
renatofilho@320
|
99 |
/** A flag informing if the program has video or not. */
|
renatofilho@320
|
100 |
gboolean isVideo;
|
renatofilho@320
|
101 |
gint lenMins;
|
renatofilho@320
|
102 |
|
renatofilho@320
|
103 |
GString *year;
|
renatofilho@320
|
104 |
gdouble stars;
|
renatofilho@320
|
105 |
gint repeat;
|
renatofilho@320
|
106 |
|
renatofilho@320
|
107 |
GTimeVal* originalAirDate;
|
renatofilho@320
|
108 |
GTimeVal* lastmodified;
|
renatofilho@320
|
109 |
GTimeVal* lastInUseTime;
|
renatofilho@320
|
110 |
|
renatofilho@320
|
111 |
gboolean hasAirDate;
|
renatofilho@320
|
112 |
|
renatofilho@320
|
113 |
gint spread;
|
renatofilho@320
|
114 |
gint startCol;
|
renatofilho@320
|
115 |
|
renatofilho@320
|
116 |
gint recpriority2;
|
renatofilho@320
|
117 |
gint reactivate;
|
renatofilho@320
|
118 |
|
renatofilho@320
|
119 |
gint recordid;
|
renatofilho@320
|
120 |
gint parentid;
|
renatofilho@320
|
121 |
|
renatofilho@320
|
122 |
/** The backend video source id associated to this program.*/
|
renatofilho@320
|
123 |
gint sourceid;
|
renatofilho@320
|
124 |
/** the backend input id associated to this program.*/
|
renatofilho@320
|
125 |
gint inputid;
|
renatofilho@320
|
126 |
/** The backend card id associated to this program.*/
|
renatofilho@320
|
127 |
gint cardid;
|
renatofilho@320
|
128 |
gboolean shareable;
|
renatofilho@320
|
129 |
gboolean duplicate;
|
renatofilho@320
|
130 |
|
renatofilho@320
|
131 |
GString * schedulerid;
|
renatofilho@320
|
132 |
gint findid;
|
renatofilho@320
|
133 |
|
renatofilho@320
|
134 |
gint programflags;
|
renatofilho@320
|
135 |
gint transcoder;
|
renatofilho@320
|
136 |
|
renatofilho@320
|
137 |
GString *recgroup;
|
renatofilho@320
|
138 |
GString *playgroup;
|
renatofilho@320
|
139 |
gint recpriority;
|
renatofilho@320
|
140 |
|
renatofilho@320
|
141 |
/** The file size of the recorded program.*/
|
renatofilho@320
|
142 |
gint64 filesize;
|
renatofilho@320
|
143 |
|
renatofilho@320
|
144 |
/** The file name of the recorded program.*/
|
renatofilho@320
|
145 |
GString *pathname;
|
renatofilho@320
|
146 |
GString *hostname;
|
renatofilho@320
|
147 |
|
renatofilho@320
|
148 |
/* AvailableStatusType availableStatus;*/
|
renatofilho@320
|
149 |
|
renatofilho@320
|
150 |
};
|
renatofilho@320
|
151 |
|
renatofilho@320
|
152 |
GType gmyth_program_info_type (void);
|
renatofilho@320
|
153 |
|
renatofilho@320
|
154 |
GMythProgramInfo* gmyth_program_info_new (void);
|
renatofilho@320
|
155 |
|
renatofilho@320
|
156 |
GMythStringList* gmyth_program_info_to_string_list (GMythProgramInfo *prog, GMythStringList *slist);
|
renatofilho@320
|
157 |
GMythProgramInfo* gmyth_program_info_from_string_list (GMythStringList *slist);
|
renatofilho@320
|
158 |
|
renatofilho@320
|
159 |
G_END_DECLS
|
renatofilho@320
|
160 |
|
renatofilho@320
|
161 |
#endif /*_GMYTH_PROGRAMINFO_H*/
|