forked from libharu/libharu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hpdf_dict.c
518 lines (399 loc) · 13.5 KB
/
hpdf_dict.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
/*
* << Haru Free PDF Library >> -- hpdf_dict.c
*
* URL: http://libharu.org
*
* Copyright (c) 1999-2006 Takeshi Kanno <[email protected]>
* Copyright (c) 2007-2009 Antony Dovgal <[email protected]>
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation.
* It is provided "as is" without express or implied warranty.
*
*/
#include "hpdf_conf.h"
#include "hpdf_utils.h"
#include "hpdf_objects.h"
HPDF_DictElement
GetElement (HPDF_Dict dict,
const char *key);
/*--------------------------------------------------------------------------*/
HPDF_Dict
HPDF_Dict_New (HPDF_MMgr mmgr)
{
HPDF_Dict obj;
obj = (HPDF_Dict)HPDF_GetMem (mmgr, sizeof(HPDF_Dict_Rec));
if (obj) {
HPDF_MemSet (obj, 0, sizeof(HPDF_Dict_Rec));
obj->header.obj_class = HPDF_OCLASS_DICT;
obj->mmgr = mmgr;
obj->error = mmgr->error;
obj->list = HPDF_List_New (mmgr, HPDF_DEF_ITEMS_PER_BLOCK);
obj->filter = HPDF_STREAM_FILTER_NONE;
if (!obj->list) {
HPDF_FreeMem (mmgr, obj);
obj = NULL;
}
}
return obj;
}
HPDF_Dict
HPDF_DictStream_New (HPDF_MMgr mmgr,
HPDF_Xref xref)
{
HPDF_Dict obj;
HPDF_Number length;
HPDF_STATUS ret = 0;
obj = HPDF_Dict_New (mmgr);
if (!obj)
return NULL;
/* only stream object is added to xref automatically */
ret += HPDF_Xref_Add (xref, obj);
if (ret != HPDF_OK)
return NULL;
length = HPDF_Number_New (mmgr, 0);
if (!length)
return NULL;
ret = HPDF_Xref_Add (xref, length);
if (ret != HPDF_OK)
return NULL;
ret = HPDF_Dict_Add (obj, "Length", length);
if (ret != HPDF_OK)
return NULL;
obj->stream = HPDF_MemStream_New (mmgr, HPDF_STREAM_BUF_SIZ);
if (!obj->stream)
return NULL;
return obj;
}
void
HPDF_Dict_Free (HPDF_Dict dict)
{
HPDF_UINT i;
if (!dict)
return;
if (dict->free_fn)
dict->free_fn (dict);
for (i = 0; i < dict->list->count; i++) {
HPDF_DictElement element =
(HPDF_DictElement)HPDF_List_ItemAt (dict->list, i);
if (element) {
HPDF_Obj_Free (dict->mmgr, element->value);
HPDF_FreeMem (dict->mmgr, element);
}
}
if (dict->stream)
HPDF_Stream_Free (dict->stream);
HPDF_List_Free (dict->list);
dict->header.obj_class = 0;
HPDF_FreeMem (dict->mmgr, dict);
}
HPDF_STATUS
HPDF_Dict_Add_FilterParams(HPDF_Dict dict, HPDF_Dict filterParam)
{
HPDF_Array paramArray;
/* prepare params object */
paramArray = HPDF_Dict_GetItem (dict, "DecodeParms",
HPDF_OCLASS_ARRAY);
if(paramArray==NULL) {
paramArray = HPDF_Array_New (dict->mmgr);
if (!paramArray)
return HPDF_Error_GetCode (dict->error);
/* add parameters */
HPDF_Dict_Add(dict, "DecodeParms", paramArray);
}
HPDF_Array_Add(paramArray, filterParam);
return HPDF_OK;
}
HPDF_STATUS
HPDF_Dict_Write (HPDF_Dict dict,
HPDF_Stream stream,
HPDF_Encrypt e)
{
HPDF_UINT i;
HPDF_STATUS ret;
ret = HPDF_Stream_WriteStr (stream, "<<\012");
if (ret != HPDF_OK)
return ret;
if (dict->before_write_fn) {
if ((ret = dict->before_write_fn (dict)) != HPDF_OK)
return ret;
}
/* encrypt-dict must not be encrypted. */
if (dict->header.obj_class == (HPDF_OCLASS_DICT | HPDF_OSUBCLASS_ENCRYPT))
e = NULL;
if (dict->stream) {
/* set filter element */
if (dict->filter == HPDF_STREAM_FILTER_NONE)
HPDF_Dict_RemoveElement (dict, "Filter");
else {
HPDF_Array array = HPDF_Dict_GetItem (dict, "Filter",
HPDF_OCLASS_ARRAY);
if (!array) {
array = HPDF_Array_New (dict->mmgr);
if (!array)
return HPDF_Error_GetCode (dict->error);
ret = HPDF_Dict_Add (dict, "Filter", array);
if (ret != HPDF_OK)
return ret;
}
HPDF_Array_Clear (array);
#ifndef LIBHPDF_HAVE_NOZLIB
if (dict->filter & HPDF_STREAM_FILTER_FLATE_DECODE)
HPDF_Array_AddName (array, "FlateDecode");
#endif /* LIBHPDF_HAVE_NOZLIB */
if (dict->filter & HPDF_STREAM_FILTER_DCT_DECODE)
HPDF_Array_AddName (array, "DCTDecode");
if(dict->filter & HPDF_STREAM_FILTER_CCITT_DECODE)
HPDF_Array_AddName (array, "CCITTFaxDecode");
if(dict->filterParams!=NULL)
{
HPDF_Dict_Add_FilterParams(dict, dict->filterParams);
}
}
}
for (i = 0; i < dict->list->count; i++) {
HPDF_DictElement element =
(HPDF_DictElement)HPDF_List_ItemAt (dict->list, i);
HPDF_Obj_Header *header = (HPDF_Obj_Header *)(element->value);
if (!element->value)
return HPDF_SetError (dict->error, HPDF_INVALID_OBJECT, 0);
if (header->obj_id & HPDF_OTYPE_HIDDEN) {
HPDF_PTRACE((" HPDF_Dict_Write obj=%p skipped obj_id=0x%08X\n",
element->value, (HPDF_UINT)header->obj_id));
} else {
ret = HPDF_Stream_WriteEscapeName (stream, element->key);
if (ret != HPDF_OK)
return ret;
ret = HPDF_Stream_WriteChar (stream, ' ');
if (ret != HPDF_OK)
return ret;
ret = HPDF_Obj_Write (element->value, stream, e);
if (ret != HPDF_OK)
return ret;
ret = HPDF_Stream_WriteStr (stream, "\012");
if (ret != HPDF_OK)
return ret;
}
}
if (dict->write_fn) {
if ((ret = dict->write_fn (dict, stream)) != HPDF_OK)
return ret;
}
if ((ret = HPDF_Stream_WriteStr (stream, ">>")) != HPDF_OK)
return ret;
if (dict->stream) {
HPDF_UINT32 strptr;
HPDF_Number length;
/* get "length" element */
length = (HPDF_Number)HPDF_Dict_GetItem (dict, "Length",
HPDF_OCLASS_NUMBER);
if (!length)
return HPDF_SetError (dict->error,
HPDF_DICT_STREAM_LENGTH_NOT_FOUND, 0);
/* "length" element must be indirect-object */
if (!(length->header.obj_id & HPDF_OTYPE_INDIRECT)) {
return HPDF_SetError (dict->error, HPDF_DICT_ITEM_UNEXPECTED_TYPE,
0);
}
if ((ret = HPDF_Stream_WriteStr (stream, "\012stream\015\012")) /* Acrobat 8.15 requires both \r and \n here */
!= HPDF_OK)
return ret;
strptr = stream->size;
if (e)
HPDF_Encrypt_Reset (e);
if ((ret = HPDF_Stream_WriteToStream (dict->stream, stream,
dict->filter, e)) != HPDF_OK)
return ret;
HPDF_Number_SetValue (length, stream->size - strptr);
ret = HPDF_Stream_WriteStr (stream, "\012endstream");
}
/* 2006.08.13 add. */
if (dict->after_write_fn) {
if ((ret = dict->after_write_fn (dict)) != HPDF_OK)
return ret;
}
return ret;
}
HPDF_STATUS
HPDF_Dict_Add (HPDF_Dict dict,
const char *key,
void *obj)
{
HPDF_Obj_Header *header;
HPDF_STATUS ret = HPDF_OK;
HPDF_DictElement element;
if (!obj) {
if (HPDF_Error_GetCode (dict->error) == HPDF_OK)
return HPDF_SetError (dict->error, HPDF_INVALID_OBJECT, 0);
else
return HPDF_INVALID_OBJECT;
}
header = (HPDF_Obj_Header *)obj;
if (header->obj_id & HPDF_OTYPE_DIRECT)
return HPDF_SetError (dict->error, HPDF_INVALID_OBJECT, 0);
if (!key) {
HPDF_Obj_Free (dict->mmgr, obj);
return HPDF_SetError (dict->error, HPDF_INVALID_OBJECT, 0);
}
if (dict->list->count >= HPDF_LIMIT_MAX_DICT_ELEMENT) {
HPDF_PTRACE((" HPDF_Dict_Add exceed limitatin of dict count(%d)\n",
HPDF_LIMIT_MAX_DICT_ELEMENT));
HPDF_Obj_Free (dict->mmgr, obj);
return HPDF_SetError (dict->error, HPDF_DICT_COUNT_ERR, 0);
}
/* check whether there is an object which has same name */
element = GetElement (dict, key);
if (element) {
HPDF_Obj_Free (dict->mmgr, element->value);
element->value = NULL;
} else {
element = (HPDF_DictElement)HPDF_GetMem (dict->mmgr,
sizeof(HPDF_DictElement_Rec));
if (!element) {
/* cannot create element object */
if (!(header->obj_id & HPDF_OTYPE_INDIRECT))
HPDF_Obj_Free (dict->mmgr, obj);
return HPDF_Error_GetCode (dict->error);
}
HPDF_StrCpy (element->key, key, element->key +
HPDF_LIMIT_MAX_NAME_LEN + 1);
element->value = NULL;
ret = HPDF_List_Add (dict->list, element);
if (ret != HPDF_OK) {
if (!(header->obj_id & HPDF_OTYPE_INDIRECT))
HPDF_Obj_Free (dict->mmgr, obj);
HPDF_FreeMem (dict->mmgr, element);
return HPDF_Error_GetCode (dict->error);
}
}
if (header->obj_id & HPDF_OTYPE_INDIRECT) {
HPDF_Proxy proxy = HPDF_Proxy_New (dict->mmgr, obj);
if (!proxy)
return HPDF_Error_GetCode (dict->error);
element->value = proxy;
proxy->header.obj_id |= HPDF_OTYPE_DIRECT;
} else {
element->value = obj;
header->obj_id |= HPDF_OTYPE_DIRECT;
}
return ret;
}
HPDF_STATUS
HPDF_Dict_AddName (HPDF_Dict dict,
const char *key,
const char *value)
{
HPDF_Name name = HPDF_Name_New (dict->mmgr, value);
if (!name)
return HPDF_Error_GetCode (dict->error);
return HPDF_Dict_Add (dict, key, name);
}
HPDF_STATUS
HPDF_Dict_AddNumber (HPDF_Dict dict,
const char *key,
HPDF_INT32 value)
{
HPDF_Number number = HPDF_Number_New (dict->mmgr, value);
if (!number)
return HPDF_Error_GetCode (dict->error);
return HPDF_Dict_Add (dict, key, number);
}
HPDF_STATUS
HPDF_Dict_AddReal (HPDF_Dict dict,
const char *key,
HPDF_REAL value)
{
HPDF_Real real = HPDF_Real_New (dict->mmgr, value);
if (!real)
return HPDF_Error_GetCode (dict->error);
return HPDF_Dict_Add (dict, key, real);
}
HPDF_STATUS
HPDF_Dict_AddBoolean (HPDF_Dict dict,
const char *key,
HPDF_BOOL value)
{
HPDF_Boolean obj = HPDF_Boolean_New (dict->mmgr, value);
if (!obj)
return HPDF_Error_GetCode (dict->error);
return HPDF_Dict_Add (dict, key, obj);
}
void*
HPDF_Dict_GetItem (HPDF_Dict dict,
const char *key,
HPDF_UINT16 obj_class)
{
HPDF_DictElement element = GetElement (dict, key);
void *obj;
if (element && HPDF_StrCmp(key, element->key) == 0) {
HPDF_Obj_Header *header = (HPDF_Obj_Header *)element->value;
if (header->obj_class == HPDF_OCLASS_PROXY) {
HPDF_Proxy p = element->value;
header = (HPDF_Obj_Header *)p->obj;
obj = p->obj;
} else
obj = element->value;
if ((header->obj_class & HPDF_OCLASS_ANY) != obj_class) {
HPDF_PTRACE((" HPDF_Dict_GetItem dict=%p key=%s obj_class=0x%08X\n",
dict, key, (HPDF_UINT)header->obj_class));
HPDF_SetError (dict->error, HPDF_DICT_ITEM_UNEXPECTED_TYPE, 0);
return NULL;
}
return obj;
}
return NULL;
}
HPDF_DictElement
GetElement (HPDF_Dict dict,
const char *key)
{
HPDF_UINT i;
for (i = 0; i < dict->list->count; i++) {
HPDF_DictElement element =
(HPDF_DictElement)HPDF_List_ItemAt (dict->list, i);
if (HPDF_StrCmp (key, element->key) == 0)
return element;
}
return NULL;
}
HPDF_STATUS
HPDF_Dict_RemoveElement (HPDF_Dict dict,
const char *key)
{
HPDF_UINT i;
for (i = 0; i < dict->list->count; i++) {
HPDF_DictElement element =
(HPDF_DictElement)HPDF_List_ItemAt (dict->list, i);
if (HPDF_StrCmp (key, element->key) == 0) {
HPDF_List_Remove (dict->list, element);
HPDF_Obj_Free (dict->mmgr, element->value);
HPDF_FreeMem (dict->mmgr, element);
return HPDF_OK;
}
}
return HPDF_DICT_ITEM_NOT_FOUND;
}
const char*
HPDF_Dict_GetKeyByObj (HPDF_Dict dict,
void *obj)
{
HPDF_UINT i;
for (i = 0; i < dict->list->count; i++) {
HPDF_Obj_Header *header;
HPDF_DictElement element =
(HPDF_DictElement)HPDF_List_ItemAt (dict->list, i);
header = (HPDF_Obj_Header *)(element->value);
if (header->obj_class == HPDF_OCLASS_PROXY) {
HPDF_Proxy p = element->value;
if (p->obj == obj)
return element->key;
} else {
if (element->value == obj)
return element->key;
}
}
return NULL;
}