-
Notifications
You must be signed in to change notification settings - Fork 156
/
toc.c
221 lines (182 loc) · 4.78 KB
/
toc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/*
* toc -- spit out a table of contents based on header blocks
*
* Copyright (C) 2022 Jessica L Parsons
* portions Copyright (C) 2011 Stefano D'Angelo
* Copyright (C) 2008 Jjgod Jiang, Jessica L Parsons
*
* The redistribution terms are provided in the COPYRIGHT file that must
* be distributed with this source code.
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "cstring.h"
#include "markdown.h"
#include "amalloc.h"
/* import from Csio.c */
extern void Csreparse(Cstring *, char *, int, mkd_flag_t*);
/* write an header index
*/
int
mkd_toc(Document *p, char **doc)
{
Paragraph *tp, *srcp;
int last_hnumber = 0;
Cstring res;
int size;
int first = 1;
#if HAVE_NAMED_INITIALIZERS
static mkd_flag_t islabel = { { [IS_LABEL] = 1 } };
#else
mkd_flag_t islabel;
mkd_init_flags(&islabel);
set_mkd_flag(&islabel, IS_LABEL);
#endif
if ( !(doc && p && p->ctx) ) return -1;
*doc = 0;
if ( ! is_flag_set(&p->ctx->flags, MKD_TOC) ) return 0;
CREATE(res);
RESERVE(res, 100);
for ( tp = p->code; tp ; tp = tp->next ) {
if ( tp->typ == SOURCE ) {
for ( srcp = tp->down; srcp; srcp = srcp->next ) {
if ( (srcp->typ == HDR) && srcp->label ) {
while ( last_hnumber > srcp->hnumber ) {
if ( (last_hnumber - srcp->hnumber) > 1 )
Csprintf(&res, "\n");
Csprintf(&res, "</li>\n%*s</ul>\n%*s",
last_hnumber-1, "", last_hnumber-1, "");
--last_hnumber;
}
if ( last_hnumber == srcp->hnumber )
Csprintf(&res, "</li>\n");
else if ( (srcp->hnumber > last_hnumber) && !first )
Csprintf(&res, "\n");
while ( srcp->hnumber > last_hnumber ) {
Csprintf(&res, "%*s<ul>\n", last_hnumber, "");
if ( (srcp->hnumber - last_hnumber) > 1 )
Csprintf(&res, "%*s<li>\n", last_hnumber+1, "");
++last_hnumber;
}
Csprintf(&res, "%*s<li><a href=\"#", srcp->hnumber, "");
mkd_string_to_anchor(srcp->label, strlen(srcp->label),
(mkd_sta_function_t)Csputc,
&res,1,p->ctx);
Csprintf(&res, "\">");
Csreparse(&res, T(srcp->text->text),
S(srcp->text->text), &islabel);
Csprintf(&res, "</a>");
first = 0;
}
}
}
}
while ( last_hnumber > 0 ) {
--last_hnumber;
Csprintf(&res, "</li>\n%*s</ul>\n%*s",
last_hnumber, "", last_hnumber, "");
}
if ( (size = S(res)) > 0 ) {
/* null-terminate & strdup into a free()able memory chunk
*/
EXPAND(res) = 0;
*doc = strdup(T(res));
}
DELETE(res);
return size;
}
/*
* rewrite *name so it doesn't collide with any of the header labels
* in this document.
*/
static void
decollide(Paragraph *current, Cstring *name, int suffix)
{
Paragraph *content;
int needed, alloc;
int seq = 0;
char *sufp;
/* first decollide all the children
*/
for ( content = current; content; content = content->next ) {
if ( content->down )
decollide(content->down, name, suffix);
}
restart:
for ( content = current; content; content = content->next ) {
if ( content->typ == HDR && content->text && content->label ) {
if ( strcmp(T(*name), content->label) == 0 ) {
/* collision; bump trailing sequence and try again
*/
alloc = ALLOCATED(*name)-suffix;
sufp = T(*name) + suffix;
needed = 1+snprintf(sufp, alloc, "_%d", seq);
if ( needed > alloc ) {
RESERVE(*name, needed);
snprintf(sufp, needed, "_%d", seq);
}
++seq;
goto restart;
}
}
}
return;
}
/*
* set up to run decollide on *name
*/
static char *
uniquename(ParagraphRoot *pr, Cstring *name)
{
Cstring label;
int suffix;
char *final;
suffix = S(*name);
CREATE(label);
RESERVE(label, suffix + 200);
strcpy(T(label), T(*name));
S(label) = S(*name);
decollide(T(*pr), &label, suffix);
final = strdup(T(label));
DELETE(label);
return final;
}
/*
* assign unique names to all of the headers (with MKD_TOC; hand assigned
* labels aren't examined)
*/
void
___mkd_uniquify(ParagraphRoot *pr, Paragraph *pp)
{
Paragraph *content;
if ( !(pr && pp) )
return;
/* unique all the headers at this level */
for (content = pp; content; content = content->next) {
if ( content->typ == SOURCE )
___mkd_uniquify(pr, content->down);
else if ( content->typ == HDR && T(content->text->text) )
content->label = uniquename(pr, &(content->text->text));
}
#if 0
/* unique all the children */
for (content = pp; content; content = content->next)
if ( content->down )
___mkd_uniquify(pr, content->down);
#endif
}
/* write an header index
*/
int
mkd_generatetoc(Document *p, FILE *out)
{
char *buf = 0;
int sz = mkd_toc(p, &buf);
int ret = EOF;
if ( sz > 0 )
ret = fwrite(buf, 1, sz, out);
if ( buf ) free(buf);
return (ret == sz) ? ret : EOF;
}