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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
use once_cell::sync::Lazy;
use percent_encoding::{NON_ALPHANUMERIC, utf8_percent_encode};
use regex::Regex;
use crate::{StrExt, string_ext::Indent, StringExt};
pub fn strip_comment_markers(comment: &str) -> String {
const MULTILINE_PREFIX: &str = "/*";
const MULTILINE_CONT: &str = "*";
const MULTILINE_SUFFIX: &str = "*/";
const SINGLELINE: &str = "//";
const DETAIL: &str = "!";
const SINGLELINE_DETAIL: &str = "/";
const SINGLELINE_SIDE: &str = "<";
let mut singleline_delimited = true;
let mut asterisk_indented = false;
let mut lines = Vec::with_capacity(128);
for (i, mut line) in comment.lines_with_nl().enumerate() {
let mut line_clean = line.trim_start();
if i == 0 {
if let Some(new_line) = line_clean.strip_prefix(MULTILINE_PREFIX) {
line = new_line;
singleline_delimited = false;
if let Some(new_line) = line.strip_prefix(MULTILINE_CONT) {
line = new_line;
asterisk_indented = true;
} else {
asterisk_indented = false;
}
line_clean = line.trim_start();
} else {
singleline_delimited = true;
asterisk_indented = false;
}
} else if let Some(line_clean) = line_clean.strip_prefix(MULTILINE_PREFIX) {
line = line_clean
.trim_start_matches(DETAIL)
.trim_start_matches(MULTILINE_CONT)
.trim_start();
}
if singleline_delimited && line_clean.starts_with(SINGLELINE) {
line = &line_clean[SINGLELINE.len()..];
if let Some(new_line) = line.strip_prefix(SINGLELINE_DETAIL) {
line = new_line;
} else if let Some(new_line) = line.strip_prefix(DETAIL) {
line = new_line;
}
if let Some(new_line) = line.strip_prefix(SINGLELINE_SIDE) {
line = new_line;
}
} else if asterisk_indented && i == 1 && !line_clean.starts_with(MULTILINE_CONT) {
asterisk_indented = false;
}
lines.push(line);
}
let trim_last_empty_lines = |lines: &mut Vec<&str>| {
while let Some(last_line) = lines.last() {
if last_line.is_empty() {
lines.pop();
} else {
break;
}
}
};
trim_last_empty_lines(&mut lines);
if let Some(last_line) = lines.last_mut() {
if !singleline_delimited {
*last_line = last_line.trim_end();
if last_line.ends_with(MULTILINE_SUFFIX) {
*last_line = last_line[..last_line.len() - MULTILINE_SUFFIX.len()]
.trim_end();
}
}
}
trim_last_empty_lines(&mut lines);
let mut first_line_indent = None;
let mut common_indent: Option<Indent> = None;
for line in &mut lines {
if !singleline_delimited && asterisk_indented {
let line_trimmed = line.trim_start();
if let Some(line_trimmed) = line_trimmed.strip_prefix(MULTILINE_CONT) {
*line = line_trimmed;
} else {
let trim_start = line.trim_start_idx().min(2);
*line = &line[trim_start..];
}
}
if first_line_indent.is_none() {
first_line_indent = Some(line.detect_indent());
} else {
let detected_indent = line.detect_indent();
if !line[detected_indent.len..].trim_start().is_empty() {
if let Some(common_indent) = common_indent.as_mut() {
*common_indent = (*common_indent).min(detected_indent);
} else {
common_indent = Some(line.detect_indent());
}
}
}
}
let mut out = String::with_capacity(comment.len());
for (i, mut line) in lines.into_iter().enumerate() {
if i == 0 {
line = &line[first_line_indent.unwrap_or_default().len..];
if line.trim().is_empty() {
continue;
}
} else {
let indent_len = common_indent.unwrap_or_default().len;
if line.len() > indent_len {
line = &line[indent_len..];
} else {
line = "\n";
}
}
let line_clean_end = line.trim_end();
if let Some(suffix) = line_clean_end.strip_suffix(MULTILINE_SUFFIX) {
out += suffix.trim_end();
out.push('\n');
} else {
out += line;
}
}
let out_trim_end = out.trim_end_idx();
out.drain(out_trim_end..);
out
}
fn preprocess_formula(formula: &str) -> String {
const ARG_REGEX: &str = r"\s*\{([^}]*?)\}";
static MACROS: Lazy<Vec<(Regex, &str)>> = Lazy::new(|| vec![
(
Regex::new(&format!("\\\\matTT{}", ARG_REGEX.repeat(9))).unwrap(),
"\\[ \\left|\\begin{array}{ccc} $1 & $2 & $3\\\\ $4 & $5 & $6\\\\ $7 & $8 & $9 \\end{array}\\right| \\]",
),
(
Regex::new(&format!("\\\\fork{}", ARG_REGEX.repeat(4))).unwrap(),
"\\left\\{ \\begin{array}{l l} $1 & \\mbox{$2}\\\\ $3 & \\mbox{$4}\\\\ \\end{array} \\right.",
),
(
Regex::new(&format!("\\\\forkthree{}", ARG_REGEX.repeat(6))).unwrap(),
"\\left\\{ \\begin{array}{l l} $1 & \\mbox{$2}\\\\ $3 & \\mbox{$4}\\\\ $5 & \\mbox{$6}\\\\ \\end{array} \\right.",
),
(
Regex::new(&format!("\\\\forkfour{}", ARG_REGEX.repeat(8))).unwrap(),
"\\left\\{ \\begin{array}{l l} $1 & \\mbox{$2}\\\\ $3 & \\mbox{$4}\\\\ $5 & \\mbox{$6}\\\\ $7 & \\mbox{$8}\\\\ \\end{array} \\right.",
),
(
Regex::new(&format!("\\\\vecthree{}", ARG_REGEX.repeat(3))).unwrap(),
"\\begin{bmatrix} $1\\\\ $2\\\\ $3 \\end{bmatrix}",
),
(
Regex::new(&format!("\\\\vecthreethree{}", ARG_REGEX.repeat(9))).unwrap(),
"\\begin{bmatrix} $1 & $2 & $3\\\\ $4 & $5 & $6\\\\ $7 & $8 & $9 \\end{bmatrix}",
),
(
Regex::new(&format!("\\\\hdotsfor{}", ARG_REGEX)).unwrap(),
"\\dots",
),
(
Regex::new(&format!("\\\\mathbbm{}", ARG_REGEX)).unwrap(),
"\\mathbb{$1}",
),
(
Regex::new(&format!("\\\\bordermatrix{}", ARG_REGEX.repeat(9))).unwrap(),
"\\matrix{$1}",
),
]);
let mut out = formula.to_string();
for (re, repl) in &*MACROS {
out.replace_in_place_regex(re, *repl);
}
out
}
pub fn render_doc_comment(doc_comment: &str, prefix: &str, opencv_version: &str) -> String {
render_doc_comment_with_processor(doc_comment, prefix, opencv_version, |_| {})
}
pub fn render_doc_comment_with_processor(doc_comment: &str, prefix: &str, opencv_version: &str, mut post_processor: impl FnMut(&mut String)) -> String {
let mut out = strip_comment_markers(doc_comment);
out.replace_in_place("\r\n", "\n");
static MODULE_TITLE_1: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)\s*@[}{].*$"#).unwrap());
static MODULE_TITLE_2: Lazy<Regex> = Lazy::new(|| Regex::new(r#"@defgroup [^ ]+ (.*)"#).unwrap());
static MODULE_TITLE_3: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)^.*?@addtogroup\s+.+"#).unwrap());
out.replace_in_place_regex(&MODULE_TITLE_1, "");
out.replace_in_place_regex(&MODULE_TITLE_2, r#"# $1"#);
out.replace_in_place_regex(&MODULE_TITLE_3, "");
let trimmed = out.trim();
if trimmed.len() != out.len() {
out = trimmed.to_string()
}
out.replace_in_place("@brief ", "");
out.replace_in_place("@note", "\nNote:");
static CODE: Lazy<Regex> = Lazy::new(|| Regex::new(r#"@code(?: ?\{.+?})?"#).unwrap());
out.replace_in_place_regex(&CODE, "```ignore");
out.replace_in_place("@endcode", "```\n");
static SNIPPET: Lazy<Regex> = Lazy::new(|| Regex::new(r#"@snippet\s+([\w/.]+)\s+([\w-]+)"#).unwrap());
out.replace_in_place_regex_cb(&SNIPPET, |s, caps| {
let (path_start, path_end) = caps.get(1).expect("Impossible");
let path = &s[path_start..path_end];
let (name_start, name_end) = caps.get(2).expect("Impossible");
if path.starts_with("samples/") {
Some(format!(
"[{name}](https://github.com/opencv/opencv_contrib/blob/{version}/modules/hdf/{path}#L1)",
name=&s[name_start..name_end],
version=opencv_version,
path=path,
).into())
} else {
Some(format!(
"[{name}](https://github.com/opencv/opencv/blob/{version}/samples/cpp/tutorial_code/{path}#L1)",
name=&s[name_start..name_end],
version=opencv_version,
path=path,
).into())
}
});
out.replace_in_place("'fps'", r#""fps""#);
out.replace_in_place("'cv::Exception'", r#""cv::Exception""#);
static SEE_ALSO_BLOCK: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)^\s*@(sa|see)\s+"#).unwrap());
static SEE_ALSO_INLINE: Lazy<Regex> = Lazy::new(|| Regex::new(r#"@(sa|see)\s+"#).unwrap());
if out.replacen_in_place_regex(&SEE_ALSO_BLOCK, 1, "## See also\n") {
out.replace_in_place_regex(&SEE_ALSO_INLINE, "");
} else {
out.replace_in_place_regex(&SEE_ALSO_INLINE, "see also: ");
}
static CITE: Lazy<Regex> = Lazy::new(|| Regex::new(r#"@cite\s+([\w:]+)"#).unwrap());
out.replace_in_place_regex(&CITE, &format!("[$1](https://docs.opencv.org/{}/d0/de3/citelist.html#CITEREF_$1)", opencv_version));
static IMAGE: Lazy<Regex> = Lazy::new(|| Regex::new(r#"!\[(.*?)]\((?:.*/)?(.+)?\)"#).unwrap());
out.replace_in_place_regex(&IMAGE, &format!("", opencv_version));
static RETURNS: Lazy<Regex> = Lazy::new(|| Regex::new(r#".*?@returns?\s*"#).unwrap());
out.replace_in_place_regex(&RETURNS, "## Returns\n");
static PARAM_HEADER: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)^(.*?@param)"#).unwrap());
static PARAM: Lazy<Regex> = Lazy::new(|| Regex::new(r#".*?@param\s*(?:\[in]|(\[out]))?\s+(\w+) *(.*)"#).unwrap());
out.replacen_in_place_regex(&PARAM_HEADER, 1, "## Parameters\n$1");
out.replace_in_place_regex(&PARAM, "* $2:$1 $3");
static DEPRECATED: Lazy<Regex> = Lazy::new(|| Regex::new(r#".*?@deprecated\s+(.+)"#).unwrap());
let mut deprecated = None;
out.replace_in_place_regex_cb(&DEPRECATED, |out, caps| {
let (cap_start, cap_end) = caps.get(1).expect("Impossible");
let deprecated_msg = out[cap_start..cap_end].to_string();
let out = format!("\n**Deprecated**: {}", deprecated_msg);
deprecated = Some(deprecated_msg);
Some(out.into())
});
static LEADING_DASH: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)^(\s*)-(\s{2,})"#).unwrap());
out.replace_in_place_regex(&LEADING_DASH, "$1*$2");
static BLOCK_FORMULA: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?s)\\f\[(.*?)\\f]"#).unwrap());
static INLINE_FORMULA: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?s)\\f\$(.*?)\\f\$"#).unwrap());
out.replace_in_place_regex_cb(&BLOCK_FORMULA, |out, caps| {
let (cap_start, cap_end) = caps.get(1).expect("Impossible");
let formula = preprocess_formula(&out[cap_start..cap_end]);
let encoded = utf8_percent_encode(&formula, NON_ALPHANUMERIC);
Some(format!("", encoded).into())
});
out.replace_in_place_regex_cb(&INLINE_FORMULA, |out, caps| {
let (cap_start, cap_end) = caps.get(1).expect("Impossible");
let formula = preprocess_formula(&out[cap_start..cap_end]);
let encoded = utf8_percent_encode(&formula, NON_ALPHANUMERIC);
Some(format!("", encoded).into())
});
static ESCAPE: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)\\n$"#).unwrap());
out.replace_in_place_regex(&ESCAPE, "\n");
static INDENTS: Lazy<Regex> = Lazy::new(|| Regex::new(r#"(?m)^(\s{3}|\s{7}|\s{11}|\s{15}|\s{19})\s(\S)"#).unwrap());
out.replace_in_place_regex(&INDENTS, "$1$2");
post_processor(&mut out);
let mut out = if out.is_empty() || prefix.is_empty() {
out
} else {
out.lines_with_nl()
.fold(
String::with_capacity(out.len() + (prefix.len() + 1) * 128),
|mut out_prefixed, line| {
out_prefixed.push_str(prefix);
out_prefixed.push(' ');
out_prefixed + line
},
)
};
if let Some(deprecated) = deprecated {
out += &format!("\n#[deprecated = \"{}\"]", deprecated);
}
out
}