pdfio/pdfio-object.c

125 lines
2.1 KiB
C
Raw Normal View History

2021-04-10 14:00:52 +02:00
//
2021-04-17 02:41:46 +02:00
// PDF object functions for pdfio.
2021-04-10 14:00:52 +02:00
//
// 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"
2021-04-17 02:41:46 +02:00
2021-04-17 03:09:43 +02:00
//
2021-04-26 16:42:01 +02:00
// 'pdfioObjClose()' - Close an object, writing any data as needed to the PDF
// file.
2021-04-17 03:09:43 +02:00
//
2021-04-26 16:42:01 +02:00
bool // O - `true` on success, `false` on failure
pdfioObjClose(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-28 03:22:34 +02:00
// TODO: Implement me
(void)obj;
2021-04-26 16:42:01 +02:00
return (false);
2021-04-17 03:09:43 +02:00
}
//
2021-04-26 16:42:01 +02:00
// 'pdfioObjCreateStream()' - Create an object (data) stream for writing.
2021-04-17 03:09:43 +02:00
//
2021-04-26 16:42:01 +02:00
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
2021-04-17 03:09:43 +02:00
{
2021-04-28 03:22:34 +02:00
// TODO: Implement me
(void)obj;
(void)filter;
return (NULL);
2021-04-17 03:09:43 +02:00
}
//
2021-04-26 16:42:01 +02:00
// '_pdfioObjDelete()' - Free memory used by an object.
2021-04-17 03:09:43 +02:00
//
2021-04-26 16:42:01 +02:00
void
2021-04-28 03:22:34 +02:00
_pdfioObjDelete(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-26 16:42:01 +02:00
if (obj)
pdfioStreamClose(obj->stream);
free(obj);
2021-04-17 03:09:43 +02:00
}
//
2021-04-26 16:42:01 +02:00
// 'pdfioObjGetDict()' - Get the dictionary associated with an object.
2021-04-17 03:09:43 +02:00
//
2021-04-26 16:42:01 +02:00
pdfio_dict_t * // O - Dictionary or `NULL` on error
pdfioObjGetDict(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-26 16:42:01 +02:00
// TODO: Implement me
(void)obj;
return (NULL);
2021-04-17 03:09:43 +02:00
}
//
2021-04-28 03:22:34 +02:00
// 'pdfioObjGetGeneration()' - Get the object's generation number.
2021-04-17 03:09:43 +02:00
//
2021-04-28 03:22:34 +02:00
size_t // O - Generation number (0 to 65535)
pdfioObjGetGeneration(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-28 03:22:34 +02:00
return (obj ? obj->generation : 0);
2021-04-17 03:09:43 +02:00
}
//
2021-04-28 03:22:34 +02:00
// 'pdfioObjGetNumber()' - Get the object's number.
2021-04-17 03:09:43 +02:00
//
2021-04-28 03:22:34 +02:00
size_t // O - Object number (1 to 9999999999)
pdfioObjGetNumber(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-28 03:22:34 +02:00
return (obj ? obj->number : 0);
2021-04-17 03:09:43 +02:00
}
//
2021-04-28 03:22:34 +02:00
// 'pdfioObjGetType()' - Get an object's type.
2021-04-17 03:09:43 +02:00
//
2021-04-28 03:22:34 +02:00
const char * // O - Object type
pdfioObjGetType(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-28 03:22:34 +02:00
// TODO: Implement me
(void)obj;
return (NULL);
2021-04-17 03:09:43 +02:00
}
//
2021-04-26 16:42:01 +02:00
// 'pdfioObjOpenStream()' - Open an object's (data) stream for reading.
2021-04-17 03:09:43 +02:00
//
2021-04-26 16:42:01 +02:00
pdfio_stream_t * // O - Stream or `NULL` on error
pdfioObjOpenStream(pdfio_obj_t *obj) // I - Object
2021-04-17 03:09:43 +02:00
{
2021-04-28 03:22:34 +02:00
// TODO: Implement me
(void)obj;
return (NULL);
2021-04-17 03:09:43 +02:00
}