~alberto-cuda/pdflow/win32-port

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
/*
 * PDFlow -- pdfdoc.c
 *
 *  Copyright (c) 2010 Alberto Cuda
 *
 *  This program is free software; you can 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.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 *  USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "fmt/file.h"
#include "pdfdoc.h"
#include "filters.h"

enum s_status pd_add_selection (struct v_selection *sel,
				struct v_pref *pref)
{
	struct v_selection scsel;
	enum s_status res;

	memset (&scsel, 0, sizeof (struct v_selection));
	scsel.pref = pref;
	res = S_CSC_OK;

	if (res == S_CSC_OK)
		res = flt_add_selection (&scsel);

	if (res == S_CSC_OK)
		res = xref_add_selection (&scsel);

	if (res == S_CSC_OK)
		res = cat_add_selection (&scsel);

	if (res != S_CSC_OK) {
		v_destroy_selection (&scsel);
		return res;
	}

	*sel = scsel;

	return S_CSC_OK;
}

enum s_status pd_init (struct pd_document **docp, struct ref_owner *p)
{
	struct pd_document *doc;

	doc = malloc (sizeof (struct pd_document));
	if (doc == NULL)
		return S_CSC_OUT_OF_MEMORY;
	memset (doc, 0, sizeof (struct pd_document));

	ref_init (&doc -> refs, "document", p);

	*docp = doc;

	return S_CSC_OK;
}

enum s_status pd_read (struct pd_document *doc, const char *fname)
{
	struct obj eobj;
	enum s_status res;
	struct f_file *file;

	res = f_open (fname, &file);
	if (res != S_CSC_OK)
		return res;

	res = xref_create_db (&doc -> rdb, ref_rown (&doc -> refs));
	if (res != S_CSC_OK) {
		f_unref (file);
		return res;
	}

	res = xref_init_db (doc -> rdb, file);
	f_unref (file);
	if (res != S_CSC_OK)
		return res;

	res = xref_dict_resolve (doc -> rdb, xref_get_trailer (doc -> rdb),
				 "Encrypt", OT_DICTIONARY, &eobj);
	if (res != S_CSC_OK)
		return res;

	if (eobj.type != OT_NULL) {
		obj_destroy (&eobj);

		return s_make_indirect 
			(S_CSC_NOT_SUPPORTED,
			 "Encrypted documents not supported yet");
	}
				 
	res = T_CALL (tri_init, &doc -> trailer, doc -> rdb, NULL,
		      xref_get_trailer (doc -> rdb), 
		      ref_rown (&doc -> refs));
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}

enum s_status pd_creat (struct pd_document *doc, const char *fname,
			struct v_selection *sel)
{
	struct f_file *file;
	enum s_status res;

	res = f_creat (fname, &file);
	if (res != S_CSC_OK)
		return res;

	res = xref_create_db (&doc -> rdb, ref_rown (&doc -> refs));
	if (res != S_CSC_OK) {
		f_unref (file);
		return res;
	}

	res = xref_scratch_db (doc -> rdb, sel, file);
	f_unref (file);
	if (res != S_CSC_OK) 
		return res;

	res = T_CALL (tri_new, &doc -> trailer, doc -> rdb, 
		      ref_rown (&doc -> refs));
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}

enum s_status pd_scratch (struct pd_document *doc, struct v_selection *sel)
{
	enum s_status res;

	res = xref_scratch_db (doc -> rdb, sel, NULL);
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}

enum s_status pd_sync_start (struct pd_document *doc, struct v_selection *sel)
{
	enum s_status res;

	res = tri_touch (doc -> trailer);
	if (res != S_CSC_OK)
		return res;

	res = xref_sync_start (doc -> rdb, sel);
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}


enum s_status pd_sync_end (struct pd_document *doc, struct v_selection *sel)
{
	enum s_status res;
	struct obj obj;

	res = tri_fix_and_sync (doc -> rdb, sel, &obj, doc -> trailer);
	if (res != S_CSC_OK)
		return res;

	res = xref_sync_db (doc -> rdb, sel, &obj);
	obj_destroy (&obj);
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}

enum s_status pd_sync (struct pd_document *doc, struct v_selection *sel)
{
	enum s_status res;
	
	res = pd_sync_start (doc, sel);
	if (res != S_CSC_OK)
		return res;

	res = pd_sync_end (doc, sel);
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}

enum s_status pd_derive (struct pd_document *doc, struct pd_document *sdoc,
			 struct ob_bridge *ob)
{
	enum s_status res;

	res = tri_derive (doc -> trailer, sdoc -> trailer, ob);
	if (res != S_CSC_OK)
		return res;

	return S_CSC_OK;
}

void pd_unref (struct pd_document *doc, struct ref_owner *p)
{
	if (ref_down (&doc -> refs, p))
		return;

	if (doc -> rdb != NULL)
		xref_unref_db (doc -> rdb, ref_rown (&doc -> refs));

	if (doc -> trailer != NULL)
		tri_unref (doc -> trailer, ref_rown (&doc -> refs));

	ref_zero (&doc -> refs);

	free (doc);
}

void pd_unlink (struct pd_document *doc, struct ref_owner *p)
{
	xref_set_aborted (doc -> rdb);

	pd_unref (doc, p);
}