]>
git.cameronkatri.com Git - mandoc.git/blob - mandoc_xr.c
1 /* $Id: mandoc_xr.c,v 1.4 2020/06/22 19:20:40 schwarze Exp $ */
3 * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
27 #include "mandoc_aux.h"
28 #include "mandoc_ohash.h"
29 #include "mandoc_xr.h"
31 static struct ohash
*xr_hash
= NULL
;
32 static struct mandoc_xr
*xr_first
= NULL
;
33 static struct mandoc_xr
*xr_last
= NULL
;
35 static void mandoc_xr_clear(void);
46 for (xr
= ohash_first(xr_hash
, &slot
); xr
!= NULL
;
47 xr
= ohash_next(xr_hash
, &slot
))
49 ohash_delete(xr_hash
);
56 xr_hash
= mandoc_malloc(sizeof(*xr_hash
));
59 mandoc_ohash_init(xr_hash
, 5,
60 offsetof(struct mandoc_xr
, hashkey
));
61 xr_first
= xr_last
= NULL
;
65 mandoc_xr_add(const char *sec
, const char *name
, int line
, int pos
)
67 struct mandoc_xr
*xr
, *oxr
;
77 ssz
= strlen(sec
) + 1;
78 nsz
= strlen(name
) + 1;
80 xr
= mandoc_malloc(sizeof(*xr
) + tsz
);
82 xr
->sec
= xr
->hashkey
;
83 xr
->name
= xr
->hashkey
+ ssz
;
87 memcpy(xr
->sec
, sec
, ssz
);
88 memcpy(xr
->name
, name
, nsz
);
90 pend
= xr
->hashkey
+ tsz
;
91 hv
= ohash_interval(xr
->hashkey
, &pend
);
92 slot
= ohash_lookup_memory(xr_hash
, xr
->hashkey
, tsz
, hv
);
93 if ((oxr
= ohash_find(xr_hash
, slot
)) == NULL
) {
94 ohash_insert(xr_hash
, slot
, xr
);
104 ret
= (oxr
->line
== -1) ^ (xr
->line
== -1);