renatofilho@320: /** renatofilho@320: * GMyth Library renatofilho@320: * renatofilho@320: * @file gmyth/gmyth_http.c renatofilho@320: * renatofilho@320: * @brief

GMythHttp class provides a wrapper to access renatofilho@320: * data from the database using http+xml renatofilho@320: * renatofilho@320: * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia. renatofilho@320: * @author Artur Duque de Souza <@indt.org.br> renatofilho@320: * renatofilho@320: *//* renatofilho@320: * renatofilho@320: * This program is free software; you can redistribute it and/or modify renatofilho@320: * it under the terms of the GNU Lesser General Public License as published by renatofilho@320: * the Free Software Foundation; either version 2 of the License, or renatofilho@320: * (at your option) any later version. renatofilho@320: * renatofilho@320: * This program is distributed in the hope that it will be useful, renatofilho@320: * but WITHOUT ANY WARRANTY; without even the implied warranty of renatofilho@320: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the renatofilho@320: * GNU General Public License for more details. renatofilho@320: * renatofilho@320: * You should have received a copy of the GNU Lesser General Public License renatofilho@320: * along with this program; if not, write to the Free Software renatofilho@320: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA renatofilho@320: */ renatofilho@320: renatofilho@320: #ifndef __GMYTH_HTTP_H__ renatofilho@320: #define __GMYTH_HTTP_H__ renatofilho@320: renatofilho@320: #include renatofilho@320: renatofilho@320: #include renatofilho@320: #include renatofilho@320: #include renatofilho@320: #include renatofilho@320: #include renatofilho@320: #include renatofilho@320: renatofilho@320: #include "gmyth_backendinfo.h" renatofilho@320: #include "gmyth_util.h" renatofilho@320: renatofilho@320: #include renatofilho@320: #include renatofilho@320: #include renatofilho@320: renatofilho@320: G_BEGIN_DECLS renatofilho@320: renatofilho@320: #define MYTH_PORT_STATUS 6544 renatofilho@320: renatofilho@320: typedef struct _GMythPacket GMythPacket; renatofilho@320: typedef struct _GMythProgram GMythProgram; renatofilho@320: typedef struct _GMythChannel GMythChannel; renatofilho@320: typedef struct _GMythEpg GMythEpg; renatofilho@320: typedef struct _MemoryStruct MemoryStruct; renatofilho@320: renatofilho@320: struct _MemoryStruct renatofilho@320: { renatofilho@320: char *memory; renatofilho@320: size_t size; renatofilho@320: }; renatofilho@320: renatofilho@320: struct _GMythPacket renatofilho@320: { renatofilho@320: GString *response; renatofilho@320: int type; renatofilho@320: }; renatofilho@320: renatofilho@320: struct _GMythProgram renatofilho@320: { renatofilho@320: GString* title; renatofilho@320: GString* subtitle; renatofilho@320: GString* catType; renatofilho@320: GString* category; renatofilho@320: gint repeat; renatofilho@320: GTimeVal* startTime; renatofilho@320: GTimeVal* endTime; renatofilho@320: }; renatofilho@320: renatofilho@320: struct _GMythChannel renatofilho@320: { renatofilho@320: GString* channelName; renatofilho@320: GString* chanNum; renatofilho@320: gint chanId; renatofilho@320: gint callSign; renatofilho@320: GSList* programList; renatofilho@320: }; renatofilho@320: renatofilho@320: struct _GMythEpg renatofilho@320: { renatofilho@320: gint startChanId; renatofilho@320: gint endChanId; renatofilho@320: GString* version; renatofilho@320: gint protoVer; renatofilho@320: gint totalCount; renatofilho@320: gint numOfChannels; renatofilho@320: GTimeVal* asOf; renatofilho@320: GTimeVal* startTime; renatofilho@320: GTimeVal* endTime; renatofilho@320: gint details; renatofilho@320: GSList* channelList; renatofilho@320: }; renatofilho@320: renatofilho@320: GMythEpg retrieve_epg(GMythBackendInfo *backend_info, int port, GTimeVal* StartTime, GTimeVal* EndTime, gint StartChanId, gint NumOfChannels, gchar* Details); renatofilho@320: MemoryStruct gmyth_http_request (GMythBackendInfo *backend_info, GString *command); renatofilho@320: renatofilho@320: G_END_DECLS renatofilho@320: renatofilho@320: #endif /* __GMYTH_HTTP_H__ */