renatofilho@320
|
1 |
/**
|
renatofilho@320
|
2 |
* GMyth Library
|
renatofilho@320
|
3 |
*
|
renatofilho@320
|
4 |
* @file gmyth/gmyth_http.c
|
renatofilho@320
|
5 |
*
|
renatofilho@320
|
6 |
* @brief <p> GMythHttp class provides a wrapper to access
|
renatofilho@320
|
7 |
* data from the database using http+xml
|
renatofilho@320
|
8 |
*
|
renatofilho@320
|
9 |
* Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
|
renatofilho@320
|
10 |
* @author Artur Duque de Souza <@indt.org.br>
|
renatofilho@320
|
11 |
*
|
renatofilho@320
|
12 |
*//*
|
renatofilho@320
|
13 |
*
|
renatofilho@320
|
14 |
* This program is free software; you can redistribute it and/or modify
|
renatofilho@320
|
15 |
* it under the terms of the GNU Lesser General Public License as published by
|
renatofilho@320
|
16 |
* the Free Software Foundation; either version 2 of the License, or
|
renatofilho@320
|
17 |
* (at your option) any later version.
|
renatofilho@320
|
18 |
*
|
renatofilho@320
|
19 |
* This program is distributed in the hope that it will be useful,
|
renatofilho@320
|
20 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@320
|
21 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
renatofilho@320
|
22 |
* GNU General Public License for more details.
|
renatofilho@320
|
23 |
*
|
renatofilho@320
|
24 |
* You should have received a copy of the GNU Lesser General Public License
|
renatofilho@320
|
25 |
* along with this program; if not, write to the Free Software
|
renatofilho@320
|
26 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
renatofilho@320
|
27 |
*/
|
renatofilho@320
|
28 |
|
renatofilho@320
|
29 |
#ifndef __GMYTH_HTTP_H__
|
renatofilho@320
|
30 |
#define __GMYTH_HTTP_H__
|
renatofilho@320
|
31 |
|
renatofilho@320
|
32 |
#include <glib-object.h>
|
renatofilho@320
|
33 |
|
renatofilho@320
|
34 |
#include <stdio.h>
|
renatofilho@320
|
35 |
#include <stdlib.h>
|
renatofilho@320
|
36 |
#include <string.h>
|
renatofilho@320
|
37 |
#include <stdarg.h>
|
renatofilho@320
|
38 |
#include <glib.h>
|
renatofilho@320
|
39 |
#include <glib/gprintf.h>
|
renatofilho@320
|
40 |
|
renatofilho@320
|
41 |
#include "gmyth_backendinfo.h"
|
renatofilho@320
|
42 |
#include "gmyth_util.h"
|
renatofilho@320
|
43 |
|
renatofilho@320
|
44 |
#include <curl/curl.h>
|
renatofilho@320
|
45 |
#include <curl/types.h>
|
renatofilho@320
|
46 |
#include <curl/easy.h>
|
renatofilho@320
|
47 |
|
renatofilho@320
|
48 |
G_BEGIN_DECLS
|
renatofilho@320
|
49 |
|
renatofilho@320
|
50 |
#define MYTH_PORT_STATUS 6544
|
renatofilho@320
|
51 |
|
renatofilho@320
|
52 |
typedef struct _GMythPacket GMythPacket;
|
renatofilho@320
|
53 |
typedef struct _GMythProgram GMythProgram;
|
renatofilho@320
|
54 |
typedef struct _GMythChannel GMythChannel;
|
renatofilho@320
|
55 |
typedef struct _GMythEpg GMythEpg;
|
renatofilho@320
|
56 |
typedef struct _MemoryStruct MemoryStruct;
|
renatofilho@320
|
57 |
|
renatofilho@320
|
58 |
struct _MemoryStruct
|
renatofilho@320
|
59 |
{
|
renatofilho@320
|
60 |
char *memory;
|
renatofilho@320
|
61 |
size_t size;
|
renatofilho@320
|
62 |
};
|
renatofilho@320
|
63 |
|
renatofilho@320
|
64 |
struct _GMythPacket
|
renatofilho@320
|
65 |
{
|
renatofilho@320
|
66 |
GString *response;
|
renatofilho@320
|
67 |
int type;
|
renatofilho@320
|
68 |
};
|
renatofilho@320
|
69 |
|
renatofilho@320
|
70 |
struct _GMythProgram
|
renatofilho@320
|
71 |
{
|
renatofilho@320
|
72 |
GString* title;
|
renatofilho@320
|
73 |
GString* subtitle;
|
renatofilho@320
|
74 |
GString* catType;
|
renatofilho@320
|
75 |
GString* category;
|
renatofilho@320
|
76 |
gint repeat;
|
renatofilho@320
|
77 |
GTimeVal* startTime;
|
renatofilho@320
|
78 |
GTimeVal* endTime;
|
renatofilho@320
|
79 |
};
|
renatofilho@320
|
80 |
|
renatofilho@320
|
81 |
struct _GMythChannel
|
renatofilho@320
|
82 |
{
|
renatofilho@320
|
83 |
GString* channelName;
|
renatofilho@320
|
84 |
GString* chanNum;
|
renatofilho@320
|
85 |
gint chanId;
|
renatofilho@320
|
86 |
gint callSign;
|
renatofilho@320
|
87 |
GSList* programList;
|
renatofilho@320
|
88 |
};
|
renatofilho@320
|
89 |
|
renatofilho@320
|
90 |
struct _GMythEpg
|
renatofilho@320
|
91 |
{
|
renatofilho@320
|
92 |
gint startChanId;
|
renatofilho@320
|
93 |
gint endChanId;
|
renatofilho@320
|
94 |
GString* version;
|
renatofilho@320
|
95 |
gint protoVer;
|
renatofilho@320
|
96 |
gint totalCount;
|
renatofilho@320
|
97 |
gint numOfChannels;
|
renatofilho@320
|
98 |
GTimeVal* asOf;
|
renatofilho@320
|
99 |
GTimeVal* startTime;
|
renatofilho@320
|
100 |
GTimeVal* endTime;
|
renatofilho@320
|
101 |
gint details;
|
renatofilho@320
|
102 |
GSList* channelList;
|
renatofilho@320
|
103 |
};
|
renatofilho@320
|
104 |
|
renatofilho@320
|
105 |
GMythEpg retrieve_epg(GMythBackendInfo *backend_info, int port, GTimeVal* StartTime, GTimeVal* EndTime, gint StartChanId, gint NumOfChannels, gchar* Details);
|
renatofilho@320
|
106 |
MemoryStruct gmyth_http_request (GMythBackendInfo *backend_info, GString *command);
|
renatofilho@320
|
107 |
|
renatofilho@320
|
108 |
G_END_DECLS
|
renatofilho@320
|
109 |
|
renatofilho@320
|
110 |
#endif /* __GMYTH_HTTP_H__ */
|