summaryrefslogtreecommitdiff
path: root/riscos/save_complete.c
blob: a97465679ba748c30aa39d7fe821c45c43c08e7d (plain)
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
/*
 * This file is part of NetSurf, http://netsurf.sourceforge.net/
 * Licensed under the GNU General Public License,
 *                http://www.opensource.org/licenses/gpl-license
 * Copyright 2004 John M Bell <jmb202@ecs.soton.ac.uk>
 */

#include <string.h>

#include <unixlib/local.h> /* for __riscosify */

#include <uri.h> /* possibly just have accessor methods in utils.c */

#include "oslib/osfile.h"

#include "netsurf/utils/config.h"
#include "netsurf/content/content.h"
#include "netsurf/css/css.h"
#include "netsurf/render/form.h"
#include "netsurf/render/layout.h"
#include "netsurf/riscos/save_complete.h"
#include "netsurf/utils/log.h"
#include "netsurf/utils/utils.h"

#ifdef WITH_SAVE_COMPLETE

/** \todo URL rewriting
 *        Objects used by embedded html pages
 *        GUI
 */

void save_imported_sheets(struct content *c, int parent, int level, char *p, char* fn);
char* get_filename(char * url);

/* this is temporary. */
const char * const SAVE_PATH = "<NetSurf$Dir>.savetest.";
const char * const OBJ_DIR = "_files";

/** \todo this will probably want to take a filename */
void save_complete(struct content *c) {

	char *fname = 0, *spath;
	unsigned int i;

	if (c->type != CONTENT_HTML) {
		return;
	}

	fname = get_filename(c->data.html.base_url);

	if (!fname) { /* no path -> exit */
		return;
	}

	spath = xcalloc(strlen(SAVE_PATH)+strlen(OBJ_DIR)+strlen(fname)+50,
			sizeof(char));

	sprintf(spath, "%s%s%s", SAVE_PATH, fname, OBJ_DIR);
	xosfile_create_dir(spath, 77);

        /* save stylesheets, ignoring the base sheet and <style> elements */
        for (i=2; i!=c->data.html.stylesheet_count; i++) {
                if (c->data.html.stylesheet_content[i] == 0) {
                        continue;
                }

                save_imported_sheets(c->data.html.stylesheet_content[i], (int)i, 0, spath, fname);

                sprintf(spath, "%s%s%s.%d/css", SAVE_PATH, fname, OBJ_DIR, i);
                xosfile_save_stamped(spath, 0xf79, c->data.html.stylesheet_content[i]->data.css.data, c->data.html.stylesheet_content[i]->data.css.data + c->data.html.stylesheet_content[i]->data.css.length);
        }

	/* save objects */
	for (i=0; i!=c->data.html.object_count; i++) {

		/* skip difficult content types */
		if (c->data.html.object[i].content->type >= CONTENT_PLUGIN) {
			continue;
		}

		sprintf(spath, "%s%s%s.%d", SAVE_PATH, fname, OBJ_DIR, i);

		switch(c->data.html.object[i].content->type) {
			case CONTENT_HTML:
			        strcat(spath, "/htm");
				xosfile_save_stamped(spath, 0xfaf, c->data.html.object[i].content->data.html.source, c->data.html.object[i].content->data.html.source + c->data.html.object[i].content->data.html.length);
				break;
			case CONTENT_JPEG:
			        strcat(spath, "/jpg");
				xosfile_save_stamped(spath, 0xc85, c->data.html.object[i].content->data.jpeg.data, (char*)c->data.html.object[i].content->data.jpeg.data + c->data.html.object[i].content->data.jpeg.length);
				break;
			case CONTENT_PNG:
			        strcat(spath, "/png");
				xosfile_save_stamped(spath, 0xb60, c->data.html.object[i].content->data.png.data, c->data.html.object[i].content->data.png.data + c->data.html.object[i].content->data.png.length);
				break;
			case CONTENT_GIF:
			        strcat(spath, "/gif");
				xosfile_save_stamped(spath, 0x695, c->data.html.object[i].content->data.gif.data, c->data.html.object[i].content->data.gif.data + c->data.html.object[i].content->data.gif.length);
				break;
			case CONTENT_SPRITE:
			        strcat(spath, "/spr");
				xosfile_save_stamped(spath, 0xff9, c->data.html.object[i].content->data.sprite.data, (char*)c->data.html.object[i].content->data.sprite.data + c->data.html.object[i].content->data.sprite.length);
				break;
			case CONTENT_DRAW:
			        strcat(spath, "/drw");
				xosfile_save_stamped(spath, 0xaff, c->data.html.object[i].content->data.draw.data, (char*)c->data.html.object[i].content->data.draw.data + c->data.html.object[i].content->data.draw.length);
				break;
			default:
				break;
		}
	}

	/** \todo URL rewriting */

	/* save the html file out last of all (allows url rewriting first) */
	sprintf(spath, "%s%s", SAVE_PATH, fname);
	xosfile_save_stamped(spath, 0xfaf,
				c->data.html.source,
				c->data.html.source + c->data.html.length);

	xfree(spath);
	xfree(fname);
}

void save_imported_sheets(struct content *c, int parent, int level, char *p, char *fn) {
        unsigned int j;

        for (j=0; j!=c->data.css.import_count; j++) {
                if (c->data.css.import_content[j] == 0) {
                        continue;
                }
                save_imported_sheets(c->data.css.import_content[j], parent, level+1, p, fn);
                sprintf(p, "%s%s%s.%d%c%d/css", SAVE_PATH, fn, OBJ_DIR, parent, 'a'+level, j);
                xosfile_save_stamped(p, 0xf79, c->data.css.import_content[j]->data.css.data, c->data.css.import_content[j]->data.css.data + c->data.css.import_content[j]->data.css.length);
        }
}

char* get_filename(char * url) {

	char *ret = 0, *offs;
	uri_t *uri;

	uri = uri_alloc(url, (int)strlen(url));

	if (!uri) {
		return 0;
	}

	if (uri->path) {
	/* Two possible cases here:
	 * a) no page name given (eg http://www.blah.com/) -> index.html
	 * b) page name given
	 */
	 	/* case a */
	 	if (strlen(uri->path) == 0) {
	 		ret = xstrdup("index.html");
	 	}
	 	/* case b */
	 	else {
	 		offs = strrchr(uri->path, '/');
	 		if (!offs) {
	 			ret = xstrdup(uri->path);
	 		}
	 		else {
	 			ret = xstrdup(offs+1);
	 		}
	 	}
	}

	uri_free(uri);

	offs = xcalloc(strlen(ret)+1, sizeof(char));

	__riscosify(ret, 0, 0, offs, strlen(ret)+1, 0);

	xfree(ret);

	return offs;
}
#endif