mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-11-08 06:28:27 +01:00
207 lines
4.3 KiB
C
207 lines
4.3 KiB
C
//
|
||
// PDF object functions for pdfio.
|
||
//
|
||
// Copyright © 2021 by Michael R Sweet.
|
||
//
|
||
// Licensed under Apache License v2.0. See the file "LICENSE" for more
|
||
// information.
|
||
//
|
||
|
||
//
|
||
// Include necessary headers...
|
||
//
|
||
|
||
#include "pdfio-private.h"
|
||
|
||
|
||
//
|
||
// 'pdfioObjClose()' - Close an object, writing any data as needed to the PDF
|
||
// file.
|
||
//
|
||
|
||
bool // O - `true` on success, `false` on failure
|
||
pdfioObjClose(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
// TODO: Implement me
|
||
(void)obj;
|
||
|
||
return (false);
|
||
}
|
||
|
||
|
||
//
|
||
// 'pdfioObjCreateStream()' - Create an object (data) stream for writing.
|
||
//
|
||
|
||
pdfio_stream_t * // O - Stream or `NULL` on error
|
||
pdfioObjCreateStream(
|
||
pdfio_obj_t *obj, // I - Object
|
||
pdfio_filter_t filter) // I - Type of compression to apply
|
||
{
|
||
// TODO: Implement me
|
||
(void)obj;
|
||
(void)filter;
|
||
|
||
return (NULL);
|
||
}
|
||
|
||
|
||
//
|
||
// '_pdfioObjDelete()' - Free memory used by an object.
|
||
//
|
||
|
||
void
|
||
_pdfioObjDelete(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
if (obj)
|
||
pdfioStreamClose(obj->stream);
|
||
|
||
free(obj);
|
||
}
|
||
|
||
|
||
//
|
||
// 'pdfioObjGetDict()' - Get the dictionary associated with an object.
|
||
//
|
||
|
||
pdfio_dict_t * // O - Dictionary or `NULL` on error
|
||
pdfioObjGetDict(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
if (!obj)
|
||
return (NULL);
|
||
|
||
if (obj->value.type == PDFIO_VALTYPE_NONE)
|
||
_pdfioObjLoad(obj);
|
||
|
||
if (obj->value.type == PDFIO_VALTYPE_DICT)
|
||
return (obj->value.value.dict);
|
||
else
|
||
return (NULL);
|
||
}
|
||
|
||
|
||
//
|
||
// 'pdfioObjGetGeneration()' - Get the object's generation number.
|
||
//
|
||
|
||
unsigned short // O - Generation number (0 to 65535)
|
||
pdfioObjGetGeneration(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
return (obj ? obj->generation : 0);
|
||
}
|
||
|
||
|
||
//
|
||
// 'pdfioObjGetNumber()' - Get the object's number.
|
||
//
|
||
|
||
size_t // O - Object number (1 to 9999999999)
|
||
pdfioObjGetNumber(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
return (obj ? obj->number : 0);
|
||
}
|
||
|
||
|
||
//
|
||
// 'pdfioObjGetType()' - Get an object's type.
|
||
//
|
||
|
||
const char * // O - Object type
|
||
pdfioObjGetType(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
pdfio_dict_t *dict; // Object dictionary
|
||
|
||
|
||
if ((dict = pdfioObjGetDict(obj)) == NULL)
|
||
return (NULL);
|
||
else
|
||
return (pdfioDictGetName(dict, "Type"));
|
||
}
|
||
|
||
|
||
//
|
||
// '_pdfioObjLoad()' - Load an object dictionary/value.
|
||
//
|
||
|
||
bool // O - `true` on success, `false` otherwise
|
||
_pdfioObjLoad(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
char line[1024], // Line from file
|
||
*ptr; // Pointer into line
|
||
|
||
|
||
PDFIO_DEBUG("_pdfioObjLoad(obj=%p(%lu)), offset=%lu\n", obj, (unsigned long)obj->number, (unsigned long)obj->offset);
|
||
|
||
// Seek to the start of the object and read its header...
|
||
if (_pdfioFileSeek(obj->pdf, obj->offset, SEEK_SET) != obj->offset)
|
||
{
|
||
_pdfioFileError(obj->pdf, "Unable to seek to object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
if (!_pdfioFileGets(obj->pdf, line, sizeof(line)))
|
||
{
|
||
_pdfioFileError(obj->pdf, "Unable to read header for object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
if (strtoimax(line, &ptr, 10) != (intmax_t)obj->number)
|
||
{
|
||
_pdfioFileError(obj->pdf, "Bad header for object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
if (strtol(ptr, &ptr, 10) != (long)obj->generation)
|
||
{
|
||
_pdfioFileError(obj->pdf, "Bad header for object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
while (isspace(*ptr & 255))
|
||
ptr ++;
|
||
|
||
if (strcmp(ptr, "obj"))
|
||
{
|
||
_pdfioFileError(obj->pdf, "Bad header for object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
// Then grab the object value...
|
||
_pdfioFileClearTokens(obj->pdf);
|
||
|
||
if (!_pdfioValueRead(obj->pdf, &obj->value))
|
||
{
|
||
_pdfioFileError(obj->pdf, "Unable to read value for object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
// Now see if there is an associated stream...
|
||
if (!_pdfioFileGets(obj->pdf, line, sizeof(line)))
|
||
{
|
||
_pdfioFileError(obj->pdf, "Early end-of-file for object %lu.", (unsigned long)obj->number);
|
||
return (false);
|
||
}
|
||
|
||
if (!strcmp(line, "stream"))
|
||
{
|
||
// Yes, save its location...
|
||
obj->stream_offset = _pdfioFileTell(obj->pdf);
|
||
}
|
||
|
||
return (true);
|
||
}
|
||
|
||
|
||
//
|
||
// 'pdfioObjOpenStream()' - Open an object's (data) stream for reading.
|
||
//
|
||
|
||
pdfio_stream_t * // O - Stream or `NULL` on error
|
||
pdfioObjOpenStream(pdfio_obj_t *obj) // I - Object
|
||
{
|
||
// TODO: Implement me
|
||
(void)obj;
|
||
|
||
return (NULL);
|
||
}
|