2021-04-25 17:28:56 +02:00
|
|
|
|
//
|
|
|
|
|
// PDF dictionary 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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Local functions...
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
static int compare_strings(char **a, char **b);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2021-05-05 19:51:42 +02:00
|
|
|
|
// 'pdfioStringCreate()' - Create a durable literal string.
|
2021-04-25 17:28:56 +02:00
|
|
|
|
//
|
|
|
|
|
// This function creates a literal string associated with the PDF file
|
|
|
|
|
// "pwg". The "s" string points to a nul-terminated C string.
|
|
|
|
|
//
|
|
|
|
|
// `NULL` is returned on error, otherwise a `char *` that is valid until
|
|
|
|
|
// `pdfioFileClose` is called.
|
|
|
|
|
//
|
|
|
|
|
|
2021-05-05 19:51:42 +02:00
|
|
|
|
char * // O - Durable string pointer or `NULL` on error
|
2021-04-25 17:28:56 +02:00
|
|
|
|
pdfioStringCreate(
|
|
|
|
|
pdfio_file_t *pdf, // I - PDF file
|
|
|
|
|
const char *s) // I - Nul-terminated string
|
|
|
|
|
{
|
|
|
|
|
char *news; // New string
|
2021-05-05 19:51:42 +02:00
|
|
|
|
char **match; // Matching string
|
2021-04-25 17:28:56 +02:00
|
|
|
|
|
|
|
|
|
|
2021-05-05 03:31:58 +02:00
|
|
|
|
PDFIO_DEBUG("pdfioStringCreate(pdf=%p, s=\"%s\")\n", pdf, s);
|
|
|
|
|
|
2021-04-25 17:28:56 +02:00
|
|
|
|
// Range check input...
|
|
|
|
|
if (!pdf || !s)
|
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
|
|
// See if the string has already been added...
|
2021-05-05 19:51:42 +02:00
|
|
|
|
if (pdf->num_strings > 0 && (match = (char **)bsearch(&s, pdf->strings, pdf->num_strings, sizeof(char *), (int (*)(const void *, const void *))compare_strings)) != NULL)
|
|
|
|
|
return (*match);
|
2021-04-25 17:28:56 +02:00
|
|
|
|
|
|
|
|
|
// Not already added, so add it...
|
|
|
|
|
if ((news = strdup(s)) == NULL)
|
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
|
|
if (pdf->num_strings >= pdf->alloc_strings)
|
|
|
|
|
{
|
|
|
|
|
// Expand the string array...
|
2021-05-05 19:51:42 +02:00
|
|
|
|
char **temp = (char **)realloc(pdf->strings, (pdf->alloc_strings + 128) * sizeof(char *));
|
2021-04-25 17:28:56 +02:00
|
|
|
|
|
|
|
|
|
if (!temp)
|
2021-05-01 13:36:19 +02:00
|
|
|
|
{
|
|
|
|
|
free(news);
|
2021-04-25 17:28:56 +02:00
|
|
|
|
return (NULL);
|
2021-05-01 13:36:19 +02:00
|
|
|
|
}
|
2021-04-25 17:28:56 +02:00
|
|
|
|
|
|
|
|
|
pdf->strings = temp;
|
2021-05-05 19:51:42 +02:00
|
|
|
|
pdf->alloc_strings += 128;
|
2021-04-25 17:28:56 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Change to insertion sort as needed...
|
|
|
|
|
pdf->strings[pdf->num_strings ++] = news;
|
|
|
|
|
|
|
|
|
|
if (pdf->num_strings > 1)
|
|
|
|
|
qsort(pdf->strings, pdf->num_strings, sizeof(char *), (int (*)(const void *, const void *))compare_strings);
|
|
|
|
|
|
2021-05-10 14:00:27 +02:00
|
|
|
|
PDFIO_DEBUG("pdfioStringCreate: %lu strings\n", (unsigned long)pdf->num_strings);
|
2021-05-05 03:31:58 +02:00
|
|
|
|
|
2021-04-25 17:28:56 +02:00
|
|
|
|
return (news);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2021-05-05 19:51:42 +02:00
|
|
|
|
// 'pdfioStringCreatef()' - Create a durable formatted string.
|
2021-04-25 17:28:56 +02:00
|
|
|
|
//
|
|
|
|
|
// This function creates a formatted string associated with the PDF file
|
|
|
|
|
// "pwg". The "format" string contains `printf`-style format characters.
|
|
|
|
|
//
|
|
|
|
|
// `NULL` is returned on error, otherwise a `char *` that is valid until
|
|
|
|
|
// `pdfioFileClose` is called.
|
|
|
|
|
//
|
|
|
|
|
|
2021-05-05 19:51:42 +02:00
|
|
|
|
char * // O - Durable string pointer or `NULL` on error
|
2021-04-25 17:28:56 +02:00
|
|
|
|
pdfioStringCreatef(
|
|
|
|
|
pdfio_file_t *pdf, // I - PDF file
|
|
|
|
|
const char *format, // I - `printf`-style format string
|
|
|
|
|
...) // I - Additional args as needed
|
|
|
|
|
{
|
|
|
|
|
char buffer[8192]; // String buffer
|
|
|
|
|
va_list ap; // Argument list
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Range check input...
|
|
|
|
|
if (!pdf || !format)
|
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
|
|
// Format the string...
|
|
|
|
|
va_start(ap, format);
|
|
|
|
|
vsnprintf(buffer, sizeof(buffer), format, ap);
|
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
|
|
// Create the string from the buffer...
|
|
|
|
|
return (pdfioStringCreate(pdf, buffer));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
2021-04-26 16:42:01 +02:00
|
|
|
|
// '_pdfioStringIsAllocated()' - Check whether a string has been allocated.
|
2021-04-25 17:28:56 +02:00
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
bool // O - `true` if allocated, `false` otherwise
|
|
|
|
|
_pdfioStringIsAllocated(
|
|
|
|
|
pdfio_file_t *pdf, // I - PDF file
|
|
|
|
|
const char *s) // I - String
|
|
|
|
|
{
|
|
|
|
|
return (pdf->num_strings > 0 && bsearch(&s, pdf->strings, pdf->num_strings, sizeof(char *), (int (*)(const void *, const void *))compare_strings) != NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// 'compare_strings()' - Compare two strings.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
static int // O - Result of comparison
|
|
|
|
|
compare_strings(char **a, // I - First string
|
|
|
|
|
char **b) // I - Second string
|
|
|
|
|
{
|
|
|
|
|
return (strcmp(*a, *b));
|
|
|
|
|
}
|