1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
/*
* appcast.c
* Copyright (C) John Stebbins 2008 <stebbins@stebbins>
*
* appcast.c is free software.
*
* You may redistribute it and/or modify it under the terms of the
* GNU General Public License, as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*/
#include <stdio.h>
#include <string.h>
#include <glib.h>
#include <glib/gstdio.h>
#include "icon_tools.h"
#include "plist.h"
#include "values.h"
enum
{
A_NONE = 0,
A_DESCRIPTION,
A_ENCLOSURE,
A_ITEM,
};
typedef struct
{
gchar *tag;
gint id;
} tag_map_t;
static tag_map_t tag_map[] =
{
{"sparkle:releaseNotesLink", A_DESCRIPTION},
{"enclosure", A_ENCLOSURE},
{"item", A_ITEM},
};
#define TAG_MAP_SZ (sizeof(tag_map)/sizeof(tag_map_t))
typedef struct
{
gchar *key;
gchar *value;
GQueue *stack;
GQueue *tag_stack;
GString *description;
gchar *build;
gchar *version;
gboolean item;
} parse_data_t;
static const gchar*
lookup_attr_value(
const gchar *name,
const gchar **attr_names,
const gchar **attr_values)
{
gint ii;
if (attr_names == NULL) return NULL;
for (ii = 0; attr_names[ii] != NULL; ii++)
{
if (strcmp(name, attr_names[ii]) == 0)
return attr_values[ii];
}
return NULL;
}
static void
start_element(
GMarkupParseContext *ctx,
const gchar *tag,
const gchar **attr_names,
const gchar **attr_values,
gpointer ud,
GError **error)
{
parse_data_t *pd = (parse_data_t*)ud;
union
{
gint id;
gpointer pid;
} id;
gint ii;
for (ii = 0; ii < TAG_MAP_SZ; ii++)
{
if (strcmp(tag, tag_map[ii].tag) == 0)
{
id.id = tag_map[ii].id;
break;
}
}
if (ii == TAG_MAP_SZ)
{
g_debug("Unrecognized start tag (%s)", tag);
id.id = A_NONE;
}
g_queue_push_head(pd->tag_stack, id.pid);
switch (id.id)
{
case A_ITEM:
{
pd->item = TRUE;
} break;
case A_ENCLOSURE:
{
const gchar *build, *version;
build = lookup_attr_value(
"sparkle:version", attr_names, attr_values);
version = lookup_attr_value(
"sparkle:shortVersionString", attr_names, attr_values);
if (build)
pd->build = g_strdup(build);
if (version)
pd->version = g_strdup(version);
} break;
}
}
static void
end_element(
GMarkupParseContext *ctx,
const gchar *tag,
gpointer ud,
GError **error)
{
parse_data_t *pd = (parse_data_t*)ud;
gint id;
union
{
gint id;
gpointer pid;
} start_id;
gint ii;
for (ii = 0; ii < TAG_MAP_SZ; ii++)
{
if (strcmp(tag, tag_map[ii].tag) == 0)
{
id = tag_map[ii].id;
break;
}
}
if (ii == TAG_MAP_SZ)
{
g_debug("Unrecognized end tag (%s)", tag);
id = A_NONE;
}
start_id.pid = g_queue_pop_head(pd->tag_stack);
if (start_id.id != id)
g_warning("start tag != end tag: (%s %d) %d", tag, start_id.id, id);
switch (id)
{
case A_ITEM:
{
pd->item = FALSE;
} break;
default:
{
} break;
}
}
static void
text_data(
GMarkupParseContext *ctx,
const gchar *text,
gsize len,
gpointer ud,
GError **error)
{
parse_data_t *pd = (parse_data_t*)ud;
union
{
gint id;
gpointer pid;
} start_id;
start_id.pid = g_queue_peek_head(pd->tag_stack);
switch (start_id.id)
{
case A_DESCRIPTION:
{
if (pd->item)
{
g_string_append(pd->description, text);
}
} break;
default:
{
if (pd->value) g_free(pd->value);
pd->value = g_strdup(text);
} break;
}
}
static void
passthrough(
GMarkupParseContext *ctx,
const gchar *text,
gsize len,
gpointer ud,
GError **error)
{
//parse_data_t *pd = (parse_data_t*)ud;
//g_debug("passthrough %s", text);
}
static void
parse_error(GMarkupParseContext *ctx, GError *error, gpointer ud)
{
g_warning("Resource parse error: %s", error->message);
}
// This is required or the parser crashes
static void
destroy_notify(gpointer data)
{ // Do nothing
//g_debug("destroy parser");
}
void
ghb_appcast_parse(gchar *buf, gchar **desc, gchar **build, gchar **version)
{
GMarkupParseContext *ctx;
GMarkupParser parser;
parse_data_t pd;
GError *err = NULL;
gint len;
gchar *start;
//gchar tmp[4096]
// Skip junk at beginning of buffer
start = strstr(buf, "<?xml ");
pd.description = g_string_new("");
pd.item = FALSE;
pd.build = NULL;
pd.version = NULL;
len = strlen(start);
pd.tag_stack = g_queue_new();
pd.key = NULL;
pd.value = NULL;
parser.start_element = start_element;
parser.end_element = end_element;
parser.text = text_data;
parser.passthrough = passthrough;
parser.error = parse_error;
ctx = g_markup_parse_context_new(
&parser, G_MARKUP_TREAT_CDATA_AS_TEXT, &pd, destroy_notify);
g_markup_parse_context_parse(ctx, start, len, &err);
g_markup_parse_context_end_parse(ctx, &err);
g_markup_parse_context_free(ctx);
g_queue_free(pd.tag_stack);
*desc = g_string_free(pd.description, FALSE);
// work around a bug to leaves the CDATA closing brakets on the string
gchar *glitch;
glitch = g_strrstr(*desc, "]]>");
if (glitch)
*glitch = 0;
*build = pd.build;
*version = pd.version;
}
|