2017-07-28 15:04:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "bookmaker.h"
|
|
|
|
|
2017-12-11 21:03:17 +00:00
|
|
|
DEFINE_string2(status, a, "", "File containing status of documentation. (Use in place of -b -i)");
|
2017-10-04 18:31:33 +00:00
|
|
|
DEFINE_string2(bmh, b, "", "Path to a *.bmh file or a directory.");
|
2017-10-31 19:44:45 +00:00
|
|
|
DEFINE_bool2(catalog, c, false, "Write example catalog.htm. (Requires -b -f -r)");
|
2017-10-04 18:31:33 +00:00
|
|
|
DEFINE_string2(examples, e, "", "File of fiddlecli input, usually fiddle.json (For now, disables -r -f -s)");
|
|
|
|
DEFINE_string2(fiddle, f, "", "File of fiddlecli output, usually fiddleout.json.");
|
|
|
|
DEFINE_string2(include, i, "", "Path to a *.h file or a directory.");
|
|
|
|
DEFINE_bool2(hack, k, false, "Do a find/replace hack to update all *.bmh files. (Requires -b)");
|
|
|
|
DEFINE_bool2(stdout, o, false, "Write file out to standard out.");
|
|
|
|
DEFINE_bool2(populate, p, false, "Populate include from bmh. (Requires -b -i)");
|
2017-10-31 19:44:45 +00:00
|
|
|
DEFINE_string2(ref, r, "", "Resolve refs and write bmh_*.md files to path. (Requires -b -f)");
|
2017-10-04 18:31:33 +00:00
|
|
|
DEFINE_string2(spellcheck, s, "", "Spell-check [once, all, mispelling]. (Requires -b)");
|
2017-11-27 15:44:06 +00:00
|
|
|
DEFINE_bool2(tokens, t, false, "Write bmh from include. (Requires -b -i)");
|
2017-10-04 18:31:33 +00:00
|
|
|
DEFINE_bool2(crosscheck, x, false, "Check bmh against includes. (Requires -b -i)");
|
2017-10-11 14:37:52 +00:00
|
|
|
DEFINE_bool2(skip, z, false, "Skip degenerate missed in legacy preprocessor.");
|
2017-07-28 15:04:54 +00:00
|
|
|
|
|
|
|
/* recipe for generating timestamps for existing doxygen comments
|
|
|
|
find include/core -type f -name '*.h' -print -exec git blame {} \; > ~/all.blame.txt
|
|
|
|
|
|
|
|
space table better for Constants
|
|
|
|
should Return be on same line as 'Return Value'?
|
|
|
|
remove anonymous header, e.g. Enum SkPaint::::anonymous_2
|
|
|
|
Text Encoding anchors in paragraph are echoed instead of being linked to anchor names
|
|
|
|
also should not point to 'undocumented' since they are resolvable links
|
|
|
|
#Member lost all formatting
|
|
|
|
#List needs '# content ##', formatting
|
|
|
|
consts like enum members need fully qualfied refs to make a valid link
|
|
|
|
enum comments should be disallowed unless after #Enum and before first #Const
|
|
|
|
... or, should look for enum comments in other places
|
2017-08-29 21:36:51 +00:00
|
|
|
trouble with aliases, plurals
|
|
|
|
need to keep first letter of includeWriter @param / @return lowercase
|
|
|
|
Quad -> quad, Quads -> quads
|
2017-08-30 12:58:10 +00:00
|
|
|
check for summary containing all methods
|
2017-07-28 15:04:54 +00:00
|
|
|
*/
|
|
|
|
|
2017-10-09 19:45:33 +00:00
|
|
|
/*
|
2017-07-28 15:04:54 +00:00
|
|
|
class contains named struct, enum, enum-member, method, topic, subtopic
|
|
|
|
everything contained by class is uniquely named
|
|
|
|
contained names may be reused by other classes
|
|
|
|
method contains named parameters
|
|
|
|
parameters may be reused in other methods
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool BmhParser::addDefinition(const char* defStart, bool hasEnd, MarkType markType,
|
|
|
|
const vector<string>& typeNameBuilder) {
|
|
|
|
Definition* definition = nullptr;
|
|
|
|
switch (markType) {
|
|
|
|
case MarkType::kComment:
|
|
|
|
if (!this->skipToDefinitionEnd(markType)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
// these types may be referred to by name
|
|
|
|
case MarkType::kClass:
|
|
|
|
case MarkType::kStruct:
|
|
|
|
case MarkType::kConst:
|
|
|
|
case MarkType::kEnum:
|
|
|
|
case MarkType::kEnumClass:
|
|
|
|
case MarkType::kMember:
|
|
|
|
case MarkType::kMethod:
|
|
|
|
case MarkType::kTypedef: {
|
|
|
|
if (!typeNameBuilder.size()) {
|
|
|
|
return this->reportError<bool>("unnamed markup");
|
|
|
|
}
|
|
|
|
if (typeNameBuilder.size() > 1) {
|
|
|
|
return this->reportError<bool>("expected one name only");
|
|
|
|
}
|
|
|
|
const string& name = typeNameBuilder[0];
|
|
|
|
if (nullptr == fRoot) {
|
|
|
|
fRoot = this->findBmhObject(markType, name);
|
|
|
|
fRoot->fFileName = fFileName;
|
|
|
|
definition = fRoot;
|
|
|
|
} else {
|
|
|
|
if (nullptr == fParent) {
|
|
|
|
return this->reportError<bool>("expected parent");
|
|
|
|
}
|
|
|
|
if (fParent == fRoot && hasEnd) {
|
|
|
|
RootDefinition* rootParent = fRoot->rootParent();
|
|
|
|
if (rootParent) {
|
|
|
|
fRoot = rootParent;
|
|
|
|
}
|
|
|
|
definition = fParent;
|
|
|
|
} else {
|
2017-09-01 19:51:02 +00:00
|
|
|
if (!hasEnd && fRoot->find(name, RootDefinition::AllowParens::kNo)) {
|
2017-07-28 15:04:54 +00:00
|
|
|
return this->reportError<bool>("duplicate symbol");
|
|
|
|
}
|
|
|
|
if (MarkType::kStruct == markType || MarkType::kClass == markType) {
|
|
|
|
// if class or struct, build fRoot hierarchy
|
|
|
|
// and change isDefined to search all parents of fRoot
|
|
|
|
SkASSERT(!hasEnd);
|
|
|
|
RootDefinition* childRoot = new RootDefinition;
|
|
|
|
(fRoot->fBranches)[name] = childRoot;
|
|
|
|
childRoot->setRootParent(fRoot);
|
|
|
|
childRoot->fFileName = fFileName;
|
|
|
|
fRoot = childRoot;
|
|
|
|
definition = fRoot;
|
|
|
|
} else {
|
|
|
|
definition = &fRoot->fLeaves[name];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (hasEnd) {
|
|
|
|
Exemplary hasExample = Exemplary::kNo;
|
|
|
|
bool hasExcluder = false;
|
|
|
|
for (auto child : definition->fChildren) {
|
|
|
|
if (MarkType::kExample == child->fMarkType) {
|
|
|
|
hasExample = Exemplary::kYes;
|
|
|
|
}
|
|
|
|
hasExcluder |= MarkType::kPrivate == child->fMarkType
|
|
|
|
|| MarkType::kDeprecated == child->fMarkType
|
|
|
|
|| MarkType::kExperimental == child->fMarkType
|
|
|
|
|| MarkType::kNoExample == child->fMarkType;
|
|
|
|
}
|
|
|
|
if (fMaps[(int) markType].fExemplary != hasExample
|
|
|
|
&& fMaps[(int) markType].fExemplary != Exemplary::kOptional) {
|
|
|
|
if (string::npos == fFileName.find("undocumented")
|
|
|
|
&& !hasExcluder) {
|
2017-10-09 19:45:33 +00:00
|
|
|
hasExample == Exemplary::kNo ?
|
|
|
|
this->reportWarning("missing example") :
|
2017-07-28 15:04:54 +00:00
|
|
|
this->reportWarning("unexpected example");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if (MarkType::kMethod == markType) {
|
|
|
|
if (fCheckMethods && !definition->checkMethod()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!this->popParentStack(definition)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
definition->fStart = defStart;
|
|
|
|
this->skipSpace();
|
|
|
|
definition->fFileName = fFileName;
|
|
|
|
definition->fContentStart = fChar;
|
|
|
|
definition->fLineCount = fLineCount;
|
|
|
|
definition->fClone = fCloned;
|
|
|
|
if (MarkType::kConst == markType) {
|
|
|
|
// todo: require that fChar points to def on same line as markup
|
|
|
|
// additionally add definition to class children if it is not already there
|
|
|
|
if (definition->fParent != fRoot) {
|
|
|
|
// fRoot->fChildren.push_back(definition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
definition->fName = name;
|
|
|
|
if (MarkType::kMethod == markType) {
|
|
|
|
if (string::npos != name.find(':', 0)) {
|
|
|
|
definition->setCanonicalFiddle();
|
|
|
|
} else {
|
|
|
|
definition->fFiddle = name;
|
|
|
|
}
|
|
|
|
} else {
|
2017-11-27 15:44:06 +00:00
|
|
|
definition->fFiddle = Definition::NormalizedName(name);
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
definition->fMarkType = markType;
|
2017-09-14 15:25:39 +00:00
|
|
|
definition->fAnonymous = fAnonymous;
|
2017-07-28 15:04:54 +00:00
|
|
|
this->setAsParent(definition);
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case MarkType::kTopic:
|
|
|
|
case MarkType::kSubtopic:
|
|
|
|
SkASSERT(1 == typeNameBuilder.size());
|
|
|
|
if (!hasEnd) {
|
|
|
|
if (!typeNameBuilder.size()) {
|
|
|
|
return this->reportError<bool>("unnamed topic");
|
|
|
|
}
|
|
|
|
fTopics.emplace_front(markType, defStart, fLineCount, fParent);
|
|
|
|
RootDefinition* rootDefinition = &fTopics.front();
|
|
|
|
definition = rootDefinition;
|
|
|
|
definition->fFileName = fFileName;
|
|
|
|
definition->fContentStart = fChar;
|
|
|
|
definition->fName = typeNameBuilder[0];
|
|
|
|
Definition* parent = fParent;
|
2017-10-09 19:45:33 +00:00
|
|
|
while (parent && MarkType::kTopic != parent->fMarkType
|
2017-07-28 15:04:54 +00:00
|
|
|
&& MarkType::kSubtopic != parent->fMarkType) {
|
|
|
|
parent = parent->fParent;
|
|
|
|
}
|
|
|
|
definition->fFiddle = parent ? parent->fFiddle + '_' : "";
|
2017-11-27 15:44:06 +00:00
|
|
|
definition->fFiddle += Definition::NormalizedName(typeNameBuilder[0]);
|
2017-07-28 15:04:54 +00:00
|
|
|
this->setAsParent(definition);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
const string& fullTopic = hasEnd ? fParent->fFiddle : definition->fFiddle;
|
|
|
|
Definition* defPtr = fTopicMap[fullTopic];
|
|
|
|
if (hasEnd) {
|
|
|
|
if (!definition) {
|
|
|
|
definition = defPtr;
|
|
|
|
} else if (definition != defPtr) {
|
|
|
|
return this->reportError<bool>("mismatched topic");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (nullptr != defPtr) {
|
|
|
|
return this->reportError<bool>("already declared topic");
|
|
|
|
}
|
|
|
|
fTopicMap[fullTopic] = definition;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (hasEnd) {
|
|
|
|
if (!this->popParentStack(definition)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// these types are children of parents, but are not in named maps
|
|
|
|
case MarkType::kDefinedBy: {
|
|
|
|
string prefixed(fRoot->fName);
|
|
|
|
const char* start = fChar;
|
2017-09-01 19:51:02 +00:00
|
|
|
string name(start, this->trimmedBracketEnd(fMC) - start);
|
2017-07-28 15:04:54 +00:00
|
|
|
prefixed += "::" + name;
|
|
|
|
this->skipToEndBracket(fMC);
|
|
|
|
const auto leafIter = fRoot->fLeaves.find(prefixed);
|
|
|
|
if (fRoot->fLeaves.end() != leafIter) {
|
|
|
|
this->reportError<bool>("DefinedBy already defined");
|
|
|
|
}
|
|
|
|
definition = &fRoot->fLeaves[prefixed];
|
|
|
|
definition->fParent = fParent;
|
|
|
|
definition->fStart = defStart;
|
|
|
|
definition->fContentStart = start;
|
|
|
|
definition->fName = name;
|
2017-11-27 15:44:06 +00:00
|
|
|
definition->fFiddle = Definition::NormalizedName(name);
|
2017-07-28 15:04:54 +00:00
|
|
|
definition->fContentEnd = fChar;
|
|
|
|
this->skipToEndBracket('\n');
|
|
|
|
definition->fTerminator = fChar;
|
|
|
|
definition->fMarkType = markType;
|
|
|
|
definition->fLineCount = fLineCount;
|
|
|
|
fParent->fChildren.push_back(definition);
|
|
|
|
} break;
|
|
|
|
case MarkType::kDescription:
|
|
|
|
case MarkType::kStdOut:
|
|
|
|
// may be one-liner
|
|
|
|
case MarkType::kBug:
|
|
|
|
case MarkType::kNoExample:
|
|
|
|
case MarkType::kParam:
|
|
|
|
case MarkType::kReturn:
|
|
|
|
case MarkType::kToDo:
|
|
|
|
if (hasEnd) {
|
|
|
|
if (markType == fParent->fMarkType) {
|
|
|
|
definition = fParent;
|
|
|
|
if (MarkType::kBug == markType || MarkType::kReturn == markType
|
|
|
|
|| MarkType::kToDo == markType) {
|
|
|
|
this->skipNoName();
|
|
|
|
}
|
|
|
|
if (!this->popParentStack(fParent)) { // if not one liner, pop
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-31 15:48:27 +00:00
|
|
|
if (MarkType::kParam == markType || MarkType::kReturn == markType) {
|
2017-08-30 12:58:10 +00:00
|
|
|
if (!this->checkParamReturn(definition)) {
|
|
|
|
return false;
|
2017-07-31 15:48:27 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
} else {
|
|
|
|
fMarkup.emplace_front(markType, defStart, fLineCount, fParent);
|
|
|
|
definition = &fMarkup.front();
|
|
|
|
definition->fName = typeNameBuilder[0];
|
2017-08-29 21:36:51 +00:00
|
|
|
definition->fFiddle = fParent->fFiddle;
|
2017-07-28 15:04:54 +00:00
|
|
|
definition->fContentStart = fChar;
|
2017-09-01 19:51:02 +00:00
|
|
|
definition->fContentEnd = this->trimmedBracketEnd(fMC);
|
2017-07-28 15:04:54 +00:00
|
|
|
this->skipToEndBracket(fMC);
|
|
|
|
SkAssertResult(fMC == this->next());
|
|
|
|
SkAssertResult(fMC == this->next());
|
|
|
|
definition->fTerminator = fChar;
|
|
|
|
fParent->fChildren.push_back(definition);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// not one-liners
|
|
|
|
case MarkType::kCode:
|
|
|
|
case MarkType::kDeprecated:
|
|
|
|
case MarkType::kExample:
|
|
|
|
case MarkType::kExperimental:
|
|
|
|
case MarkType::kFormula:
|
|
|
|
case MarkType::kFunction:
|
|
|
|
case MarkType::kLegend:
|
|
|
|
case MarkType::kList:
|
|
|
|
case MarkType::kPrivate:
|
|
|
|
case MarkType::kTable:
|
|
|
|
case MarkType::kTrack:
|
|
|
|
if (hasEnd) {
|
|
|
|
definition = fParent;
|
|
|
|
if (markType != fParent->fMarkType) {
|
|
|
|
return this->reportError<bool>("end element mismatch");
|
|
|
|
} else if (!this->popParentStack(fParent)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (MarkType::kExample == markType) {
|
|
|
|
if (definition->fChildren.size() == 0) {
|
|
|
|
TextParser emptyCheck(definition);
|
|
|
|
if (emptyCheck.eof() || !emptyCheck.skipWhiteSpace()) {
|
2017-10-11 14:37:52 +00:00
|
|
|
return this->reportError<bool>("missing example body");
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-27 15:44:06 +00:00
|
|
|
definition->setWrapper();
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fMarkup.emplace_front(markType, defStart, fLineCount, fParent);
|
|
|
|
definition = &fMarkup.front();
|
|
|
|
definition->fContentStart = fChar;
|
|
|
|
definition->fName = typeNameBuilder[0];
|
|
|
|
definition->fFiddle = fParent->fFiddle;
|
|
|
|
char suffix = '\0';
|
|
|
|
bool tryAgain;
|
|
|
|
do {
|
|
|
|
tryAgain = false;
|
|
|
|
for (const auto& child : fParent->fChildren) {
|
|
|
|
if (child->fFiddle == definition->fFiddle) {
|
|
|
|
if (MarkType::kExample != child->fMarkType) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ('\0' == suffix) {
|
|
|
|
suffix = 'a';
|
|
|
|
} else if (++suffix > 'z') {
|
|
|
|
return reportError<bool>("too many examples");
|
|
|
|
}
|
|
|
|
definition->fFiddle = fParent->fFiddle + '_';
|
|
|
|
definition->fFiddle += suffix;
|
|
|
|
tryAgain = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (tryAgain);
|
|
|
|
this->setAsParent(definition);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// always treated as one-liners (can't detect misuse easily)
|
|
|
|
case MarkType::kAlias:
|
2017-10-09 19:45:33 +00:00
|
|
|
case MarkType::kAnchor:
|
2017-07-28 15:04:54 +00:00
|
|
|
case MarkType::kDefine:
|
|
|
|
case MarkType::kError:
|
|
|
|
case MarkType::kFile:
|
|
|
|
case MarkType::kHeight:
|
|
|
|
case MarkType::kImage:
|
2017-10-26 11:58:48 +00:00
|
|
|
case MarkType::kLiteral:
|
|
|
|
case MarkType::kOutdent:
|
2017-07-28 15:04:54 +00:00
|
|
|
case MarkType::kPlatform:
|
|
|
|
case MarkType::kSeeAlso:
|
|
|
|
case MarkType::kSubstitute:
|
|
|
|
case MarkType::kTime:
|
|
|
|
case MarkType::kVolatile:
|
|
|
|
case MarkType::kWidth:
|
2017-09-21 16:31:06 +00:00
|
|
|
if (hasEnd && MarkType::kAnchor != markType) {
|
2017-07-28 15:04:54 +00:00
|
|
|
return this->reportError<bool>("one liners omit end element");
|
2017-09-21 16:31:06 +00:00
|
|
|
} else if (!hasEnd && MarkType::kAnchor == markType) {
|
|
|
|
return this->reportError<bool>("anchor line must have end element last");
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
fMarkup.emplace_front(markType, defStart, fLineCount, fParent);
|
|
|
|
definition = &fMarkup.front();
|
|
|
|
definition->fName = typeNameBuilder[0];
|
2017-11-27 15:44:06 +00:00
|
|
|
definition->fFiddle = Definition::NormalizedName(typeNameBuilder[0]);
|
2017-07-28 15:04:54 +00:00
|
|
|
definition->fContentStart = fChar;
|
2017-09-01 19:51:02 +00:00
|
|
|
definition->fContentEnd = this->trimmedBracketEnd('\n');
|
2017-07-28 15:04:54 +00:00
|
|
|
definition->fTerminator = this->lineEnd() - 1;
|
|
|
|
fParent->fChildren.push_back(definition);
|
|
|
|
if (MarkType::kAnchor == markType) {
|
|
|
|
this->skipToEndBracket(fMC);
|
|
|
|
fMarkup.emplace_front(MarkType::kLink, fChar, fLineCount, definition);
|
|
|
|
SkAssertResult(fMC == this->next());
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
Definition* link = &fMarkup.front();
|
|
|
|
link->fContentStart = fChar;
|
2017-09-01 19:51:02 +00:00
|
|
|
link->fContentEnd = this->trimmedBracketEnd(fMC);
|
2017-07-28 15:04:54 +00:00
|
|
|
this->skipToEndBracket(fMC);
|
|
|
|
SkAssertResult(fMC == this->next());
|
|
|
|
SkAssertResult(fMC == this->next());
|
|
|
|
link->fTerminator = fChar;
|
|
|
|
definition->fContentEnd = link->fContentEnd;
|
|
|
|
definition->fTerminator = fChar;
|
|
|
|
definition->fChildren.emplace_back(link);
|
|
|
|
} else if (MarkType::kAlias == markType) {
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
const char* start = fChar;
|
|
|
|
this->skipToNonAlphaNum();
|
|
|
|
string alias(start, fChar - start);
|
|
|
|
if (fAliasMap.end() != fAliasMap.find(alias)) {
|
|
|
|
return this->reportError<bool>("duplicate alias");
|
|
|
|
}
|
|
|
|
fAliasMap[alias] = definition;
|
2017-10-09 19:45:33 +00:00
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
break;
|
|
|
|
case MarkType::kExternal:
|
|
|
|
(void) this->collectExternals(); // FIXME: detect errors in external defs?
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SkASSERT(0); // fixme : don't let any types be invisible
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (fParent) {
|
|
|
|
SkASSERT(definition);
|
|
|
|
SkASSERT(definition->fName.length() > 0);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:36:51 +00:00
|
|
|
void BmhParser::reportDuplicates(const Definition& def, const string& dup) const {
|
|
|
|
if (MarkType::kExample == def.fMarkType && dup == def.fFiddle) {
|
|
|
|
TextParser reporter(&def);
|
|
|
|
reporter.reportError("duplicate example name");
|
|
|
|
}
|
|
|
|
for (auto& child : def.fChildren ) {
|
|
|
|
reportDuplicates(*child, dup);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void find_examples(const Definition& def, vector<string>* exampleNames) {
|
|
|
|
if (MarkType::kExample == def.fMarkType) {
|
|
|
|
exampleNames->push_back(def.fFiddle);
|
|
|
|
}
|
|
|
|
for (auto& child : def.fChildren ) {
|
|
|
|
find_examples(*child, exampleNames);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BmhParser::checkExamples() const {
|
|
|
|
vector<string> exampleNames;
|
|
|
|
for (const auto& topic : fTopicMap) {
|
|
|
|
if (topic.second->fParent) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
find_examples(*topic.second, &exampleNames);
|
|
|
|
}
|
|
|
|
std::sort(exampleNames.begin(), exampleNames.end());
|
|
|
|
string* last = nullptr;
|
|
|
|
string reported;
|
|
|
|
bool checkOK = true;
|
|
|
|
for (auto& nameIter : exampleNames) {
|
|
|
|
if (last && *last == nameIter && reported != *last) {
|
|
|
|
reported = *last;
|
|
|
|
SkDebugf("%s\n", reported.c_str());
|
|
|
|
for (const auto& topic : fTopicMap) {
|
|
|
|
if (topic.second->fParent) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
this->reportDuplicates(*topic.second, reported);
|
|
|
|
}
|
|
|
|
checkOK = false;
|
|
|
|
}
|
|
|
|
last = &nameIter;
|
|
|
|
}
|
|
|
|
return checkOK;
|
|
|
|
}
|
|
|
|
|
2017-08-30 12:58:10 +00:00
|
|
|
bool BmhParser::checkParamReturn(const Definition* definition) const {
|
|
|
|
const char* parmEndCheck = definition->fContentEnd;
|
|
|
|
while (parmEndCheck < definition->fTerminator) {
|
|
|
|
if (fMC == parmEndCheck[0]) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (' ' < parmEndCheck[0]) {
|
|
|
|
this->reportError<bool>(
|
|
|
|
"use full end marker on multiline #Param and #Return");
|
|
|
|
}
|
|
|
|
++parmEndCheck;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:04:54 +00:00
|
|
|
bool BmhParser::childOf(MarkType markType) const {
|
|
|
|
auto childError = [this](MarkType markType) -> bool {
|
|
|
|
string errStr = "expected ";
|
|
|
|
errStr += fMaps[(int) markType].fName;
|
|
|
|
errStr += " parent";
|
|
|
|
return this->reportError<bool>(errStr.c_str());
|
|
|
|
};
|
|
|
|
|
|
|
|
if (markType == fParent->fMarkType) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (this->hasEndToken()) {
|
|
|
|
if (!fParent->fParent) {
|
|
|
|
return this->reportError<bool>("expected grandparent");
|
|
|
|
}
|
|
|
|
if (markType == fParent->fParent->fMarkType) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return childError(markType);
|
|
|
|
}
|
|
|
|
|
|
|
|
string BmhParser::className(MarkType markType) {
|
2017-08-29 21:36:51 +00:00
|
|
|
const char* end = this->lineEnd();
|
|
|
|
const char* mc = this->strnchr(fMC, end);
|
|
|
|
string classID;
|
|
|
|
TextParser::Save savePlace(this);
|
|
|
|
this->skipSpace();
|
|
|
|
const char* wordStart = fChar;
|
|
|
|
this->skipToNonAlphaNum();
|
|
|
|
const char* wordEnd = fChar;
|
|
|
|
classID = string(wordStart, wordEnd - wordStart);
|
|
|
|
if (!mc) {
|
|
|
|
savePlace.restore();
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
string builder;
|
|
|
|
const Definition* parent = this->parentSpace();
|
2017-08-29 21:36:51 +00:00
|
|
|
if (parent && parent->fName != classID) {
|
2017-07-28 15:04:54 +00:00
|
|
|
builder += parent->fName;
|
|
|
|
}
|
|
|
|
if (mc) {
|
|
|
|
if (mc + 1 < fEnd && fMC == mc[1]) { // if ##
|
|
|
|
if (markType != fParent->fMarkType) {
|
|
|
|
return this->reportError<string>("unbalanced method");
|
|
|
|
}
|
2017-08-29 21:36:51 +00:00
|
|
|
if (builder.length() > 0 && classID.size() > 0) {
|
2017-07-28 15:04:54 +00:00
|
|
|
if (builder != fParent->fName) {
|
|
|
|
builder += "::";
|
2017-08-29 21:36:51 +00:00
|
|
|
builder += classID;
|
2017-07-28 15:04:54 +00:00
|
|
|
if (builder != fParent->fName) {
|
|
|
|
return this->reportError<string>("name mismatch");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->skipLine();
|
|
|
|
return fParent->fName;
|
|
|
|
}
|
|
|
|
fChar = mc;
|
|
|
|
this->next();
|
|
|
|
}
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
if (MarkType::kEnum == markType && fChar >= end) {
|
|
|
|
fAnonymous = true;
|
|
|
|
builder += "::_anonymous";
|
|
|
|
return uniqueRootName(builder, markType);
|
|
|
|
}
|
|
|
|
builder = this->word(builder, "::");
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BmhParser::collectExternals() {
|
|
|
|
do {
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
if (this->eof()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fMC == this->peek()) {
|
|
|
|
this->next();
|
|
|
|
if (this->eof()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fMC == this->peek()) {
|
|
|
|
this->skipLine();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (' ' >= this->peek()) {
|
|
|
|
this->skipLine();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (this->startsWith(fMaps[(int) MarkType::kExternal].fName)) {
|
|
|
|
this->skipToNonAlphaNum();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->skipToAlpha();
|
|
|
|
const char* wordStart = fChar;
|
|
|
|
this->skipToNonAlphaNum();
|
|
|
|
if (fChar - wordStart > 0) {
|
|
|
|
fExternals.emplace_front(MarkType::kExternal, wordStart, fChar, fLineCount, fParent);
|
|
|
|
RootDefinition* definition = &fExternals.front();
|
|
|
|
definition->fFileName = fFileName;
|
|
|
|
definition->fName = string(wordStart ,fChar - wordStart);
|
2017-11-27 15:44:06 +00:00
|
|
|
definition->fFiddle = Definition::NormalizedName(definition->fName);
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
} while (!this->eof());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-08-29 21:36:51 +00:00
|
|
|
static bool dump_examples(FILE* fiddleOut, const Definition& def, bool* continuation) {
|
|
|
|
if (MarkType::kExample == def.fMarkType) {
|
|
|
|
string result;
|
2017-10-31 19:44:45 +00:00
|
|
|
if (!def.exampleToScript(&result, Definition::ExampleOptions::kAll)) {
|
2017-08-29 21:36:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (result.length() > 0) {
|
2017-10-31 19:44:45 +00:00
|
|
|
result += "\n";
|
|
|
|
result += "}";
|
2017-08-29 21:36:51 +00:00
|
|
|
if (*continuation) {
|
|
|
|
fprintf(fiddleOut, ",\n");
|
|
|
|
} else {
|
|
|
|
*continuation = true;
|
|
|
|
}
|
|
|
|
fprintf(fiddleOut, "%s", result.c_str());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for (auto& child : def.fChildren ) {
|
|
|
|
if (!dump_examples(fiddleOut, *child, continuation)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BmhParser::dumpExamples(const char* fiddleJsonFileName) const {
|
|
|
|
FILE* fiddleOut = fopen(fiddleJsonFileName, "wb");
|
|
|
|
if (!fiddleOut) {
|
|
|
|
SkDebugf("could not open output file %s\n", fiddleJsonFileName);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fprintf(fiddleOut, "{\n");
|
|
|
|
bool continuation = false;
|
|
|
|
for (const auto& topic : fTopicMap) {
|
|
|
|
if (topic.second->fParent) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
dump_examples(fiddleOut, *topic.second, &continuation);
|
|
|
|
}
|
|
|
|
fprintf(fiddleOut, "\n}\n");
|
|
|
|
fclose(fiddleOut);
|
2017-09-14 15:25:39 +00:00
|
|
|
SkDebugf("wrote %s\n", fiddleJsonFileName);
|
2017-08-29 21:36:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:04:54 +00:00
|
|
|
int BmhParser::endHashCount() const {
|
|
|
|
const char* end = fLine + this->lineLength();
|
|
|
|
int count = 0;
|
|
|
|
while (fLine < end && fMC == *--end) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2017-09-01 19:51:02 +00:00
|
|
|
bool BmhParser::endTableColumn(const char* end, const char* terminator) {
|
|
|
|
if (!this->popParentStack(fParent)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fWorkingColumn->fContentEnd = end;
|
|
|
|
fWorkingColumn->fTerminator = terminator;
|
|
|
|
fColStart = fChar - 1;
|
|
|
|
this->skipSpace();
|
|
|
|
fTableState = TableState::kColumnStart;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-09 19:45:33 +00:00
|
|
|
// FIXME: some examples may produce different output on different platforms
|
2017-07-28 15:04:54 +00:00
|
|
|
// if the text output can be different, think of how to author that
|
|
|
|
|
|
|
|
bool BmhParser::findDefinitions() {
|
|
|
|
bool lineStart = true;
|
2017-09-01 19:51:02 +00:00
|
|
|
const char* lastChar = nullptr;
|
|
|
|
const char* lastMC = nullptr;
|
2017-07-28 15:04:54 +00:00
|
|
|
fParent = nullptr;
|
|
|
|
while (!this->eof()) {
|
|
|
|
if (this->peek() == fMC) {
|
2017-09-01 19:51:02 +00:00
|
|
|
lastMC = fChar;
|
2017-07-28 15:04:54 +00:00
|
|
|
this->next();
|
|
|
|
if (this->peek() == fMC) {
|
|
|
|
this->next();
|
|
|
|
if (!lineStart && ' ' < this->peek()) {
|
|
|
|
return this->reportError<bool>("expected definition");
|
|
|
|
}
|
|
|
|
if (this->peek() != fMC) {
|
2017-09-01 19:51:02 +00:00
|
|
|
if (MarkType::kColumn == fParent->fMarkType) {
|
|
|
|
SkASSERT(TableState::kColumnEnd == fTableState);
|
|
|
|
if (!this->endTableColumn(lastChar, lastMC)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
SkASSERT(fRow);
|
|
|
|
if (!this->popParentStack(fParent)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fRow->fContentEnd = fWorkingColumn->fContentEnd;
|
|
|
|
fWorkingColumn = nullptr;
|
|
|
|
fRow = nullptr;
|
|
|
|
fTableState = TableState::kNone;
|
|
|
|
} else {
|
|
|
|
vector<string> parentName;
|
|
|
|
parentName.push_back(fParent->fName);
|
|
|
|
if (!this->addDefinition(fChar - 1, true, fParent->fMarkType, parentName)) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
SkAssertResult(this->next() == fMC);
|
|
|
|
fMC = this->next(); // change markup character
|
|
|
|
if (' ' >= fMC) {
|
|
|
|
return this->reportError<bool>("illegal markup character");
|
|
|
|
}
|
|
|
|
fMarkup.emplace_front(MarkType::kMarkChar, fChar - 1, fLineCount, fParent);
|
|
|
|
Definition* markChar = &fMarkup.front();
|
|
|
|
markChar->fContentStart = fChar - 1;
|
|
|
|
this->skipToEndBracket('\n');
|
|
|
|
markChar->fContentEnd = fChar;
|
|
|
|
markChar->fTerminator = fChar;
|
|
|
|
fParent->fChildren.push_back(markChar);
|
|
|
|
}
|
|
|
|
} else if (this->peek() >= 'A' && this->peek() <= 'Z') {
|
|
|
|
const char* defStart = fChar - 1;
|
|
|
|
MarkType markType = this->getMarkType(MarkLookup::kRequire);
|
|
|
|
bool hasEnd = this->hasEndToken();
|
|
|
|
if (!hasEnd) {
|
|
|
|
MarkType parentType = fParent ? fParent->fMarkType : MarkType::kRoot;
|
|
|
|
uint64_t parentMask = fMaps[(int) markType].fParentMask;
|
|
|
|
if (parentMask && !(parentMask & (1LL << (int) parentType))) {
|
|
|
|
return this->reportError<bool>("invalid parent");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!this->skipName(fMaps[(int) markType].fName)) {
|
|
|
|
return this->reportError<bool>("illegal markup character");
|
|
|
|
}
|
|
|
|
if (!this->skipSpace()) {
|
|
|
|
return this->reportError<bool>("unexpected end");
|
|
|
|
}
|
|
|
|
bool expectEnd = true;
|
|
|
|
vector<string> typeNameBuilder = this->typeName(markType, &expectEnd);
|
|
|
|
if (fCloned && MarkType::kMethod != markType && MarkType::kExample != markType
|
|
|
|
&& !fAnonymous) {
|
|
|
|
return this->reportError<bool>("duplicate name");
|
|
|
|
}
|
|
|
|
if (hasEnd && expectEnd) {
|
|
|
|
SkASSERT(fMC != this->peek());
|
|
|
|
}
|
|
|
|
if (!this->addDefinition(defStart, hasEnd, markType, typeNameBuilder)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
} else if (this->peek() == ' ') {
|
|
|
|
if (!fParent || (MarkType::kTable != fParent->fMarkType
|
|
|
|
&& MarkType::kLegend != fParent->fMarkType
|
|
|
|
&& MarkType::kList != fParent->fMarkType)) {
|
|
|
|
int endHashes = this->endHashCount();
|
2017-09-01 19:51:02 +00:00
|
|
|
if (endHashes <= 1) {
|
2017-07-28 15:04:54 +00:00
|
|
|
if (fParent) {
|
2017-09-01 19:51:02 +00:00
|
|
|
if (TableState::kColumnEnd == fTableState) {
|
|
|
|
if (!this->endTableColumn(lastChar, lastMC)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else { // one line comment
|
|
|
|
fMarkup.emplace_front(MarkType::kComment, fChar - 1, fLineCount,
|
|
|
|
fParent);
|
|
|
|
Definition* comment = &fMarkup.front();
|
|
|
|
comment->fContentStart = fChar - 1;
|
|
|
|
this->skipToEndBracket('\n');
|
|
|
|
comment->fContentEnd = fChar;
|
|
|
|
comment->fTerminator = fChar;
|
|
|
|
fParent->fChildren.push_back(comment);
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
} else {
|
|
|
|
fChar = fLine + this->lineLength() - 1;
|
|
|
|
}
|
|
|
|
} else { // table row
|
|
|
|
if (2 != endHashes) {
|
|
|
|
string errorStr = "expect ";
|
|
|
|
errorStr += fMC;
|
|
|
|
errorStr += fMC;
|
|
|
|
return this->reportError<bool>(errorStr.c_str());
|
|
|
|
}
|
|
|
|
if (!fParent || MarkType::kTable != fParent->fMarkType) {
|
|
|
|
return this->reportError<bool>("missing table");
|
|
|
|
}
|
|
|
|
}
|
2017-09-01 19:51:02 +00:00
|
|
|
} else if (TableState::kNone == fTableState) {
|
2017-07-28 15:04:54 +00:00
|
|
|
// fixme? no nested tables for now
|
2017-09-01 19:51:02 +00:00
|
|
|
fColStart = fChar - 1;
|
|
|
|
fMarkup.emplace_front(MarkType::kRow, fColStart, fLineCount, fParent);
|
|
|
|
fRow = &fMarkup.front();
|
|
|
|
fRow->fName = fParent->fName;
|
2017-07-28 15:04:54 +00:00
|
|
|
this->skipWhiteSpace();
|
2017-09-01 19:51:02 +00:00
|
|
|
fRow->fContentStart = fChar;
|
|
|
|
this->setAsParent(fRow);
|
|
|
|
fTableState = TableState::kColumnStart;
|
|
|
|
}
|
|
|
|
if (TableState::kColumnStart == fTableState) {
|
|
|
|
fMarkup.emplace_front(MarkType::kColumn, fColStart, fLineCount, fParent);
|
|
|
|
fWorkingColumn = &fMarkup.front();
|
|
|
|
fWorkingColumn->fName = fParent->fName;
|
|
|
|
fWorkingColumn->fContentStart = fChar;
|
|
|
|
this->setAsParent(fWorkingColumn);
|
|
|
|
fTableState = TableState::kColumnEnd;
|
|
|
|
continue;
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-09-01 19:51:02 +00:00
|
|
|
char nextChar = this->next();
|
|
|
|
lineStart = nextChar == '\n';
|
|
|
|
if (' ' < nextChar) {
|
|
|
|
lastChar = fChar;
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
if (fParent) {
|
2017-11-27 15:44:06 +00:00
|
|
|
return fParent->reportError<bool>("mismatched end");
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
MarkType BmhParser::getMarkType(MarkLookup lookup) const {
|
|
|
|
for (int index = 0; index <= Last_MarkType; ++index) {
|
|
|
|
int typeLen = strlen(fMaps[index].fName);
|
|
|
|
if (typeLen == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fChar + typeLen >= fEnd || fChar[typeLen] > ' ') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int chCompare = strncmp(fChar, fMaps[index].fName, typeLen);
|
|
|
|
if (chCompare < 0) {
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (chCompare == 0) {
|
|
|
|
return (MarkType) index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fail:
|
|
|
|
if (MarkLookup::kRequire == lookup) {
|
|
|
|
return this->reportError<MarkType>("unknown mark type");
|
|
|
|
}
|
|
|
|
return MarkType::kNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HackParser::hackFiles() {
|
|
|
|
string filename(fFileName);
|
|
|
|
size_t len = filename.length() - 1;
|
|
|
|
while (len > 0 && (isalnum(filename[len]) || '_' == filename[len] || '.' == filename[len])) {
|
|
|
|
--len;
|
|
|
|
}
|
|
|
|
filename = filename.substr(len + 1);
|
|
|
|
// remove trailing period from #Param and #Return
|
|
|
|
FILE* out = fopen(filename.c_str(), "wb");
|
|
|
|
if (!out) {
|
|
|
|
SkDebugf("could not open output file %s\n", filename.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const char* start = fStart;
|
|
|
|
do {
|
|
|
|
const char* match = this->strnchr('#', fEnd);
|
|
|
|
if (!match) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
this->skipTo(match);
|
|
|
|
this->next();
|
|
|
|
if (!this->startsWith("Param") && !this->startsWith("Return")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const char* end = this->strnstr("##", fEnd);
|
|
|
|
while (true) {
|
|
|
|
TextParser::Save lastPeriod(this);
|
|
|
|
this->next();
|
|
|
|
if (!this->skipToEndBracket('.', end)) {
|
|
|
|
lastPeriod.restore();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ('.' == this->peek()) {
|
|
|
|
fprintf(out, "%.*s", (int) (fChar - start), start);
|
|
|
|
this->next();
|
|
|
|
start = fChar;
|
|
|
|
}
|
|
|
|
} while (!this->eof());
|
|
|
|
fprintf(out, "%.*s", (int) (fEnd - start), start);
|
|
|
|
fclose(out);
|
2017-09-14 15:25:39 +00:00
|
|
|
SkDebugf("wrote %s\n", filename.c_str());
|
2017-07-28 15:04:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BmhParser::hasEndToken() const {
|
|
|
|
const char* last = fLine + this->lineLength();
|
|
|
|
while (last > fLine && ' ' >= *--last)
|
|
|
|
;
|
|
|
|
if (--last < fLine) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return last[0] == fMC && last[1] == fMC;
|
|
|
|
}
|
|
|
|
|
|
|
|
string BmhParser::memberName() {
|
|
|
|
const char* wordStart;
|
|
|
|
const char* prefixes[] = { "static", "const" };
|
|
|
|
do {
|
|
|
|
this->skipSpace();
|
|
|
|
wordStart = fChar;
|
|
|
|
this->skipToNonAlphaNum();
|
|
|
|
} while (this->anyOf(wordStart, prefixes, SK_ARRAY_COUNT(prefixes)));
|
|
|
|
if ('*' == this->peek()) {
|
|
|
|
this->next();
|
|
|
|
}
|
|
|
|
return this->className(MarkType::kMember);
|
|
|
|
}
|
|
|
|
|
|
|
|
string BmhParser::methodName() {
|
|
|
|
if (this->hasEndToken()) {
|
|
|
|
if (!fParent || !fParent->fName.length()) {
|
|
|
|
return this->reportError<string>("missing parent method name");
|
|
|
|
}
|
|
|
|
SkASSERT(fMC == this->peek());
|
|
|
|
this->next();
|
|
|
|
SkASSERT(fMC == this->peek());
|
|
|
|
this->next();
|
|
|
|
SkASSERT(fMC != this->peek());
|
|
|
|
return fParent->fName;
|
|
|
|
}
|
|
|
|
string builder;
|
|
|
|
const char* end = this->lineEnd();
|
|
|
|
const char* paren = this->strnchr('(', end);
|
|
|
|
if (!paren) {
|
|
|
|
return this->reportError<string>("missing method name and reference");
|
|
|
|
}
|
|
|
|
const char* nameStart = paren;
|
|
|
|
char ch;
|
|
|
|
bool expectOperator = false;
|
|
|
|
bool isConstructor = false;
|
|
|
|
const char* nameEnd = nullptr;
|
|
|
|
while (nameStart > fChar && ' ' != (ch = *--nameStart)) {
|
|
|
|
if (!isalnum(ch) && '_' != ch) {
|
|
|
|
if (nameEnd) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
expectOperator = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!nameEnd) {
|
|
|
|
nameEnd = nameStart + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!nameEnd) {
|
|
|
|
return this->reportError<string>("unexpected method name char");
|
|
|
|
}
|
|
|
|
if (' ' == nameStart[0]) {
|
|
|
|
++nameStart;
|
|
|
|
}
|
|
|
|
if (nameEnd <= nameStart) {
|
|
|
|
return this->reportError<string>("missing method name");
|
|
|
|
}
|
|
|
|
if (nameStart >= paren) {
|
|
|
|
return this->reportError<string>("missing method name length");
|
|
|
|
}
|
|
|
|
string name(nameStart, nameEnd - nameStart);
|
|
|
|
bool allLower = true;
|
|
|
|
for (int index = 0; index < (int) (nameEnd - nameStart); ++index) {
|
|
|
|
if (!islower(nameStart[index])) {
|
|
|
|
allLower = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (expectOperator && "operator" != name) {
|
|
|
|
return this->reportError<string>("expected operator");
|
|
|
|
}
|
|
|
|
const Definition* parent = this->parentSpace();
|
|
|
|
if (parent && parent->fName.length() > 0) {
|
|
|
|
if (parent->fName == name) {
|
|
|
|
isConstructor = true;
|
|
|
|
} else if ('~' == name[0]) {
|
|
|
|
if (parent->fName != name.substr(1)) {
|
|
|
|
return this->reportError<string>("expected destructor");
|
|
|
|
}
|
|
|
|
isConstructor = true;
|
|
|
|
}
|
|
|
|
builder = parent->fName + "::";
|
2017-10-09 19:45:33 +00:00
|
|
|
}
|
2017-11-27 15:44:06 +00:00
|
|
|
bool addConst = false;
|
2017-07-28 15:04:54 +00:00
|
|
|
if (isConstructor || expectOperator) {
|
|
|
|
paren = this->strnchr(')', end) + 1;
|
2017-11-27 15:44:06 +00:00
|
|
|
TextParser::Save saveState(this);
|
|
|
|
this->skipTo(paren);
|
|
|
|
if (this->skipExact("_const")) {
|
|
|
|
addConst = true;
|
|
|
|
}
|
|
|
|
saveState.restore();
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
builder.append(nameStart, paren - nameStart);
|
2017-11-27 15:44:06 +00:00
|
|
|
if (addConst) {
|
|
|
|
builder.append("_const");
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
if (!expectOperator && allLower) {
|
|
|
|
builder.append("()");
|
|
|
|
}
|
|
|
|
int parens = 0;
|
|
|
|
while (fChar < end || parens > 0) {
|
|
|
|
if ('(' == this->peek()) {
|
|
|
|
++parens;
|
|
|
|
} else if (')' == this->peek()) {
|
|
|
|
--parens;
|
|
|
|
}
|
|
|
|
this->next();
|
|
|
|
}
|
|
|
|
TextParser::Save saveState(this);
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
if (this->startsWith("const")) {
|
|
|
|
this->skipName("const");
|
|
|
|
} else {
|
|
|
|
saveState.restore();
|
|
|
|
}
|
|
|
|
// this->next();
|
|
|
|
return uniqueRootName(builder, MarkType::kMethod);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Definition* BmhParser::parentSpace() const {
|
|
|
|
Definition* parent = nullptr;
|
|
|
|
Definition* test = fParent;
|
|
|
|
while (test) {
|
|
|
|
if (MarkType::kClass == test->fMarkType ||
|
|
|
|
MarkType::kEnumClass == test->fMarkType ||
|
|
|
|
MarkType::kStruct == test->fMarkType) {
|
|
|
|
parent = test;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
test = test->fParent;
|
|
|
|
}
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BmhParser::popParentStack(Definition* definition) {
|
|
|
|
if (!fParent) {
|
|
|
|
return this->reportError<bool>("missing parent");
|
|
|
|
}
|
|
|
|
if (definition != fParent) {
|
|
|
|
return this->reportError<bool>("definition end is not parent");
|
|
|
|
}
|
|
|
|
if (!definition->fStart) {
|
|
|
|
return this->reportError<bool>("definition missing start");
|
|
|
|
}
|
|
|
|
if (definition->fContentEnd) {
|
|
|
|
return this->reportError<bool>("definition already ended");
|
|
|
|
}
|
|
|
|
definition->fContentEnd = fLine - 1;
|
|
|
|
definition->fTerminator = fChar;
|
|
|
|
fParent = definition->fParent;
|
|
|
|
if (!fParent || (MarkType::kTopic == fParent->fMarkType && !fParent->fParent)) {
|
|
|
|
fRoot = nullptr;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextParser::TextParser(const Definition* definition) :
|
2017-10-09 19:45:33 +00:00
|
|
|
TextParser(definition->fFileName, definition->fContentStart, definition->fContentEnd,
|
2017-07-28 15:04:54 +00:00
|
|
|
definition->fLineCount) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextParser::reportError(const char* errorStr) const {
|
|
|
|
this->reportWarning(errorStr);
|
|
|
|
SkDebugf(""); // convenient place to set a breakpoint
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextParser::reportWarning(const char* errorStr) const {
|
|
|
|
TextParser err(fFileName, fLine, fEnd, fLineCount);
|
|
|
|
size_t lineLen = this->lineLength();
|
|
|
|
ptrdiff_t spaces = fChar - fLine;
|
|
|
|
while (spaces > 0 && (size_t) spaces > lineLen) {
|
|
|
|
++err.fLineCount;
|
|
|
|
err.fLine += lineLen;
|
|
|
|
spaces -= lineLen;
|
|
|
|
lineLen = err.lineLength();
|
|
|
|
}
|
2017-08-03 21:14:08 +00:00
|
|
|
SkDebugf("\n%s(%zd): error: %s\n", fFileName.c_str(), err.fLineCount, errorStr);
|
2017-07-28 15:04:54 +00:00
|
|
|
if (0 == lineLen) {
|
|
|
|
SkDebugf("[blank line]\n");
|
|
|
|
} else {
|
|
|
|
while (lineLen > 0 && '\n' == err.fLine[lineLen - 1]) {
|
|
|
|
--lineLen;
|
|
|
|
}
|
|
|
|
SkDebugf("%.*s\n", (int) lineLen, err.fLine);
|
|
|
|
SkDebugf("%*s^\n", (int) spaces, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-11 21:03:17 +00:00
|
|
|
string TextParser::typedefName() {
|
|
|
|
// look for typedef as one of three forms:
|
|
|
|
// typedef return-type (*NAME)(params);
|
|
|
|
// typedef alias NAME;
|
|
|
|
// typedef std::function<alias> NAME;
|
|
|
|
string builder;
|
|
|
|
const char* end = this->doubleLF();
|
|
|
|
if (!end) {
|
|
|
|
end = fEnd;
|
|
|
|
}
|
|
|
|
const char* altEnd = this->strnstr("#Typedef ##", end);
|
|
|
|
if (altEnd) {
|
|
|
|
end = this->strnchr('\n', end);
|
|
|
|
}
|
|
|
|
if (!end) {
|
|
|
|
return this->reportError<string>("missing typedef std::function end bracket >");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->startsWith("std::function")) {
|
|
|
|
if (!this->skipToEndBracket('>')) {
|
|
|
|
return this->reportError<string>("missing typedef std::function end bracket >");
|
|
|
|
}
|
|
|
|
this->next();
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
builder += string(fChar, end - fChar);
|
|
|
|
} else {
|
|
|
|
const char* paren = this->strnchr('(', end);
|
|
|
|
if (!paren) {
|
|
|
|
const char* lastWord = nullptr;
|
|
|
|
do {
|
|
|
|
this->skipToWhiteSpace();
|
|
|
|
if (fChar < end && isspace(fChar[0])) {
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
lastWord = fChar;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (true);
|
|
|
|
if (!lastWord) {
|
|
|
|
return this->reportError<string>("missing typedef name");
|
|
|
|
}
|
|
|
|
builder += string(lastWord, end - lastWord);
|
|
|
|
} else {
|
|
|
|
this->skipTo(paren);
|
|
|
|
this->next();
|
|
|
|
if ('*' != this->next()) {
|
|
|
|
return this->reportError<string>("missing typedef function asterisk");
|
|
|
|
}
|
|
|
|
const char* nameStart = fChar;
|
|
|
|
if (!this->skipToEndBracket(')')) {
|
|
|
|
return this->reportError<string>("missing typedef function )");
|
|
|
|
}
|
|
|
|
builder += string(nameStart, fChar - nameStart);
|
|
|
|
if (!this->skipToEndBracket('(')) {
|
|
|
|
return this->reportError<string>("missing typedef params (");
|
|
|
|
}
|
|
|
|
if (! this->skipToEndBracket(')')) {
|
|
|
|
return this->reportError<string>("missing typedef params )");
|
|
|
|
}
|
|
|
|
this->skipTo(end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:04:54 +00:00
|
|
|
bool BmhParser::skipNoName() {
|
|
|
|
if ('\n' == this->peek()) {
|
|
|
|
this->next();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
if (fMC != this->peek()) {
|
|
|
|
return this->reportError<bool>("expected end mark");
|
|
|
|
}
|
|
|
|
this->next();
|
|
|
|
if (fMC != this->peek()) {
|
|
|
|
return this->reportError<bool>("expected end mark");
|
|
|
|
}
|
|
|
|
this->next();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BmhParser::skipToDefinitionEnd(MarkType markType) {
|
|
|
|
if (this->eof()) {
|
|
|
|
return this->reportError<bool>("missing end");
|
|
|
|
}
|
|
|
|
const char* start = fLine;
|
|
|
|
int startLineCount = fLineCount;
|
|
|
|
int stack = 1;
|
|
|
|
ptrdiff_t lineLen;
|
|
|
|
bool foundEnd = false;
|
|
|
|
do {
|
|
|
|
lineLen = this->lineLength();
|
|
|
|
if (fMC != *fChar++) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fMC == *fChar) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (' ' == *fChar) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MarkType nextType = this->getMarkType(MarkLookup::kAllowUnknown);
|
|
|
|
if (markType != nextType) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
bool hasEnd = this->hasEndToken();
|
|
|
|
if (hasEnd) {
|
|
|
|
if (!--stack) {
|
|
|
|
foundEnd = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
++stack;
|
|
|
|
}
|
|
|
|
} while ((void) ++fLineCount, (void) (fLine += lineLen), (void) (fChar = fLine),
|
|
|
|
!this->eof() && !foundEnd);
|
|
|
|
if (foundEnd) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
fLineCount = startLineCount;
|
|
|
|
fLine = start;
|
|
|
|
fChar = start;
|
|
|
|
return this->reportError<bool>("unbalanced stack");
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<string> BmhParser::topicName() {
|
|
|
|
vector<string> result;
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
const char* lineEnd = fLine + this->lineLength();
|
|
|
|
const char* nameStart = fChar;
|
|
|
|
while (fChar < lineEnd) {
|
|
|
|
char ch = this->next();
|
|
|
|
SkASSERT(',' != ch);
|
|
|
|
if ('\n' == ch) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fMC == ch) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fChar - 1 > nameStart) {
|
|
|
|
string builder(nameStart, fChar - nameStart - 1);
|
|
|
|
trim_start_end(builder);
|
|
|
|
result.push_back(builder);
|
|
|
|
}
|
|
|
|
if (fChar < lineEnd && fMC == this->peek()) {
|
|
|
|
this->next();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
// typeName parsing rules depend on mark type
|
|
|
|
vector<string> BmhParser::typeName(MarkType markType, bool* checkEnd) {
|
|
|
|
fAnonymous = false;
|
|
|
|
fCloned = false;
|
|
|
|
vector<string> result;
|
|
|
|
string builder;
|
|
|
|
if (fParent) {
|
|
|
|
builder = fParent->fName;
|
|
|
|
}
|
|
|
|
switch (markType) {
|
|
|
|
case MarkType::kEnum:
|
|
|
|
// enums may be nameless
|
|
|
|
case MarkType::kConst:
|
|
|
|
case MarkType::kEnumClass:
|
|
|
|
case MarkType::kClass:
|
|
|
|
case MarkType::kStruct:
|
|
|
|
// expect name
|
|
|
|
builder = this->className(markType);
|
|
|
|
break;
|
|
|
|
case MarkType::kExample:
|
|
|
|
// check to see if one already exists -- if so, number this one
|
|
|
|
builder = this->uniqueName(string(), markType);
|
|
|
|
this->skipNoName();
|
|
|
|
break;
|
|
|
|
case MarkType::kCode:
|
|
|
|
case MarkType::kDeprecated:
|
|
|
|
case MarkType::kDescription:
|
|
|
|
case MarkType::kDoxygen:
|
|
|
|
case MarkType::kExperimental:
|
|
|
|
case MarkType::kExternal:
|
|
|
|
case MarkType::kFormula:
|
|
|
|
case MarkType::kFunction:
|
|
|
|
case MarkType::kLegend:
|
|
|
|
case MarkType::kList:
|
|
|
|
case MarkType::kNoExample:
|
|
|
|
case MarkType::kPrivate:
|
|
|
|
case MarkType::kTrack:
|
|
|
|
this->skipNoName();
|
|
|
|
break;
|
|
|
|
case MarkType::kAlias:
|
2017-10-09 19:45:33 +00:00
|
|
|
case MarkType::kAnchor:
|
2017-07-28 15:04:54 +00:00
|
|
|
case MarkType::kBug: // fixme: expect number
|
|
|
|
case MarkType::kDefine:
|
|
|
|
case MarkType::kDefinedBy:
|
|
|
|
case MarkType::kError:
|
|
|
|
case MarkType::kFile:
|
|
|
|
case MarkType::kHeight:
|
|
|
|
case MarkType::kImage:
|
2017-10-26 11:58:48 +00:00
|
|
|
case MarkType::kLiteral:
|
|
|
|
case MarkType::kOutdent:
|
2017-07-28 15:04:54 +00:00
|
|
|
case MarkType::kPlatform:
|
|
|
|
case MarkType::kReturn:
|
|
|
|
case MarkType::kSeeAlso:
|
|
|
|
case MarkType::kSubstitute:
|
|
|
|
case MarkType::kTime:
|
|
|
|
case MarkType::kToDo:
|
|
|
|
case MarkType::kVolatile:
|
|
|
|
case MarkType::kWidth:
|
|
|
|
*checkEnd = false; // no name, may have text body
|
|
|
|
break;
|
|
|
|
case MarkType::kStdOut:
|
|
|
|
this->skipNoName();
|
|
|
|
break; // unnamed
|
|
|
|
case MarkType::kMember:
|
|
|
|
builder = this->memberName();
|
|
|
|
break;
|
|
|
|
case MarkType::kMethod:
|
|
|
|
builder = this->methodName();
|
|
|
|
break;
|
2017-11-27 15:44:06 +00:00
|
|
|
case MarkType::kTypedef:
|
|
|
|
builder = this->typedefName();
|
|
|
|
break;
|
2017-07-28 15:04:54 +00:00
|
|
|
case MarkType::kParam:
|
|
|
|
// fixme: expect camelCase
|
|
|
|
builder = this->word("", "");
|
|
|
|
this->skipSpace();
|
|
|
|
*checkEnd = false;
|
|
|
|
break;
|
|
|
|
case MarkType::kTable:
|
|
|
|
this->skipNoName();
|
|
|
|
break; // unnamed
|
|
|
|
case MarkType::kSubtopic:
|
|
|
|
case MarkType::kTopic:
|
|
|
|
// fixme: start with cap, allow space, hyphen, stop on comma
|
|
|
|
// one topic can have multiple type names delineated by comma
|
|
|
|
result = this->topicName();
|
|
|
|
if (result.size() == 0 && this->hasEndToken()) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
default:
|
|
|
|
// fixme: don't allow silent failures
|
|
|
|
SkASSERT(0);
|
|
|
|
}
|
|
|
|
result.push_back(builder);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-11-27 15:44:06 +00:00
|
|
|
string BmhParser::typedefName() {
|
|
|
|
if (this->hasEndToken()) {
|
|
|
|
if (!fParent || !fParent->fName.length()) {
|
|
|
|
return this->reportError<string>("missing parent typedef name");
|
|
|
|
}
|
|
|
|
SkASSERT(fMC == this->peek());
|
|
|
|
this->next();
|
|
|
|
SkASSERT(fMC == this->peek());
|
|
|
|
this->next();
|
|
|
|
SkASSERT(fMC != this->peek());
|
|
|
|
return fParent->fName;
|
|
|
|
}
|
|
|
|
string builder;
|
2017-12-11 21:03:17 +00:00
|
|
|
const Definition* parent = this->parentSpace();
|
|
|
|
if (parent && parent->fName.length() > 0) {
|
|
|
|
builder = parent->fName + "::";
|
2017-11-27 15:44:06 +00:00
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
builder += TextParser::typedefName();
|
2017-11-27 15:44:06 +00:00
|
|
|
return uniqueRootName(builder, MarkType::kTypedef);
|
|
|
|
}
|
|
|
|
|
2017-07-28 15:04:54 +00:00
|
|
|
string BmhParser::uniqueName(const string& base, MarkType markType) {
|
|
|
|
string builder(base);
|
|
|
|
if (!builder.length()) {
|
|
|
|
builder = fParent->fName;
|
|
|
|
}
|
|
|
|
if (!fParent) {
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
int number = 2;
|
|
|
|
string numBuilder(builder);
|
|
|
|
do {
|
|
|
|
for (const auto& iter : fParent->fChildren) {
|
|
|
|
if (markType == iter->fMarkType) {
|
|
|
|
if (iter->fName == numBuilder) {
|
|
|
|
fCloned = true;
|
|
|
|
numBuilder = builder + '_' + to_string(number);
|
|
|
|
goto tryNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
tryNext: ;
|
|
|
|
} while (++number);
|
|
|
|
return numBuilder;
|
|
|
|
}
|
|
|
|
|
|
|
|
string BmhParser::uniqueRootName(const string& base, MarkType markType) {
|
|
|
|
auto checkName = [markType](const Definition& def, const string& numBuilder) -> bool {
|
|
|
|
return markType == def.fMarkType && def.fName == numBuilder;
|
|
|
|
};
|
|
|
|
|
|
|
|
string builder(base);
|
|
|
|
if (!builder.length()) {
|
|
|
|
builder = fParent->fName;
|
|
|
|
}
|
|
|
|
int number = 2;
|
|
|
|
string numBuilder(builder);
|
|
|
|
Definition* cloned = nullptr;
|
|
|
|
do {
|
|
|
|
if (fRoot) {
|
|
|
|
for (auto& iter : fRoot->fBranches) {
|
|
|
|
if (checkName(*iter.second, numBuilder)) {
|
|
|
|
cloned = iter.second;
|
|
|
|
goto tryNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (auto& iter : fRoot->fLeaves) {
|
|
|
|
if (checkName(iter.second, numBuilder)) {
|
|
|
|
cloned = &iter.second;
|
|
|
|
goto tryNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (fParent) {
|
|
|
|
for (auto& iter : fParent->fChildren) {
|
|
|
|
if (checkName(*iter, numBuilder)) {
|
|
|
|
cloned = &*iter;
|
|
|
|
goto tryNext;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
tryNext: ;
|
|
|
|
if ("()" == builder.substr(builder.length() - 2)) {
|
|
|
|
builder = builder.substr(0, builder.length() - 2);
|
|
|
|
}
|
|
|
|
if (MarkType::kMethod == markType) {
|
|
|
|
cloned->fCloned = true;
|
|
|
|
}
|
|
|
|
fCloned = true;
|
|
|
|
numBuilder = builder + '_' + to_string(number);
|
|
|
|
} while (++number);
|
|
|
|
return numBuilder;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BmhParser::validate() const {
|
|
|
|
for (int index = 0; index <= (int) Last_MarkType; ++index) {
|
|
|
|
SkASSERT(fMaps[index].fMarkType == (MarkType) index);
|
|
|
|
}
|
|
|
|
const char* last = "";
|
|
|
|
for (int index = 0; index <= (int) Last_MarkType; ++index) {
|
|
|
|
const char* next = fMaps[index].fName;
|
|
|
|
if (!last[0]) {
|
|
|
|
last = next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!next[0]) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
SkASSERT(strcmp(last, next) < 0);
|
|
|
|
last = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
string BmhParser::word(const string& prefix, const string& delimiter) {
|
|
|
|
string builder(prefix);
|
|
|
|
this->skipWhiteSpace();
|
|
|
|
const char* lineEnd = fLine + this->lineLength();
|
|
|
|
const char* nameStart = fChar;
|
|
|
|
while (fChar < lineEnd) {
|
|
|
|
char ch = this->next();
|
|
|
|
if (' ' >= ch) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (',' == ch) {
|
|
|
|
return this->reportError<string>("no comma needed");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (fMC == ch) {
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
if (!isalnum(ch) && '_' != ch && ':' != ch && '-' != ch) {
|
|
|
|
return this->reportError<string>("unexpected char");
|
|
|
|
}
|
|
|
|
if (':' == ch) {
|
|
|
|
// expect pair, and expect word to start with Sk
|
|
|
|
if (nameStart[0] != 'S' || nameStart[1] != 'k') {
|
|
|
|
return this->reportError<string>("expected Sk");
|
|
|
|
}
|
|
|
|
if (':' != this->peek()) {
|
|
|
|
return this->reportError<string>("expected ::");
|
|
|
|
}
|
|
|
|
this->next();
|
|
|
|
} else if ('-' == ch) {
|
|
|
|
// expect word not to start with Sk or kX where X is A-Z
|
|
|
|
if (nameStart[0] == 'k' && nameStart[1] >= 'A' && nameStart[1] <= 'Z') {
|
|
|
|
return this->reportError<string>("didn't expected kX");
|
|
|
|
}
|
|
|
|
if (nameStart[0] == 'S' && nameStart[1] == 'k') {
|
|
|
|
return this->reportError<string>("expected Sk");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (prefix.size()) {
|
|
|
|
builder += delimiter;
|
|
|
|
}
|
|
|
|
builder.append(nameStart, fChar - nameStart - 1);
|
|
|
|
return builder;
|
|
|
|
}
|
|
|
|
|
|
|
|
// pass one: parse text, collect definitions
|
|
|
|
// pass two: lookup references
|
|
|
|
|
|
|
|
static int count_children(const Definition& def, MarkType markType) {
|
|
|
|
int count = 0;
|
|
|
|
if (markType == def.fMarkType) {
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
for (auto& child : def.fChildren ) {
|
|
|
|
count += count_children(*child, markType);
|
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** const argv) {
|
2017-11-27 15:44:06 +00:00
|
|
|
BmhParser bmhParser(FLAGS_skip);
|
2017-07-28 15:04:54 +00:00
|
|
|
bmhParser.validate();
|
|
|
|
|
|
|
|
SkCommandLineFlags::SetUsage(
|
2017-11-27 15:44:06 +00:00
|
|
|
"Common Usage: bookmaker -b path/to/bmh_files -i path/to/include.h -t\n"
|
2017-07-28 15:04:54 +00:00
|
|
|
" bookmaker -b path/to/bmh_files -e fiddle.json\n"
|
|
|
|
" ~/go/bin/fiddlecli --input fiddle.json --output fiddleout.json\n"
|
|
|
|
" bookmaker -b path/to/bmh_files -f fiddleout.json -r path/to/md_files\n"
|
2017-12-11 21:03:17 +00:00
|
|
|
" bookmaker -a path/to/status.json -x\n"
|
|
|
|
" bookmaker -a path/to/status.json -p\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
bool help = false;
|
|
|
|
for (int i = 1; i < argc; i++) {
|
|
|
|
if (0 == strcmp("-h", argv[i]) || 0 == strcmp("--help", argv[i])) {
|
|
|
|
help = true;
|
|
|
|
for (int j = i + 1; j < argc; j++) {
|
|
|
|
if (SkStrStartsWith(argv[j], '-')) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
help = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!help) {
|
|
|
|
SkCommandLineFlags::Parse(argc, argv);
|
|
|
|
} else {
|
|
|
|
SkCommandLineFlags::PrintUsage();
|
2017-09-14 16:12:32 +00:00
|
|
|
const char* const commands[] = { "", "-h", "bmh", "-h", "examples", "-h", "include", "-h", "fiddle",
|
2017-12-11 21:03:17 +00:00
|
|
|
"-h", "ref", "-h", "status", "-h", "tokens",
|
2017-07-28 15:04:54 +00:00
|
|
|
"-h", "crosscheck", "-h", "populate", "-h", "spellcheck" };
|
2017-09-14 16:12:32 +00:00
|
|
|
SkCommandLineFlags::Parse(SK_ARRAY_COUNT(commands), commands);
|
2017-07-28 15:04:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (FLAGS_bmh.isEmpty() && FLAGS_include.isEmpty() && FLAGS_status.isEmpty()) {
|
|
|
|
SkDebugf("requires at least one of: -b -i -a\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_bmh.isEmpty() && !FLAGS_status.isEmpty()) {
|
|
|
|
SkDebugf("requires -b or -a but not both\n");
|
2017-10-31 19:44:45 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_include.isEmpty() && !FLAGS_status.isEmpty()) {
|
|
|
|
SkDebugf("requires -i or -a but not both\n");
|
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (FLAGS_bmh.isEmpty() && FLAGS_status.isEmpty() && FLAGS_catalog) {
|
|
|
|
SkDebugf("-c requires -b or -a\n");
|
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ((FLAGS_fiddle.isEmpty() || FLAGS_ref.isEmpty()) && FLAGS_catalog) {
|
|
|
|
SkDebugf("-c requires -f -r\n");
|
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (FLAGS_bmh.isEmpty() && FLAGS_status.isEmpty() && !FLAGS_examples.isEmpty()) {
|
|
|
|
SkDebugf("-e requires -b or -a\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (FLAGS_hack) {
|
|
|
|
if (FLAGS_bmh.isEmpty()) {
|
|
|
|
SkDebugf("-k or --hack requires -b\n");
|
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
HackParser hacker;
|
|
|
|
if (!hacker.parseFile(FLAGS_bmh[0], ".bmh")) {
|
|
|
|
SkDebugf("hack failed\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if ((FLAGS_include.isEmpty() || FLAGS_bmh.isEmpty()) && FLAGS_status.isEmpty() &&
|
|
|
|
FLAGS_populate) {
|
|
|
|
SkDebugf("-p requires -b -i or -a\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (FLAGS_bmh.isEmpty() && FLAGS_status.isEmpty() && !FLAGS_ref.isEmpty()) {
|
|
|
|
SkDebugf("-r requires -b or -a\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (FLAGS_bmh.isEmpty() && FLAGS_status.isEmpty() && !FLAGS_spellcheck.isEmpty()) {
|
|
|
|
SkDebugf("-s requires -b or -a\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
2017-11-27 15:44:06 +00:00
|
|
|
if ((FLAGS_include.isEmpty() || FLAGS_bmh.isEmpty()) && FLAGS_tokens) {
|
|
|
|
SkDebugf("-t requires -b -i\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if ((FLAGS_include.isEmpty() || FLAGS_bmh.isEmpty()) && FLAGS_status.isEmpty() &&
|
|
|
|
FLAGS_crosscheck) {
|
|
|
|
SkDebugf("-x requires -b -i or -a\n");
|
2017-07-28 15:04:54 +00:00
|
|
|
SkCommandLineFlags::PrintUsage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!FLAGS_bmh.isEmpty()) {
|
2017-10-31 19:44:45 +00:00
|
|
|
bmhParser.reset();
|
2017-07-28 15:04:54 +00:00
|
|
|
if (!bmhParser.parseFile(FLAGS_bmh[0], ".bmh")) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
} else if (!FLAGS_status.isEmpty()) {
|
|
|
|
bmhParser.reset();
|
|
|
|
if (!bmhParser.parseStatus(FLAGS_status[0], ".bmh", StatusFilter::kInProgress)) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
bool done = false;
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_include.isEmpty() && FLAGS_tokens) {
|
|
|
|
IncludeParser includeParser;
|
|
|
|
includeParser.validate();
|
|
|
|
if (!includeParser.parseFile(FLAGS_include[0], ".h")) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (FLAGS_tokens) {
|
|
|
|
includeParser.fDebugOut = FLAGS_stdout;
|
|
|
|
if (includeParser.dumpTokens(FLAGS_bmh[0])) {
|
|
|
|
bmhParser.fWroteOut = true;
|
|
|
|
}
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
} else if (!FLAGS_include.isEmpty() || !FLAGS_status.isEmpty()) {
|
|
|
|
if (FLAGS_crosscheck) {
|
2017-07-28 15:04:54 +00:00
|
|
|
IncludeParser includeParser;
|
|
|
|
includeParser.validate();
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_include.isEmpty() &&
|
|
|
|
!includeParser.parseFile(FLAGS_include[0], ".h")) {
|
2017-07-28 15:04:54 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_status.isEmpty() && !includeParser.parseStatus(FLAGS_status[0], ".h",
|
|
|
|
StatusFilter::kCompleted)) {
|
|
|
|
return -1;
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!includeParser.crossCheck(bmhParser)) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
done = true;
|
2017-07-28 15:04:54 +00:00
|
|
|
} else if (FLAGS_populate) {
|
|
|
|
IncludeWriter includeWriter;
|
|
|
|
includeWriter.validate();
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_include.isEmpty() &&
|
|
|
|
!includeWriter.parseFile(FLAGS_include[0], ".h")) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!FLAGS_status.isEmpty() && !includeWriter.parseStatus(FLAGS_status[0], ".h",
|
|
|
|
StatusFilter::kCompleted)) {
|
2017-07-28 15:04:54 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-09-14 15:25:39 +00:00
|
|
|
includeWriter.fDebugOut = FLAGS_stdout;
|
2017-07-28 15:04:54 +00:00
|
|
|
if (!includeWriter.populate(bmhParser)) {
|
|
|
|
return -1;
|
|
|
|
}
|
2017-09-14 15:25:39 +00:00
|
|
|
bmhParser.fWroteOut = true;
|
2017-07-28 15:04:54 +00:00
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!done && !FLAGS_fiddle.isEmpty() && FLAGS_examples.isEmpty()) {
|
2017-10-31 19:44:45 +00:00
|
|
|
FiddleParser fparser(&bmhParser);
|
|
|
|
if (!fparser.parseFile(FLAGS_fiddle[0], ".txt")) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!done && FLAGS_catalog && FLAGS_examples.isEmpty()) {
|
2017-12-11 21:03:17 +00:00
|
|
|
Catalog cparser(&bmhParser);
|
|
|
|
cparser.fDebugOut = FLAGS_stdout;
|
|
|
|
if (!FLAGS_bmh.isEmpty() && !cparser.openCatalog(FLAGS_bmh[0], FLAGS_ref[0])) {
|
2017-10-31 19:44:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_status.isEmpty() && !cparser.openStatus(FLAGS_status[0], FLAGS_ref[0])) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!cparser.parseFile(FLAGS_fiddle[0], ".txt")) {
|
2017-07-28 15:04:54 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!cparser.closeCatalog()) {
|
2017-10-31 19:44:45 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
bmhParser.fWroteOut = true;
|
|
|
|
done = true;
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
if (!done && !FLAGS_ref.isEmpty() && FLAGS_examples.isEmpty()) {
|
|
|
|
MdOut mdOut(bmhParser);
|
2017-09-19 21:39:32 +00:00
|
|
|
mdOut.fDebugOut = FLAGS_stdout;
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_bmh.isEmpty() && mdOut.buildReferences(FLAGS_bmh[0], FLAGS_ref[0])) {
|
|
|
|
bmhParser.fWroteOut = true;
|
|
|
|
}
|
|
|
|
if (!FLAGS_status.isEmpty() && mdOut.buildStatus(FLAGS_status[0], FLAGS_ref[0])) {
|
2017-09-14 15:25:39 +00:00
|
|
|
bmhParser.fWroteOut = true;
|
|
|
|
}
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
2017-09-01 19:51:02 +00:00
|
|
|
if (!done && !FLAGS_spellcheck.isEmpty() && FLAGS_examples.isEmpty()) {
|
2017-12-11 21:03:17 +00:00
|
|
|
if (!FLAGS_bmh.isEmpty()) {
|
|
|
|
bmhParser.spellCheck(FLAGS_bmh[0], FLAGS_spellcheck);
|
|
|
|
}
|
|
|
|
if (!FLAGS_status.isEmpty()) {
|
|
|
|
bmhParser.spellStatus(FLAGS_status[0], FLAGS_spellcheck);
|
|
|
|
}
|
2017-10-26 11:58:48 +00:00
|
|
|
bmhParser.fWroteOut = true;
|
2017-07-28 15:04:54 +00:00
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
int examples = 0;
|
|
|
|
int methods = 0;
|
|
|
|
int topics = 0;
|
|
|
|
if (!done && !FLAGS_examples.isEmpty()) {
|
2017-08-29 21:36:51 +00:00
|
|
|
// check to see if examples have duplicate names
|
|
|
|
if (!bmhParser.checkExamples()) {
|
2017-07-28 15:04:54 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2017-09-19 21:39:32 +00:00
|
|
|
bmhParser.fDebugOut = FLAGS_stdout;
|
2017-08-29 21:36:51 +00:00
|
|
|
if (!bmhParser.dumpExamples(FLAGS_examples[0])) {
|
|
|
|
return -1;
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
2017-09-14 15:25:39 +00:00
|
|
|
return 0;
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
2017-09-14 15:25:39 +00:00
|
|
|
if (!bmhParser.fWroteOut) {
|
|
|
|
for (const auto& topic : bmhParser.fTopicMap) {
|
|
|
|
if (topic.second->fParent) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
examples += count_children(*topic.second, MarkType::kExample);
|
|
|
|
methods += count_children(*topic.second, MarkType::kMethod);
|
|
|
|
topics += count_children(*topic.second, MarkType::kSubtopic);
|
|
|
|
topics += count_children(*topic.second, MarkType::kTopic);
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
2017-10-09 19:45:33 +00:00
|
|
|
SkDebugf("topics=%d classes=%d methods=%d examples=%d\n",
|
2017-09-14 15:25:39 +00:00
|
|
|
bmhParser.fTopicMap.size(), bmhParser.fClassMap.size(),
|
|
|
|
methods, examples);
|
2017-07-28 15:04:54 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|