58#define PNG_MAGIC "\x89PNG\x0D\x0A\x1A\x0A"
59#define PS_MAGIC "%!PS-Adobe-"
61#define GIF_MAGIC "GIF8"
62#define JPEG_MAGIC "\xFF\xD8\xFF"
63#define PDF_MAGIC "%PDF-"
64#define EPS_MAGIC "\xC5\xD0\xD3\xC6"
65#define XML_MAGIC "<?xml"
66#define SVG_MAGIC "<svg"
67#define RIFF_MAGIC "RIFF"
68#define WEBP_MAGIC "WEBP"
69#define ICO_MAGIC "\x00\x00\x01\x00"
135 char header[
HDRLEN] = {0};
146 int c = fgetc(us->
f);
149 }
else if (c ==
'>') {
156 if (fread(tag, 1,
sizeof(tag), us->
f) !=
sizeof(tag)) {
164 int c = fgetc(us->
f);
168 memmove(&tag[0], &tag[1],
sizeof(tag) - 1);
169 tag[
sizeof(tag) - 1] = (
char)c;
193 for (
size_t i = 0; i < sz; i++) {
197 value |= (unsigned)ch << 8 * i;
199 if (value > INT_MAX) {
210 for (
size_t i = 0; i < sz; i++) {
215 value |= (unsigned)ch;
217 if (value > INT_MAX) {
225 if (strcmp(u,
"in") == 0)
227 if (strcmp(u,
"px") == 0)
229 if (strcmp(u,
"pc") == 0)
231 if (strcmp(u,
"pt") == 0 ||
232 strcmp(u,
"\"") == 0)
235 if (strcmp(u,
"cm") == 0)
237 if (strcmp(u,
"mm") == 0)
250 for (
size_t i = 0;
s[i] !=
'\0';) {
251 if (
s[i] >=
'a' &&
s[i] <=
'z') {
255 while ((
s[i] >=
'a' &&
s[i] <=
'z') || (
s[i] >=
'A' &&
s[i] <=
'Z')) {
259 if (
s[i] ==
'=' &&
s[i + 1] ==
'"') {
263 while (
s[i] !=
'"' &&
s[i] !=
'\0') {
299 int c = fgetc(us->
f);
303 }
else if (c ==
'\n') {
309 const char *re_string =
agxbuse(&line);
316 if (sscanf(value,
"%lf%2s", &n, u) == 2) {
318 }
else if (sscanf(value,
"%lf", &n) == 1) {
326 if (sscanf(value,
"%lf%2s", &n, u) == 2) {
328 }
else if (sscanf(value,
"%lf", &n) == 1) {
337 if (sscanf(value,
"%*f %*f %lf %lf", &w, &h) == 2) {
360 assert(w >= 0 && w <= INT_MAX);
362 assert(h >= 0 && h <= INT_MAX);
371 fseek(us->
f, 16, SEEK_SET);
382 fseek(us->
f, 6, SEEK_SET);
393 fseek(us->
f, 15, SEEK_SET);
394 if (fgetc(us->
f) ==
'X') {
395 fseek(us->
f, 24, SEEK_SET);
401 fseek(us->
f, 26, SEEK_SET);
413 fseek(us->
f, 6, SEEK_SET);
421 int size_x_msw, size_x_lsw, size_y_msw, size_y_lsw;
424 fseek(us->
f, 16, SEEK_SET);
429 us->
w = size_x_msw << 16 | size_x_lsw;
430 us->
h = size_y_msw << 16 | size_y_lsw;
435 int marker, length, size_x, size_y;
440 static const unsigned char standalone_markers[] = {
442 0xd0, 0xd1, 0xd2, 0xd3,
443 0xd4, 0xd5, 0xd6, 0xd7, 0xd8,
469 if (memchr(standalone_markers, marker,
sizeof(standalone_markers)))
473 if (marker == 0xc0) {
475 if (fseek(us->
f, 3, SEEK_CUR) == 0 &&
487 if (marker == 0xc2) {
489 if (fseek(us->
f, 3, SEEK_CUR) != 0)
505 fseek(us->
f, length - 2, SEEK_CUR);
517 while (fgets(line,
sizeof(line), us->
f)) {
526 if (!(linep = strstr(line,
"%%BoundingBox:")))
528 if (sscanf(linep,
"%%%%BoundingBox: %d %d %d %d", &lx, &ly, &ux, &uy) ==
542#define KEY "/MediaBox"
551 if (fgets(
str->buf, BUFSIZ,
str->fp)) {
558#define strc(x) (*(x->s) ? *(x->s) : nxtc(x))
559#define stradv(x) (x->s++)
573 double d = strtod(
tok, &endp);
588 if (
len == BUFSIZ - 1)
622 while (fgets(buf, BUFSIZ, fp)) {
623 if ((
s = strstr(buf,
KEY))) {
675#define MAX_USERSHAPE_FILES_OPEN 50
677 static int usershape_files_open_cnt;
693 agwarningf(
"%s while opening %s\n", strerror(errno), fn);
699 usershape_files_open_cnt++;
743 "\"%s\" was not found as a file or as a shape library member\n",
798 dpi.
x = dpi.
y = us->
dpi;
813 static char *oldpath;
817 if (!name || (*name ==
'\0')) {
833 dpi.
x = dpi.
y = DEFAULT_DPI;
size_t match(char *str, char *pat)
static void agxbfree(agxbuf *xb)
free any malloced resources
static WUR char * agxbuse(agxbuf *xb)
static int agxbputc(agxbuf *xb, char c)
add character to buffer
Memory allocation wrappers that exit on failure.
static void * gv_alloc(size_t size)
CDT_API Dtmethod_t * Dttree
CDT_API int dtclose(Dt_t *)
CDT_API Dt_t * dtopen(Dtdisc_t *, Dtmethod_t *)
const char * safefile(const char *filename)
static double len(glCompPoint p)
void agwarningf(const char *fmt,...)
int agstrfree(Agraph_t *, const char *, bool is_html)
char * agstrdup(Agraph_t *, const char *)
returns a pointer to a reference-counted copy of the argument string, creating one if necessary
bool gvusershape_file_access(usershape_t *us)
replacements for ctype.h functions
static bool gv_isdigit(int c)
static bool gv_isspace(int c)
FILE * gv_fopen(const char *filename, const char *mode)
wrapper around fopen for internal library usage
static void ico_size(usershape_t *us)
static void freeUsershape(usershape_t *us)
static char nxtc(stream_t *str)
#define MAX_USERSHAPE_FILES_OPEN
static bool get_int_msb_first(FILE *f, size_t sz, int *val)
shape_desc * find_user_shape(const char *)
static bool get_int_lsb_first(FILE *f, size_t sz, int *val)
static void skipWS(stream_t *str)
static Dtdisc_t ImageDictDisc
static int find_attribute(const char *s, match_t *result)
static void webp_size(usershape_t *us)
usershape_t * gvusershape_find(const char *name)
void gvusershape_file_release(usershape_t *us)
point gvusershape_size(graph_t *g, char *name)
point gvusershape_size_dpi(usershape_t *us, pointf dpi)
static int boxof(stream_t *str, boxf *bp)
static void jpeg_size(usershape_t *us)
static usershape_t * gvusershape_open(const char *name)
static int bboxPDF(FILE *fp, boxf *bp)
static knowntype_t knowntypes[]
static void png_size(usershape_t *us)
static void gif_size(usershape_t *us)
static imagetype_t imagetype(usershape_t *us)
static int scanNum(char *tok, double *dp)
static Dict_t * ImageDict
static double svg_units_convert(double n, char *u)
static void pdf_size(usershape_t *us)
static void ps_size(usershape_t *us)
static void svg_size(usershape_t *us)
static void bmp_size(usershape_t *us)
static void getNum(stream_t *str, char *buf)
static void usershape_close(void *p)
textitem scanner parser str
C analog of C++’s std::optional
static void optional_double_set(optional_double_t *me, double value)
static double optional_double_value_or(optional_double_t me, double fallback)
a container that may or may not contain a double value
double value
the value if has_value is true
bool has_value
does this have a value?
a non-owning string reference
const char * data
start of the pointed to string
size_t size
extent of the string in bytes
void(* datafree)(usershape_t *us)
Non-owning string references.
static bool strview_str_eq(strview_t a, const char *b)
compare a string reference to a string for equality
static char * strview_str(strview_t source)
make a heap-allocated string from this string view
static tok_t tok(const char *input, const char *separators)
begin tokenization of a new string
graphs, nodes and edges info: Agraphinfo_t, Agnodeinfo_t and Agedgeinfo_t