4 * @file gmyth/gmyth_scheduler.h
6 * @brief <p> The scheduler encapsulates all functions for browsing, scheduling
7 * and modifying the recorded content.
9 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
10 * @author Alexsandro Jose Virginio dos Santos <alexsandro.santos@indt.org.br>
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU Lesser General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU Lesser General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifndef __GMYTH_SCHEDULER_H__
29 #define __GMYTH_SCHEDULER_H__
31 #include <glib-object.h>
34 #include "gmyth_common.h"
35 #include "gmyth_query.h"
36 #include "gmyth_backendinfo.h"
39 #define GMYTH_SCHEDULER_TYPE (gmyth_scheduler_get_type ())
40 #define GMYTH_SCHEDULER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GMYTH_SCHEDULER_TYPE, GMythScheduler))
41 #define GMYTH_SCHEDULER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_SCHEDULER_TYPE, GMythSchedulerClass))
42 #define IS_GMYTH_SCHEDULER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GMYTH_SCHEDULER_TYPE))
43 #define IS_GMYTH_SCHEDULER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GMYTH_SCHEDULER_TYPE))
44 #define GMYTH_SCHEDULER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GMYTH_SCHEDULER_TYPE, GMythSchedulerClass))
45 typedef struct _GMythScheduler GMythScheduler;
46 typedef struct _GMythSchedulerClass GMythSchedulerClass;
48 struct _GMythSchedulerClass {
49 GObjectClass parent_class;
59 struct _GMythScheduler {
62 unsigned long recordid;
70 short int autotranscode;
73 short int autocommflag;
74 short int autouserjob1;
75 short int autouserjob2;
76 short int autouserjob3;
77 short int autouserjob4;
94 GMythQuery *msqlquery;
95 GMythBackendInfo *backend_info;
103 GTimeVal *start_time;
108 GString *description;
118 GTimeVal *start_time;
123 GString *description;
133 GType gmyth_scheduler_get_type(void);
135 GMythScheduler *gmyth_scheduler_new();
136 gboolean gmyth_scheduler_connect(GMythScheduler * scheduler,
137 GMythBackendInfo * backend_info);
138 gboolean gmyth_scheduler_connect_with_timeout(GMythScheduler *
143 gboolean gmyth_scheduler_disconnect(GMythScheduler * scheduler);
145 gint gmyth_scheduler_get_schedule_list(GMythScheduler *
147 GList ** sched_list);
148 gint gmyth_scheduler_get_recorded_list(GMythScheduler *
152 GMythProgramInfo *gmyth_scheduler_get_recorded(GMythScheduler * scheduler,
154 GTimeVal * starttime);
156 gint gmyth_scheduler_add_schedule(GMythScheduler * scheduler,
157 ScheduleInfo * schedule_info);
159 gint gmyth_scheduler_delete_schedule(GMythScheduler * scheduler,
161 gint gmyth_scheduler_delete_recorded(GMythScheduler * scheduler,
164 void gmyth_scheduler_recorded_info_get_preview(RecordedInfo *
169 void gmyth_recorded_info_free(RecordedInfo * info);
170 void gmyth_schedule_info_free(ScheduleInfo * info);
172 void gmyth_recorded_info_list_free(GList * list);
173 void gmyth_schedule_info_list_free(GList * list);
176 #endif /* __GMYTH_SCHEDULER_H__ */