-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtml2.c
398 lines (296 loc) · 8.23 KB
/
html2.c
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <curl/curl.h>
#include <libxml/HTMLparser.h>
#include "rpsc.h"
#define MAX(a,b) (((a)>(b))?(a):(b))
static struct plugin *pl;
#define new_sheet_pl(...) (*pl->new_sheet)( __VA_ARGS__)
#define lookat_pl(...) (*pl->lookat)( __VA_ARGS__)
char * get_cell_content(xmlNode *cur, char **str)
{
xmlNode *ptr;
for(ptr=cur->children; ptr != NULL; ptr =ptr->next)
{
if(ptr->type == XML_TEXT_NODE)
strcat(*str,ptr->content);
if(ptr->children != 0) get_cell_content(ptr,str);
}
}
char * get_cell_content_len(xmlNode *cur, int *len)
{
xmlNode *ptr;
for(ptr=cur->children; ptr != NULL; ptr =ptr->next)
{
if(ptr->type == XML_TEXT_NODE)
*len+=strlen(ptr->content);
if(ptr->children != 0) get_cell_content_len(ptr,len);
}
}
void html_read_row(struct roman *p , xmlNode *cur, int row)
{
int col=0;
xmlNode *ptr;
for(ptr=cur->children; ptr != NULL ; ptr = ptr->next)
{
if (ptr->type != XML_ELEMENT_NODE)
continue;
if (xmlStrEqual(ptr->name,"td"))
{
if(ptr->children != 0 )
{
struct Ent *ent;
char *next;
int len=0;
char *str;
get_cell_content_len(ptr,&len);
str=calloc(1,len+1);
get_cell_content(ptr,&str);
//printf("String len %d [%s]\n",len,str);
printf("CELL %d;%d [%s]\n",row,col,str);
ent=lookat_pl(p->cur_sh,row,col);
p->cur_sh->maxcol=MAX(p->cur_sh->maxcol,col);
p->cur_sh->maxrow=MAX(p->cur_sh->maxrow,row);
ent->val=strtod(str,&next);
if ((str == next) )
{
/* not a number */
ent->label=strdup(str);
ent->flag |= RP_LABEL;
}
else ent->flag |= VAL;
free(str);
}
col++;
}
}
}
void html_read_rows(struct roman *p , xmlNode *cur, int row)
{
xmlNode *ptr;
for(ptr=cur->children; ptr != NULL ; ptr = ptr->next)
{
if (ptr->type != XML_ELEMENT_NODE)
continue;
if (xmlStrEqual(ptr->name,"tr"))
{
html_read_row(p, ptr,row);
row++;
}
}
}
void html_read_table( struct roman *p , xmlNode *cur)
{
int row=0;
xmlNode *ptr;
for(ptr=cur->children; ptr != NULL ; ptr = ptr->next)
{
if (ptr->type != XML_ELEMENT_NODE)
continue;
if(xmlStrEqual(ptr->name,"caption"))
printf(" TABLE NAME [%s]\n",ptr->children->content);
else if (xmlStrEqual(ptr->name,"tr"))
{
printf(" TR \n");
html_read_rows(p, cur,row);
break;
}
}
}
void traverse_dom_trees(struct roman *p, xmlNode * a_node)
{
xmlNode *cur_node = NULL;
int tbl_nr=1;
if(NULL == a_node)
{
//printf("Invalid argument a_node %p\n", a_node);
return;
}
for (cur_node = a_node; cur_node; cur_node = cur_node->next)
{
if (cur_node->type == XML_ELEMENT_NODE)
{
/* Check for if current node should be exclude or not */
// printf("Node type: Text, name: %s\n", cur_node->name);
if(xmlStrEqual(cur_node->name, "table"))
{
xmlNode *pt=cur_node->children;
int flag=0;
char *tbl_name;
printf("****** Found Table\n");
for(;pt!=0 ;pt=pt->next)
{
if (pt->type != XML_ELEMENT_NODE)
continue;
if(xmlStrEqual(pt->name,"caption"))
{
printf("Found tbl name [%s]\n",pt->children->content);
tbl_name=pt->children->content;
flag=1;
}
}
if(flag == 1) p->cur_sh=new_sheet_pl(p,tbl_name);
else {
char tbl_name1[32];
sprintf(tbl_name1,"html_table%d",tbl_nr++);
printf(" tbl name [%s] will used", tbl_name1);
p->cur_sh=new_sheet_pl(p,tbl_name1);
}
html_read_table(p , cur_node);
}
}
else if(cur_node->type == XML_TEXT_NODE)
{
/* Process here text node, It is available in cpStr :TODO: */
// printf("node type: Text, node content: %s, content length %d\n", (char *)cur_node->content, strlen((char *)cur_node->content));
}
traverse_dom_trees(p, cur_node->children);
}
}
#if 0
int main(int argc, char **argv)
{
htmlDocPtr doc;
xmlNode *roo_element = NULL;
if (argc != 2)
{
printf("\nInvalid argument\n");
return(1);
}
/* Macro to check API for match with the DLL we are using */
LIBXML_TEST_VERSION
doc = htmlReadFile(argv[1], NULL, HTML_PARSE_NOBLANKS | HTML_PARSE_NOERROR | HTML_PARSE_NOWARNING | HTML_PARSE_NONET);
if (doc == NULL)
{
fprintf(stderr, "Document not parsed successfully.\n");
return 0;
}
roo_element = xmlDocGetRootElement(doc);
if (roo_element == NULL)
{
fprintf(stderr, "empty document\n");
xmlFreeDoc(doc);
return 0;
}
printf("Root Node is %s\n", roo_element->name);
traverse_dom_trees(roo_element);
xmlFreeDoc(doc); // free document
xmlCleanupParser(); // Free globals
return 0;
}
#endif
struct MemoryStruct {
char *memory;
size_t size;
};
static size_t
WriteMemoryCallback(void *contents, size_t size, size_t nmemb, void *userp)
{
size_t realsize = size * nmemb;
struct MemoryStruct *mem = (struct MemoryStruct *)userp;
char *ptr = realloc(mem->memory, mem->size + realsize + 1);
if(ptr == NULL) {
/* out of memory! */
printf("not enough memory (realloc returned NULL)\n");
return 0;
}
mem->memory = ptr;
memcpy(&(mem->memory[mem->size]), contents, realsize);
mem->size += realsize;
mem->memory[mem->size] = 0;
return realsize;
}
static html_read(struct roman *p,char *name)
{
htmlDocPtr doc;
xmlNode *roo_element = NULL;
CURL *curl_handle;
CURLcode res;
struct MemoryStruct chunk;
/* Macro to check API for match with the DLL we are using */
LIBXML_TEST_VERSION
chunk.memory = malloc(1); /* will be grown as needed by the realloc above */
chunk.size = 0; /* no data at this point */
curl_global_init(CURL_GLOBAL_ALL);
/* init the curl session */
curl_handle = curl_easy_init();
/* specify URL to get */
curl_easy_setopt(curl_handle, CURLOPT_URL, argn[1]);
/* send all data to this function */
curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, WriteMemoryCallback);
/* we pass our 'chunk' struct to the callback function */
curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)&chunk);
/* some servers don't like requests that are made without a user-agent
field, so we provide one */
curl_easy_setopt(curl_handle, CURLOPT_USERAGENT, "libcurl-agent/1.0");
curl_easy_setopt(curl_handle, CURLOPT_FOLLOWLOCATION, (long)1);
/* get it! */
res = curl_easy_perform(curl_handle);
/* check for errors */
if(res != CURLE_OK) {
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
}
else {
/*
* Now, our chunk.memory points to a memory block that is chunk.size
* bytes big and contains the remote file.
*
* Do something nice with it!
*/
printf("%lu bytes retrieved\n", (unsigned long)chunk.size);
}
doc = xmlReadMemory(chunk.memory, chunk.size, "noname.xml", NULL, 0);
//doc = htmlReadFile(name, NULL, HTML_PARSE_NOBLANKS | HTML_PARSE_NOERROR | HTML_PARSE_NOWARNING | HTML_PARSE_NONET);
if (doc == NULL)
{
fprintf(stderr, "Document not parsed successfully.\n");
return 0;
}
roo_element = xmlDocGetRootElement(doc);
if (roo_element == NULL)
{
fprintf(stderr, "empty document\n");
xmlFreeDoc(doc);
return 0;
}
printf("Root Node is %s\n", roo_element->name);
traverse_dom_trees(p, roo_element);
xmlFreeDoc(doc); // free document
xmlCleanupParser(); // Free globals
/* cleanup curl stuff */
curl_easy_cleanup(curl_handle);
free(chunk.memory);
/* we're done with libcurl, so clean it up */
curl_global_cleanup();
return 0;
}
html_write(struct roman *p, char *name)
{
FILE *fd=fopen(name,"w+");
fprintf(fd,"<html>\n");
for(p->cur_sh=p->first_sh;p->cur_sh !=0 ; p->cur_sh=p->cur_sh->next)
{
fprintf(fd,"<h3>%s</h3>\n",p->cur_sh->name);
export(p, fd, "<table>","</table>\n","<tr>","</tr>\n","<td>","</td>");
}
fprintf(fd,"</html>\n");
fclose(fd);
}
static char *html_ending[]= {
{".html"},
{".htm"},
{0}
};
static char *html_name = "html";
int init_html(struct plugin *ptr)
{
ptr->ending=html_ending;
ptr->type=PLUG_IN;
ptr->read=html_read;
ptr->write=html_write;
ptr->name=html_name;
pl=ptr;
}