summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-08-05 07:45:32 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-08-05 08:00:35 (GMT)
commit3fa7a5eac154d97ce5cd4f0d87bfc75e05a20206 (patch)
tree42a9dbc95bdb744a4825a201cb59464caf8b846b /src/util.cpp
parent041215111a345199fcb52a26941e76c613a0b552 (diff)
parent23c71a3253f41a84a5624863b29fec69f87396d5 (diff)
downloadDoxygen-3fa7a5eac154d97ce5cd4f0d87bfc75e05a20206.zip
Doxygen-3fa7a5eac154d97ce5cd4f0d87bfc75e05a20206.tar.gz
Doxygen-3fa7a5eac154d97ce5cd4f0d87bfc75e05a20206.tar.bz2
Merge branch 'albert-github-feature/bug_py_empty_comment'
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp
index ebf3cf1..1fed382 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -7920,6 +7920,55 @@ QCString stripIndentation(const QCString &s)
return result.data();
}
+// strip up to \a indentationLevel spaces from each line in \a doc (excluding the first line)
+void stripIndentation(QCString &doc,const int indentationLevel)
+{
+ if (indentationLevel <= 0 || doc.isEmpty()) return; // nothing to strip
+
+ // by stripping content the string will only become shorter so we write the results
+ // back into the input string and then resize it at the end.
+ char c;
+ const char *src = doc.data();
+ char *dst = doc.rawData();
+ bool insideIndent = false; // skip the initial line from stripping
+ int cnt = 0;
+ while ((c=*src++)!=0)
+ {
+ // invariant: dst<=src
+ switch(c)
+ {
+ case '\n':
+ *dst++ = c;
+ insideIndent = true;
+ cnt = indentationLevel;
+ break;
+ case ' ':
+ if (insideIndent)
+ {
+ if (cnt>0) // count down the spacing until the end of the indent
+ {
+ cnt--;
+ }
+ else // reached the end of the indent, start of the part of the line to keep
+ {
+ insideIndent = false;
+ *dst++ = c;
+ }
+ }
+ else // part after indent, copy to the output
+ {
+ *dst++ = c;
+ }
+ break;
+ default:
+ insideIndent = false;
+ *dst++ = c;
+ break;
+ }
+ }
+ doc.resize(dst-doc.data()+1);
+}
+
bool fileVisibleInIndex(const FileDef *fd,bool &genSourceFile)
{