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;
52 struct _GMythScheduler {
55 unsigned long recordid;
63 short int autotranscode;
66 short int autocommflag;
67 short int autouserjob1;
68 short int autouserjob2;
69 short int autouserjob3;
70 short int autouserjob4;
87 GMythQuery *msqlquery;
88 GMythBackendInfo *backend_info;
101 GString *description;
111 GTimeVal *start_time;
116 GString *description;
126 GType gmyth_scheduler_get_type (void);
128 GMythScheduler *gmyth_scheduler_new (void);
129 gboolean gmyth_scheduler_connect (GMythScheduler * scheduler,
130 GMythBackendInfo * backend_info);
131 gboolean gmyth_scheduler_connect_with_timeout(GMythScheduler * scheduler,
132 GMythBackendInfo * backend_info,
134 gboolean gmyth_scheduler_disconnect (GMythScheduler * scheduler);
135 gint gmyth_scheduler_get_schedule_list (GMythScheduler * scheduler,
136 GList ** sched_list);
137 gint gmyth_scheduler_get_recorded_list (GMythScheduler * scheduler,
139 RecordedInfo* gmyth_scheduler_get_recorded_info (GMythScheduler *scheduler,
140 const char *basename);
141 GMythProgramInfo *gmyth_scheduler_get_recorded (GMythScheduler * scheduler,
143 GTimeVal * starttime);
144 gint gmyth_scheduler_add_schedule (GMythScheduler * scheduler,
145 ScheduleInfo * schedule_info);
146 gint gmyth_scheduler_delete_schedule (GMythScheduler * scheduler,
148 gint gmyth_scheduler_delete_recorded (GMythScheduler * scheduler,
150 void gmyth_scheduler_recorded_info_get_preview
151 (RecordedInfo * info,
153 void gmyth_recorded_info_free (RecordedInfo * info);
154 void gmyth_schedule_info_free (ScheduleInfo * info);
155 void gmyth_recorded_info_list_free (GList * list);
156 void gmyth_schedule_info_list_free (GList * list);
159 #endif /* __GMYTH_SCHEDULER_H__ */